@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    /* text-transform: uppercase !important; */
}

@font-face {
    font-family: Resolve;
    src: url('../fonts/Resolve-Light.ttf');
}

@font-face {
    font-family: ShabnamThin;
    src: url('../fonts/Shabnam-Thin.woff');
}

@font-face {
    font-family: ShabnamLight;
    src: url('../fonts/Shabnam-Light.woff');
}

@font-face {
    font-family: ShabnamMedium;
    src: url('../fonts/Shabnam-Medium.woff');
}

@font-face {
    font-family: Shabnam;
    src: url('../fonts/Shabnam.woff');
}

@font-face {
    font-family: ShabnamBold;
    src: url('../fonts/Shabnam-Bold.woff');
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: #C39048;
}

::selection {
    color: #fff;
    background: #C39048;
}

@media(min-width:767px) {
    body {
        font-size: 16px !important;
    }
}

body {
    background-color: #fff;
    height: 100vh;
    margin: 0;
    position: relative;
    font-family: Shabnam;
    letter-spacing: 10;
    overflow: hidden;
}

.cs-tab-container {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.tab-options-container {
    width: 100%;
}

.tab-images-container,
.tab-options-container {
    aspect-ratio: 1;
    max-width: 400px;
    width: 50%;
}

.faq-body .tab-options-container {
    aspect-ratio: unset;
    max-width: unset;
    width: unset;
    width: 100% !important;
}

.faq-body .option-container {
    width: 100% !important;
}

#menu-button-1 p,
#menu-button-2 p,
#menu-button-1 .step-description-heading,
#menu-button-2 .step-description-heading {
    font-size: 14px;
    line-height: 22px;
}

/* Buttons */
.btn-primary {
    background-color: #C39048;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.btn-primary:hover {
    background-color: #C39048;
    color: #fff;
}

.step-heading-container {
    width: 100%;
    margin: 70px 0px 40px 0px;
}

.step-subheading-container {
    width: 100%;
    /*  margin: 40px 0px 10px 0px; */
}

.step-heading {
    font-weight: 800;
    font-size: 16px;
}

