:root {
    --main-color: #000;
    --accent-color: #EBCC71;
    --accent-color-2: #E2BB46;
    --font-color: #fff;
    --font-color-gray: #BEBEBE;
    --background-color: #191919;
    --background-color-select: #626262;
    --background-slide-color: #343434;
    --background-slide-review-color: #565656;
    --background-slide-btn: #A48A3C;
    --background-slide-btn-border: #CBA350;
    --background-circle: #E5C469CC;
    --background-circle-after: #E5C469;
    --background-select-color: #464646;
    --background-bullet-swiper: #6C6C6C;
    --background-border-footer: #E7C56A;
    --transition-duration: 0.3s;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
}
html{
    font-size: 62.5%; /* 62.5% от 16px ≈ 10px */
}
body{
    font-family: "Mukta Malar", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem; /* 16px */
    background-color: var(--background-color);
    color: var(--font-color)
}
img{
    display: inline-block;
    max-width: 100%;
    height: auto;
}
h2{
    margin: auto;
    color: var(--font-color);
    font-size: 26px;
    text-align: center;
}
.icon{
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.container{
    display: flex;
    flex-wrap: wrap;
    /*flex-flow: column;*/
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}
.container-full{
    padding: 0;
}
.header{
    position: relative;
    z-index: 2;
    height: 92px;
    background-image: url("../images/bg.png");
    background-size: 20px;
}
/*.header::after{*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    height: 2px;*/
/*    background: var(--accent-color);*/
/*    filter: blur(2px);*/
/*}*/

.header::after, .section-line {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 1px;
    background: #B58700;
    filter: blur(1px);
}

.section-line {
    bottom: auto;
    top: 0;
}

.header .container{
    justify-content: center;
}
.header__logo{
    width: 126px;
    margin-top: 6px;
}
.hero video{
    width: 100%;
    min-height: 180px;
    border: none;
    max-height: 800px;
    object-fit: cover;
    transform: none;
    object-position: center;
}
.our-vehicles{
    position: relative;
    padding: 30px 0px 35px 0px;
}
.our-vehicles::after{
    content: '';
    position: absolute;
    display: block;
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    bottom: 0;
    filter: blur(40px);
    left: -40px;
    z-index: 999;
}
.our-vehicles::before{
    content: '';
    position: absolute;
    display: block;
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    top: 18%;
    filter: blur(40px);
    right: 20%;
}
.our-vehicles-slider{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}
.our-vehicles-slider .swiper-wrapper{
    padding-bottom: 10px;
}
.icon-baggage{
    width: 13px;
    height: 13px;
    background-image: url("../images/baggage.svg");
}
.icon-user{
    width: 13px;
    height: 13px;
    background-image: url("../images/user.svg");
}
.vehicle-slide{
    position: relative;
    /* width: 172px;
    height: 205px; */
    border-radius: 7px;
    background-color: var(--background-slide-color);
}
.vehicle-slide-box{
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--background-slide-color);
    border: 1px solid transparent;
    border-radius: 7px;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
}
.vehicle-slide::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--accent-color), var(--main-color));
    border-radius: 7px;
}
.vehicle-slide-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 180px;
    /* height: auto; */
}
.vehicle-slide-image img{
    /*max-height: 100%;*/
    max-height: 90%;
    transform: scale(1.05);
    margin: 15px 0 15px -30px;
}
.sws-main-image-wrapper {
    width: 100%;
    margin-bottom: -15vw;
}
.sws-main-image-wrapper img {
    width: 100%;
    max-width: none;
}
.vehicle-slide-image img.vehicle-slide-image-primary{
    display: block;
}
.vehicle-slide-image img.vehicle-slide-image-selected{
    display: none;
}
.vehicle-slide-description{
    display: block;
    padding: 5px 13px 13px 10px;
}
.vehicle-slide-title{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: var(--accent-color);
}
.vehicle-slide-details{
    display: flex;
    width: 100%;
    align-items: center;
    margin: 5px 0 10px 0;
}
.vehicle-slide-item{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.vehicle-slide-item span{
    margin-left: 4px;
    font-size: 13px;
    color: var(--font-color-gray);
}
.vehicle-slide-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vehicle-slide-price{
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
}
.btn-book-now-vehicle{
    display: inline-block;
    padding: 6px 11px 4px 11px;
    background-color: var(--background-slide-btn);
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 41px;
    color: var(--font-color);
    font-size: 12px;
    font-weight: 700;
}
.swiper-slide{
    transition: var(--transition-duration);
}
.swiper-slide:not(.swiper-slide-active){
    transform: scale(0.9);
}
.section-calculator{
    position: relative;
    padding: 30px 0px;
    background-image: url("../images/bg.png");
    background-size: 20px;
}
.section-calculator::after{
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 40%;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    bottom: 6%;
    left: 0;
    right: 0;
    margin: auto;
    filter: blur(40px);
}
.section-calculator::before{
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 40%;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    top: 6%;
    left: 0;
    right: 0;
    margin: auto;
    filter: blur(40px);
}

.section-calculator h2{
    position: relative;
    color: var(--accent-color);
}
.calculator{
    display: block;
    position: relative;
    margin: 15px auto;
    border-radius: 7px;
    background-color: var(--background-slide-color);
    /* max-width: 264px; */
    max-width: 750px;
    width: 90%;
}
.calculator-box{
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    /*height: 100%;*/
    padding: 25px 20px;
    background-color: var(--background-slide-color);
    border: 1px solid transparent;
    border-radius: 7px;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
}
.calculator::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--accent-color), var(--main-color));
    border-radius: 7px;
}
.calculator__title{
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--background-slide-btn-border);
}
.calculator-box label{
    display: inline-block;
    margin: 20px 0px 8px 0px;
    color: var(--font-color-gray);
    font-size: 16px;
    font-weight: 300;
}
input[type="date"],
input[type="time"] {
    display: block;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 9px 0px 8px 7px;
    width: 100%;
    color: var(--font-color-gray);
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    background-color: var(--background-select-color);
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 2.5px;
}

