:root {
    --font-jost: "Open Sans", sans-serif !important;
    --heading-weight: 400 !important;
    --checkout-button-font: "Barlow Condensed", sans-serif !important;
    --checkout-button-weight: 500;
    --checkout-button-letter-spacing: 4px;
    --checkout-button-font-size: 20px;

}

#overlay {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(210, 171, 103, 0.5); /* semi-transparent background */
    z-index: 50; /* Lower z-index to be below the popup */
    pointer-events: none; /* Makes sure the overlay doesn't block interactions */
}

.gdpr-active #overlay{
	display: block;
}

#gdpr_cn-notice-text{
	margin-top: 50px;
}

#gdpr_cookie-notice:before {
align-items: center;
background: #D2AB67 url(/data/images/gladiator/cookies.png) no-repeat;
background-position: 50%;
background-size: 50px;
border: 8px solid #fff;
border-radius: 100%;
content: "";
display: block;
display: flex;
height: 104px;
justify-content: center;
position: absolute;
top: -60px;
width: 104px;
z-index: 11;
left: 50%;
margin-left: -52px;
}

.select2-container span.selection{
	display: block !important;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-container{
	z-index: 1000000;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  line-height: 40px;
  cursor: pointer !important;
  background: #ffffff;
}

.select2-dropdown{
	border: #eeeeee solid 1px;
	margin-top: -20px;
	background-color: #ffffff;
}

#gdpr_cookie-notice {
  display: block;
  visibility: hidden;
  position: fixed;
  min-width: 300px !important;
  height: auto;
  z-index: 100000;
  font-size: 13px;
  line-height: 20px;
  left: 50% !important;
  text-align: center;
  color: #000 !important;
  background-color: #fff !important;
  visibility: visible;
  top: 50% !important;
  width: 300px !important;
  border: #fff solid 1px;
  border-radius: 20px;
  margin-left: -150px;
  margin-top: -125px;
  }

 .gdpr_cn-bottom {
  bottom: auto !important;
}

.second_part{
	margin-top: 20px;
}

#gdpr_cookie-notice .gdpr_cn-button{
	padding: 10px 20px !important;
}

#gdpr_cn-refuse-cookie{
	display: none !important;
}

.designer_text_3_photo_1 {
    background: #3a4557;
    padding: 50px 100px;
}

.designer_text_3_photo_1 h2 {
    color: #fff;
    margin-bottom: 20px;
}

.designer_text_3_photo_1 p {
    color: #fff;
}

.table-wrapper {
    padding: 0px !important;
    margin: 0px !important;
    box-shadow: none !important;
    width: 100%;
    overflow-x: auto;
}

.slideshow .slide {
    position: relative;
    text-align: center;
}

.blockquote {
    transform: translate(-50%, -50%);
    top: 50%;
    position: relative;
    left: 50%;
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

#scroll-down-indicator {
    position: fixed;
    bottom: 10px; /* Adjust according to your design */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#scroll-down-indicator img {
    width: 50px; /* Adjust the size of the arrow image/icon */
    height: auto;
}


.table-wrapper table {
    border-collapse: collapse;
}

.primary__btn {
    background: #ff1654 !important;
}

.btn-1 {
    background-color: #06d6a0 !important;
}

.btn-2 {
    background-color: #ff1654 !important;
}

.price_tax {
    margin-top: 20px;
    font-size: 12px;
}

.btn-3 {
    background-color: #337ca0 !important;
}

.designer_column_one table {
    width: 100%;
    margin-bottom: 20px;
}

.designer_column_one table tr {
    height: 40px;
}


.designer_column_one table thead td {
    background-color: #b89f64;
    padding: 2px 10px;
    font-size: 18px;
    color: #fff;
}

.designer_column_one table tbody td {
    border: #b89f64 solid 1px;
    padding: 2px 10px;
}

.designer_column_one table tr td:nth-child(2),
.designer_column_one table tr td:nth-child(3) {
    text-align: right;
}

.designer_column_one table tbody tr:nth-child(odd) {
    background-color: white;
}

.designer_column_one table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}


.femmediva_site, .femmediva_site body {
    font-family: 'Montserrat', sans-serif;
}

.main__logo {
    margin: 0px auto;
}

.main__logo--img {
    max-width: 300px;
}

.container-fluid {

    --offset-fluid: 3rem !important;

}

@if $enable-transitions {
    @keyframes progress-bar-stripes {
        from {
            background-position: $ progress-height 0;
        }
        to {
            background-position: 0 0;
        }
    }
}

.progress {
    display: flex;
    height: $ progress-height;
    overflow: hidden;
/ / force rounded corners by cropping it line-height: 0;
    @include font-size($progress-font-size);
    background-color: $ progress-bg;
    @include border-radius($progress-border-radius);
    @include box-shadow($progress-box-shadow);
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: $ progress-bar-color;
    text-align: center;
    white-space: nowrap;
    background-color: $ progress-bar-bg;
    @include transition($progress-bar-transition);
}

.progress-bar-striped {
    @include gradient-striped();
    background-size: $ progress-height $ progress-height;
}

