body {
    margin: 0;
    padding: 0;
    font-family: Roboto, "sans-serif";
}

.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.navigation-tabs {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 15px;
    /*background: #f9f9f9;*/
    /*box-shadow: 0 -3px 2px #0000000d inset*/
}

.navigation-tab label {
    gap: 10px;
    display: flex;
    align-items: center;
    margin: 8px 0;
    height: 54px;
    padding: 0 15px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    font-size: 14px;
    font-weight: 600
}

.navigation-tab input:not(:disabled):not(:checked) + label:hover {
    background-color: #f2f3f7
}

input.gui-radio, input.gui-checkbox {
    display: none;
}

input.gui-radio + label, input.gui-checkbox + label {
    cursor: pointer
}

input.gui-radio + label:before, input.gui-checkbox + label:before {
    content: "";
    flex-shrink: 0;
    background: #fff;
    display: inline-block;
    border: 1px solid #7f7f7f
}

input.gui-radio.primary + label:before, input.gui-checkbox.primary + label:before {
    border-color: #0082e6
}

input.gui-radio:checked:not(:disabled) + label:before, input.gui-checkbox:checked:not(:disabled) + label:before {
    background: #0082e6 url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27512%27 height=%27512%27 fill=%27%23fff%27%3E%3Cpath d=%27M206.6 417c-9.8 0-16.4-3.2-23-9.8L25.8 249.4c-13.2-13.2-13.2-32.8 0-46s32.8-13.2 46 0l134.8 134.8L440 104.8c13.2-13.2 32.8-13.2 46 0s13.2 32.8 0 46L229.6 407.2c-6.4 6.6-13 9.8-23 9.8z%27/%3E%3C/svg%3E") center no-repeat;
    background-size: 60%;
    border: none
}

input.gui-radio:disabled + label, input.gui-checkbox:disabled + label {
    cursor: default;
    color: #c4c4c4 !important
}

input.gui-radio:disabled + label:before, input.gui-checkbox:disabled + label:before {
    border-color: #d6d6d6
}

input.gui-radio + label:before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-width: 2px
}

input.gui-checkbox + label:before {
    width: 18px;
    height: 18px;
    border-radius: 4px
}

.address-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0
}

.address-list li {
    list-style: none
}

.address-list-container {
    padding: 20px 10px
}

.address-list-container:not(:last-child) {
    border-bottom: 2px solid #f5f5f5
}

@media (max-width: 767px) {
    .address-list-container {
        flex-direction: column;
        align-items: flex-start !important
    }

    .address-list-container label + div {
        padding-left: 26px
    }
}

.address-list-box {
    padding: 15px;
    border: 2px solid #f5f5f5;
    border-radius: 12px
}

@media (max-width: 767px) {
    .address-list-box .btn {
        width: 100%
    }
}

@media (max-width: 767px) {
    .addresses-list-form .btn-group .btn {
        width: 100%
    }
}

.radio-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.radio-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    flex: 1;
    margin: 0;
    gap: 15px;
    width: 100%
}

.checkout-container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.light-blue-bg {
    background: rgba(208, 235, 255, .2);
    padding: 20px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    column-gap: 25px;
    margin-bottom: 20px;
}

.dark-text {
    color: #3d464d;
}

.checkout-steps span:last-child {
    font-size: 20px;
    font-weight: 400;
}

.checkout-step-number {
    display: grid;
    place-items: center;
    background-color: #3d464d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.checkout-btn input {
    display: none;
}

.checkout-btn label {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 55px;
    font-size: 20px;
    border: 1px solid #ced4da;
    background: #fff;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
}

.shipping-check:checked + label {
    box-shadow: 1px 1px 2px #bbc6cc;
    border: 1px solid #3498db;
    cursor: default;
}

.shipping-check + label::before {
    content: '';
    position: absolute;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: #3498db;
    top: 50%;
    transform: translateY(-50%);
    left: 35px;
}

.shipping-check:checked + label::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 40px;
    top: 50%;
    background: #3498db;
    border-radius: 50%;
    transform: translateY(-50%);
}

.m-top-30 {
    margin-top: 30px;
}

.white-bg {
    background-color: #fff;
}

.facturare-tabs {
    border-bottom: 1px solid #3498db;
    height: 66px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    box-sizing: border-box !important;
}

.facturare-check {
    display: none;
}

.facturare-label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 230px;
    color: #3498db;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.facturare-check:checked + label {
    background-color: #fff;
    border: 1px solid #3498db;
    border-bottom: none;
    box-sizing: initial;
}

.padd-form {
    padding: 30px 20px;
}

.sub-form-title {
    font-weight: 700;
    font-size: 16px;
}

.sub-form {
    margin: 15px 0;
}

.two-col-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

.sub-form-input-container {
    display: grid;
    gap: 5px;
}

.sub-form-label {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.checkout-input, .checkout-select, .checkout-textarea {
    border-radius: 2px;
    display: block;
    text-indent: 10px;
    color: #495057;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #ced4da;
    outline: none;
    box-shadow: none;
}

.checkout-input, .checkout-select {
    height: 35px;
}

.checkout-input::placeholder {
    color: #888;
}

.checkout-input:focus, .checkout-input:focus-visible, .checkout-textarea:focus, .checkout-textarea:focus-visible {
    border: 1px solid #3498db;
}

.tab-form {
    display: none;
}

.tab-form.active {
    display: block;
}

.checkout-links {
    color: #3498db;
    text-decoration: none;
}

.checkout-links:hover {
    text-decoration: none;
    color: #3d464d;
}

#not-ridicare-pers.active {
    display: block;
}