.calculator-box input:not([type="checkbox"]), .calculator-box textarea {
    display: block;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 9px 0px 8px 7px;
    width: 100%;
    color: var(--font-color-gray);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    background-color: var(--background-select-color);
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 2.5px;
}
.calculator-box input::placeholder{
    color: var(--font-color-gray);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}
#trip-date, .trip-date{
    padding-left: 27px !important;
    background-image: url("../images/date.svg");
    background-position: left 7px center;
    background-repeat: no-repeat;
}
#trip-time, .trip-time{
    padding-left: 27px !important;
    background-image: url("../images/time.svg");
    background-position: left 7px center;
    background-repeat: no-repeat;
}
#trip-location, .trip-location{
    padding-left: 27px !important;
    background-image: url("../images/location.svg");
    background-position: left 7px center;
    background-repeat: no-repeat;
}
#trip-airport, .trip-airport{
    padding-left: 27px !important;
    background-image: url("../images/local.svg");
    background-position: left 7px center;
    background-repeat: no-repeat;
}
.calculator-box input+input{
    margin-top: 15px;
}
select, option{
    -webkit-appearance: none;
}
.calc-select-wrapper{
    position: relative;
    display: block;
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 2.5px;
}
.calc-select-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 100%;
    border-left: 1px solid var(--background-slide-btn-border);
    border-radius: 2.5px;
    background-color: var(--background-color-select);
    background-image: url("../images/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.calc-select-wrapper select{
    display: block;
    position: relative;
    padding: 11px 7px;
    width: 100%;
    color: var(--font-color-gray);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    text-transform: capitalize;
    background-color: var(--background-select-color);
    border-color: transparent;
}
/*TODO*/
.calculator-box button{
    /*display: block;*/
    /*width: 100%;*/
    /*padding: 9px 20px;*/
    /*margin-top: 25px;*/
    /*text-align: center;*/
    /*background-color: var(--background-slide-btn);*/
    /*border: 1px solid var(--background-slide-btn-border);*/
    /*border-radius: 2.5px;*/
    /*color: var(--font-color);*/
    /*font-size: 1.5rem;*/
    /*font-weight: 700;*/
}
/* .our-vehicles-pagination{
    display: flex;
    margin: auto;
    justify-content: center;
    position: relative;
    align-items: center;
    margin-top: -10px;
} */
.our-vehicles-pagination .swiper-pagination-bullet{
    display: inline-block;
    position: relative;
    width: 7px;
    height: 7px;
    background-color: var(--background-bullet-swiper);
    opacity: 1;
    transition: var(--transition-duration);
}
.our-vehicles-pagination .swiper-pagination-bullet::after{
    display: none;
}
.our-vehicles-pagination .swiper-pagination-bullet-active{
    margin: 10px;
    background-color: var(--background-slide-btn-border);
}
/* .our-vehicles-pagination .swiper-pagination-bullet-active::after{
    content: '';
    position: absolute;
    display: block;
    left: -4px;
    top: -4px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 50%;
    background-color: transparent;
    filter: blur(1px);
} */