@if $enable-transitions {
    .progress-bar-animated {
        animation: progress-bar-stripes $ progress-bar-animation-timing;

        @if $enable-prefers-reduced-motion-media-query {
            @media (prefers-reduced-motion: reduce) {
                animation: none;
            }
        }
    }
}

.progress {
    margin-top: 20px;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    width: 80%;
}

.progress-bar {

    background-color: rgb(248, 40, 90);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    border-radius: 15px;
    box-shadow: 0 3px 3px -5px rgb(248, 40, 90), 0 2px 5px rgb(248, 40, 90);
    transition: width 0.6s ease;
}

.progress-bar-striped {
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}


.slideshow {
    margin-top: -50px;
}


.slideshow .slideshow-container {
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
    background-color: #FF9575;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slideshow .slide {
    display: none;
    text-align: center;
}

.slideshow .fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.slideshow .pagination {
    text-align: center;
    margin-top: 20px;
}

.slideshow .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slideshow .active, .dot:hover {
    background-color: #717171;
}

@media only screen and (max-width: 767px) {
    .table-wrapper table td {
        font-size: 12px;
    }

    .slideshow {
        margin-top: 0px;
    }

    .product-subtitle {
        margin-top: 20px !important;
    }

    .benefits {
        margin-top: 20px;
    }
}


@media only screen and (min-width: 1800px) {
    .container-fluid {
        max-width: 1800px;
    }
}

.mt-3 {
    margin-top: 50px;
}

.bg_header {
    background: linear-gradient(to bottom, #FAC7B8, white);
}

.femmediva_style .main__header {
    background: #FAC7B8;
}

.product-title {

    font-size: 2rem;
    font-weight: bold;
}

.product-subtitle {
    font-size: 20px;
    font-weight: 100;
    color: #000;
    margin: 0px;
}

.star-rating {
    color: #FFA500;
    margin-bottom: 20px;
}

.benefits li {
    line-height: 30px;
}

.benefits {
    color: #000;
    font-weight: 100;
}

.btn-order {
    background-color: #2CBA6A;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    margin: 20px 0px;
    border-radius: 10px;
}


.btn-order:hover {
    background-color: #b89f64;
    color: white;
}


.availability, .availability p {
    color: #333;
    margin-bottom: 5px;
    font-weight: 100
}

.availability, .availability p strong {
    color: rgb(248, 40, 90);
    font-weight: 700;
}

.review p {
    font-style: italic;
    color: #fff;
    font-weight: 700;
}

.review-author {
    font-weight: 400;
    color: #ffffff;
}

.section-packages {
    background-color: #b89f64;
    padding: 10px;
    color: #FFF;
}

.section-packages .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 35px;
}

.section-packages .package-card {
    transition: transform 0.3s ease;
}

.section-packages .col-md-4 {
    position: relative;
    z-index: 1;
}

.section-packages .col-md-4 {
    margin-bottom: 20px;
}

.section-packages .middle-card .package-card {
    background-color: #fff;
}

.section-packages h2 {
    margin-top: 25px;
}


.section-packages .col-md-4:first-child {
    margin-right: 0px;
}

.section-packages .col-md-4:last-child {
    margin-left: 0px;
}

.section-packages .middle-card {
    transform: scale(1);
    z-index: 0;
}

.promo-section.promo3 h2 {
    color: #b89f64;
}

.accordion-button {
    font-weight: 900 !important;
}

.accordion__items--button__span {
    font-weight: 500;
}

@media (min-width: 768px) {

    .info-section {
        background-color: #fff;
        color: #000;
        padding: 80px;
        text-align: center;
    }

    .promo-section {
        background-color: #b89f64;
        color: #FFF;
        padding: 80px;
    }


    .promo-section.promo3 {
        background-color: rgba(250, 160, 205, 0.32);
        color: #FFF;
        padding: 80px;
    }


    .section-packages h2 {
        margin-top: 15px;
    }

    .section-packages .row {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        margin-top: 95px;
    }


    .section-packages {
        background-color: #b89f64;
        padding: 80px;
        color: #FFF;
    }

    .section-packages .col-md-4:first-child {
        margin-right: -20px;
    }

    .section-packages .col-md-4:last-child {
        margin-left: -20px;
    }

    .section-packages .middle-card {
        transform: scale(1.1);
        z-index: 3;
    }
}

.package-details {
    font-size: 12px;
    font-weight: 900;
}

.package-card {
    background-color: #FDF9F4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.package-card {
    background-color: #FDF9F4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.package-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    font-size: 30px;
    margin-top: 40px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0px;
}

.discount-badge {
    background-color: rgb(248, 40, 90);
    color: white;
    border-radius: 10px;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 15px;
}

.final-price {

    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0px;
}

.shipping {
    color: var(--text-gray-color);
    font-size: 15px;
}

.shipping-free {
    color: #35936c;
}

.product, .final-price s {
    color: #444;
    font-size: 15px;
    font-weight: 100;
}

.text-danger {
    color: rgb(248, 40, 90);
    font-size: 15px;
    margin: 0px;
}

