:root{
    /*PRIMARY*/
    --primary: #F48C00;
    --secondary: #FFA400;

    /*--WHITE--*/
    --white: #ffffff;
    --gray-light: #e6e6e6;
    --gray-bg: #f2f2f2;
    --gray-verification: #999999;

    /*DARK*/
    --gray: #2D2A26;
    --black-text: #333333;

    /*MODALS*/
    --title-modal: 18px;
    --subtitle-modal: 16px;
    --description-modal: 16px;
}

body {
    background-color: var(--primary);
    font-family: 'Poppins', sans-serif;
    color: var(--black-text);
    overscroll-behavior: contain;
}

body.noscroll {
    position: sticky;
    overflow: hidden;
}

section {
    overflow: hidden;
    padding: 50px 0;
}

@media(max-width: 991px){
    section {
        overflow: hidden;
        padding: 35px 0;
    }
}

/*
* Bootstrap
*/
#featured .btn.btn-outlined-secondary {
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 6px 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    gap: 7px;
}

/*
*   HEADER START
*/

#header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.bi-list::before{
    cursor: pointer;
}

#header .logo-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header .logo-column img {
    max-width: 200px;
}

#header .navbar-brand {
    flex: 1;
}

#header .logo-column .menu-toggler i {
    color: var(--white);
    font-size: 40px;
}

@media(max-width: 575px){
    #header .logo-column .menu-toggler i {
        font-size: 34px;
        padding-top: 5px;
    }    
}

#header .mobile-expand-menu {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 100%;
    position: fixed;
    left: 100%;
    z-index: 999999;
    opacity: .5;
    background: #000000c2;
}

#header .mobile-expand-menu .collapse-menu {
    background-color: var(--black);
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-left: 0;
    line-height: 1.3;
    margin-bottom: 0;
}

#header .mobile-expand-menu .collapse-menu .collapse-item {
    display: block;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    padding: 8px;
    text-align: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#header .mobile-expand-menu .collapse-menu .collapse-item:hover {
    background-color: var(--black);
    color: var(--primary);
}

#header .mobile-expand-menu.expanded {
    top: 0;
    left: 0;
    opacity: 1;
}

#header .mobile-expand-menu .close-expand-menu {
    color: var(--white);
    background: transparent;
    border: 0px;
    font-size: 30px;
}

#header .mobile-expand-menu.expanded .btn-session{
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    color: var(--white);
}

.btn-session .btn-session_login, .btn-session .btn-session_register{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.btn-session .btn-session_login a, .btn-session .btn-session_register a{
    font-size: 14px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.btn-session .btn-session_login img, .btn-session .btn-session_register img{
    width: 35px;
}

.btn-session .btn-session_login.out svg{
    width: 30px;
    height: 35px;
    margin-bottom: 7px;
}

.btn-session .btn-session_register.in svg{
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
}

.nav-link_mobile-icon img{
    width: 25px;
}

@media(max-width: 575px){
    .nav-link_mobile-icon img{
        width: 20px;
    }
}

.nav-link_mobile-icon a{
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 575px){
    .nav-link_mobile-icon a{
        width: 33px;
        height: 32px;
    }
}

.mobile-menu_container {
    /* max-width: 325px; */
    background-color: var(--gray);
    height: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.mobile-menu_header {
    display: flex;
    justify-content: space-between;
    padding: 14px 7px 0;
}

.menu-mobile_search i{
    font-size: 19px;
    background-color: var(--primary);
    color: white;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 40px;
    margin-left: -40px;
    cursor: pointer;
}

.menu-mobile_search input{
    font-size: 16px;
    height: 34px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

#header .search-column {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .account-column {
    flex: 1;
    justify-content: center;
    align-items: center;
}

#header .account-column .account-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-left: 0;
    line-height: 1.3;
    margin-bottom: 0;
}

#header .account-column .account-nav .nav-item {
    margin: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .account-column .account-nav .nav-item:hover .nav-link {
    color: var(--white);
}

#header .account-column .account-nav .nav-item img {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#header .account-column .account-nav .nav-item:hover img {
    filter: brightness(10);
}

#header .account-column .account-nav .vr {
    background-color: var(--gray);
    opacity: 1;
}