.menu-title {
    font-size: 1rem;
    width: auto;
    max-width: 80%;
    height: auto;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.steps-buttons {
    display: flex;
    width: 30%;
    margin-right: 10px;
}

.steps-buttons .btn-next {
    background-color: #C39048;
    color: #fff;
}

.steps-buttons .btn-before {
    background-color: transparent;
    color: #C39048;
    border: 1px solid #C39048;
}

.steps-buttons .btn-before:hover {
    color: #C39048;
    background-color: transparent;
}

.steps-buttons .btn {
    flex-grow: 1;
    margin: 10px;
    max-width: 130px;
}

.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 200px;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn,
.toast-message {
    transition: all 0.3s ease;
}

.toast-message {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    z-index: 9999;
}

.toast-success {
    background-color: #28a745;
}

.toast-danger {
    background-color: #dc3545;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark overlay effect */
    z-index: 9999;
}

.spinner-border {
    width: 80px;
    height: 80px;
    border: 8px solid #f0f0f5;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

span.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header Style */
.header {
    flex-shrink: 0;
    overflow: hidden;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    /*     position: fixed;
    top: 0; */
    background-color: #222;
    width: 100%;
    max-width: 1440px;
    height: 65px;
    color: #fff;
    /* clip-path: polygon(100% 0, 100% 42%, 98.5% 100%, 1.5% 100%, 0 42%, 0% 0%); */
    /*  clip-path: polygon(20% 0%, 80% 0%, 85% 20%, 85% 80%, 80% 100%, 20% 100%, 15% 80%, 15% 20%); */
    clip-path: polygon(1.5% 0, 98.5% 0, 100% 0%, 100% 80%, 98.5% 100%, 1.5% 100%, 0 80%, 0 0%);
}

.header-row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-title {
    font-weight: 600;
    font-size: 1rem !important;
}

#support-icon {
    width: 30px;
    height: 30px;
    margin-left: 20px;
}

.header img {
    width: 80px;
}

.support-container {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch !important;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 2000;
    background-color: #fff;
    height: 150px;
    width: 250px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.support-container .support-item {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    background-color: transparent;
    transition: 0.2s background-color;
}

.support-container .support-item:hover {
    background-color: #222;
    color: #fff;
    cursor: pointer;
}

.support-container .support-item:hover button,
.support-container .support-item:hover a {
    color: #C39048;
}

.support-container button {
    width: 100%;
    background-color: transparent;
    color: #222;
    border: none;
    text-align: left;
}

.support-container a {
    background-color: transparent;
    color: #222;
    border: none;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;

    /* background-size: 100% 100%; */
    /*  background-repeat: no-repeat;
    background-position-x: -10px; */

    /*   background-size: 1400px 100%; */
    background-position: 0;
}

.main-container .header {
    /*     flex-shrink: 0; */
}

.content-container {
    max-width: 1440px;
    width: 100%;
    z-index: 1;
    padding: 50px;
    overflow: auto;
    flex-grow: 1;
    /*  min-height: 2em; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /*     margin-top: 100px; */

}

.main-container .footer {
    flex-shrink: 0;

}

.step {
    margin: auto 0;
    position: relative;
    /*     padding: 70px 15px 15px 15px; */
    display: flex;
    /*    height: 100%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1440px;

}

.option-step {
    width: 100%;
}

/* Tab Container And Buttons */
.tab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    background-color: transparent;
    width: 100%;
    padding: 20px;
}

.tab-container-menu {
    max-width: 370px;
    width: 50%;
    padding: 0;
}

.tab-container .btn {
    width: 100%;
}

.tab-container .btn:hover {
    color: #C39048;
    border-color: #C39048;
    background-color: transparent;
}

.cabin-button {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    background-color: #222;
    padding: 35px;
    color: #ffff;
    width: 100%;
    clip-path: polygon(5% 0, 100% 0, 100% 30%, 100% 84%, 95% 100%, 0 100%, 0% 70%, 0 16%);
}

.option-container {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    color: #fff;
    /* padding: 20px 35px; */
    background-color: #222;
    clip-path: polygon(5% 0, 100% 0, 100% 30%, 100% 84%, 95% 100%, 0 100%, 0% 70%, 0 16%);
}

.tab-options-container .option-container {

    padding: 40px 25px;
}


.radio-button-container {
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.radio-button-container input,
.radio-button-container label {
    cursor: pointer;
}

#premium-engine1-button,
#premium-engine2-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    padding: 15px 35px !important;
    height: 70px;
    text-wrap: nowrap;
}

.tab-container .active,
.tab-container .active:hover {
    background-color: black !important;
    color: #fff !important;
}

.tab-btn-container {
    display: flex;
    margin: auto;
    gap: 10px;
}

.tab-btn-container .btn {
    width: auto;
}

/* .step {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
} */

/* .form-container .step {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
} */
.space-divider {
    position: relative;
    background-color: transparent;
    min-height: 70px !important;
    width: 100%;
}

/* Form */
.step label {
    color: #fff;
    font-size: 13px;
    font-weight: 600 !important;
    /*     margin: auto 0; */
}

/* image */



/* Reusable table styles */
.review-table {
    width: 100%;
    border-collapse: collapse;
}

.review-table th,
.review-table td {
    padding: 12px 16px;
    text-align: right;
    border: 1px solid #ddd;
    /* Optional: adds border to each cell */
}

.review-table th {
    background-color: #f6f6f6;
    font-size: 14px;
}

.review-table td {
    background-color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.review-table table th {
    font-weight: bold;
}

#receipt div,
#final-receipt div {
    background: linear-gradient(to left, #c39048, #dfb76c);
    color: white;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: bold;
}

/* #final-receipt div {
    display: none !important;
} */

#receipt #F20,
#receipt #G20,
#receipt #F100,
#receipt #G100,
#receipt #F57,
#receipt #G57,
#receipt #F40,
#receipt #G40 {
    font-weight: 700;
}



.form-container {
    max-width: 1000px;
    border: 1.5px solid #f0f0f0;
    /*  background-color: #fff !important; */
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content !important;
    gap: 20px;
    background-color: #222;
    backdrop-filter: blur(25px);
    clip-path: polygon(2% 0, 100% 0, 100% 98%, 98% 100%, 0 100%, 0% 60%, 0 2%);
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.form-check-label {
    padding: 0;
}

.form-container input,
.form-container select {
    border-color: transparent !important;
    background-color: #282828 !important;
    margin: 10px !important;
    color: #fff;
}

.form-container input:focus,
.form-group select:focus {
    color: #fff;
    border-color: rgb(195, 144, 72) !important;
    box-shadow: 0 0 0 0.2rem rgba(195, 144, 72, 0.25) !important;
}

.form-group input[readonly] {
    cursor: default;
    border: none !important;
    background-color: #282828 !important;
    color: #C39048 !important;
}

.form-group input[readonly]:focus {
    box-shadow: none !important;
}

.step-button-container {
    padding: 0 10px;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    z-index: 100;
    align-items: center;
    overflow-x: scroll;
    flex-wrap: nowrap;
    justify-content: space-between;
    /* -ms-overflow-style: none;
    Internet Explorer 10+
    scrollbar-width: none; */
}

.step-button-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.step-button {
    text-wrap: nowrap;
    background-color: transparent;
    height: 100%;
    line-height: 60px;
    color: #9c9c9c;
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-button::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='6' stroke='white' stroke-opacity='0.35' stroke-width='2'/%3E%3C/svg%3E");
    filter: invert(51%) sepia(72%) saturate(372%) hue-rotate(348deg) brightness(100%) contrast(91%);
    margin: 8px;
    margin-top: 10px;
}

.step-button-divider {
    content: url("../icons/arrow.svg");
}

.step-button.step-button-active:after {
    content: url("../icons/radio-c-fill.svg");
}

.step-button.step-button-active:after svg {}

.step-divider-button-active {
    filter: invert(51%) sepia(72%) saturate(372%) hue-rotate(348deg) brightness(100%) contrast(91%);
}

.footer {
    max-width: 1440px;
    z-index: 100px;
    overflow: hidden;
    display: flex;


    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    /*     max-width: 1200px; */
    /* clip-path: polygon(1.5% 0, 98.5% 0, 100% 20%, 100% 80%, 100% 100%, 0% 100%, 0 80%, 0 20%); */
}

.descreption-container {
    font-size: 12px;
    padding: 40px 50px;
    background-color: #222;
    color: #fff;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 70%, 100% 100%, 10% 100%, 0 90%, 0 30%);
}

.descreption-container-border-left {
    border-left: 1.5px solid #C39048;
}

.descreption-container-border-right {
    border-right: 1.5px solid #C39048;
}

.spec-value,
.receipt-field {
    margin-top: 5px;
    padding: 15px 20px;
    background-color: #282828;
    font-size: 12px;
}

.spec-price-value {
    background-color: #C39048;
    display: block;
}

.advanced-container,
.economy-container,
.premium-containerو {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.custom-container {
    display: flex;
    flex-direction: row;
    align-items: stretch !important;
    justify-content: center;
    gap: 20px !important;
    width: 80%;
}


.cs-breadcrumb {
    margin-top: 50px;
    clip-path: polygon(0 0, 98.5% 0, 100% 20%, 100% 70%, 100% 100%, 1.5% 100%, 0 80%, 0% 30%);
    background-color: #222;

}

.cs-breadcrumb .step-button-container {
    padding: 10px 20px;
}

.step-description-heading {
    display: flex;
    font-size: 12px;
    font-weight: 500;
}

.card-description .step_description {
    margin-top: 10px;
    line-height: 16px;
    font-weight: 300;
    font-family: 'ShabnamLight';
}

/* More */
.card-description {
    text-align: justify;
    font-size: 10px;
    color: #fff;
    background-color: #222;
}

.traction-card-description {
    clip-path: polygon(0 0, 92% 0, 100% 16%, 100% 70%, 100% 100%, 8% 100%, 0 84%, 0 30%);
    background-image: url('../images/traction-background.png');
}

.hydraulic-card-description {
    clip-path: polygon(8% 0, 100% 0, 100% 30%, 100% 84%, 92% 100%, 0 100%, 0% 70%, 0 16%);
    background-image: url('../images/hydraulic-background.png');
}

.traction-card-description,
.hydraulic-card-description {
    padding: 54px 64px;
    background-size: cover;
    background-position: center;
    width: 50%;
}

.card-active {}


.economy-card,
.premium-card,
.advanced-card {
    padding: 50px;
}

.economy-card,
.premium-card {
    clip-path: polygon(8% 0, 100% 0, 100% 30%, 100% 84%, 92% 100%, 0 100%, 0% 70%, 0 16%);
}

.advanced-card {
    clip-path: polygon(0 0, 92% 0, 100% 16%, 100% 70%, 100% 100%, 8% 100%, 0 84%, 0 30%);
}

.order-number {}


.advanced-container .bd-container,
.economy-container .bd-container,
.premium-container .bd-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    max-width: 370px;
}

.advanced-container .SP-slider,
.economy-container .SP-slider {
    height: 100%;
}

.advanced-container .SP-slider>img,
.economy-container .SP-slider>img,
.premium-container .SP-slider>img,
.decorations-container img {
    flex: 1;
    height: auto;
    width: 100%;
    object-fit: cover;
    height: 100%;

}

.decorations-container img {
    flex: 1;
    height: auto;
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-width: 100%;
}

.c-btn-container {
    width: 260px;
    display: flex;
    justify-content: space-between;
    position: absolute;
}

.advanced-container .carousel-advDots,
.economy-container .carousel-ecoDots,
.premium-container .carousel-preDots {
    display: flex;
    position: absolute;
    margin: 10px;
    transform: translateY(1800%);
}

.advanced-container .dot,
.economy-container .dot,
.premium-container .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e8e8e8;
    margin: 0 5px;
    cursor: pointer;
    display: flex;
}

.advanced-container .dot.active,
.economy-container .dot.active,
.premium-container .dot.active {
    background-color: #222;
}

.advanced-container .carousel-button,
.economy-container .carousel-button,
.premium-container .carousel-button {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    background-color: transparent;
    color: #C39048;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
    font-size: 15px;
}

.advanced-container .carousel-button:hover,
.economy-container .carousel-button:hover,
.premium-container .carousel-button:hover {
    background-color: rgb(0, 0, 0);
}

.advanced-container .spec-title,
.advanced-container .price,
.economy-container .spec-title,
.economy-container .price,
.premium-container .spec-title,
.premium-container .price {
    font-weight: bold !important;
}

.card-header {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-color: #C39048 !important;
}

.card-footer {
    margin-top: 15px;
    border: none !important;
}

.card-body,
.card-footer {
    padding: 0 !important;
}

.receipt-card {
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 70%, 100% 100%, 10% 100%, 0 90%, 0 30%);
    border: none;
    width: 560px;
    padding: 50px;
    ;
    background-color: #222222;
    color: #fff;
    font-family: 'Shabnam';
}

.receipt-card,
.receipt-card button {
    font-size: 12px;
}

.total {
    font-weight: bold;
}

.total #lastStepPrice {
    font-weight: 500;
}

