@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

.title_productModal{
    color: #45361F;
}

.checkout .form_checkout {
    flex-direction: column;
    height: auto;
    gap: 20px;
    justify-content: center;
}

.checkout .form-item {
    display: flex;
    flex-direction: column;
}

.checkout .form-item.has-error .form-label {
    color: red;
}

.checkout .form-item.has-error .form-input {
    border-color: red;
    background-color: #ffe1e1;
}

.checkout .form-label {
    font-size: 16px;
    color: #161616;
    margin-bottom: 6px;
}

.checkout .form-input {
    border: 2px solid #8d8d8d;
    border-radius: 4px;
    background: #f9f9f9;
    height: 30px;
    padding: 0 16px;
    outline: none;
}

.checkout .form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout .form-content {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.checkout .form-content.active {
    display: flex;
}

.checkout .btn {
    border-radius: 4px;
    border: 2px solid transparent;
    padding: 10px 24px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
}

.checkout .btn.bordered {
    border-color: #715a40;
    color: #715a40;
    border-radius: 50px;
    padding: 10px 30px;
}

.checkout .btn.primary {
    background-color: #715a40;
    color: #fff;
}

.checkout .btn[disabled] {
    cursor: not-allowed;
}

.wizard {
    position: relative;
    display: flex;
    width: 75%;
}

.wizard:before {
    content: "";
    position: absolute;
    background-color: #F4F0E7;
    height: 7px;
    width: 100%;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
}

.wizard-bar {
    position: absolute;
    background-color: #95652B;
    height: 7px;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.wizard-bar-ar {
    right: 0px;
}

.wizard-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 0px;
}

.wizard-item {
    z-index: 2;
    transition: 0.4s ease;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #95652B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #F4F0E7;
}

.wizard-item.active {
    background-color: #F4F0E7;
    color: #95652B;
    border: 2px solid #95652B;
}

.wizard-item.active.with-image:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 8.9087L17.1443 6L9.97468 13.191L6.8557 10.0399L4 12.888L8.53671 17.4126C8.91618 17.7888 9.4295 18 9.96456 18C10.4996 18 11.0129 17.7888 11.3924 17.4126L20 8.9087Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.wizard-item.with-image:after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 8.9087L17.1443 6L9.97468 13.191L6.8557 10.0399L4 12.888L8.53671 17.4126C8.91618 17.7888 9.4295 18 9.96456 18C10.4996 18 11.0129 17.7888 11.3924 17.4126L20 8.9087Z' fill='%231E4DBA'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.checkout .user-box {
    position: relative;
    margin-bottom: 10px;
    width: 100% !important;
}

.checkout .user-box input {
    width: 100%;
    padding: 3px 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0px;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.checkout .user-box label {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 14px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
}

.checkout .user-box input:focus~label,
.checkout .user-box input:valid~label {
    top: -10px;
    left: 30px;
    color: #A18061;
    font-size: 12px;
}

.checkout .user-box select {
    width: 100%;
    padding: 3px 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.checkout .user-box label {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 14px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
}

.checkout .user-box-ar label {
    left: 0px;
    right: 45px;
}

.checkout .user-box select option:first-child {
    display: none;
}

.checkout .user-box select:focus + label,
.checkout .user-box select:valid + label {
    top: -10px;
    left: 30px;
    color: #A18061;
    font-size: 12px;
}

.checkout .phone label {
    top: -10px;
    left: 55px;
    color: #A18061;
    font-size: 12px;
}

.checkout .phone_ar input::placeholder{
    position: absolute;
    right: 50px;
}

.checkout .phone .iti {
    display: block;
}



.checkout .phone_ar .iti .iti__flag-container {
    right: 0px;
    left: auto;
}

.checkout .checkbox_shopnow_input[type="checkbox"] {
    appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    color: #BEB093;
    padding: 3px;
    border: 0.15em solid #BEB093;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.checkout .checkbox_shopnow_input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

.checkout .checkbox_shopnow_input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checkout .checkbox_shopnow_input[type="checkbox"]::before {
    background-color: #B57414;
    border-radius: 50%;
}

.checkbox_shopnow {
    color: #715A40;
}

.checkbox_checkout p {
    color: #978466;
}

.offers_latestOffers {
    background-color: #AE4D4D;
    color: #F7F7F2;
    border-radius: 10px;
    display: inline-block;
    padding: 6px 30px;
}

@media (max-width: 768px) {
    .checkout .form-content.active {
        display: block;
    }
}