#header .account-column-mobile {
    width: 100%;
    display: flex;
}

#header .account-column-mobile .account-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-left: 0;
    line-height: 1.3;
}

#header .account-column-mobile .account-nav .nav-item {
    display: block;
    width: 33.333%;
}

#header .account-column-mobile .account-nav .nav-item .nav-link {
    text-align: center;
    padding: 15px 0;
    color: var(--white);
}

#header .account-column-mobile .account-nav .nav-item:hover .nav-link {
    color: var(--primary);
}

#header .account-column-mobile .account-nav .nav-item img {
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#header .account-column-mobile .account-nav .nav-item:hover img {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(7deg) brightness(119%) contrast(119%);
    ;
}

#header .account-column-mobile .account-nav .text-item {
    width: 50%;
}

#header .menu-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

#header .menu-column .menu-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-left: 0;
    line-height: 1.3;
}

#header .menu-column .menu-nav .nav-item {
    display: block;
    width: 100%;

}

#header .menu-column .menu-nav .nav-item .nav-link {
    padding: 15px 8px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.menu-desktop {
    background-color: var(--gray);
}

.menu-desktop .menu-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-left: 0;
    line-height: 1.3;
    justify-content: space-between;
}

.menu-desktop .menu-nav .nav-item {
    display: block;

}

.menu-desktop .menu-nav .nav-item .nav-link {
    padding: 10px;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin: 0;
    cursor: pointer;
}

.menu-desktop .menu-nav .nav-item:hover .nav-link {
    color: var(--primary);
}

.menu-nav .dropdown-menu {
    background-color: var(--gray);
    padding: 0;
}

.menu-nav .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-inline-start: 0;
    font-size: 14px;
}

.dropdown-scroller {
    max-height: 400px;
    overflow: auto;
}

.menu-nav .dropdown-menu .dropdown-item {
    color: var(--white);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    padding: 0;
    line-height: 22px;
}

.menu-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--black);
    color: var(--primary);
}

.nav-items_products{
    display: grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 18px;
    row-gap: 2px;
}

.nav-items_products2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
}

#header #menu-logo .footer-logo {
    height: 140px;
}

#header #header-logo .navbar-collapse {
    background-color: var(--primary);
}

#header #header-logo .footer-logo input {
    width: 100%;
}

#header input.src,
#header-logo input.src { 
    border-radius: 60px;
    font-size: 16px;
    padding: 4px 50px 4px 10px;
    width: 100%;
    background: #ccc;
    border: none;
    height: 40px;
}

.input-header-relative{
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-header-relative i {
    font-size: 19px;
    background-color: var(--gray);
    color: white;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 40px;
    margin-left: -40px;
    cursor: pointer;
}

@media(max-width: 575px){
    .input-header-relative i {
        font-size: 16px;
        background-color: var(--gray);
        color: white;
        height: 32px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 33px;
        margin-left: -25px;
    }
}

/*
*   HEADER END
*/

/*
* BANNER START
*/
#banner {
    padding: 0 !important;
}

#banner .swiper {
    width: 100%;
    height: 500px;
}

#banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#banner .swiper-slide .banner-bg-container {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

#banner .swiper-slide .banner-bg-container .img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: initial;
    min-width: 100%;
    min-height: 100%;
    max-width: 2500px;
    max-height: 1900px;
    z-index: 2;
    background-position: right;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#banner .swiper-slide .content-container {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#banner .swiper-slide .content-container .left,
#banner .swiper-slide .content-container .right {
    flex: 1;
    position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

img.icon-geekypin {
    width: 45px;
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 2;
}

