/* Basic CSS */

@font-face {
    font-family: eximageometric;
    src: url(Exima_Geometric.ttf);
}

/*body {*/
    /*!*background-color: #F00000;*!*/
/*background-image: url('../img/summer-black-friday-fixed-bg-empty.png');*/
/*!*background-repeat: no-repeat;*!*/
/*background-attachment: scroll;*/
/*!*background-attachment: fixed;*!*/
/*!*background-position: center center;*!*/
/*!*background-size: contain;*!*/
/*!*background-size: cover;*!*/
/*background-size: 2000px;*/
/*}*/

body {
    background-color: #262bd8;
}

@media (min-width: 576px) {
    .container {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1280px;
        max-width: 100%;
    }
}

.dd-none {
    display: none;
}

.dd-none.dd-desktop {
    display: block;
}

.dd-none.dd-desktop-initial {
    display: initial;
}

.dd-none.dd-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .dd-none.dd-mobile {
        display: block;
    }

    .dd-none.dd-desktop {
        display: none;
    }

    .dd-none.dd-desktop-initial {
        display: none;
    }
}

.content-disp ul {
    list-style: none;
    padding-left: 0px;
}

.content-disp {
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.content-disp>.__f {
    width: 100%;
}

@media (min-width: 64em) {
    .content-disp>.__f {
        width: calc(100% - 64px);
        margin-left: 32px;
        margin-right: 32px;
    }
}

@media (max-width: 63.99em) {
    .content-disp {
        margin-top: -20px;
    }
}

@media (max-width: 44.99em) {
    .content-disp {
        margin-top: 0;
    }
}


.content-disp>.__f>.__f2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
}


#main_wrap {
    order: 2;
    flex: 0 0 0;
    flex-basis: calc(100% - 250px);
    /*border: 3px solid #F00000;*/
    /*border-radius: 13px;*/
}

@media (max-width: 78.74em) {
    #main_wrap {
        flex-basis: calc(100% - 224px);
    }
}


@media (max-width: 63.99em) {
    #main_wrap {
        flex-basis: calc(100% - 172px);
    }
}

@media (max-width: 44.99em) {
    #main_wrap {
        flex-basis: 100%;
        width: 100%;
    }
}


#main {

    border-radius: 13px;
    width: 100%;
    padding: 0px 20px 15px 20px;
    overflow: hidden;
    /*box-shadow: 0 13px 55.8px 6.2px rgb(11 12 12 / 30%), inset 0 2px 0 0 hsl(0deg 0% 100% / 0%);*/
}

@media (max-width: 78.74em) {
    #main {
        padding: 24px;
    }
}

@media (max-width: 63.99em) {
    #main {
        padding: 10px;
    }
}

@media (max-width: 63.99em) {
    #main {
        box-shadow: none;
    }
}

@media (max-width: 44.99em) {
    #main {
        border-radius: 0;
    }
}


.product_section_title {
    background-image: linear-gradient(#F00000, #F00000), linear-gradient(#e5e5e5, #e5e5e5);
    background-position: 0 100%, 0 100%;
    background-repeat: no-repeat;
    background-size: 25% 1px, 100% 1px;
}

.product_section_title h1 {
    line-height: 1;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}


.product_section_grid {
    padding: 12px 0;
    width: calc(100% + 24px);
    margin: 0 -12px;
}

.product_section_grid .__f {
    display: flex;
    flex-flow: row wrap;
}

.product {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(25% - 24px);
    box-sizing: content-box;
    padding: 12px;
    display: flex;
}


@media (max-width: 63.99em) {
    .product {
        flex-basis: calc(33.33333% - 24px);
    }
}

@media (max-width: 44.99em) {
    .product {
        flex-basis: calc(50% - 24px);
    }
}


.product>.__i {
    flex: 0 0 100%;
    display: flex;
    flex-flow: column nowrap;
    box-sizing: border-box;
    position: relative;
}

.product .tags {
    text-align: center;
    position: absolute;
    right: -6px;
    top: 16px;
    z-index: 2;
}

.product .tags .tag_discount {
    background: #F00000;
}

.product .tags .tag {
    background-color: #F00000;
    display: block;
    border-radius: 3px 0 0 3px;
    padding: 6px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 50%);
    position: relative;
    margin-bottom: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.product .tags .tag:after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-color: #000 transparent transparent #000;
    border-style: solid;
    border-width: 3px;
}

