﻿@import url(_variables.css);
@import url(../fonts/fonts.css);

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container-fluid {
    max-width: 1640px;
}

.sliderMobile {
    display: none;
}

/* Navbar, dropdown, and product-page-button styles from _Layout.cshtml */
.navbar-nav .dropdown-menu {
    margin-top: 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 8px 0;
    min-width: 220px;
}
.navbar-nav .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
}
.navbar-nav .dropdown-item:hover {
    background-color: #FEC70B;
    color: #000;
    padding-left: 25px;
}
.navbar-nav .dropdown-item:active {
    background-color: #e5b309;
}
header.navbar .navbar-nav .nav-link {
    transition: all 0.3s ease !important;
    border-radius: 5px !important;
    margin: 0 4px !important;
}
header.navbar .navbar-nav .nav-item .nav-link:hover,
header.navbar .navbar-nav .nav-item:hover > .nav-link {
    background-color: #FEC70B !important;
    color: #000 !important;
}
header.navbar .navbar-nav > .nav-item > a.nav-link:hover {
    background-color: #FEC70B !important;
    color: #000 !important;
}
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease-in-out;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#fixedbutton {
    background-color: #FEC70B !important;
    color: #212529 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(254, 199, 11, 0.4) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}
#fixedbutton:hover {
    background-color: #212529 !important;
    color: #FEC70B !important;
    box-shadow: 0 6px 16px rgba(33, 37, 41, 0.3) !important;
    transform: translateY(-2px) !important;
}
#fixedbutton i {
    margin-right: 8px;
}
#fixedbutton.product-page-button,
#downloadBrochure.product-page-button,
#orderbutton.product-page-button,
#getOffer.product-page-button {
    background-color: #212529 !important;
    color: #FEC70B !important;
    border: 2px solid #FEC70B !important;
    box-shadow: 0 4px 15px rgba(33, 37, 41, 0.5) !important;
    transition: all 0.3s ease, max-width 0.4s ease-in-out !important;
    max-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 13px !important;
}
#fixedbutton.product-page-button:hover,
#downloadBrochure.product-page-button:hover,
#orderbutton.product-page-button:hover,
#getOffer.product-page-button:hover {
    background-color: #FEC70B !important;
    color: #212529 !important;
    border: 2px solid #212529 !important;
    box-shadow: 0 6px 20px rgba(254, 199, 11, 0.6) !important;
    transform: translateY(-2px) !important;
    max-width: 300px;
    padding-right: 20px !important;
}
#fixedbutton.product-page-button i,
#orderbutton.product-page-button i,
#downloadBrochure.product-page-button i,
#getOffer.product-page-button i {
    margin-right: 15px;
    min-width: 20px;
    text-align: center;
}

/* Remove underline from product-page-button links */
a.product-page-button {
    text-decoration: none !important;
}
a.product-page-button:hover, a.product-page-button:focus {
    text-decoration: none !important;
}

#fixedbutton {
    position: fixed;
    top: 150px;
    right: 0px;
    background-color: #FEC70B !important;
    color: #212529 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(254, 199, 11, 0.4) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    z-index: 999;
}

#fixedbutton:hover {
    background-color: #212529 !important;
    color: #FEC70B !important;
    box-shadow: 0 6px 16px rgba(33, 37, 41, 0.3) !important;
    transform: translateY(-2px) !important;
}

#orderbutton {
    position: fixed;
    top: 200px;
    right: 0px;
    background-color: #212529;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    /*  color: black;*/
    z-index: 999;
    /*   border: 1px solid white;*/
}

#orderbutton:hover {
    background-color: #FFC72D;
    border: 2px solid black;
}

#getOffer {
    position: fixed;
    top: 250px;
    right: 0px;
    background-color: #212529;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    /*  color: black;*/
    z-index: 999;
    /*   border: 1px solid white;*/
}

#getOffer:hover {
    background-color: #FFC72D;
    border: 2px solid black;
}

#downloadBrochure {
    position: fixed;
    top: 100px;
    right: 0px;
    background-color: #212529;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    /*  color: black;*/
    z-index: 999;
    /*   border: 1px solid white;*/
}

#downloadBrochure:hover {
    background-color: #FFC72D;
    border: 2px solid black;
}

/* ########################## Check List ########################## */
.check-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--color-gray-dd);
    background-color: rgba(245, 245, 245, 0.8);
}

