/* checkout start */



.login-register-tab-wrapper {
    min-height: 2rem;
    font-size: 2rem;
    font-weight: 500;
    color: #222222;
    margin-bottom: 1rem;
    text-align: center;
}

.account-header buttons a {
    color: #666666;
}
.login-register-tab-wrapper .account-selected {
    color: #222222;
    pointer-events: none;
    text-decoration: underline;
    text-underline-position: under;
    /*text-decoration-color: var(--faz-blue);*/
    text-decoration-thickness: .3rem;
    text-underline-offset: .4rem
}

.login-register-form .form {
    max-width: 40rem;
}

.login-register-form .form, .checkout-address .form {
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 10px 25px rgba(92, 99, 105, .2);
    /*background: var(--white);*/
}

.address-edit-link,
.checkout-address-card-label
{
    font-weight: 500;
}
.address-edit-link i{
    vertical-align: middle;
}
#checkout-address a{
    color: #000;
    text-decoration: none;
}

.modal-wrapper .check-wrapper{
    font-weight: 400;
}

.checkout-address-card.new-address {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-address-card.new-address a {
    font-weight: 600;
    text-decoration: underline;
}




.login-register-form .title, .checkout-address .title {
    font-size: 50px;
    margin-bottom: 50px;
}

.login-register-form .input-container, .checkout-address .input-container {
    position: relative;
    height: 4.5rem;
    margin-top: 2.1rem;
}

.checkout-address .select-container {
    height: 4.5rem;
    margin-top: 2.1rem;
}
.checkout-address .select-container span.customSelect {
    height: 4.5rem;
    display: flex !important;
    align-items: center;
    border: 1px solid #DADCE0;
    border-radius: 7px;
    font-size: 16px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
}

.login-register-form .input, .checkout-address .input {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border: 1px solid #DADCE0;
    border-radius: 7px;
    font-size: 16px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
}

.login-register-form .label, .checkout-address label.label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0 4px;
    color: #DADCE0;
    font-size: 16px;
    transition: 0.5s;
    z-index: 0;
}

.login-register-form ::placeholder, .checkout-address ::placeholder {
    color: transparent;
}

.login-register-form .submit-btn, .checkout-address .submit-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 30px;
    border: none;
    /*background-color: var(--third-color);*/
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
}

.login-register-form .submit-btn:hover, .checkout-address .submit-btn:hover {
    background-color: #111111;
    transform: translateY(-2px);
}
.login-register-form .input:focus + .label, .checkout-address .input:focus + .label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    /*color: var(--faz-blue);*/
    /*background-color: var(--white);*/
    padding: 0;
}

.login-register-form .input:not(:placeholder-shown)+ .label, .checkout-address .input:not(:placeholder-shown)+ .label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
}

.login-register-form .input:focus, .checkout-address .input:focus {
    /*border: 2px solid var(--faz-blue);*/
}

.checkout-address select {
    width: 100% !important;
}

.forgotten {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    text-decoration: underline;
    margin-top: 1rem;
}
.forgotten:hover {
    text-decoration: none;
}
.agree-column, .legend-title {
    margin-top: 2.1rem;
}

@media (max-width: 350px) {
    .login-register-tab-wrapper a {
        padding-left: .5rem;
        padding-right: .5rem;
    }
    .login-register-form .input, .checkout-address .input {
        font-size: 13px;
    }
}
.login-register-form input[type="checkbox"] {
    display: none;
}
.checkout-address input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.login-register-form input:-webkit-autofill,
.login-register-form input:-webkit-autofill:hover,
.login-register-form input:-webkit-autofill:active,
.login-register-form input:-webkit-autofill:focus,
.checkout-address input:-webkit-autofill,
.checkout-address input:-webkit-autofill:hover,
.checkout-address input:-webkit-autofill:active,
.checkout-address input:-webkit-autofill:focus {
    background-color: #FFFFFF;
    color: #555;
    -webkit-box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: #555555;
}


.login-register-form input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    color: #111111;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.login-register-form input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}

.login-register-form input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    /*border: 1px solid var(--faz-blue);*/
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.login-register-form input[type="checkbox"]:checked + label:before{
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (min-width: 768px) {
    .header_top .account, #_desktop_contact_link, #searchbox {
        margin-top: 1.3rem;
    }
}

#payment-methods {
    display: flex;
    padding-left: 0;
}



#payment-methods li {
    border: 1px solid #DADCE0;
    padding: 1rem;
    cursor: pointer;
    width: 100%;
}
#payment-methods li.active {
    border: 2px solid #32be23;
}

section.progressbar ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding-left: 0;
}

section.progressbar ul li {
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

section.progressbar .count {
    width: 4rem;
    height: 4rem;
    /*border: solid 1px var(--faz-blue);*/
    border-radius: 50%;
    line-height: 4rem;
    text-align: center;
    z-index: 10;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    /*color: var(--third-color)*/
}
section.progressbar .label {
    margin-top: 1rem;
    font-weight: 500;
    /*color: var(--faz-blue);*/
    font-size: 14px;
    font-weight: 600;
}

section.progressbar ul li::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -50%;
    /*background: var(--faz-blue);*/
    width: 100%;
    height: 5px;
    z-index: 1;
}

section.progressbar ul li:first-child::after {
    content: none;
}

section.progressbar .count.active {
    color: #fff;
    /*background: var(--third-color);*/
}
.banners-slider-carousel .slider-item {
    width: 13rem !important;
    margin-right: 1rem;
}

.product-thumb p.price {
    height: 3.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.btn-list-grid, .compare-total, .show-wrapper {
    display: none;
}
.btn-primary {
    /*background-color: var(--faz-blue) !important;*/
    /*color: var(--white) !important;*/
}

.panel-body {
    padding: 0 !important;
    margin-bottom: 2rem;
}

#checkout-cart #left-pane .input-group-btn button.btn {
    border-radius: .5rem;
}

#button-payment-confirm {
    width: 100%;
    /*background-color: var(--faz-green) !important;*/
}

.check-wrapper{
    font-size: 18px;
}

.check-wrapper label{
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-wrapper input[type=checkbox]{
    accent-color: #000;
    width: 20px;
    height: 20px;
}

#payment-methods{
    list-style: none;
}

.shopping-product-attributes{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-close{
    padding: 14px 14px 0 0 !important;
}
/* checkout end */