.product .tags .tag_stock {
    background: #000;
}


.product figure {
    margin: 0 0 0.3em;
    overflow: hidden;
}

.product figure a {
    display: block;
    overflow: hidden;
}

.product figure img {
    width: 100%;
    display: block;
    height: auto;
}

.product .name {
    text-align: center;
    margin: 0 0 1em;
}

.product .name h2 {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
}

@media (max-width: 44.99em) {
    .product .name h2 {
        font-size: 12px;
    }
}


.product .name a {
    display: block;
    color: #000;
}

.product .price {
    text-align: center;
    margin: auto 0 0.3em;
}

.product .price .new {
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    color: #F00000;
}

.product .price .new .m_dec {
    font-size: 12px;
    vertical-align: 8px;
}

.product .price .old {
    display: inline-block;
    margin-left: 4px;
    font-size: 12px;
    color: #777;
    text-decoration: line-through;
}


.product .action {
    text-align: center;
}

.product._oos .name,
.product._oos .price,
.product._oos .tag,
.product._oos figure {
    opacity: .3;
}

.product._oos .action {
    visibility: hidden;
}

.product._oos .oos_action {
    display: block;
}


.product .action a {
    width: 132px;
    height: 32px;
    line-height: 32px;
    display: block;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    color: #fff;
    padding-right: 36px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.product .action a .__d:before {
    font-family: hs-icons !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "A";
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    position: absolute;
    background: #F00000;
    border-radius: 0 40px 40px 0;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    z-index: 1;
}

.product .oos_action {
    display: none;
    width: 132px;
    height: 32px;
    background-color: #f43a26;
    line-height: 32px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}


#sidebar_wrap {
    order: 1;
    flex: 0 0 240px;
}

@media (max-width: 78.74em) {
    #sidebar_wrap {
        flex: 0 0 200px;
    }
}

@media (max-width: 63.99em) {
    #sidebar_wrap {
        flex: 0 0 160px;
    }
}


#sidebar ul{
    padding: 16px 20px;
    border-radius: 13px;
    background-color: white;
    border: 2px solid white;
    /*box-shadow: 0 13px 55.8px 6.2px rgb(11 12 12 / 30%), inset 0 2px 0 0 hsl(0deg 0% 100% / 0%);*/
}

.mobile-only-counter {
    display: none;
}

.desktop-only-counter {
    margin-top: -70px;
}

@media (max-width: 44.99em){
    .desktop-only-counter {
        margin-top: 0px;
    }
    #sidebar {
        padding: 16px 20px;
        border-radius: 13px;
        background-color: white;
        border: 2px solid white;
        /*box-shadow: 0 13px 55.8px 6.2px rgb(11 12 12 / 30%), inset 0 2px 0 0 hsl(0deg 0% 100% / 0%);*/
    }
    #sidebar ul{
        padding: initial;
        border-radius: initial;
        background-color: initial;
        border: none;
        /*box-shadow: 0 13px 55.8px 6.2px rgb(11 12 12 / 30%), inset 0 2px 0 0 hsl(0deg 0% 100% / 0%);*/
    }
    .mobile-only-counter {
        display: block;
    }
}

@media (max-width: 78.74em) {
    #sidebar {
        padding: 16px;
    }
}


@media (max-width: 63.99em) {
    #sidebar {
        padding: 12px;
    }
}


@media (max-width: 44.99em) {
    #sidebar {
        position: fixed;
        z-index: 104;
        top: 0;
        bottom: 0;
        left: 0;
        border-radius: 0;
        transform: translateX(-100%);
        transition: .5s;
        max-width: 80%;
    }
}