.receipt-card .receipt-field-price {
    margin-top: 12px;
    background-color: #C39048;
    border-radius: 2px;
    font-size: 16px;
}

.receipt-card .receipt-field-price button {
    font-size: 16px;
    color: #fff !important;
}

.language-container {
    cursor: pointer;
    padding: 1px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
    height: 35px;
}

.language-container span {
    width: 50px;
    padding: 5px;
    height: 35px;
    text-transform: uppercase;
}

.language-container .ul-container {
    height: 35px;
    padding: 1px 1px 1px 1px;
    width: 0;
    clip-path: polygon(2% 0, 100% 0, 100% 20%, 100% 80%, 100% 100%, 2% 100%, 0% 80%, 0% 20%);
    background-color: #C39048;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 1s;
}

.language-container ul {
    clip-path: polygon(2% 0, 100% 0, 100% 20%, 100% 80%, 100% 100%, 2% 100%, 0% 80%, 0% 20%);
    display: flex;
    background-color: #222;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    height: 33px !important;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.language-container li {
    text-wrap: nowrap;
    /*     background-color: #C39048; */
    padding: 5px;
}

.language-container li:hover {
    color: #C39048;
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    /*  position: fixed;
    padding: 20px;
    height: 100vh;
    width: 100vw; */
    width: 100%;
    height: 100%;
    background-color: #222 !important;
    color: #fff;
    overflow-y: auto;
    gap: 50px;
    padding: 0 30px 30px 30px;
}