#not-ridicare-pers, #not-ridicare-personala {
    display: none;
}

#not-ridicare-personala.active {
    display: flex;
}

.plata-container > input {
    display: none;
}

.plata-label {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-top: 10px;
    padding: 15px 15px 15px 55px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #3d464d;
    cursor: pointer;
    position: relative;
}

.plata-container > input + .plata-label::before {
    content: '';
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #d0d5de;
    height: 24px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 24px;
}

.plata-container > input:checked + .plata-label::before {
    border: 1px solid #3498db;
}

.plata-container > input:checked + .plata-label::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3498db;
}

.checkout-textarea {
    width: 100%;
    resize: vertical;
}

.sumar-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 3px 3px 2px #e3e3e3;
    display: grid;
    grid-template-columns: 3fr 2fr;
    margin-bottom: 50px;
}

.sumar-borded {
    padding-right: 50px;
    border-right: 1px solid rgba(0, 0, 0, .2);
}

.sumar-flex {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.sumar-flex p {
    margin: 0;
}

.sumar-flex .sub-form-title:last-child {
    font-weight: 400;
}

.sumar-total-container {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.total-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.total-price-checkout {
    font-weight: 700;
    font-size: 25px;
}

.next-step-btn {
    display: block;
    background: #3498db;
    color: #fff;
    padding: 10px 42px;
    font-size: 18px;
    width: fit-content;
    text-decoration: none;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
}

.next-step-btn:hover {
    background: #3d464d;
}

.sumar-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

#change-facturare-adress {
    display: none;
}

#change-facturare-adress.active {
    display: block;
}

.autocomplete-adress.active {
    display: none;
}

.auto-text {
    display: none;
}

.auto-text.active {
    display: block;
}

.autocomplete-container {
    display: none;
    background: #f9f9f9;
    margin: 20px 0;
    border-radius: 8px;
    padding: 20px;
}

.autocomplete-container.active {
    display: block;
}

.default-text {
    font-size: 16px;
    font-weight: 300;
    color: #3d464d;
}

.sumar-title-30 {
    font-size: 30px;
    font-weight: 400;
}

.sumar-grid > .white-bg, .shadow {
    box-shadow: 2px 2px 3px #bbc6cc;
}

.sumar-grid > .white-bg {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sumar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sumar-grid-title {
    border-bottom: 2px solid #f9f9f9;
}

.sumar-grid-title p {
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 10px;
}

.m-top-60 {
    margin-top: 60px;
}

.justify-center {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.total-order-price {
    font-size: 35px;
    font-weight: 700;
}

.signup-container {
    max-width: 400px;
    padding: 30px;
    margin: 50px auto;
}

.signup-container h1 {
    font-size: 28px;
    font-weight: 400;
    color: #999;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-container input[type=submit] {
    width: 100%;
}

.text-muted {
    color: #999;
    margin-bottom: 15px;
}

.text-hr-line {
    min-height: 1px;
    position: relative;
}

.text-hr-line::before {
    left: 0;
    top: 52%;
    right: 0;
    height: 1px;
    content: "";
    position: absolute;
    background: #e5e5e5;
}

.text-hr-line > span {
    padding: 0 10px;
    background: #fff;
    position: relative;
    display: inline-block;
}

.social-login-btn {
    text-decoration: none;
    width: 100%;
    display: block;
    border-radius: 21px;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    box-sizing: border-box;
}

.social-login-btn.facebook-btn {
    background-color: #415a94;
}

.social-login-btn.google-btn {
    background-color: #cf553d;
}

.checkout-header {
    box-shadow: 1px 1px 2px #3498db;
    border-bottom: 1px solid #3498db;
    padding: 20px;
    /*margin-bottom: 50px;*/
    background-color: #fff;
}

.checkout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: block;
    margin: 0 auto;
}
.logo-container a img {
    max-width: 255px;
    height: auto;
}

.dividing-content {
    padding:5px 0;
    margin: 10px 0;
    position: relative;
    text-align: center;
}
.dividing-content span {
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    padding:0 10px;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
}
.dividing-content:after {
    content: '';
    position: absolute;
    top:17px;
    left:0;
    right:0;
    width:100%;
    border-bottom:1px solid #D9D9D9;
}

@media screen and (max-width: 850px) {
    .checkout-btns, .sumar-container, .two-col-form-grid, .sumar-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .sumar-title-30 {
        padding-left: 20px;
    }

    .two-col-form-grid {
        row-gap: 20px;
    }

    .sumar-container {
        row-gap: 50px;
    }

    .sumar-borded {
        padding-right: 0;
        border-right: none;
    }

    .sumar-total-container {
        padding-left: 0;
    }
}

@media screen and (max-width: 575px) {
    .checkout-btn label, .checkout-steps span:last-child {
        font-size: 16px;
    }
}

@media screen and (max-width: 400px) {
    .logo-container a img {
        max-width: 220px;
    }
}


.btn-login-google,
.btn-login-facebook {
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none !important;
    padding: 12px 10px 12px 50px;
    border: 0;
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100%;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn-login-facebook {
    color: #FFFFFF;
    background-color: #4864B1;
}

.btn-login-facebook:hover {
    color: #FFFFFF;
    background-color: #5B7BD5;
}

.btn-login-google {
    color: #FFFFFF;
    background-color: #DD4B39;
}

.btn-login-google:hover {
    color: #FFFFFF;
    background-color: #c14232;
}


.login-facebook-icon {
    background-image: url('images/login-facebook-icon.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 5px;
}

.login-google-icon {
    background-image: url('images/login-google-icon.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
}