#sidebar>.trigger_sidebar_mobile {
    display: none;
    text-transform: uppercase;
    position: absolute;
    box-sizing: border-box;
    text-decoration: none;
    top: 45%;
    left: 99%;
    transform: translateX(-34%) rotate(-90deg);
    background-color: red;
    border: 1px solid red;
    border-top-color: transparent;
    padding: 8px 12px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: -3px 6px 10px rgb(0 0 0 / 10%);
    outline: none;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 44.99em) {
    #sidebar>.trigger_sidebar_mobile {
        display: inline-block;
    }
}


/*#sidebar li:not(:last-child) {*/
/*border-bottom: 3px solid #d1d1d1;*/
/*}*/

#sidebar li:not(:last-child) {
    border-bottom: 1px solid #262bd8;
}


#sidebar li {
    padding: 4px;
}

@media (max-width: 78.74em) {
    #sidebar li {
        padding: 0 6px;
    }
}


#sidebar a.active {
    color: #262bd8;
    text-transform: uppercase;
}

#sidebar a:hover {
    text-decoration: none;
}

#sidebar a {
    color: black;
    font-size: 11px;
    font-weight: 700;
    display: block;
    padding: 6px;
    text-align: center;
    text-transform: capitalize;
}

@media (max-width: 78.74em) {
    #sidebar a {
        font-size: 12px;
        padding: 14px 0;
    }
}


@media (max-width: 44.99em) {
    #sidebar ul {
        /*height: 100%;*/
        overflow-y: scroll;
        overflow-x: hidden;
    }
}


#sidebar.sidebar_mobile_open {
    transform: none;
    box-shadow: 6px 0 13px rgb(0 0 0 / 10%);
}

#sidebar.sidebar_mobile_open>.trigger_sidebar_mobile {
    background-color: red;
    border-color: transparent #ddd #ddd;
    color: white;
}


.product-section .col-md-4 {
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}


.content-disp .product-box hr {
    border-top: 1px solid black;
}



/* Hero Section */

.hero-sec {
    background-image: url('../img/children_day_2024_hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    /*background-color: #F00000;*/
    background-color: transparent;
    height: 512px;
    margin: 0 auto;
    background-size: cover;
    padding-top: 90px;
}

.hero-sec h1.spring-sale {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: initial;
    color: white;
}

.hero-sec h1:not(.spring-sale) {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 48px;
    line-height: 65px;
    color: #F00000;
    text-shadow: 2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    0px 2px 0 #fff,
    0px -2px 0 #fff,
    -2px 0px 0 #fff,
    2px 0px 0 #fff,
    4px 4px 0 #fff,
    -4px 4px 0 #fff,
    4px -4px 0 #fff,
    -4px -4px 0 #fff,
    0px 4px 0 #fff,
    0px -4px 0 #fff,
    -4px 0px 0 #fff,
    4px 0px 0 #fff,
    2px 4px 0 #fff,
    -2px 4px 0 #fff,
    2px -4px 0 #fff,
    -2px -4px 0 #fff,
    4px 2px 0 #fff,
    -4px 2px 0 #fff,
    4px -2px 0 #fff,
    -4px -2px 0 #fff;

}

.hero-sec .extra-text-with-shadows-colors {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: initial;
    color: #F00000;
    text-shadow: 2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    0px 2px 0 #fff,
    0px -2px 0 #fff,
    -2px 0px 0 #fff,
    2px 0px 0 #fff,
    4px 4px 0 #fff,
    -4px 4px 0 #fff,
    4px -4px 0 #fff,
    -4px -4px 0 #fff,
    0px 4px 0 #fff,
    0px -4px 0 #fff,
    -4px 0px 0 #fff,
    4px 0px 0 #fff,
    2px 4px 0 #fff,
    -2px 4px 0 #fff,
    2px -4px 0 #fff,
    -2px -4px 0 #fff,
    4px 2px 0 #fff,
    -4px 2px 0 #fff,
    4px -2px 0 #fff,
    -4px -2px 0 #fff;

}

.hero-sec .first-span-h2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    color: white;
}