.reviews{
    position: relative;
    z-index: 2;
    /* padding: 30px 0px; */
    background-image: url("../images/bg.png");
    background-size: 20px;
}

.reviews::after{
    content: '';
    position: absolute;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    bottom: -14%;
    filter: blur(30px);
    left: 0;
    right: 0;
    margin: auto;
}
.reviews::before{
    content: '';
    position: absolute;
    display: block;
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background-color: var(--background-circle);
    opacity: 0.8;
    top: 20%;
    filter: blur(30px);
    right: 15%;
}

.reviews h2{
    position: relative;
    color: var(--accent-color);
    padding: 0px 26%;
}
.reviews-slider-wrapper {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}
.reviews-slider{
    width: 100%;
    /*padding: 0 5%;*/
    margin-top: 25px;
    margin-top: 20px;
    padding-bottom: 20px;
}
.reviews-slider .swiper-wrapper{
    padding: 20px 0;
}
.review-slide{
    position: relative;
    /* width: 234px; */
    /* height: 179px; */
    border-radius: 7px;
    background-color: var(--background-slide-review-color);
    transition: var(--transition-duration);
    margin-bottom: 20px;
}
.review-box{
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    /* height: 100%; */
    padding: 17px 13px;
    background-color: var(--background-slide-review-color);
    border: 1px solid transparent;
    border-radius: 7px;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
}
.review-slide::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--accent-color), var(--main-color));
    border-radius: 7px;
}
.review-header{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.reviewer-name{
    display: inline-block;
    padding-bottom: 3px;
    color: var(--font-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 1px solid var(--font-color);
}
.reviewer-job{
    display: inline-block;
    padding-top: 3px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--font-color-gray);
}
.review-header__photo-rating{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin-top: -35px;
}
.reviewer-photo{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(180deg, var(--accent-color), var(--main-color));
    border-radius: 52px;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
    margin-bottom: 12px;
}
.reviewer-photo img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.review-rating{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.review-rating-score{
    display: inline-block;
    margin-right: 3px;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--font-color);
}
.review-rating-stars{
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url("../images/star.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 3px;
    margin-top: -2px;
}
.review-body{
    display: block;
    margin-top: 10px;
}
.review-body p{
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--font-color-gray);
    line-height: 1.7;
}
.reviews-slider-pagination{
    display: flex;
    margin: auto;
    justify-content: center;
    position: relative;
    align-items: center;
    margin-top: 0px;
}
.reviews-slider-pagination .swiper-pagination-bullet{
    display: inline-block;
    position: relative;
    width: 7px;
    height: 7px;
    background-color: var(--background-bullet-swiper);
    opacity: 1;
    transition: var(--transition-duration);
}
.reviews-slider-pagination .swiper-pagination-bullet-active{
    margin: 10px;
    background-color: var(--background-slide-btn-border);
}
/* .reviews-slider-pagination .swiper-pagination-bullet-active::after{
    content: '';
    position: absolute;
    left: -4px;
    top: -4px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--background-slide-btn-border);
    border-radius: 50%;
    background-color: transparent;
    filter: blur(1px);
} */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 60px;
}
.company-info{
    position: relative;
    padding: 10px 0;
    z-index: 3;
    /*background-image: url("../images/bg-wood.jpg");*/
    /*background-image: url("../images/gold_bg.png");*/
    background-image: url("../images/gold_bg.jpeg");
    background-size: cover;
}
.company-info-box{
    display: block;
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.company-info-box span{
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1%;
    color: var(--font-color);
    text-shadow: 0px 4px 4px #00000057;
}
.company-info-box p{
    display: block;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--font-color);
    text-shadow: 0px 4px 4px #00000057;
}
.company-info-box::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 64px;
    height: 2px;
    background-color: var(--font-color);
    box-shadow: 0px 4px 4px #00000057;
}
.company-info-box:last-of-type::after{
    display: none;
}
.denver-elite{
    position: relative;
    overflow: hidden;
    padding: 30px 0px 25px 0px;
}
.denver-elite__images{
    width: 100%;
    position: relative;
}
.denver-elite__city{
    width: 100%;
    max-width: 90%;
    margin-left: 10%;
    position: absolute;
}
.denver-elite__cars{
    position: relative;
    top: 10%;
    transform: scale(1.5);
    margin-left: 3%;
}
.denver-elite__title{
    color: var(--accent-color-2);
    font-size: 72px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0px 5px 5px #000000ba;
    width: 100%;
    margin-top: 0px;
}
.denver-elite__sub-title{
    width: 100%;
    font-weight: 700;
    font-size: 96px;
    color: var(--accent-color);
    opacity: 0.5;
    text-align: center;
    margin-bottom: 10px;
}
.denver-elite::after{
    content: '';
    position: absolute;
    z-index: 2;
    background-color: var(--background-circle-after);
    width: 42%;
    height: 5%;
    border-radius: 35px;
    filter: blur(61px);
    margin: auto;
    top: 64%;
    left: 0;
    right: 0;
    display: none;
}
.items-slider .swiper-slide {
    transform: none !important;
}
.items-slider {
    margin: 24px auto 32px;
}
.denver-elite__text{
    width: 100%;
    padding: 0px 10%;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--font-color-gray);
}
.footer{
    padding: 0px 0px 20px 0px;
}
.footer .container{
    justify-content: center;
}
.footer p{
    width: 100%;
    text-align: center;
}
.footer .footer__privacy{
    display: inline-block;
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--accent-color-2);
    margin-bottom: 25px;
}
.footer .footer__privacy::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color-2);
}
.footer__phone, .footer__email{
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.icon-phone, .icon-email{
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
.icon-phone{
    background-image: url("../images/phone.svg");
}
.icon-email{
    background-image: url("../images/email.svg");
}
.footer__text{
    padding-top: 25px;
    color: var(--accent-color-2);
    font-size: 1.6rem;
    font-weight: 700;
}
.footer__logo{
    width: 126px;
    position: relative;
    margin-top: 20px;
}
.footer__logo::before{
    content: '';
    position: absolute;
    left: -70%;
    bottom: 7px;
    width: 70%;
    height: 1.5px;
    background-color: var(--background-border-footer);
}
.footer__logo::after{
    content: '';
    position: absolute;
    right: -70%;
    bottom: 7px;
    width: 70%;
    height: 1.5px;
    background-color: var(--background-border-footer);
}
.footer__bottom_text{
    text-align: center;
    padding-top: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
}

.swiper-pagination {
    min-height: 17px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.swiper-pagination.our-vehicles-pagination {
    bottom: 17px;
    top: auto;
}

.our-vehicles-pagination .swiper-pagination-bullet-active, .swiper-pagination-bullet-active {
    /*width: 13px;*/
    /*height: 13px;*/
    position: relative;
    margin: 0 8px;
    transition: .3s;
}

.our-vehicles-pagination .swiper-pagination-bullet, .swiper-pagination-bullet {
    margin: 0 3px !important;
    transition: .3s;
}

.text-gold {
    color: #E2BB46;
}

/*.our-vehicles-pagination .swiper-pagination-bullet-active:after, .swiper-pagination-bullet-active:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    display: block;*/
/*    left: -3px;*/
/*    top: -3px;*/
/*    width: 11px;*/
/*    height: 11px;*/
/*    border: 1px solid var(--background-slide-btn-border);*/
/*    border-radius: 50%;*/
/*    filter: blur(1px);*/
/*    -webkit-filter: blur(1px);*/
/*}*/

.our-vehicles-pagination .swiper-pagination-bullet-active:after, .swiper-pagination-bullet-active:after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url("../images/circle_icon.svg") no-repeat center/100%;
}

.footer__bottom_text {
    line-height: 1.75;
}

.review-title {
    color: #fff !important;
}

.reviews-slider-pagination {
    z-index: 1;
    min-height: 17px;
}
.swiper-pagination-bullet {
    background: transparent !important;
    position: relative;
    width: 16px !important;
    height: 16px !important;
}

.swiper-pagination-bullet:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6C6C6C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
}

.swiper-pagination-bullet-active:before {
    background: #E2BB46;
    transition: .3s;
}

.review-text.long-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.long-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.sws-toggle-btn {
    display: none;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.review-text.long-text + .sws-toggle-btn {
    display: block;
}

.reviews-slider-pagination {
    position: absolute;
    bottom: 23px !important;
}

.text-gold {
    color: #EBCC71 !important;
}

.policy-info-content {
    max-width: 600px;
    padding: 40px;
}

.policy-info-content > * + * {
    margin-top: 24px;
}

.policy-info-content a {
    color: #EBCC71 !important;
    text-decoration: underline;
}

/*body {*/
/*    background: #0e0e0e;*/
/*    font-family: 'Montserrat', sans-serif;*/
/*    color: #fff;*/
/*    display:flex;*/
/*    justify-content:center;*/
/*    padding:40px 16px;*/
/*}*/
#orderForm {
    width: 90%;
    /*background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);*/
    max-width: 450px;
}
.form-box {
    width: 90%;
    max-width: 450px;
    background: linear-gradient(180deg,#171717 0%, #0f0f0f 100%);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(199,164,55,0.15);
    margin: 40px auto;
    position: relative;
    z-index: 1;
}
.form-box h2 {
    color:#f4d35e;
    /*font-size:1.25rem;*/
    margin:0 0 8px;
    text-align:center;
}
.form-box .subtitle {
    color:#d7d0b0;
    /*font-size:0.85rem;*/
    text-align:center;
    margin-bottom:18px;
}
label { display:block; color:#e6e6e6; font-weight:600; /*font-size:0.85rem;*/ margin:10px 0 6px; }
select, input[type="text"], input[type="date"], input[type="time"], input[type="number"] {
    width:100%;
    padding:10px 12px;
    border-radius:2px;
    /*border:1px solid #c7a437;*/
    /*background:#141414;*/
    /*color:#fff;*/
    /*font-size:0.95rem;*/
    box-sizing:border-box;

    font-family: "Mukta Malar", sans-serif;
    /*font-size: 16px !important;*/
    /*font-weight: 500 !important;*/
    /*font-style: normal !important;*/
}
.row {
    display:flex;
    flex-flow: column;
    gap: 15px;
}
.row .col { flex:1; }
button#sendQuote, .standard-btn {
    width:100%;
    /*margin-top:14px;*/
    margin-top:20px;
    padding:12px;
    border-radius:8px;
    border:none;
    background:#c7a437;
    /*color:#0b0b0b;*/
    font-size: 18px;
    font-weight:700;
    cursor:pointer;
}
.note { color:#bfb49a; font-size:1.0em; margin-top:8px; }
.result, .result-box {
    margin-top:16px;
    padding:12px;
    border-radius:8px;
    background:linear-gradient(180deg, rgba(247,213,92,0.06), rgba(0,0,0,0.06));
    border:1px solid rgba(199,164,55,0.12);
    color:#f4d35e;
    font-weight:700;
    text-align:center;
}
.small { /*font-size:0.85rem;*/ color:#ddd; font-weight:500; margin-top:6px; text-align:center; }
.hidden { display:none; }
.error {
    color:#ff8a8a; font-weight:600; /*margin-top:8px;*/ text-align:center;
    margin: 15px 0;
}

.clickable-input {
    /*pointer-events: none;*/
}

/* Fancybox custom styles to match form-box */
.fancybox__content {
    background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
    border-radius: 12px;
    padding: 26px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(199,164,55,0.15);
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/*#orderForm label {*/
/*    display: block;*/
/*    color: #e6e6e6;*/
/*    font-weight: 600;*/
/*    !*font-size: 0.85rem;*!*/
/*    margin: 10px 0 6px;*/
/*}*/

/*#orderForm input[type="text"],*/
/*#orderForm input[type="email"],*/
/*#orderForm input[type="tel"] {*/
/*    width: 100%;*/
/*    padding: 10px 12px;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #c7a437;*/
/*    background: #141414;*/
/*    color: #fff;*/
/*    !*font-size: 0.95rem;*!*/
/*    box-sizing: border-box;*/
/*}*/

#orderForm button#payNow {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #c7a437;
    color: #0b0b0b;
    font-weight: 700;
    cursor: pointer;
}

button, input:not([type="checkbox"]), optgroup, select, textarea {
    line-height: 1 !important;
    height: 40px;
}

.calculator-box button {
    /*display: block !important;*/
}

.calculator-box button[type="submit"], #sendQuote {
    color: #fff !important;
    font-size: 18px;
    border-radius: 2px !important;
}

textarea {
    resize: none;
    height: 100px;
}

.call-us-btn.hidden {
    display: none;
}

.call-us-btn {
    color: #fff;
    text-align: center;
    display: block;
}

.result-box {
    background-color: var(--background-slide-color);
    width: 90%;
    max-width: 450px;
}

.box-title {
    font-size: 22px;
    padding: 25px 0;
}

.sws-value-text {
    color: #fff;
}

.sws-text {
    margin-top: 10px;
}

.standard-btn {
    max-width: 250px;
    display: block;
    margin: 20px auto;
    color: #fff;
}

.sws-tip-text {
    font-size: 12px;
    margin: 20px 0 10px;
    color: var(--font-color-gray);
}

@media screen and (min-width: 768px) {
    .vehicle-slide-image{
        height: 220px;
    }
}

@media screen and (max-width: 1023px) {
    .denver-elite__title{
        font-size: 48px;
    }
    .denver-elite__sub-title{
        font-size: 55px;
    }
}