.check-list li {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875rem;
    display: block;
    padding-left: 40px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 20px;
    border-bottom: 2px solid var(--color-green);
    border-right: 2px solid var(--color-green);
    margin: 0 20px 0 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

/* ########################## Buttons ########################## */
.btn.btn-dark {
    position: relative;
    background-color: var(--bs-dark);
    border: none;
    border-radius: 0;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--bs-white);
    padding: 7px 14px 10px 14px;
    margin: 0;
    width: 122px;
}

.btn.btn-lg {
    padding: 12px 14px 14px 14px;
}

.btn * {
    position: relative;
    z-index: 2;
}

.btn.btn-dark:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    border: 2px solid transparent;
    background-color: var(--color-yellow);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn.btn-dark:hover:after {
    height: 100%;
    border-color: var(--bs-dark);
}

.btn.btn-warning {
    position: relative;
    background-color: var(--color-yellow);
    border-radius: 0;
    border: none;
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.btn.btn-warning:hover {
    color: var(--bs-white);
}

.btn.btn-warning:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bs-dark);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn.btn-warning:hover:after {
    height: 100%;
}

.btn.btn-link {
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    color: var(--bs-dark);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn.btn-success {
    position: relative;
    background-color: var(--bs-success);
    border-radius: 0;
    border: none;
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.btn.btn-success:hover {
    color: var(--bs-white);
}

.btn.btn-success>* {
    z-index: 2;
}

.btn.btn-success:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    /*background-color: var(--bs-dark);*/
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn.btn-success:hover:after {
    height: 100%;
}

/* ########################## Calculator ########################## */
.calculator .image {
    background-color: var(--bs-dark);
    line-height: 0;
    height: 100%;
}

.calculator .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calculator .content {
    background-color: var(--color-yellow);
    height: 100%;
    padding: 47px 57px;
    font-family: "Open Sans", sans-serif;
}

.calculator .content strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: var(--bs-white);
    letter-spacing: -0.04rem;
}

.calculator .content p {
    margin: 0;
    font-size: 22px;
}

.calculator .form-label {
    font-size: 0.9375rem;
}

.calculator .form-control,
.calculator .form-select {
    border: none;
    border-radius: 0;
    padding: 11px 12px;
}

.calculator .form-control {
    text-align: center;
}

.calculator .form-select {
    background-size: 20px 20px;
}

.appointment-title {
    font-family: 'Open Sans' sans-serif;
    font-size: 21px;
    /* font-weight: 700;*/
}

/* ########################## Products ########################## */
.products {
    background-color: var(--bs-light);
}

/* ########################## Products - Card ########################## */
.card-product {
    font-family: "Open Sans", sans-serif;
    border-radius: 0;
    height: 100% !important;
    /* Fill the column height */
    display: flex;
    flex-direction: column;
}

.card-body {
    font-size: 22px;
    font-weight: bold;
    max-height: auto !important;
    padding-top: 0px;
    padding-bottom: 0px;
    flex: 0 0 auto;
    /* Stop header from growing */
}

.card-product .card-text {
    font-size: 10px;
    font-weight: bold;
    margin: 0;
}

.card-product .card-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 32px;
    margin: 0 0 -4px 0;
}

.card-product .card-body .card-text .text-muted {
    display: block;
    color: var(--color-gray-c3) !important;
    margin: 0;
}

.card-product .card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 190px; Removed fixed height */
    flex: 1 1 auto;
    /* Grow to fill space */
    margin: 18px 0 12px 0;
}

.card-product .card-image img {
    max-width: 220px;
    max-height: 180px;
}

.card-product .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 0;
    font-size: 14px;
    color: var(--bs-dark);
    background-color: var(--color-yellow);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    /* Footer doesn't grow */
}

.card-product .card-footer a {
    text-decoration: none;
    color: var(--bs-dark);
}

.card-product .card-footer a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bs-dark);
    margin-left: 5px;
}

.card-product:hover .card-footer {
    background-color: var(--bs-dark);
    color: var(--bs-white);
}

.card-product:hover .card-footer a {
    color: var(--bs-white);
}

.card-product:hover .card-footer a:after {
    border-left-color: var(--bs-white);
}

@media (max-width: 768px) {
    .card-product {
        height: auto !important;
    }
}