.hero-sec .second-span-h2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 128px;
    color: #FDD42E;
    line-height: 174px;
    margin-top: -33px;
    text-shadow: 2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    0px 2px 0 #fff,
    0px -2px 0 #fff,
    -2px 0px 0 #fff,
    2px 0px 0 #fff,
    4px 4px 0 #fff,
    -4px 4px 0 #fff,
    4px -4px 0 #fff,
    -4px -4px 0 #fff,
    0px 4px 0 #fff,
    0px -4px 0 #fff,
    -4px 0px 0 #fff,
    4px 0px 0 #fff,
    2px 4px 0 #fff,
    -2px 4px 0 #fff,
    2px -4px 0 #fff,
    -2px -4px 0 #fff,
    4px 2px 0 #fff,
    -4px 2px 0 #fff,
    4px -2px 0 #fff,
    -4px -2px 0 #fff;
}

.hero-sec .third-span-h2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    color: white;
    line-height: 33px;
    padding-left: 15px;
    /*padding-right: 30px;*/
    word-break: break-word;
}

/*.hero-sec h3 {*/
/*font-family: 'Open Sans', sans-serif;*/
/*font-style: normal;*/
/*font-weight: 700;*/
/*font-size: 32px;*/
/*line-height: 44px;*/
/*color: #F00000;*/
/*}*/

/*.hero-sec h3 span {*/
/*font-family: 'Open Sans', sans-serif;*/
/*font-style: normal;*/
/*font-weight: 700;*/
/*font-size: 56px;*/
/*line-height: 76px;*/
/*color: #F00000;*/
/*}*/

.hero-sec .col-md-6 {
    padding-left: 7px;
    padding-right: 7px;
}

.hero-sec .header-logo {
    height: 35px;
}

.hero-sec .back-tosite-header {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding: 16px 32px;
    background: #F00000;
    border-radius: 10px;
    gap: 10px;
}

.hero-sec .back-tosite-header:hover {
    color: white;
    text-decoration: none;
}

.hero-sec .go-to-btn {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: black;
    font-weight: bolder;
    padding: 4px 32px;
    background: #ffe200;
    border: 1px solid #ffe200;
    border-radius: 29px;
    gap: 10px;
    z-index: 2;
    margin-right: 15%;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sec .go-to-btn:hover {
    color: #0f121f;
    background: #ffe200;
    border: 1px solid white;
    text-decoration: none;
}

.hero-sec .go-to-btn-phone {
    color: black;
    background: #ffe200;
    border: 1px solid #ffe200;
}

.hero-sec .go-to-btn-phone:hover {
    color: #0f121f;
    background: #ffe200;
    border: 1px solid white;
    text-decoration: none;
}

.multiple-substract {
    margin-top: -40px;
}

.box-design {
    border: 1px solid white;
    background: linear-gradient(0deg, #ffe200, #ffe200),
    linear-gradient(0deg, #ffe200, #ffe200);
    /*box-shadow: 6px 5px 52px 0px #ffe200;*/
    border-radius: 10px;
    height: 100%;
}

.multiple-substract h4 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #F00000;
    padding-top: 22px;
    padding-bottom: 10px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 0;
    min-height: 86px;
}

.multiple-substract p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    padding-left: 22px;
    padding-right: 22px;
}

.multiple-substract .col-md-3 {
    padding-right: 10px;
    padding-left: 10px;
}

.newsletter-css .box-borders {
    border: 1px solid #F00000;
    border-radius: 10px;
}

.newsletter-css .col-md-12 {
    padding-right: 10px;
    padding-left: 10px;
}

.newsletter-css .img-min-css {
    max-height: 396px;
}

.newsletter-css h2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F00000;
}

.pregatim-css h2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 33px;
    text-align: center;
    color: white;
}

.pregatim-css .nr-counter {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    /*font-size: 60px;*/
    /*line-height: 82px;*/
    text-align: center;
    color: #0f121f;
    display: block;
    /*padding: 14px 27px 0px 27px;*/
}