.faq .container-sm {
    margin-top: 50px;
}

.faq .faq-heading {
    font-weight: 600;
    background: linear-gradient(to right, #C39048, #fffaf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.faq .faq-menu {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    background-color: #ddd;
    font-weight: 600;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
}

.faq .faq-menu li {
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.faq .faq-header,
.accordion-panel-header {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 20px 0;
    margin-bottom: 15px;
}

.faq .faq-group .faq-header h4 {
    font-weight: 600;
    font-size: 1.3rem;
    width: 95%;

}

.faq .faq-group .faq-header i {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 1.3rem;
}

.faq .faq-group {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.faq .faq-group .faq-body,
.custom-faq .faq-group .faq-body {
    display: none;
}

.faq .faq-group .faq-body.open,
.custom-faq .faq-group .faq-body.open {
    display: block;
}

.btn-order {
    cursor: pointer;
    margin: auto;
    background-image: linear-gradient(to right, #eee4d7, #fffaf4);
    color: #CE8946;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
}

.social-icons {
    display: flex;
    max-width: 200px;
    max-height: 100px;
    color: #fff;
    margin: auto;
    gap: 15px;
    height: 35px;
}

.social-icons span {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-icons span:hover a {
    fill: #C39048;
}

.social-icons span:hover a {
    width: 30px;
    height: 30px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    fill: #fff;
    width: 25px;
    height: 25px;
    transition: width 0.5s;
    transition: height 0.5s;
}



.step-description-heading-icon::before {
    width: 14px;
    height: 14px;
    line-height: 100%;
    content: url('../icons/radio-c.svg');
    margin: auto 5px;
    display: block;
}

.step-description-heading-icon-active::before {
    content: url('../icons/radio-c-fill.svg');
}


/* Override bootstrap deafult inputs styles */
.form-check-input {
    background: url('../icons/radio-c.svg') !important;
    background-color: transparent !important;
    border: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    border-color: #C39048;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.form-check-input:checked {
    background: url('../icons/radio-c-fill.svg') !important;
    background-color: transparent !important;
    border: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Animation */
@keyframes StepSlideRight {
    from {
        right: 100%;
    }

    to {
        right: 0;
    }
}

.stepAnimation {
    /*     animation-name: StepSlideRight;
    animation-duration: 4s; */
}

/* Tablet */
@media (min-width: 767px) and (max-width:1024px) {
    .receipt-card {
        width: 500px;
    }

    .traction-card-description,
    .hydraulic-card-description {
        width: 100%;
        padding: 35px;
    }

    .hydraulic-card-description {
        clip-path: polygon(4% 0, 100% 0, 100% 30%, 100% 92%, 96% 100%, 0 100%, 0% 70%, 0 8%);
    }

    .traction-card-description {
        clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 70%, 100% 100%, 4% 100%, 0 92%, 0 30%)
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cs-tab-container {
        flex-direction: column-reverse;
        width: 100%;
        /* justify-content: center; */
        align-items: center;
    }

    body,
    html {
        font-size: 14px !important;
    }

    /* .step-button-container {
        overflow-x: scroll;
        gap: 10px;
        width: 50%;
    } */

    .step-button-divider {
        /* min-height: 20px;
        min-width: 40px; */
        /* aspect-ratio: 1; */
    }

    .tab-container-menu {
        width: 100%;
    }

    .custom-container {
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column-reverse !important;
        row-gap: 50px;
        overflow-y: scroll;
        margin-top: 50px;
    }

    .receipt-card {
        width: 100% !important;
        background-color: #222 !important;

    }

    .receipt-card ul {
        grid-template-columns: 1fr !important;
    }

    .bd-container {
        align-self: center;
    }

    .form-container {
        padding: 35px;
        grid-template-columns: 1fr;
        clip-path: polygon(5% 0, 100% 0, 100% 5%, 100% 95%, 92% 100%, 0 100%, 0% 90%, 0 5%);
    }

    .steps-buttons {
        width: 45%;
    }

    .step-button-container {
        gap: 10px;
    }

    .header-title {
        display: none;
    }

    .options-card-container {
        display: grid !important;
    }

    .traction-card-description,
    .hydraulic-card-description {
        clip-path: polygon(5% 0, 100% 0, 100% 5%, 100% 95%, 92% 100%, 0 100%, 0% 90%, 0 5%);
        width: 100%;
        padding: 30px;
    }

    .step1-cards-container {
        flex-direction: column;
    }

    #step4 .step-heading-container {
        margin: 10px;
    }

}