/* ########################## Products - Card Link ########################## */
.card-link {
    display: flex;
    flex-direction: column;
    background-color: var(--color-yellow);
    border-radius: 0;
    border: none;
    height: 100%;
}

.card-link .card-image {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-link .card-image img {
    max-width: 230px;
    max-height: 180px;
}

.card-link .card-footer {
    border: none;
    border-radius: 0;
    background-color: var(--bs-dark);
    color: var(--bs-white);
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.card-link .card-footer span:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bs-white);
    margin-left: 5px;
}

.card-link:hover .card-footer {
    color: var(--color-yellow);
}

.card-link:hover .card-footer span:after {
    border-left-color: var(--color-yellow);
}

/* ########################## Products - Quick Links ########################## */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.quick-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: auto;
    /* Allow flexible width on desktop */
    flex-grow: 1;
    /* Grow to fill row */
    min-width: 200px;
    /* Ensure buttons don't get too small */
    background-color: var(--color-yellow);
    margin: 2px;
    text-decoration: none;
    /* min-height: 170px;*/
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.quick-links a [class*="icon-"] {
    font-size: 64px;
    color: var(--bs-dark);
}

.quick-links a .text {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: var(--bs-dark);
    padding: 12px 0;
}

.quick-links a:hover {
    background-color: var(--bs-dark);
}

.quick-links a:hover [class*="icon-"] {
    color: var(--color-yellow);
}

.quick-links a:hover .text {
    color: var(--color-yellow);
}

.quick-links a img {
    max-height: 120px;
    max-width: 100px;
}

.quick_link_active {
    /* flex-basis: calc(100% - 4px) !important; User removed expansion */
    background-color: var(--bs-dark) !important;
}

.quick_link_active [class*="icon-"] {
    color: var(--color-yellow) !important;
}

.quick_link_active .text {
    color: var(--color-yellow) !important;
}

/* ########################## Contact Us ########################## */
.contact-us {
    background: url("../images/contact-us.jpg") no-repeat center;
    background-size: cover;
}

.contact-us .content {
    background: linear-gradient(90deg, rgba(254, 199, 11, 1) 0%, rgba(255, 255, 255, 0) 70%);
    height: 100%;
}

@media (max-width: 768px) {
    .contact-us {
        background-position: center;
        /* Shift image */
    }

    .contact-us .content {
        background: rgba(254, 199, 11, 0.75);
        /* High opacity yellow on mobile */
    }
}

.contact-us ul {
    display: block;
    margin: 0;
    padding: 0;
}

.contact-us ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.contact-us ul li i {
    font-size: 30px;
}

.contact-us ul li i img {
    max-width: 32px;
    max-height: 32px;
}

.contact-us ul li span {
    display: block;
    font-size: 1.125rem;
    font-weight: lighter;
    padding-left: 20px;
}

.contact-form {
    margin-top: 80px;
}

.contact-form .form-label {
    font-size: 1.5rem;
}

.contact-form .form-control {
    border-radius: 0;
    border: none;
    padding: 0.688rem 0.75rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .quick-links a {
        flex-basis: calc(50% - 4px);
        /* 2 items per row on mobile */
        min-width: 0;
        /* Override global min-width to allow 2 columns on small screens */
    }

    /* Mobile Product Card Sizing */
    .card-product .card-image {
        height: 120px;
        margin: 10px 0 5px 0;
    }

    .card-product .card-image img {
        max-width: 100%;
        max-height: 110px;
    }

    .card-product .card-body {
        padding: 0.8rem;
    }

    .card-product .card-body .card-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .card-product .card-body .card-text {
        font-size: 9px;
    }

    .card-product .card-footer {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* Fix "See All" card image */
    .card-link .card-image img {
        max-height: 110px;
        max-width: 150px;
    }

    .card-link .card-footer {
        padding: 5px;
    }
}

/* ########################## Footer ########################## */
.footer {
    font-family: "Open Sans", sans-serif;
    background-color: var(--bs-dark);
    padding: 80px 0 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        padding-bottom: 0px !important;
        /* Reduced padding */
    }

    .footer h6 {
        font-size: 18px;
        /* Smaller headers */
        margin-bottom: 15px;
    }

    .footer a {
        font-size: 14px;
        /* Smaller links */
    }

    .footer .logo img {
        max-width: 150px;
        /* Smaller logo */
    }

    .social-media li a {
        font-size: 24px !important;
        /* Smaller icons */
        line-height: 24px !important;
    }

    .footerBottom {
        padding: 10px 0;
        margin-top: 20px;
    }

    .footerBottom a+a {
        margin-left: 20px;
        /* Reduced spacing */
    }

    .footerBottom a {
        font-size: 12px;
    }

    .footer-corporate-link {
        flex-direction: column;
        /* Ensure vertical stack if needed, though d-flex handles it */
        text-align: center;
    }

    .footer-corporate-link a {
        padding-right: 0 !important;
        /* Remove right padding for stack */
    }
}