.badge-popular {
    background-color: #FFA500;
    color: white;
    padding: 0.2rem 20px;
    font-size: 17px;
    border-radius: 10px;
    position: absolute;
    text-transform: uppercase;

    transform: translate(-50%, -50%);
    top: 0px;

}

.badge-savings {
    background-color: #FF6347;
    color: white;
    padding: 0.2rem 20px;
    font-size: 17px;
    border-radius: 10px;
    text-transform: uppercase;
    position: absolute;

    transform: translate(-50%, -50%);
    top: 0px;
}

.info-section {
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
}

.info-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 40px;
}

.info-section p {

    font-size: 16px;
    color: #555;
    font-weight: 400;
}

.info-section .certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.info-section .certifications img {
    max-width: 100px;
    margin: 0 1rem;
}

.promo-section {
    background-color: #b89f64;
    color: #FFF;
    padding: 10px;
}

.promo-section h2 {
    margin-top: 20px;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 40px;
}

.promo-section p {
    font-size: 16px;
    color: #000;
}

.btn-order {
    background-color: #000;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.promo-section .rating {
    color: #ccc;
    font-size: 15px;
}

.promo-section .rating .stars {
    color: #FFA500;
    font-size: 15px;
}

.testimonial {
    position: relative;
    background-color: #FFF;
    border-radius: 10px;
    color: #333;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem;
}

.testimonial img {
    border-radius: 50%;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 150px;
    margin-top: 2rem;
}

.secondary__btn {
    background: #c4c4c4 !important;
}

.custom-footer-gladiator {
    min-height: 200px;
}

a {
    text-decoration: underline !important;
}


/*TIMI STYLING*/

html {
    width: 100vw;
    height: 100vh;
    --header-height: 250px;
    font-family: 'Helvetica Neue LT Pro';
    --base-orange: #fc6a03;
    --base-gold: #dbb05c;
    --gold-light: #F2E6D2;
    --body-font-size: 15px !important;
    --body-line-height: 20px !important;
}

.header {
    width: 100%;
    height: auto;
    position: relative;
}

.header-img {
    max-height: 250px;
    width: 100%;
    /*position: absolute;*/
    /*z-index: -1;*/
}

.header-img img {
    object-fit: cover;
    width: 100%;
    max-height: var(--header-height);
}

.header-text {
    position: absolute;
    left: 13%;
    top: 32%;
}

.header-text h2 {
    color: white;
    margin: 0;
    font-size: 65px;
    font-family: 'pirulen';
}

@media screen and (max-width: 991px) {
    .gladiator_site h2 {
        font-size: 30px;
    }
    .gladiator_site .container-fluid{
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .gladiator_site p,
    .gladiator_site li{
        font-size: 17px;
    }
    .custom-black-header {
        min-height: 70px !important;
    }

    .gladiator_site .main__logo--img {
        max-width: 200px;
    }

    .gladiator_site .quantity-counter .qw_quantity {
        max-width: 50px !important;
    }

    .gladiator-site .designer_text_photo .photo-edge-left{
        left: 0;
    }
}

.custom-black-header {
    min-height: 150px;
    background-image: url(/data/images/gladiator/gladiator_menu_bg.png);
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.gladiator-site .container,
.gladiator-site .container-fluid {
    /*padding-left: 70px !important;
    padding-right: 70px !important;*/
    --offset-fluid: unset !important;
}

.gladiator_site .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .gladiator_site .container-fluid {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .gladiator_site .container-fluid {
        width: 970px;
    }
    .gladiator_site p {
        font-size: 20px;
    }

    .gladiator_site .designer_text_photo .photo-overflow .photo-side {
        height: 100%;
        min-height: 350px;
    }
}

@media (min-width: 1200px) {
    .gladiator_site .container-fluid {
        width: 1170px;
    }
}

.gladiator_site p {
    color: #000;
}

.gladiator_site h1, .gladiator_site h2, .gladiator_site h3, .gladiator_site h4, .gladiator_site h5, .gladiator_site h6 {
    font-weight: var(--heading-weight);
    line-height: normal;
}

.checkout-button button,
.checkout-button a {
    font-family: var(--checkout-button-font);
    font-weight: var(--checkout-button-weight);
    letter-spacing: var(--checkout-button-letter-spacing);
    font-size: var(--checkout-button-font-size);
}

.primary__btn{
    background-color: var(--base-orange) !important;
}

.gladiator_site .footer__bottom * {
    color: #fff;
    font-size: 15px;
}

/*
@media only screen and (max-width: 767px) {

    .gladiator_site .row {

        margin-right: -30px;

        margin-left: -30px;

    }

    .gladiator_site .row > * {

        padding-right: 30px;

        padding-left: 30px;

    }

}

@media only screen and (max-width: 479px) {

    .gladiator_site .row {

        margin-right: -30px;

        margin-left: -30px;

    }

    .gladiator_site .row > * {

        padding-right: 30px;

        padding-left: 30px;

    }
}
*/

.gladiator_site .coupon__code--field__btn,
.gladiator_site .return-button{
    background-color: #ccc !important;
}

.gladiator_site .cart__summary{
    padding: 10px;
    box-shadow: unset;
}
