/* default site content */
.blk-cnt {
    display:block;
    box-sizing:border-box;
    padding:0;
    margin:0;
}

.blk-cnt .b-text {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-cnt .b-text p {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_lato);
    font-size:14px;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
    color:#000;
    padding: 0;
    margin: 0 0 15px 0;
}

.blk-cnt .b-text p:last-child {
    margin:0;
}

.blk-cnt .b-text h1,
.blk-cnt .b-text h2,
.blk-cnt .b-text h3,
.blk-cnt .b-text h4,
.blk-cnt .b-text h5,
.blk-cnt .b-text h6 {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size:26px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    color:#000;
    padding: 0;
    margin: 0;
}

.blk-cnt .b-text h1 {
    font-size:38px;
    padding:15px 0 0 0;
    margin:0 0 10px 0;
}

.blk-cnt .b-text h2 {
    font-size:34px;
    padding:15px 0 0 0;
    margin:0 0 10px 0;
}

.blk-cnt .b-text h3 {
    font-size:30px;
    padding:10px 0 0 0;
    margin:0 0 10px 0;
}

.blk-cnt .b-text h4 {
    font-size:26px;
    padding:10px 0 0 0;
    margin:0 0 5px 0;
}

.blk-cnt .b-text h5 {
    font-size:22px;
    padding:10px 0 0 0;
    margin:0 0 5px 0;
}

.blk-cnt .b-text h6 {
    font-size:18px;
    padding:10px 0 0 0;
    margin:0 0 5px 0;
}

.blk-cnt .b-text h1:first-child,
.blk-cnt .b-text h2:first-child,
.blk-cnt .bntext h3:first-child,
.blk-cnt .b-text h4:first-child,
.blk-cnt .b-text h5:first-child,
.blk-cnt .b-text h6:first-child {
    padding-top:0;
}