.footer .logo {
    display: inline-block;
    margin-bottom: 40px;
}

.footer .logo img {
    width: 100%;
    height: auto;
}

.footer h6 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--bs-white);
}

.footer a {
    display: block;
    font-size: 17px;
    color: var(--bs-white);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-yellow);
}

.footerBottom {
    background-color: #000;
    padding: 20px 0;
    margin-top: 40px;
}

span {}

.footerBottom a+a {
    margin-left: 80px;
}

.footerBottom a {
    font-size: 16px;
}

footer .link-list {
    display: block;
    margin: 0;
    padding: 0;
}

/* ########################## Social Media ########################## */
.social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}

.social-media li {
    display: block;
}

.social-media li a {
    display: block;
    font-size: 32px;
    line-height: 32px;
    text-decoration: none;
    color: var(--color-yellow);
}

/* ########################## Pagination CAT ########################## */
.pagination-cat .page-item .page-link {
    font-size: 15px;
    font-weight: bold;
    color: var(--bs-dark);
    border: none;
    border-radius: 50%;
}

.pagination-cat .page-item.active .page-link {
    background-color: var(--color-yellow);
}

/* ########################## Filters ########################## */
.filters {
    background-color: var(--color-gray-F5);
    padding: 15px;
    margin-bottom: 30px;
    top: 6rem;
}

.filters h2 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.filters .form-label {
    margin-bottom: 1px;
}

.filters .form-select {
    border-color: var(--color-gray-EA);
    border-radius: 0;
    padding: 0.6rem 0.8rem;
}

/* ########################## Banner ########################## */
.banner {
    background-color: var(--color-yellow);
    margin-bottom: 2rem;
}

.banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30vh;
    min-height: 250px;
}

.banner .banner-content small {
    display: block;
    font-size: 22px;
    margin-bottom: 0.4rem;
}

.banner .banner-content h1 {
    font-size: 46px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 1rem;
}

.banner .banner-content p {
    font-size: 33px;
    margin: 0;
}

.banner .banner-content .breadcrumb-item,
.banner .banner-content .breadcrumb-item a {
    font-size: 15px;
    color: var(--bs-dark);
    text-decoration: none;
}

/* ########################## Detail Content ########################## */
.detail-content {
    font-size: 1rem;
    font-weight: lighter;
}

/* ########################## Card Options ########################## */
.card-options {
    border-radius: 0;
    background-color: var(--color-gray-F5);
    margin-bottom: 2rem;
}

.card-options .card-title {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-options .image {
    height: 190px;
    margin: 0.5rem;
}

.card-options .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-options .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-yellow);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.card-options .card-footer strong {
    font-size: 1.375rem;
    font-weight: bold;
}

.card-options .card-footer a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
    text-decoration: none;
}

.card-options .card-footer a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bs-dark);
    margin-left: 5px;
}

.card-options:hover .btn {
    background-color: var(--color-yellow);
}

.card-options:hover .card-footer {
    background-color: var(--bs-dark);
}

.card-options:hover .button-count-equipment {
    background-color: #FEC70B;
}

.card-options:hover .card-footer strong,
.card-options:hover .card-footer a {
    color: var(--bs-white);
}

.card-options:hover .card-footer a:after {
    border-left-color: var(--bs-white);
}

/* ########################## Card Calculator ########################## */
.card-calculator-wrapper {
    top: 110px;
    margin-bottom: 2rem;
}

.card-calculator-wrapper p {
    font-size: 1rem;
    font-weight: 300;
}

.card-calculator {
    padding: 6%;
    border: 1px solid rgb(112 112 112 / 19%);
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-calculator-wrapper .choise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -2.5% 2rem -2.5%;
    border: none;
}