@media(max-width: 991px){
    img.icon-geekypin {
        width: 30px;
        top: 10px;
        right: 10px;
    }
}

#banner .swiper-slide .content-container .banner-mini-logo {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100px;
}

#banner .swiper-slide .content-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation-delay: .7s;
}

#banner .swiper-slide .banner-cards {
    height: 200px;
    animation-delay: .3s;
}

#banner .swiper-slide .content-caption .banner-top-logos {
    margin-bottom: 20px;
    width: 250px;
}

#banner .swiper-slide .content-caption .banner-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

#banner .swiper-slide .content-caption .banner-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 3px 15px;
    text-decoration: none;
    transition: all ease-in-out .2s;
    cursor: pointer;
}

#banner .swiper-slide .content-caption .banner-btn:hover {
    color: var(--primary);
    border: 6px solid var(--white);
    background-color: var(--white);
}

#banner .swiper-slide .content-container .banner-caption {
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    font-size: 16;
}

#banner .swiper-button-next,
#banner .swiper-button-prev {
    color: var(--white, var(--white));
}

/*
* BANNER END
*/

/*
*   FEATURED START
*/
#featured .featured-carousel-container {
    background-color: var(--gray-light);
    border-radius: 16px;
    width: 100%;
    padding: 20px 30px;
    overflow: hidden;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

@media(max-width: 767px){
    #featured .featured-carousel-container{
        height: 200px;
    }
}

#featured .swiper {
    height: 250px;
}

@media(max-width: 768px){
    #featured .swiper {
        height: 100%;
    }
}

#featured .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

#featured .swiper-slide img {
    height: 230px;
}

@media(max-width: 991px){
    #featured .swiper-slide img {
        height: 175px;
    }
}

@media(max-width: 767px){
    #featured .swiper-slide img {
        height: 150px;
    }
}

@media(max-width: 767px){
    #featured .title-home{
        font-size: 18px;
    }
}

/*
*   FEATURED END
*/


/*
* FOOTER START
*/
footer .social-list {
    display: flex;
    list-style: none;
    padding-left: 0;
}

@media(max-width: 991px){
    footer .social-list{
        justify-content: center;
    }
}

footer .social-icon-link {
    margin: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    border-radius: 100%;
    color: var(--gray);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

footer .social-icon-link:first-child {
    margin-left: 0 !important;

}

footer .social-icon-link:hover{
    border: 2px solid var(--primary);
    background-color: var(--gray);
    color: var(--primary);
}

footer .social-icon-link:hover .bi {
    background-color: var(--gray);
    color: var(--primary) !important;
}

footer .footer-link {
    text-decoration: none;
    color: var(--gray);
}

footer .footer-link:hover {
    color: var(--primary) !important;
}

footer .grid-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

footer .footer-title{
    font-size: 18px;
}

@media(max-width: 991px){
    footer .footer-title{
        font-size: 16px;
    }
}

/*
* FOOTER end
*/




#main-navigation .nav-item .nav-link {
    font-size: 18px;
    font-weight: 700;
    padding: 11px;
    line-height: 1;
}


#steps .main-bg,
#featured .main-bg {
    background-color: var(--primary);
    padding-bottom: 180px;
    padding-top: 80px;
}

#steps .title-bg {
    background-color: var(--gray);
    color: var(--white);
}

#steps .card-body p {
    font-size: 16px;
    color: var(--black-text);
}

#steps .circule-number {
    width: 90px;
}

.fos {
    font-size: 60px;
}


#steps .card {
    width: 100%;
    border: none;
}

@media(max-width: 1200px){
    #steps .card {
        align-items: center;
        justify-content: center;
    }
}

#steps .card p {
    width: 100%;
}


#steps .number {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    padding-top: 2px;
}

#steps .title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

#featured .yellow-font {
    color: var(--primary);
}

#featured .white-font {
    color: var(--white);
}