/* basket product */
.blk-product {
    display: block;
    box-sizing:border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-inner {
    display: block;
    box-sizing:border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-image-holder {
    display: block;
    box-sizing:border-box;
    line-height: 0;
    padding: 0;
    margin: 0 0 10px 0;
    position:relative;
}

.blk-product .b-image-holder .b-image {
    display: block;
    box-sizing:border-box;
    line-height:0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
}

.blk-product .b-image-holder .b-image img {
    max-width:100%;
}

.blk-product .b-image-holder .b-overlayer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow:inset 0 0 2px 0 rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    top:0;
    z-index:4;
    border-radius: 3px;
}

.blk-product .b-image-holder .b-overlayer .b-link {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.blk-product .b-list-ribbon {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    box-sizing:border-box;
    padding: 0;
    margin: 0;
    position: absolute;
    right:0;
    top:15px;
    z-index:8;
}

.blk-product .b-list-ribbon .b-ribbon {

    display: block;
    box-sizing:border-box;
    font-family:var(--f_asap);
    font-size:12px;
    font-weight:700;
    line-height:100%;
    text-align:left;
    text-transform:uppercase;
    color:#000;
    padding: 6px 8px;
    margin: 0 0 8px 0;
    background-color: #f2f2f2;
    box-shadow:0 0 1px 0 rgba(0,0,0,0.1);
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
    cursor:default;
    user-select: none;
}

.blk-product .b-list-ribbon .b-ribbon:last-child {
    margin:0;
}

.blk-product .b-btn-wish,
.blk-product .b-btn-nhc {
    display:block;
    box-sizing: border-box;
    width:30px;
    height:30px;
    padding:0;
    margin:0;
    cursor: pointer;
    background-color:var(--c_yellow);
    transition:all 0.2s ease-out;
    position: absolute;
    bottom:15px;
    z-index:8;
    border-radius:4px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.blk-product .b-btn-wish:hover,
.blk-product .b-btn-nhc:hover {

    background-color:#fff;
}

.blk-product .b-btn-wish .b-text,
.blk-product .b-btn-nhc .b-text {
    display:block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size:12px;
    font-weight: 700;
    line-height: 14px;
    text-align:center;
    white-space: nowrap;
    color:#fff;
    padding:8px 10px;
    margin:0;
    position: absolute;
    top:0;
    transition:all 0.2s ease-out;
    opacity:0;
    pointer-events: none;
    background-color:#000;
    border-radius:4px;
}

.blk-product .b-btn-wish .b-text {
    right:-8px;
    transform: translateX(100%);
}

.blk-product .b-btn-nhc .b-text {
    left:-8px;
    transform: translateX(-100%);
}

.blk-product .b-btn-wish:hover .b-text {
    opacity:0.96;
}

.blk-product .b-btn-nhc:hover .b-text {
    opacity:0.96;
}

.blk-product .b-btn-wish {

    left:15px;
    background-image:url('/images/svg/common/nh/misc/wish.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
}

.blk-product .b-btn-nhc {

    right:15px;
    background-image:url('/images/svg/common/nh/misc/coin.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
}

.blk-product .b-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 8px 0;
}

.blk-product .b-rating {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    height: 16px;
    box-sizing:border-box;
    padding: 0 0 0 20px;
    margin: 0;
    background-image:url('/images/svg/common/nh/rating_glasses_small/full.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
    user-select: none;
    cursor: default;
}

.blk-product .b-rating .b-text {
    display: block;
    box-sizing:border-box;
    height: 16px;
    font-family: var(--f_roboto);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    color:#000;
    padding: 2px 0 0 0;
    margin:0 5px 0 0;
}

.blk-product .b-rating .b-value {
    display: block;
    box-sizing:border-box;
    height: 16px;
    font-family: var(--f_roboto);
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    color:#000;
    padding: 2px 0 0 0;
    margin: 0;
}

.blk-product .b-picked {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-picked .b-list {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-picked .b-list .b-item {
    display: block;
    box-sizing: border-box;
    font-family:var(--f_asap);
    font-size:14px;
    font-weight:700;
    line-height:100%;
    text-align: center;
    white-space: nowrap;
    color:#000;
    padding: 3px 16px 3px 8px;
    margin: 0;
    background-color:var(--c_yellow);
    border-radius:3px;
    position: relative;
    cursor: default;
}

.blk-product .b-picked .b-list .b-item.icon-alyx { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-galileo { padding: 3px 8px 3px 40px; }
.blk-product .b-picked .b-list .b-item.icon-bernie { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-naro { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-mad-scientist { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-makart { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-gill { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-siris { padding: 3px 8px 3px 38px; }
.blk-product .b-picked .b-list .b-item.icon-marita { padding: 3px 8px 3px 40px; }

.blk-product .b-picked .b-list .b-item:before {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.blk-product .b-picked .b-list .b-item.icon-alyx:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-galileo:before {
    content:'';
    width:26px;
    height:34px;
    left:6px;
    bottom:-4px;
}

.blk-product .b-picked .b-list .b-item.icon-bernie:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-naro:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-mad-scientist:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-makart:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-gill:before {
    content:'';
    width:26px;
    height:26px;
    left:6px;
    bottom:-2px;
}

.blk-product .b-picked .b-list .b-item.icon-siris:before {
    content:'';
    width:26px;
    height:34px;
    left:6px;
    bottom:-4px;
}

.blk-product .b-picked .b-list .b-item.icon-marita:before {
    content:'';
    width:28px;
    height:36px;
    left:6px;
    bottom:-4px;
}

.blk-product .b-picked .b-list .b-item.icon-alyx:before { background-image:url('/images/svg/common/nh/nerds/alyx.svg'); }
.blk-product .b-picked .b-list .b-item.icon-galileo:before { background-image:url('/images/svg/common/nh/nerds/galileo.svg'); }
.blk-product .b-picked .b-list .b-item.icon-bernie:before { background-image:url('/images/svg/common/nh/nerds/bernie.svg'); }
.blk-product .b-picked .b-list .b-item.icon-naro:before { background-image:url('/images/svg/common/nh/nerds/naro.svg'); }
.blk-product .b-picked .b-list .b-item.icon-mad-scientist:before { background-image:url('/images/svg/common/nh/nerds/mad_scientist.svg'); }
.blk-product .b-picked .b-list .b-item.icon-makart:before { background-image:url('/images/svg/common/nh/nerds/makart.svg'); }
.blk-product .b-picked .b-list .b-item.icon-gill:before { background-image:url('/images/svg/common/nh/nerds/gill.svg'); }
.blk-product .b-picked .b-list .b-item.icon-siris:before { background-image:url('/images/svg/common/nh/nerds/siris.svg'); }
.blk-product .b-picked .b-list .b-item.icon-marita:before { background-image:url('/images/svg/common/nh/nerds/marita.svg'); }

.blk-product .b-product-title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    box-sizing:border-box;
    height: 44px;
    padding: 0;
    margin: 0 0 10px 0;
}

.blk-product .b-product-title .b-title {
    display: block;
    box-sizing:border-box;
    max-width: 96%;
    font-family: var(--f_asap);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    text-transform: uppercase;
    color:#000;
    padding:0;
    margin:0;
    overflow: hidden;
}

.blk-product .b-product-title .b-title .b-link {
    display: inline;
    box-sizing: border-box;
    text-decoration: none;
    color:inherit;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease-out;
    opacity: 1.0;
}

.blk-product .b-product-title .b-title .b-link:hover {
    opacity: 0.7;
}

.blk-product .b-product-tags {
    display: block;
    box-sizing:border-box;
    padding: 0;
    margin: 0 0 15px 0;
}

.blk-product .b-product-tags:last-child {
    margin:0;
}

.blk-product .b-product-tags ul.b-list-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing:border-box;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blk-product .b-product-tags ul.b-list-tag li.b-tag {
    display: block;
    box-sizing:border-box;
    font-family: var(--f_lato);
    font-size:10px;
    font-weight: 700;
    line-height:14px;
    text-align: center;
    text-transform: uppercase;
    color:var(--c_yellow);
    padding: 2px 6px;
    margin: 0 4px 0 0;
    border:none;
    cursor:pointer;
    transition: all 0.2s ease-out;
    border-radius:3px;
    background-color: #000;
}

.blk-product .b-product-tags ul.b-list-tag li.b-tag a {
    text-decoration: none;
    color:var(--c_yellow);
}

.blk-product .b-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 15px 0;
}

.blk-product .b-cols:last-child {
    margin:0;
}

.blk-product .b-cols .b-left {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-cols .b-right {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-cols .b-add-to-basket {
    display: block;
    box-sizing: border-box;
    width:44px;
    height:44px;
    padding: 0;
    margin: 0;
}

.blk-product .b-cols .b-add-to-basket .b-btn-add {
    display: block;
    box-sizing: border-box;
    width:100%;
    height:100%;
    padding: 0;
    margin: 0;
    background-color: var(--c_yellow);
    cursor: pointer;
    transition: all 0.2s ease-out;
    border-radius:50%;
    border:2px solid transparent;
}

.blk-product .b-cols .b-add-to-basket .b-btn-add:hover {
    background-color: #fff;
    border:2px solid #000;
}

.blk-product .b-cols .b-add-to-basket .b-btn-add svg {
    width:100%;
    height:100%;
    fill:#000;
    transition: all 0.2s ease-out;
}

.blk-product .b-cols .b-price {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size:24px;
    font-weight: 700;
    line-height:100%;
    text-align: right;
    color:#000;
    padding: 0;
    margin: 0 0 5px 0;
}

.blk-product .b-cols .b-price .b-value {
    display: inline;
}

.blk-product .b-cols .b-price .b-currency {
    display: inline;
}

.blk-product .b-cols .b-delivery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-product .b-cols .b-delivery .b-icon {
    display: block;
    box-sizing: border-box;
    width:24px;
    height:18px;
    line-height:0;
    padding: 0;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.blk-product .b-cols .b-delivery .b-icon.b-icon-physical {

    background-image:url('/images/svg/common/nh/product_delivery_physical.svg');
}

.blk-product .b-cols .b-delivery .b-icon.b-icon-virtual {

    background-image:url('/images/svg/common/nh/product_delivery_virtual.svg');
}

.blk-product .b-cols .b-delivery .b-text {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_lato);
    font-size:12px;
    font-weight: 400;
    line-height:18px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    color:#000;
    padding: 0;
    margin: 0;
}

.blk-product .b-extra-tips {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
}

.blk-product .b-extra-tips:last-child {
    margin:0;
}

.blk-product .b-extra-tips .b-tip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
}

.blk-product .b-extra-tips .b-tip:last-child {
    margin:0;
}

.blk-product .b-extra-tips .b-tip .b-image {
    display: block;
    box-sizing: border-box;
    width:16px;
    height:16px;
    line-height:0;
    padding: 0;
    margin: 0 6px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.blk-product .b-extra-tips .b-tip .b-image.b-icon-alert-triangle-yellow {

    background-image:url('/images/svg/common/nh/misc/alert_triangle_yellow.svg');
}

.blk-product .b-extra-tips .b-tip .b-text {
    display: block;
    box-sizing: border-box;
    font-family:var(--f_lato);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color:#404040;
    padding: 0;
    margin: 0;
}

/* loot offer */


.blk-loot-offer {
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    padding: 25px;
    margin: 35px 0 0 0;
    width: 100%;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 300ms ease all;
}

.blk-loot-offer.expire {
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: -1px 1px #000;
}

.blk-loot-offer.past {
    filter: grayscale(1);
    opacity: .5;
    pointer-events: none;
}

.blk-loot-offer .b-timer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    box-sizing: border-box;
    padding: 6px 15px 4px 15px;
    margin: 0;
    position: absolute;
    top: -2px;
    left: 15px;
    right: 15px;
    transform: translateY(-100%);
    background-color: var(--c_yellow);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    box-shadow: -1px -1px #000;
}

.blk-loot-offer .b-timer .b-label {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 14px;
    font-weight: 500;
    line-height: 115%;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.blk-loot-offer.expire:not(.past) .b-timer .b-label.after {
    display: none;
}

.blk-loot-offer.expire.past .b-timer .b-label.before {
    display: none;
}

.blk-loot-offer .b-timer .b-date {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-timer .b-date .b-d-val {
    display: inline;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-timer .b-date .b-d-label {
    display: inline;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    color: #000;
    padding: 0;
    margin: 0 5px 0 0;
}

.blk-loot-offer .b-timer .b-date .b-d-label:last-child {
    margin: 0;
}

.blk-loot-offer .b-head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-head .b-col-left {
    display: block;
    box-sizing: border-box;
    padding: 0 0 5px 0;
    margin: 0;
    position: relative;
}

.blk-loot-offer .b-head .b-col-left:after {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 80%;
    height: 2px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/images/svg/common/nh/misc/horizontal-line-extra-thin.svg);
}

.blk-loot-offer .b-head .b-col-right {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0 0 15px;
    margin: 0;
}


.blk-loot-offer .b-head .b-collection-ribbon {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    box-sizing: border-box;
    padding: 4px 12px;
    margin: 0 0 15px 0;
    border: 2px solid #000;
    border-radius: 4px;
}

.blk-loot-offer .b-head .b-collection-ribbon:last-child {
    margin: 0;
}

.blk-loot-offer .b-head .b-collection-ribbon .b-icon {
    display: block;
    box-sizing: border-box;
    width: 24px;
    padding: 0;
    margin: 0;
    position: relative;
}

.blk-loot-offer .b-head .b-collection-ribbon .b-icon img {
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: -50%;
    transform: translateY(-50%);
}

.blk-loot-offer .b-head .b-collection-ribbon .b-label {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0;
    margin: 0 0 0 12px;
}

.blk-loot-offer .b-head .b-collection-label {
    display: block;
    box-sizing: border-box;
    padding: 15px 0 0 0;
    margin: 0;
}

.blk-loot-offer .b-head .b-collection-label .b-label {
    display: block;
    box-sizing: border-box;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-head .b-title {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}


.blk-loot-offer .b-head .b-icon-tickets {
    display: block;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    position: relative;

    background-color: var(--c_yellow);
    border-radius: 50%;
}

.blk-loot-offer .b-head .b-icon-tickets.promo:before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    background-image: url(/images/svg/common/nh/misc/ticket_discount_max.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-25%, 25%);
    z-index: +2;
}

.blk-loot-offer .b-head .b-icon-tickets img {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-15%);
}

.blk-loot-offer .b-head .b-label-tickets {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,.1);
    padding: 5px 0 0 0;
    margin: 0;
}

.blk-loot-offer .b-head .b-label-tickets.promo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}

.blk-loot-offer .b-head .b-label-tickets .b-disc-from {
    display: block;
    box-sizing: border-box;
    font-size: 22px;
    line-height: 26px;
    padding: 0;
    margin: 0 3px 0 0;
    opacity: 1;
    position: relative;
    color: #aaa;
}

.blk-loot-offer .b-head .b-label-tickets .b-disc-from:before {
    content: '';
    display: block;
    box-sizing: border-box;
    height: 2px;
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #f00;
    box-shadow: 0 0 1px 1px rgba(0,0,0,.03);
    opacity: 1;
}

.blk-loot-offer .b-head .b-label-tickets .b-actual-price {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-head .b-label-tickets.promo .b-actual-price {
    font-size: 22px;
    line-height: 26px;
}

.blk-loot-offer .b-bottom {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: relative;
}

.blk-loot-offer .b-details {
    display: block;
    box-sizing: border-box;
    padding: 6px 0 0 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.blk-loot-offer .b-details .b-items-count {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
}

.blk-loot-offer .b-details .b-items-count .b-boxed {
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: var(--c_yellow);
    text-align: center;
    padding: 4px 3px;
    margin: 0;
    background-color: #000;
    border-radius: 4px;
}

.blk-loot-offer .b-details .b-items-count .b-label {
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    padding: 4px 3px;
    margin: 0;
}

.blk-loot-offer .b-details .b-value-price {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0 0 10px 0;
}

.blk-loot-offer .b-details .b-value-price .b-label {
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    margin: 0 5px 0 0;
}

.blk-loot-offer .b-details .b-value-price .b-value {
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-details .b-rating {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.blk-loot-offer .b-details .b-rating .b-cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


.blk-loot-offer .b-details .b-rating .b-cnt .b-value {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-align:center;
    padding:0;
    margin:0;
}

.blk-loot-offer .b-details .b-rating .b-icon {
    display: block;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image:url('/images/svg/common/nh/rating_glasses/full.svg');
}

.blk-loot-offer .b-details .b-rating .b-label {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size:16px;
    font-weight: 500;
    line-height: 100%;
    text-align:center;
    text-transform: uppercase;
    padding:0 5px;
    margin:0;
}

.blk-loot-offer .b-image {
    display: block;
    box-sizing: border-box;
    padding: 25px 0 0 0;
    margin: 0;
}

.blk-loot-offer .b-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0 20px 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 300ms ease all;
}

.blk-loot-offer .b-action .b-btn {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    min-width: 70%;
    padding: 8px 15px;
    margin: 0 auto;
    border: 3px solid #000;
    background-color: var(--c_yellow);
    border-radius: 6px;
    box-shadow: -1px 1px #000;
    transition: 300ms ease all;
}

.blk-loot-offer:hover .b-action .b-btn {
    background-color: #000;
    color: #fff;
}


@media only screen and (max-width: 1366px) {


    .blk-loot-offer .b-timer .b-date .b-d-val {
        font-size: 18px;
    }

    .blk-loot-offer .b-head .b-collection-ribbon {
        padding: 4px 5px;
    }

    .blk-loot-offer .b-head .b-collection-ribbon .b-label {
        margin: 0 0 0 5px;
    }

    .blk-loot-offer .b-head .b-title {
        font-size: 22px;
    }

    .blk-loot-offer .b-action {
        padding: 0 0 10px 0;
    }

    .blk-loot-offer .b-action .b-btn {
        font-size: 18px;
    }

    .view-75 .pt-cans .b-section-offer .b-btn-wrap {
        padding: 45px 0 0 0;
    }

    .view-75 .pt-cans .b-section-offer .b-btn-wrap .b-btn.btn-load {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1150px) {

    .blk-loot-offer {
        padding: 15px;
    }

}


@media only screen and (max-width: 480px) {

    .blk-loot-offer:not(.expire) {
        margin: 10px 0 0 0;
    }

}