.card-calculator-wrapper .choise label {
    position: relative;
    border: none;
    border-radius: 0;
    flex-basis: calc(50% - 5%);
    margin: 0 2.5%;
    padding: 0;
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.1);
}

.card-calculator-wrapper .choise label input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.card-calculator-wrapper .choise label input+span {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: lighter;
    text-align: center;
    padding: 14px 12px 13px 12px;
    background-color: var(--bs-white);
}

.card-calculator-wrapper .choise label input+span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gray-F5);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.card-calculator-wrapper .choise label input:checked+span:after {
    background-color: var(--color-yellow);
}

.card-calculator-wrapper .while {
    margin-bottom: 2rem;
}

.card-calculator-wrapper .while label {
    position: relative;
    display: block;
}

.card-calculator-wrapper .while label input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.card-calculator-wrapper .while label input+span {
    display: block;
    font-size: 0.875rem;
    color: var(--bs-dark);
    text-align: center;
    background-color: var(--color-gray-F5);
    border: 1px solid var(--color-gray-EA);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 11px 12px;
}

.card-calculator-wrapper .while label input:checked+span {
    background-color: var(--color-yellow-FFC);
    border-color: var(--color-yellow-DEA);
}

.card-calculator-wrapper .deposit-amount {
    margin-bottom: 2rem;
}

.card-calculator-wrapper .deposit-amount .values {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-calculator-wrapper .deposit-amount .values>* {
    width: 100%;
}

.card-calculator-wrapper .deposit-amount .values span {
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
}

.card-calculator-wrapper .form-select {
    background-color: var(--color-gray-F5);
    border: 1px solid var(--color-gray-EA);
    padding: 9px 12px 10px 12px;
    border-radius: 0;
}

.card-calculator-wrapper .price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.card-calculator-wrapper .price strong {
    display: block;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 700;
}

.card-calculator-wrapper .price span {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    margin-left: 1rem;
}

.card-calculator-wrapper .btn.btn-dark {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 12px;
}

.card-calculator-wrapper .btn.btn-warning {
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    padding: 18px 12px;
}

/* Range Style Chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="range"] {
        overflow: hidden;
        -webkit-appearance: none;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        color: var(--color-gray-F5);
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        cursor: ew-resize;
        background: var(--bs-dark);
    }
}

/* Range Style */
input[type="range"]::-moz-range-progress {
    background-color: var(--color-gray-F5);
}

input[type="range"]::-moz-range-track {
    background-color: var(--bs-dark);
}

/* Range Style */
input[type="range"]::-ms-fill-lower {
    background-color: var(--color-gray-F5);
}

input[type="range"]::-ms-fill-upper {
    background-color: var(--bs-dark);
}

#detailSlider {
    position: relative;
    margin: -250px 0 60px 0;
}

#detailSlider .swiper-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#detailSlider .swiper-button-prev,
#detailSlider .swiper-button-next {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 5px;
    width: 32px;
    height: 32px;
    background-color: var(--bs-dark);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#detailSlider .swiper-button-prev:hover,
#detailSlider .swiper-button-next:hover {
    background-color: var(--bs-white);
}

#detailSlider .swiper-button-prev:after,
#detailSlider .swiper-button-next:after {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    font-size: 0;
}

#detailSlider .swiper-button-prev:after {
    border-right: 10px solid var(--color-yellow);
}

#detailSlider .swiper-button-next:after {
    border-left: 10px solid var(--color-yellow);
}

#modalCompanyInfo .btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--bs-dark);*/
    border-radius: 50%;
    opacity: 1;
    color: var(--bs-white);
}

#modalCompanyInfo .modal-content {
    border-radius: 0;
}

#modalCompanyInfo .form-label {
    font-weight: bold;
    font-size: 0.75rem;
}

.form-control,
.form-select {
    border-radius: 0;
}

.form-contract label {
    display: block;
    width: 100%;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.form-contract label a {
    font-weight: bold;
    color: var(--bs-dark);
}

.form-contract input[type="checkbox"] {
    margin-right: 10px;
}

.form-contract input[type="checkbox"]+* {
    width: calc(100% - 1rem);
}

.cat-datePicker .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bs-gray-300);
}

.cat-datePicker .ui-datepicker-header .ui-datepicker-prev {
    order: 1;
}