.pregatim-css .nr-counter-text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    /*font-size: 24px;*/
    /*line-height: 33px;*/
    text-align: center;
    color: #0f121f;
    display: block;
    /*padding-bottom: 15px;*/
    /*margin-top: -15px;*/
}

.counter-container .box-design {
    display: inline-block;
}

/*.nr-zile-box {*/
/*margin-right: 19px;*/
/*}*/

/*.nr-ore-box {*/
/*margin-right: 10px;*/
/*}*/

/*.nr-minute-box {*/
/*margin-right: 19px;*/
/*}*/

.go-to-btn-2 {
    background: transparent !important;
    font-weight: normal !important;
    color: white!important;
}

.go-to-btn-2:hover {
    background: white !important;
    color: #F00000!important;
    border: 1px solid white;
}

.extra-pads-text {
    padding-left: 10px !important;
    padding-right: 10px;
    margin-right: 200px;
    margin-top: -82px!important;
    padding-top: 100px;
    background-color: rgba(255, 255, 255, .7);
    padding-bottom: 83px;
}

.first-h1-typo {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 54px;

    background: linear-gradient(180deg, #FBFFFF 0%, #F00000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.first-span-typo {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 33px;

    background: linear-gradient(180deg, #FBFFFF 0%, #F00000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.second-h1-typo {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 44px;
    color: #F00000;
    text-transform: uppercase;
}

.second-span-typo {
    color: #FFFFFF;
}

.first-h3-typo {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #FFFFFF;
}

.first-h5-typo {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.mobile-hero-imgs {
    display: none;
}

.custom-text-dflex .comenzi-tel-style {
    margin-bottom: 0;
    line-height: 15px;
    font-size: 11px;
}
.custom-text-dflex .nr-tel-style {
    margin-bottom: 0;
    line-height: 20px;
    font-size: 18px;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {

    .margin-top-on-mobi {
        margin-top: -30px;
    }
    .time-to-be-in {
        margin-top: 0!important;
        font-size: 28px!important;
        line-height: initial!important;
        padding-top: 0px!important;
    }

    .hero-sec .second-span-h2 {
        line-height: initial;
        margin-top: 0px;
    }

    .hero-sec .header-logo {
        height: 35px;
    }

    .hero-sec .third-span-h2 {
        padding-right: 0px;
    }

    .extra-pads-text {
        padding-left: 0px!important;
        padding-right: 0px;
        margin-right: 0px;
        margin-top: -185px!important;
        padding-top: 230px;
        background-color: rgba(255, 255, 255, .7);
        padding-bottom: 50px;
    }

    .hero-sec .go-to-btn {
        padding: 5px 5px 0px 5px;
        width: 49%;
        font-size: 10px;
    }


    .go-to-btn span {
        display: block;
    }

    .mobile-links-order a {
        text-align: center;
    }

    .go-to-btn {
        margin-top: 10px;
    }

    .hero-sec .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile-hero-imgs {
        display: block;
    }
    .hero-sec {
        background-image: url('../img/children_day_2024_hero_mobile.jpg');
        background-repeat: no-repeat;
        background-position: center;
        /*background-color: #F00000;*/
        background-color: transparent;
        height: 378px;

        margin: 0 auto;
        background-size: contain;
        padding-top: 70px;
        margin-bottom: -70px;
    }

    .row.add-more-products {
        margin-left: -10px;
        margin-right: -10px;
    }

    body {
        /* background-color: #F00000; */
        /*background-image: url(../img/summer-black-friday-fixed-bg-empty.png);*/
        /* background-repeat: no-repeat; */
        /*background-attachment: scroll;*/
        /* background-attachment: fixed; */
        /* background-position: center center; */
        /* background-size: contain; */
        /* background-size: cover; */
        /*background-size: 500px;*/
    }

    .custom-text-dflex .comenzi-tel-style {
        margin-bottom: 0;
        line-height: 10px;
        font-size: 10px;
    }
    .custom-text-dflex .nr-tel-style {
        margin-bottom: 0;
        line-height: 20px;
        font-size: 12px;
        font-weight: bold;
    }
    .custom-text-dflex .nr-tel-comenzi-style{
        padding-top: 2px;
    }

    .header-logo {
        margin-top: 0 !important;
    }

    .hero-sec h1 {
        margin-bottom: 0px;
    }

    .hero-sec img {
        margin-bottom: 5px!important;
    }

    .hero-sec .extra-text-center {
        text-align: center;
    }

    .mobile-header-logo-and-text img,
    .mobile-header-logo-and-text span {
        margin: 0 auto;
        margin-right: auto!important;
    }

    .first-h5-typo {
        margin-bottom: 10px;
    }

    .first-h1-typo {
        font-size: 26px;
    }

}

@media only screen and (min-width: 768px) {
    .header-mob-img {
        display: none;
    }
}


@media only screen and (min-width: 769px) and (max-width: 992px) {
    .extra-pads-text {
        padding-left: 15px !important;
    }
}

/* Header Nav */


.bf-nav {
    display: flex;
    list-style: none;
    margin: 0 -5px 25px !important;
    position: relative;
}

.bf-nav li {
    padding: 0 15px !important;
    box-sizing: border-box;
}

.bf-nav a:hover {
    color: white;
    font-size: 18px;
    font-weight: bolder !important;
    text-decoration: none !important;
}

.bf-nav li.active a {
    background: white !important;
    color: #F00000 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: bolder !important;
    border: 1px solid #F00000;
}


.bf-nav a {
    background: #F00000;
    color: #FFF;
}

.bf-nav a {
    box-sizing: border-box;
    background: #F00000;
    padding: 9px 5px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
}


.bf-nav span {
    text-align: center;
}


.bf-nav.fixed {
    z-index: 3000;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
}

.users-counter.fixed {
    z-index: 3001;
    position: fixed;
    right: 3px;
    bottom: 0;
    display: block !important;
}

.users-counter.fixed span {
    box-sizing: border-box;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2 !important;
    color: #fff;
    padding: 9px 5px;
    width: 100%;
    height: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    background: #F00000;
    border: 1px solid white;
    border-radius: 10px;
}

#users-number {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2 !important;
    color: #fff;
    padding-left: 10px;
}

.bf-nav.fixed,
.bf-nav.fixed:before,
.bf-nav.fixed:after {
    background: #F00000;
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.35);
}

.bf-nav {
    padding-left: 0 !important;
}

.bf-nav a {
    border: 1px solid white;
    border-radius: 10px;
}

.header-nav {
    margin-top: -30px;
}


@media only screen and (min-width: 992px) {


    .bf-nav li {
        flex: 1;
    }

    .bf-nav.fixed {
        max-width: 1280px;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        padding-left: 5px !important;
        padding-right: 4px !important;
    }

    .bf-nav.fixed:before,
    .bf-nav.fixed:after {
        content: ' ';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .bf-nav.fixed:before {
        right: 100%;
    }

    .bf-nav.fixed:after {
        left: 100%;
    }

    .header-nav .container {
        padding-left: 10px !important;
        padding-right: 9px !important;
    }

    .bf-nav li:first-child {
        padding-left: 5px !important;
    }

    .bf-nav li:last-child {
        padding-right: 5px !important;
    }

}

@media only screen and (max-width: 991px) {
    .bf-nav {
        flex-wrap: wrap;
    }

    .bf-nav li {
        width: 33.333333%;
        margin-bottom: 8px !important;
    }

    .bf-nav.fixed {
        padding: 10px 10px 2px !important;
    }

    .bf-nav a {
        font-size: 15px !important;
    }
}

/* Products Section */

.product-box {
    background-color: white;
}

.product-box hr {
    border: 0;
    border-top: 1px solid black;
    width: 93%;
    margin-bottom: 0;
    /*display: none;*/
}

.product-link-hover {
    text-decoration: none;
}

.product-link-hover:hover {
    text-decoration: none!important;
}

.product-section .product-box {
    /*border: 1px solid black;*/
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.product-section .product-title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 22px;
    color: black;
    margin: 15px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    min-height: 88px;
}

.product-section .product-price-full {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: black;
    text-decoration: line-through black 1px;
    -webkit-text-decoration: line-through black 1px;

    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through;
    text-decoration-color: black;
    -webkit-text-decoration-color: black;
    text-decoration-thickness: 1px;
    -webkit-text-decoration-thickness: 1px;
}

.product-section .price-bf {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: black;
    margin-top: 10px;
}

.row.add-more-products {
    border: 2px solid white;
    border-radius: 13px;
    margin-bottom: 15px;
    background: #262bd8;
}

.product-section .product-price {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: black;
    line-height: 0px;
}

.triangle-produs {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: white;
}


.product-section .corner-triangle {
    display: block;
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 76px 76px 0 0;
    border-color: #F00000 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    color: white;
}

.product-section .corner-triangle .corner-triangle-text {
    position: relative;
    top: -48px;
    right: -13px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.product-section .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.extra-p-15 {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.add-to-cart-btn-campanie-simplu {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: black;
    font-weight: bolder;
    padding: 6px;
    background: #ffe200;
    border: 1px solid #ffe200;
    border-radius: 29px;
    gap: 10px;
    z-index: 2;
    /*text-transform: uppercase;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.add-to-cart-btn-campanie-simplu-border {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: black;
    font-weight: bolder;
    padding: 10px 25px;
    background: #ffe200;
    border: 1px solid #ffe200;
    border-radius: 29px;
    gap: 10px;
    z-index: 2;
    /* text-transform: uppercase; */
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-left: 15px;*/
    /*margin-right: 15px;*/
    /*margin-bottom: 15px;*/
}
.add-to-cart-btn-campanie-simplu-border:hover {
    background: #ffe200;
    color: black;
    border: 1px solid white;
}

.discount-info {
    display: flex;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: -50px;
}

.discount-circle {
    z-index: 2;
    display: inline-flex;
    background-color: #ffe200;
    font-weight: 900;
    color: black;
    border-radius: 50%;
    padding: 10px; /* Adjust the padding to control the size of the circle */
    /*text-align: left;*/
    flex-direction: column; /* Stack the rows vertically */
    width: 55px;
    height: 55px;
    padding-left: 9px;
    justify-content: center;
    text-align: center;
}


.add-to-cart-btn-campanie-simplu:hover {
    text-decoration: none;
    color: black;
}

.cat-title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 44px;
    text-transform: capitalize;
    color: white;
    margin-bottom: 0;
}

.cat-img {
    height: 50px;
}

.text-center-mobi .col-md-5 {
    padding-right: 0;
}

.text-center-mobi .col-md-6 {
    padding-right: 0;
}

.margin-pad-1-px {
    margin: 1px;
    padding: 1px;
}

.cart-sep-container {
    position: relative;
    display: inline-block;
}

.cart-sep-icon {
    width: 50px; /* Set the width and height to match your image dimensions */
    height: 50px;
    background: url('../img/shopping-cart-white.png') no-repeat center center;
    background-size: cover;
}

.cart-sep-count {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background-color: orange; /* Change the background color to orange */
    color: white;
    border-radius: 50%;
    width: 30px; /* Adjust the width and height to create a perfect circle */
    height: 30px;
    text-align: center; /* Center the text horizontally */
    line-height: 30px; /* Center the text vertically */
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .text-center-mobi {
        text-align: left !important;
    }

    .text-center-mobi .col-md-5 {
        padding-right: 15px;
    }

    .text-center-mobi .col-md-6 {
        padding-right: 15px;
    }

    .cat-title {
        font-size: 18px;
        line-height: initial;
    }
    .extra-p-15 {
        padding-bottom: 5px;
    }
    .custom-text-image {
        padding-top: 5px;
    }

    .hero-sec .go-to-btn {
        margin-right: 0;
    }

    .dis-cat-on-mobi-alig-one {
        justify-content: center!important;
        padding-top: 20px!important;
        padding-bottom: 10px!important;
    }
    .dis-cat-on-mobi-alig-two {
        justify-content: center!important;
        padding-top: 10px!important;
        padding-bottom: 20px!important;
    }
    .dis-cat-on-mobi-alig-pads {
        padding: 0!important;
    }
}

/* Footer Section */

.footer-section .footer-hr {
    height: 10px;
    background: #F00000;
    display: none;
}

.footer-section {
    background: black;
}

.facebook-img {
    padding-top: 25px;
    padding-right: 5px;
    padding-bottom: 25px;
}

.instagram-img {
    padding-top: 25px;
    padding-right: 10px;
    padding-bottom: 25px;
}

.youtube-img {
    padding-top: 25px;
    padding-right: 5px;
    padding-bottom: 25px;
}

.logo-img:hover,
.footer-hov:hover,
.facebook-img:hover,
.instagram-img:hover,
.youtube-img:hover {
    cursor: pointer;
}

.footer-section .col-md-3 {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer-section h5 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.footer-section .h5-line {
    height: 3px;
    width: 60px;
    background: #ffe200;
    margin-top: 5px;
    margin-left: 0;
}

.footer-section a {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 4px;
}


@media only screen and (max-width: 767px) {
    .footer-section .logo-img {
        max-height: 70px;
    }

    .footer-section .footer-col-extra-padd {
        margin-bottom: 20px;
    }

    .footer-section .extra-text-center {
        text-align: center;
    }

    .footer-section .h5-line {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Pagination */

.paging-process {
    background: ;
    border: 1px solid white;
    border-radius: 10px;
    padding: 9px 5px;
}
.view-more-btn {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 4px;
}
.progress-bar {
    background-color: #F00000;
}
.pag-btn .paging-process .pag-text,
.pag-btn .paging-process .pag-nr {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    color: white;
}
.pag-btn:hover {
    text-decoration: none;
    font-weight: bolder;
}

#Moped-Harley-Electric img.position-absolute {
    max-height: 298px;
}

#Electric-Moped---Harley- img.position-absolute {
    max-height: 298px;
}

#SB50 img.position-absolute {
    max-height: 298px;
    height: 100%;
    object-fit: contain;
}

#Mopeduri-si-Choppere-Electrice img.position-absolute {
    max-height: 298px;
    height: 100%;
    object-fit: contain;
}

.text-font-test {
    font-family: 'eximageometric', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    color: white;
}

@media (max-width: 44.99em) {
    .hero-sec .go-to-btn {
        margin-left: 0;
        padding-bottom: 5px;
    }
}

.hero-p-font {
    font-family: 'eximageometric';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #FFFFFF;
}

.hero-cols-header {
    /*	font-family: 'Open Sans';*/
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FDD42E;
    padding-bottom: 8px;

    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 52px;
}

.hero-cols-text {
    /*	font-family: 'Open Sans';*/
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    /*text-transform: uppercase;*/
    color: #ffffff;
}

.hero-cols-subheader {
    /*	font-family: 'Open Sans';*/
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #F00000;
    background: #FDD42E;
    padding: 12px;
}

.set-flex-here {
    display: flex;
    justify-content: center;
    align-items: center;
}

.extra-desk-space-number {
    padding-left: 55px;
    margin-top: 50px;
}
.extra-desk-space-hero {
    padding-left: 160px;
}
.extra-desk-space-hero-image {
    margin-top: 50px;
    margin-bottom: 50px;
}
.destop-padding-left-zero {
    padding-left: 0px;
}

@media (max-width: 44.99em) {
    .hero-p-font {
        font-size: 10px;
    }
    .hero-cols-subheader {
        font-size: 14px;
    }
    .hero-cols-header {
        font-size: 9px;
        line-height: initial;
        min-height: 30px;
    }
    .hero-cols-text {
        font-size: 9px;
        line-height: initial;
        margin-bottom: 5px;
    }
}

.pulse-and-shake-animation button:hover {
    animation: pulseShake 0.75s infinite;
    animation-timing-function: linear;
}

@keyframes pulseShake {
    0% { transform: scale(1) rotate(5deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1) rotate(5deg); }
}