.auth-section, .cabinet {
    padding-top: 80px;
    min-height: calc(100vh - 196px);
    display: flex;
    align-items: center;
}
.auth-form-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 480px;
    margin: 0 auto;
}
.form-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 40px;
    position: relative;
    background: #F7F7F5;
    border-radius: 25px;
}
.form-wrapper form{
    width: 100%;
}
.form-wrapper h3{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #201E1E;
    margin: 0 0 15px 0;
}
.form-wrapper .form-group {
    margin-bottom: 25px;
    width: 100%;
}
.form-wrapper label {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    color: #201E1E;
    position: relative;
    display: flex;
    margin-bottom: 5px;
}
.form-wrapper input {
    position: relative;
    width: 100%;
    height: 38px;
    background: #FFFFFF;
    border: 1px solid #949494;
    box-sizing: border-box;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    padding: 10px 15px;
    -webkit-border-radius:0;
    -moz-border-radius: 0;
    border-radius: 8px;
    margin: 0;
}
.form-wrapper input:hover, input:focus,
.form-wrapper textarea:hover, textarea:focus{
    border: 1px solid #000000;
    outline: none;
    transition-duration: 0.4s;
}
.form-wrapper input::placeholder, textarea::placeholder{
    color: #B1AEAE;
}
.form-wrapper input[type=radio], input[type=checkbox] {
    padding: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    position: absolute;
    left: 0;
    top:0;
    display: none;
}
.form-wrapper input[type="search"] {
    -webkit-appearance: none;
}
.radio-checkbox-label{
    font-size: 14px;
    line-height: 16px;
    padding-left: 24px;
    margin: 0;
    cursor: pointer;
}
.radio-checkbox-label:before {
    background-color: #fff;
    border: 1px solid #949494;
    /*    border-radius: 4px;*/
    box-sizing: border-box;
    content: "";
    display: block;
    height: 16px;
    width: 16px;
    left: 0;
    top: 0;
    position: absolute;
    transition: background-color .2s ease-in-out,border .2s ease-in-out;
}
.form-wrapper input[type=radio] + .radio-checkbox-label:before {
    border-radius: 10px;
}
.form-wrapper input[type=checkbox]:checked + .radio-checkbox-label:before {
    background-color: #000;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='12' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><path d='M4.10351 8.89548L1.45582 6.09578L0 7.6352L4.13584 12L14 1.56934L12.5159 0L4.10351 8.89548Z' fill='rgb(255, 255, 255)' /></svg>");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 10px 8px;
    border-color: #000;
}
.form-wrapper input[type=radio]:checked + .radio-checkbox-label:before {
    background-color: #000;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><circle cx='7' cy='6' r='6' fill='white'/></svg>");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 10px 8px;
    border-color: #000;
}

.form-wrapper .forgot {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    text-decoration: underline;
}
.form-wrapper .btn{
    width: 100%;
}

.single-btn-section {
    display: none;
}
.single-btn-section .btn{
    width: 100%;
    text-align: center;
    background: #282828;
}
.errors{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #DF1212;
}
.form-wrapper .is-invalid {
    border-color: #e3342f;
    padding-right: calc(1.6em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.4em + 0.1875rem) center;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.form-after {
    margin-top: 25px;
}
.form-after p{
    margin: 0 0 10px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 135%;
    color: #4A4B57;
}
.form-after a{
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    text-decoration: underline;
}
.alert {
    width: 100%;
    max-width: 673px;
    box-sizing: border-box;
    position: fixed;
    z-index: 1111;
    padding: 15px 40px 15px 20px;
    left: 50%;
    top: 100px;
    transform: translate(-50%, 0);
    color: #fff;
}
.alert span{
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 139.3%;
    color: #FFFFFF;
}
.alert-success {
    background: #23C934;
}
.alert-danger {
    background: #F96C4D;
}
.alert .close-popup {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
    transition-duration: 0.25s;
}
.alert .close-popup:hover svg path {
    fill: #000000;
}
@media (max-width: 769px) {
    label {
        font-size: 14px;
    }
    input {
        height: 38px;
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
    }
    .single-btn-section {
        display: block;
    }
    .request-form-wrapper {
        width: 100%;
    }
    .auth-form-wrapper {
        width: 100%;
    }
    .form-wrapper {
        padding: 20px;
    }
}

.cabinet{
    background: #F6F6F6;
}
.cabinet-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 80px 0;
}
.cabinet-wrapper .cabinet-menu{
    width: 235px;
    margin-right: 25px;
    flex-basis: 236px;
    flex-grow: 0;
    flex-shrink: 0;
}

