/* ГЛ.ЭКРАН 
===========*/

.smurf__section--main {
    border-bottom: 4px solid #5D2B8E;
}

.smurf__container--main {
    background-image: url('https://smurfmania.com/wp-content/uploads/2019/11/main-hero.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 600px;
}

.main__inner {
    max-width: 490px;
}

.reviews__wrapper--main {
    margin-top: 100px;
}

@media (max-width: 500px) {
    .smurf__container--main {
        background-image: none;
    }
}

/* HOT DEALS 
================================*/

.smurf__container--hot {
    max-width: 1920px;
}

.hot__wrapper {
    overflow: hidden;
}

.hot__list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -3%;
}

.hot__item {
    width: 17%;
    margin-right: 3%;
    margin-bottom: 3%;
    position: relative;
    font-weight: bold;
    border-radius: 7px;
    overflow: hidden;
    background-color: #fff;
}

.hot__img__box {
    background-color: #5D2B8E;
    text-align: center;
    padding: 20px 15px;
}

.hot__img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin: 10px auto;
}

.hot__logo_overlay {
    display: inline-block;
    position: absolute;
    max-width: 30%;
    left: 5%;
    top: 5%;
}

.hot__text__box {
    color: #2D2D2D;
    padding: 20px 15px;
    font-size: 20px;
    line-height: 1;
}

.hot__title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hot__price {
    font-size: 18px;
}

.hot__price del {
    opacity: 0.5;
}

.hot__price ins {
    text-decoration: none;
}

.hot__desc {
    font-size: 12px;
    line-height: 1.2em;
    padding: 10px;
    padding-top: 0;
}

.hot__link_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
}

.hot__item:hover {
    opacity: 0.9;
}

/*адаптив*/

@media (max-width: 1023px) {
    .hot__item {
        width: calc(100% / 3 - 3%);
    }
}

@media (max-width: 768px) {
    .hot__item {
        width: 47%;
    }
    .hot__item:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 580px) {
    .hot__item {
        width: 97%;
    }
}

/* SMURFS WITH BE 
================================*/

/* filter */

.filter_tabs__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.filter_tabs__link {
    margin: 5px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.filter_tabs__link.active {
    pointer-events: none;
}

.filter_tabs__link::after {
    content: '';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1;
    border-radius: 50%;
    border: 4px solid #000;
    box-sizing: border-box;
}

.filter_tabs__link.active::after, .filter_tabs__link:hover::after {
    border-color: #ff8a00;
}

.filter_tabs__link.active::before {
    content: '';
    width: 100%;
    height: 22%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #ff8a00;
    background-image: url(/wp-content/uploads/decor/check-w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}

/* products */

.with_be__product__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    max-width: 400px;
    margin: auto;
}

.with_be__product__item {
    background: #5F3B61;
    border-radius: 7px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.with_be__product__item::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 35%;
    background: #7330B5;
    z-index: 0;
}

.with_be__product__item:hover::before {
    background: linear-gradient(180deg, #FF8A00 0%, #FF4D00 100%);
}

.with_be__product__item>* {
    position: relative;
}

.with_be__product__title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.with_be__product__img {
    text-align: center;
    margin: 10px 0;
}

.with_be__product__img img {
    max-height: 270px;
    object-fit: contain;
    max-width: 100%;
}

.with_be__product__info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.with_be__product__info li {
    padding: 0.5em 0;
    font-size: 20px;
}

.with_be__product__info li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.with_be__product__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.with_be__product__price {
    margin-right: 1em;
    color: #FF8A00;
    font-size: 20px;
    font-weight: bold;
}

.with_be__product__action .smurf__btn {
    flex-grow: 10;
    text-align: center;
    border-radius: 35px;
}

@media (max-width: 1140px) {
    .filter_tabs__link img {
        width: 80px;
    }
    .filter_tabs__link.active::before {
        background-size: 10px;
    }
    .with_be__product__list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 15px;
    }
    .with_be__product__info li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .filter_tabs__link img {
        width: 70px;
    }
}

/* Why Buy LoL Account From Us? 
================================*/

.advantages__wrapper {
    overflow: hidden;
}

.advantages__list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -3%;
}

.advantages__item {
    width: 22%;
    margin-right: 3%;
    margin-bottom: 3%;
    padding: 30px;
    text-align: center;
    color: #2D2D2D;
    background-color: #fff;
    border-radius: 7px;
    border-bottom: 6px solid #ff8a00;
    position: relative;
    box-sizing: border-box;
}

.advantages__img__box {
    height: 70px;
    margin-bottom: 20px
}

.advantages__img__box img {
    height: 100% !important;
    object-fit: contain !important;
    pointer-events: none;
}

.advantages__title {
    font-size: 20px;
    font-weight: bold;
}

/*адаптив*/

@media (max-width: 1024px) {
    .advantages__item {
        width: 47%;
    }
}

@media (max-width: 580px) {
    .advantages__item {
        width: 97%;
    }
}

/* How to Buy LoL Smurf?
================================*/

.how__wrapper {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
}

.how__wrapper img {
    width: 100%;
}

.smurf__btn--how {
    position: absolute;
    left: 6.5%;
    top: 42%;
}

@media (max-width: 500px) {
    .smurf__btn--how {
        font-size: 12px;
        padding: 2px 15px;
        top: 40%;
    }
}

/* About Us
========== */

.about__row {
    display: flex;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 20px;
}

.about__row:last-child {
    margin-bottom: 0;
}

.about__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    order: 0;
    box-sizing: border-box;
}

.about__col--text {
    width: 67%;
    padding-left: 0;
    padding-right: 2%;
}

.about__row--left-img .about__col--text {
    order: 1;
    padding-left: 2%;
    padding-right: 0;
}

.about__col--img {
    width: 33%;
    background-color: #5D2B8E;
}

.about__title {
    font-size: 20px;
    font-weight: bold;
    align-self: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.about__desc p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.about__desc a {
    color: #fff;
}

@media (max-width: 768px) {
    .about__row {
        flex-direction: column;
        align-items: stretch;
        background-color: #fff;
        color: #2D2D2D;
    }
    .about__col {
        width: 100%;
        padding: 20px !important;
    }
    .about__row--right-img .about__col--text {
        order: 1;
        padding-left: 2%;
        padding-right: 0;
    }
}

/* МЕТОДЫ ОПЛАТЫ
============== */

.payment__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.payment__wrapper img {
    margin: 2%;
}

/* ДОП.ИНФО для сео 
===================*/

.smurf__container--add_info {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.smurf__container--add_info a {
    color: #fff;
}

/* G-Translate 
==============*/
a.glink {
    text-decoration: none;
    color: #fff;
}
a.glink:hover {
    color: #ffab49;
}
a.glink img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.8;
}
a.glink span {
    margin-right: 3px;
    font-size: 10px;
    vertical-align: middle;
}