.sc {
    height: 400px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.bg-orange {
    background-color: #F48C00;
    padding-bottom: 50px;
}

.cat-bg {
    background-color: #FFA300;
}

.info-font {
    font-size: 13px;
}

.tog-shop {
    border: 0px solid transparent;
    color: #ffffff;
}

.pass-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.card2 {
    border-radius: 25px;
}

.wrapper {
    height: 34px;
    width: 124px;
}

.wrapper span {
    text-align: center;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.button-contw {
    width: 390px;
}

.pay-description {
    margin-bottom: 0;
    line-height: 1;
}
a#send-gift {
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
}

@media(max-width: 767px){
    .pay-step1 a#send-gift {
        text-align: center;
    }
}

.send-gift i{
    margin-left: 7px;
    background-color: #385898;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.accordion-item {
    border: #F48C00;

}

.button-chevron {
    border: #F48C00
}

.font-info {
    font-size: 14px;
}

.artpay-img {
    width: 100px;
}

#articles-container .buy-btn,
#articles-container .cart-btn,
#articles-container .cart-btn img {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#articles-container .buy-btn {
    background-color: var(--gray);
    color: var(--white);
    line-height: 1.1;
    font-size: 14px;
}

#articles-container .buy-btn:hover {
    background-color: var(--black-text);
    color: var(--secondary);
}

#articles-container .cart-btn {
    background-color: var(--secondary);
    color: var(--gray);
}

#articles-container .cart-btn img {
    width: 20px;
}

#articles-container .cart-btn:hover img {
    filter: brightness(10);
}


#breadcrumbs .link,
#breadcrumbs .home,
#breadcrumbs .home:hover img {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#breadcrumbs .link {
    color: var(--gray);
}

#breadcrumbs .link:hover {
    color: var(--white);
}

#breadcrumbs .home:hover img {
    filter: brightness(10);
}


/*
* Sidebar Custom radios
*/
#categorySidebarForm .form-check {
    display: flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
}

#categorySidebarForm .form-check-input {
    margin-left: 0;
    width: 33px;
    height: 33px;
}

#categorySidebarForm input[type="radio"] {
    position: absolute;
    opacity: 0;
}

#categorySidebarForm .radio-custom {
    width: 33px;
    height: 33px;
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#categorySidebarForm .form-check-label,
#categorySidebarForm .radio-custom {
    cursor: pointer;
}

#categorySidebarForm .radio-custom .radio-custom i {
    font-size: 25px;
}

#categorySidebarForm .radio-custom:hover,
#categorySidebarForm .radio-custom.active,
#categorySidebarForm .radio-custom:focus {
    background-color: var(--black-text);
    color: var(--secondary);
}


.fixed {
    position: fixed;
    top: 0;
    max-height: 100vh;
    overflow: auto;
}

.bottom {
    top: auto;
    bottom: 0;
    position: absolute;
}

#shop .container {
    position: relative;
    height: 100%;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #414141 var(--primary);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    width: 6px;
    width: 6px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--primary);
}

*::-webkit-scrollbar-track:hover {
    background-color: var(--secondary);
}

*::-webkit-scrollbar-track:active {
    background-color: var(--secondary);
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #414141;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #5F5F5F;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #5F5F5F;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-ring {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring.show {
    display: inline-block;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (min-width: 576px) {
    #banner .swiper-slide .content-container {
        flex-direction: column-reverse;
        width: 550px;
    }
}

@media (min-width: 768px) {
    #banner .swiper-slide .content-container {
        width: 740px;
    }
}