.cabinet-wrapper .cabinet-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content{
    background: #ffffff;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content:first-child{
    border-radius: 25px 25px 0 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content:last-child{
    border-radius: 0 0 25px 25px;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-head{
    padding: 10px 30px;
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    justify-content: space-between;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content h2,
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content h3{
    margin: 10px 0;
    font-style: normal;
    font-weight: bold;
    font-size: 17px;
    line-height: 24px;
    color: #212529;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content h3:first-child {
    margin-top: 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-head a{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: right;
    letter-spacing: -0.3px;
    color: #212529;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body{
    padding: 30px 30px;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body.form-wrapper{
    background: #fff;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body p{
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 139.3%;
    color: #000000;
    margin: 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body .cabinet-control{
    display: flex;
    margin-bottom: 20px;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body .cabinet-control:last-child{
    margin-bottom: 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body p.label{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #9D9D9D;
    margin: 0 10px 0 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body .single-video{
    margin-bottom: 30px;
}
.cabinet-tab {
    width: 235px;
    display: flex;
    padding: 22px 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 18px;
    border: 1px solid #E4E4E4;
    background: #FFFFFF;
    color: #000000;
    padding-right: 30px;
    position: relative;
    transition-duration: 0.25s;
    border-radius: 8px;
}
.cabinet-tab:hover {
    text-decoration: none;
}

.cabinet-tab.active{
    background: #000000;
    color: #ffffff;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.wrapper-just-2{
    width: calc(50% - 40px);
}
.wrapper-just-3{
    width: calc(33.33333% - 26.666px);
}
.wrapper-just-4{
    width: calc(25% - 30px);
}
.wrapper-just-5{
    width: calc(20% - 25px)!important;
}
.wrapper-2{
    width: 50%;
}
.wrapper-3{
    width: 33.33333%;
}
.wrapper-4{
    width: 25%;
}
.wrapper-5{
    width: 20%;
}
.cabinet-wrapper .single-item p {
    margin-bottom: 15px;
}
.cabinet-wrapper .single-item{
    background: #F8F9F8;
}
.cabinet-wrapper .single-item .single-summary-wrapper {
    padding: 10px;
}
.list-wrapper .single-item .btn-wrapper {
    margin: 20px 0;
}
.list-wrapper.orders-wrapper {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .cabinet-tab {
        width: 100%;
    }
    .cabinet-wrapper {
        flex-direction: column;
        margin: 40px 0;
    }
    .cabinet-wrapper .cabinet-menu {
        width: 100%;
        margin-bottom: 30px;
    }
    .cabinet-wrapper .cabinet-content-wrapper {
        width: 100%;
    }
    .cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-head{
        align-items: center;
        padding: 20px 15px;
    }
    .cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body{
        padding: 20px 15px;
    }
    .cabinet-wrapper .cabinet-content-wrapper#mob-wishlist .cabinet-content .cabinet-head{
        flex-direction: column;
    }
    .list-wrapper .single-item {
        width: 100%!important;
    }
.list-wrapper.orders-wrapper {
    grid-template-columns: 1fr;
}
}
.support-item {
    margin-bottom: 20px;
}
.withempty-btn {
    width: max-content;
    margin: 20px 0 0 0;
}
.cabinet-wrapper .cabinet-content-wrapper#wishlist .wishlist-summary-wrapper {
    margin: 50px 0 0 0;
    border-top: 1px solid #000000;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.cabinet-wrapper .cabinet-content-wrapper#wishlist .wishlist-summary-wrapper .wishlist-summary-row{
    width: 100%;
    display: flex;
    margin: 15px 0 0 0;
    justify-content: space-between;
}
.cabinet-wrapper .cabinet-content-wrapper#wishlist .wishlist-summary-wrapper .wishlist-summary-row:last-child{
    margin: 50px 0 0 0;
}
.single-order-wrapper{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 55px;
}
.order-details {
    margin: 0 0 10px 0;
    order: 1;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body .order-details p{
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 139.3%; 
    margin: 0;
}
.cabinet-wrapper .cabinet-content-wrapper .cabinet-content .cabinet-body .order-details p:first-child{
    font-family: 'Playfair Display', sans-serif;
    font-size: 17px;
    line-height: 141%;
    color: #161412;
    font-weight: 700;
}
.order-products {
    display: flex;
    justify-content: flex-end;
    order: 2;
}
.order-products img {
    max-width: 60px;
    max-height: 60px;
    margin-left: 20px;
}
@media (max-width: 768px) {
    .single-order-wrapper{
        flex-direction: column;
    }
    .order-details {
        order: 2;
    }
    .order-products {
        order: 1;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    .order-products img{
        margin-left: 0; 
        margin-right: 20px; 
    }
}