.cat-datePicker .ui-datepicker-header .ui-datepicker-title {
    order: 2;
    font-weight: bold;
}

.cat-datePicker .ui-datepicker-header .ui-datepicker-next {
    order: 3;
}

.cat-datePicker .ui-datepicker-header .ui-datepicker-next,
.cat-datePicker .ui-datepicker-header .ui-datepicker-prev {
    font-family: monospace;
    text-decoration: none;
    color: var(--bs-white);
    font-size: 0.75rem;
    background-color: var(--bs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    cursor: pointer;
}

.cat-datePicker .ui-datepicker-calendar {
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.cat-datePicker .ui-datepicker-calendar thead tr th {
    padding: 8px 6px;
}

.cat-datePicker .ui-datepicker-calendar tbody tr td:not(.ui-datepicker-unselectable):not(.ui-datepicker-today):not(.ui-datepicker-current-day):hover {
    background-color: var(--bs-gray-300);
}

.cat-datePicker .ui-datepicker-calendar tbody tr td>a,
.cat-datePicker .ui-datepicker-calendar tbody tr td>span {
    display: block;
    text-decoration: none;
    color: var(--bs-dark);
    font-size: 0.75rem;
    line-height: 1.3rem;
    font-weight: bold;
    padding: 8px 6px;
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-week-end {
    background-color: var(--bs-light);
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-today {
    background-color: var(--bs-primary);
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-today a {
    color: var(--bs-white);
    margin: 0 auto;
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-current-day {
    background-color: var(--bs-success);
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-current-day a {
    color: var(--bs-white);
}

.cat-datePicker .ui-datepicker-calendar .ui-datepicker-unselectable>* {
    color: var(--bs-gray-400);
}

.available-hours {
    display: flex;
    flex-wrap: wrap;
}

.available-hours label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 2px;
}

.available-hours label input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.available-hours label>input+span {
    font-size: 14px;
    color: var(--bs-white);
    background-color: var(--bs-gray-500);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    cursor: pointer;
}

.available-hours label>input:disabled+span {
    cursor: default;
    background-color: var(--bs-gray-300);
}

.available-hours label>input:checked+span {
    background-color: var(--bs-success);
}




/* ########################## Product Counter ########################## */
.equipment-price {
    font-size: 16px !important;
}

.product-count {
    height: 30px;
}

.product-count a {
    text-decoration: none;
    font-weight: 700;
    color: black;
}

.button-count {
    display: inline-block;
    width: 24px;
    height: 30px;
    background-color: #FEC70B;
    color: white;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    border: none;
    outline: none;
}

.button-count-equipment {
    background-color: var(--bs-dark);
}

.button-count:active {
    background-color: #343a40;
}

.number-product {
    display: inline-block;
    width: 46px;
    height: 28px;
    font-size: 22px;
    border: 1px solid silver;
    text-align: center;
    line-height: 28px;
}

:disabled {
    background-color: silver;
}

#tradeInBodyDamageDesc {
    display: none;
}

#TradeInBoomStickCracksDesc {
    display: none;
}

#TradeInComponentProblemDesc {
    display: none;
}

#TradeInOilLeakDesc {
    display: none;
}

.mr-30 {
    margin-right: 30px;
}

.dropdown {
    -webkit-appearance: menulist;
}

.align-vertical {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 16px;
}

.button-loader {
    background-size: 200% 100%;
    transition: all 1.5s ease-out;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.button-loader:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 600%;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.0), rgba(245, 245, 245, 0.95) 65% 35%, rgba(255, 255, 255, 0.0));
    animation: change 1.25s infinite linear;
}

@keyframes change {
    to {
        transform: translate(84%);
    }
}


.star-icon {
    position: absolute;
    width: 60px;
    right: 5px;
    top: 5px;
}

.star-of-the-moon {
    background: linear-gradient(90deg, rgba(254, 199, 11, 1) 100%, rgba(254, 199, 11, 1) 100%, rgba(245, 245, 245, 0.8) 100%);
    padding: 15px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.star-icon-link {
    background: white;
    width: 50px;
    border-radius: 50px;
    padding: 5px;
    margin-right: 5px;
}


.star-icon-detail {
    width: 50px;
    border-radius: 50px;
    padding: 5px;
    background: white;
}


#customTooltip {
    padding: 2px;
    background-color: var(--color-yellow);
    border: 1px solid lightgray;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}