@media (min-width: 992px) {
    #featured .btn.btn-outlined-secondary {
        font-size: 18px;
        padding: 8px 30px
    }

    /*
    *   HEADER START
    */
    #header {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    #header .logo-column {
        flex: 0;
        width: auto;
    }

    #header .logo-column img {
        width: 200px;
    }

    #header .search-column {
        flex: 1;
        width: auto;
        margin: 0 8px
    }

    #header .account-column {
        flex: 1;
        width: auto;
    }

    #header .account-column .account-nav {
        flex-wrap: nowrap;
    }

    #header .cart-icon {
        position: relative;
    }

    #header .cart-icon .cart-qty {
        width: 15px;
        height: 15px;
        font-size: 8px;
        position: absolute;
        top: -8px;
        right: -1px;
        background-color: var(--white);
        color: var(--primary);
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*
    *   HEADER END
    */

    /*
    * BANNER START
    */
    #banner .swiper {
        height: calc(100vh - 173px);
    }

    #banner .swiper-slide .content-container {
        width: 900px;
        flex-direction: row;
    }

    #banner .swiper-slide .content-container .left,
    #banner .swiper-slide .content-container .right {
        position: relative;
    }

    #banner .swiper-slide .content-caption .banner-top-logos {
        margin-bottom: 20px;
        width: 250px;
    }

    #banner .swiper-slide .banner-cards {
        width: 100%;
        height: auto;
    }

    #banner .swiper-slide .content-caption .banner-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    #banner .swiper-slide .content-caption .banner-btn {
        font-size: 26px;
        border: 4px solid var(--white);
        border-radius: 50px;
        padding: 5px 20px;
    }

    #banner .swiper-slide .content-container .banner-caption {
        font-size: 18px;
    }

    #banner .swiper-slide .content-container .banner-mini-logo {
        width: 150px;
    }

    /*
    * BANNER END
    */

    #featured .swiper {
        height: 250px;
    }

    #steps .card-body p {
        font-size: 16px;
    }


    #categoryCollapse {
        display: block !important;
    }


    #articles-container .cart-btn img {
        width: 25px;
    }

    #articles-container .buy-btn {
        line-height: 1.1;
        font-size: 21px;
    }
}

@media (min-width: 1200px) {

    /*
    *   HEADER START
    */
    #header .account-column .account-nav .nav-item img {
        width: 40px;
        height: 40px;
    }

    /*
    *   HEADER END
    */

    #banner .swiper-slide .content-container {
        width: 1000px;
    }

    #banner .swiper-slide .content-caption .banner-top-logos {
        margin-bottom: 20px;
        width: 350px;
    }

    #banner .swiper-slide .content-caption .banner-title {
        font-size: 80px;
        margin-bottom: 50px;
    }

    #banner .swiper-slide .content-caption .banner-btn {
        font-size: 36px;
        border: 6px solid var(--white);
        border-radius: 50px;
        padding: 6px 30px;
    }

    #banner .swiper-slide .content-container .banner-caption {
        font-size: 20px;
    }

    #banner .swiper-slide .content-container .banner-mini-logo {
        width: 200px;
    }

}

@media (min-width: 1400px) {
    #banner .swiper-slide .content-container {
        width: 1200px;
    }
}

.bg-gray{
    background-color: var(--gray-bg);
}

.bg-gray-dark{
    background-color: var(--gray);
    color: var(--white);
}

.bg-gray_light{
    background: var(--gray-light);
}

.border-radius-btn_pay-left{
    border-radius: 0;
    background: var(--gray-light);
    color: white;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--gray);
    color: var(--gray);
}

span.border-radius-btn_pay-center {
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--gray);
    border-left: 0;
    border-right: 0;
}

.border-radius-btn_pay-right{
    border-radius: 0;
    background: var(--gray-light);
    color: white;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.btn-primary{
    background-color: var(--primary);
}

.btn-primary-gradient{
    background: rgb(244,140,0);
    background: linear-gradient(90deg, rgba(244,140,0,1) 50%, rgba(255,159,30,1) 100%);
    color: var(--white);
}

@media(max-width: 1200px){
    .cart-pay_delete .fa-trash-can{
        padding-right: 0 !important;
    }
}

@media (max-width: 991px) {
    img.banner-cards.item__small{
        height: 100px !important;
    }
}

.color_turquesa{
  color: #20dfd4 !important;
}