/* -------------------------header------------------------- */

.header-btn-login {
    padding: 10px 8px 8px 8px;
    cursor: pointer;

    position: relative;
}

.header-btn-login__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.header-btn-login__menu::after {
    content: '';

    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: -1;
}

.header-btn-login:hover .header-btn-login__menu {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.header-btn-login__menu .personal-account__sidebar-list {
    border: 1px solid var(--lightgray);
    border-radius: 5px;
    padding: 9px;
    background-color: #fff;
}

.header-btn-login__menu .personal-account__sidebar-item-link {
    padding: 6px 10px;
    font-size: 16px;
}

@media(hover:hover) {

    .header-btn-login__menu .personal-account__sidebar-item-link:hover,
    .header-btn-login__menu .personal-account__sidebar-exit:hover {
        background: var(--lightbluebg);
    }
}

.header-btn-login__menu .personal-account__sidebar-item-link:active,
.header-btn-login__menu .personal-account__sidebar-exit:active {
    background: var(--lightbluebg);
}

.header-btn-login__menu .personal-account__sidebar-exit {
    padding: 3px 10px;
    font-size: 16px;
    transition: all .2s ease;
}

.header-btn-login__menu .personal-account__sidebar-item:last-child {
    padding: 19px 0px 0px 0px;
    border-top: 1px solid var(--lightgray);
    margin: 12px 0px 0px 0px;
}

.header-btn-login .arrow-down {
    fill: var(--darkorange);
}

@media(hover:hover) {
    .header-btn-login:hover .arrow-down {
        fill: #fff;
        transform: rotate(180deg);
    }
}

.header-btn-login:active .arrow-down {
    fill: #fff;
    transform: rotate(180deg);
}

/* -------------------------login------------------------- */

.page__login {}

.login__container {}

.login__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.login__body {
    border-radius: 10px;
    padding: 40px;
    background: var(--white);
    position: relative;
    min-height: 688px;
}

.login-loading {
    position: absolute;
    top: 40px;
    right: 40px;
}

.login__content {
    height: 100%;
    max-width: 360px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.login__top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login__head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-head-loading {
    display: none;
}

.login__title {
    color: var(--black);
}

.login__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
}

.login__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form-code {
    /* display: none; */
}

.login__form-tabs {
    border-radius: 5px;
    padding: 5px;
    background: var(--lightergray);

    display: flex;
}

.login__form-tab {
    transition: all .3s ease;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;

    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    text-align: center;
    color: var(--darkgray);
}

.login__form-tab--active {
    font-weight: 600;
    color: var(--black);
    background: var(--white);
}

.login__form-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.login__form-label {}

.login__form .modal__form-label {
    padding: 21px 10px 5px 10px;
    position: relative;
}

.login__form .modal__form-label.disable {
    pointer-events: none;
}

.login__form .modal__form-label.disable .modal__form-label-name {
    font-size: 12px;
    transform: translateY(-140%);
}

.modal__form-label-text-error {
    display: none;
    padding: 0 11px;
    max-width: 360px;

    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    color: var(--red);
}

.login__form .modal__form-label.active .check {
    opacity: 1;
}

.login__form .modal__form-label.error .error {
    opacity: 1;
}

.login__form .modal__form-label.error {
    border: 1px solid var(--red);
}

.check {}

.modal-form-status {
    width: 19px;
    height: 19px;
    min-width: 19px;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all .2s ease;
    opacity: 0;
    pointer-events: none;
}

.error {}

.login__form .modal__check {
    align-items: center;
}

.login__form .modal__form-label-name {
    left: 10px;
    font-size: 16px;
}

.login__form .modal__form-label-name.active {
    font-size: 12px;
}

.login__form .modal__check-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--black);
}

.login-form-tel {}

.login__form-btn {
    padding: 14px;
    width: 100%;

    position: relative;
}

.login__form-btn-desc {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 260px;
    background: var(--lightbluebg);
    border-radius: 5px;
    padding: 14px 10px;

    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: var(--darkgray);

    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

@media(hover:hover) {
    .login__form-btn.disable:hover .login__form-btn-desc {
        opacity: 1;
    }
}

.login__form-btn.disable:active .login__form-btn-desc {
    opacity: 1;
}

.login__form-btn.disable {
    background: var(--lightgray);
}

.login__bot {
    padding: 50px 0px 0px 0px;
    border-top: 1px solid var(--gray);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login__bot-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.login__bot-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: var(--darkgray);
}

.login__slider {
    min-width: 0;
}

.page__login .preview__slider {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.login__form-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.login__form-code-input {
    border: 1px solid var(--gray);
    border-radius: 4px;
    padding: 16px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
}

.error .login__form-code-input {
    border-color: var(--red);
}

.login-form-code-error {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: var(--red);

    display: none;
}

.error .login-form-code-error {
    display: block;
}

.error .login__form-desc {
    display: none;
}

.login-form-code-repeat {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--darkgray);
    display: none;
}

.error .login-form-code-repeat {
    display: block;
}

.login__form-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: var(--gray);
}

.login__form-box-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--darkgray);
}

.login-form-email .modal-form-label-tel {
    display: none;
}

.login-form-tel .modal-form-label-email {
    display: none;
}

/* -------------------------personal-account------------------------- */

.page__personal-account {}

.personal-account-mob {
    display: none;
}

.personal-account__container {}

.personal-account__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.personal-account__inner.hide {
    display: none;
}

.personal-account__sidebar {
    max-width: 400px;
    width: 100%;
    min-width: 320px;
}

.personal-account__sidebar-body {
    position: sticky;
    top: 20px;
    left: 0;

    border-radius: 10px;
    padding: 30px 20px;
    background: var(--white);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.personal-account__sidebar-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 0px 19px 0px;
    border-bottom: 1px solid var(--lightgray);
}

.personal-account__sidebar-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
}

.personal-account__sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 0px 0px 19px 0px;
    border-bottom: 1px solid var(--lightgray);
}

.personal-account__sidebar-item {}

.new-order {
    width: 100%;
    margin: 12px 0px 0px 0px;
    padding: 13px;

    display: none;
}

.sidebar-personal-data .new-order {
    display: flex;
}

.personal-account__sidebar-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;

    padding: 10px 10px 10px 20px;
    border-radius: 5px;

    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: var(--black);

    transition: all .2s ease;
}

@media(hover:hover) {
    .personal-account__sidebar-item-link:hover {
        background: var(--lightbluebg);
    }
}

.personal-account__sidebar-item-link:active {
    background: var(--lightbluebg);
}

.personal-account__sidebar-item-link .arrow-down {
    transform: rotate(-90deg);
    fill: var(--darkgray);
}

.personal-account__sidebar-item-link--active {
    font-weight: 600;
    background: var(--lightbluebg);
}

.personal-account__sidebar-bot {}

.personal-account__sidebar-exit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 10px;
    width: 100%;
    border-radius: 5px;
    transition: all .2s ease;

    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: var(--darkgray);
}

@media(hover:hover) {
    .personal-account__sidebar-exit:hover {
        background: var(--lightbluebg);
    }
}

.personal-account__sidebar-exit:active {
    background: var(--lightbluebg);
}

.exit {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.personal-account__content {
    max-width: 1100px;
    width: 100%;
}

/* -------------------------my-orders------------------------- */

.my-orders {}

.my-orders.hide {
    display: none;
}

.my-orders__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0px 0px 20px 0px;
}

.my-orders__title {}

.my-orders__right {
    display: flex;
    align-items: center;
    gap: 17px;
}

.my-orders__head .calc__item-row-dropdown {
    width: 260px;
    background: var(--white);
}

.my-orders__btn {
    width: 260px;
    padding: 14px;
}

.my-orders__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-orders__card {
    border-radius: 10px;
    padding: 30px 20px;
    background: var(--white);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-orders__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.my-orders__card-head-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.my-orders__card-date {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    /* margin-left: 170px; */
    margin-left: 35px;
}

.my-orders__card-num {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-orders__card-num-value {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--blue);
}

.copy {
    width: 16px;
    height: 18px;
    min-width: 16px;
    fill: #0093DF;
}

.my-orders__card-date {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
}

.my-orders__card-date-row {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    padding: 8px 0;
}

.my-orders__card-status {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;

    padding: 4px 10px;
    border-radius: 5px;
}

.status-waiting {
    background: var(--redlight);
    color: var(--black);
    padding: 4px 10px;
    display: inline-block;
    border-radius: 5px;
    /* margin-left: -75px; */
}

.status-approval {
    color: var(--black);
    background: var(--yellowlight);
}

.status-work {
    color: var(--black);
    background: var(--lightgray);
}

.status-delivery {
    color: var(--white);
    background: var(--orange);
}

.status-ready-pickup {
    color: var(--white);
    background: var(--blue);
}

.status-complited {
    color: var(--black);
    background: var(--greenlight);
}

.my-orders__card-head-right {}

.my-orders__card-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: right;
    color: var(--darkgray);
    white-space: nowrap;
}

.my-orders__card-body {
    display: flex;
    align-items: start;
    gap: 20px;
}

.my-orders__card-img {
    min-width: 150px;
    min-height: 150px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lightgray);
}

.my-orders__card-img img.thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 4px;
    object-fit: cover;
}

.my-orders__card-img.no_imges {
    background: var(--redlight);
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}

.my-orders__card-img.orange {
    background: var(--yellowlight);
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}

.my-orders__card-image {
    width: 150px;
    height: 150px;
    border-radius: 4px;
    object-fit: cover;
}

.my-orders__card-cotent {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.my-orders__card-left {
    max-width: 387px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.my-orders__card-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.my-orders__card-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    color: #000;
}

.my-orders__card-num-bill {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    color: var(--black);

    background: var(--lightblue);
    padding: 4px 10px;
    border-radius: 5px;
    display: inline-block;
}

.my-orders__card-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000;
}

.my-orders__card-bot {
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-orders__card-price {
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    color: #000;
}

.my-orders__card-price-status {
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
}

.price-status-not-paid {
    color: var(--red);
}

.price-status-paid {
    color: var(--green);
}

.my-orders__card-right {}

.my-orders__card-btn-approval {}

.my-orders__card-btn-approval.btn-main {
    padding: 14px;
    width: 228px;
}

.my-orders__card-btn-repeat.btn-border {
    padding: 13px;
    width: 228px;
}

/* -------------------------my-order------------------------- */

.personal-account-content-width {
    max-width: unset;
}

.my-order {
    display: none;
}

.my-order.visible {
    display: block;
}

.my-order__head {
    margin: 0px 0px 40px 0px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.my-order__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-order__title {}

.my-order-btn {
    width: 42px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.my-order-btn .copy {
    width: 24px;
    height: 30px;
    min-width: 24px;
    fill: var(--darkgray);
}

.my-order__head-right {
    max-width: 895px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.my-order__box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-order__date {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
}

.my-order__status {
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;

    padding: 4px 10px;
    display: inline-block;
    border-radius: 5px;
}

.status-completed {
    background: var(--greenlight);
    color: var(--black);
    padding: 4px 10px;
    display: inline-block;
    border-radius: 5px;
}

.status-waiting {
    background: var(--redlight);
    color: var(--black);
    padding: 4px 10px;
    display: inline-block;
    border-radius: 5px;
}

.status-approval {
    background: var(--yellowlight);
}

.my-order__head-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    color: var(--darkgray);
}

.my-order__content {
    display: flex;
    gap: 20px;
}

.my-order__layout {
    border-radius: 10px;
    padding: 30px 40px;
    background: var(--white);
    max-width: 540px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-order__layout-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 0px 0px 13px 0px;
    border-bottom: 1px solid var(--lightgray);
}

.my-order__layout-title {
    color: var(--black);
}

.my-order__layout-head-btns {
    display: flex;
    align-items: center;
    gap: 18px;
}

.my-order__layout-head-btn {}

.my-order__layout-img {
    position: relative;
    cursor: pointer;
}

.my-order__layout-image {
    border-radius: 4px;
    width: 100%;
    object-fit: cover;
}

.no-layout-yet-img {
    display: none;
}

.no-layout-yet .my-order__layout-image {
    display: none;
}

.no-layout-yet .zoom {
    display: none;
}

.no-layout-yet .my-order__layout-btns {
    display: none;
}

.layout-approval .my-order__layout-btns {
    display: none;
}

.layout-approval .layout-approval-btns {
    display: flex;
}

.no-layout-yet .no-layout-yet-img {
    display: block;
}

.zoom {
    width: 34px;
    height: 34px;

    position: absolute;
    bottom: 10px;
    right: 10px;
}

.my-order__layout-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.layout-approval-btns {
    display: none;
}

.my-order__layout-btn.btn-border {
    width: 100%;
    padding: 13px;
}

.my-order__layout-btn.btn-main {
    width: 100%;
    padding: 14px;
}

.my-order__body {
    border-radius: 10px;
    padding: 30px 40px;
    background: var(--white);

    display: flex;
    gap: 50px;
}

.my-order__rows {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-order__rows:not(:last-child) {
    border-right: 1px solid var(--lightgray);
    padding: 0px 49px 0px 0px;
}

.my-order__row {
    padding: 0px 0px 6px 0px;
    border-bottom: 1px solid #e2e2e2;

    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.my-order__row-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: var(--black);
}

.my-order__row-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    text-align: right;
    color: var(--black);
}

.my-order__col {
    padding: 0px 0px 6px 0px;
    border-bottom: 1px solid #e2e2e2;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-order__col .my-order__row {
    border: none;
    padding: 0;
    align-items: center;
}

.my-order__col .my-order__row .my-order__row-value {
    color: var(--black);
}

.my-order__col .my-order__row-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
    color: var(--darkgray);
    text-align: start;
}

.my-order__row-color {
    max-width: 240px;

    display: flex;
    gap: 4px;
}

.my-order__row-color-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    text-align: right;
    color: var(--black);
}

.my-order__row-color-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: end;
}

.my-order__row-color-item {
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    color: var(--black);

    background: var(--lightblue);
    padding: 4px 12px;
    border-radius: 10px;
}

.my-order__row-circulation .my-order__row-name,
.my-order__row-circulation .my-order__row-value {
    font-weight: 600;
}

.my-order__rows-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.my-order__rows-bot-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: var(--orange);
}

.my-order__rows-bot-value {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: var(--orange);
}

.my-order__rows-bot-value span {
    color: var(--darkgray);
    display: block;
}

/* -------------------------personal-data------------------------- */

.personal-data {
    display: none;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.personal-data.visible {
    display: flex;
}

.personal-data__cards {
    max-width: 540px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.personal-data__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.personal-data__card-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    color: var(--black);
}

.personal-data__card-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.personal-data__card-row {
    padding: 7px 9px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    background: var(--lightergray);

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.personal-data__card-row-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    color: var(--darkgray);
}

.personal-data__card-row-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
    color: var(--black);
}

.personal-data__box {
    max-width: 400px;
    width: 100%;
    margin: 42px 0px 0px 0px;

    border-radius: 10px;
    padding: 30px 20px;
    background: var(--white);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.personal-data__box-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: var(--black);
}

.personal-data__box .header__top-list {
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

/* -------------------------modal-order-img------------------------- */

.modal-order-img .modal__window {
    max-width: 1100px;
    padding: 30px 40px;
}

.modal-order-img__img {
    padding: 92px 0px 0px 0px;
}

.modal-order-img__images {
    width: 100%;
    max-height: 649px;
    object-fit: cover;
}

.modal-personal .modal__window {
    max-width: 540px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-personal .modal__close {
    top: 30px;
    right: 30px;
}

.modal-personal__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #324452;

    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-personal__name.title-h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: #324452;
    padding: 0px 40px 0px 0px;
}

.cloack2,
.apporv {
    width: 34px;
    height: 34px;
    min-width: 34px;
}

.modal-personal__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000;
}

.modal-personal__bot {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-personal .social {
    margin: 20px 0px 0px 0px;
}

.modal-personal .header__top-list svg {
    display: block;
}

.modal-personal .header__top-list {
    gap: 10px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-sending-error .modal-personal__bot,
.modal-sending-repeat-error .modal-personal__bot {
    padding: 19px 0px 0px 0px;
    border-top: 1px solid var(--lightgray);
    justify-content: center;
    align-items: center;
}

.modal-sending-error .modal__window {
    gap: 30px;
}

/* -------------------------media------------------------- */

@media(max-width:1400px) {
    .my-order__layout {
        max-width: 400px;
        padding: 20px;
    }

    .my-order__body {
        padding: 20px;
        gap: 20px;
    }

    .my-order__rows:not(:last-child) {
        padding: 0px 19px 0px 0px;
    }

    .my-order__head-right{
        flex-direction: column-reverse;
        align-items: end;
    }

    .my-order__head-right {
        max-width: 500px;
    }

    .my-order__box {
        width: 100%;
        justify-content: space-between;
    }

    .my-order__layout-btns {
        flex-direction: column;
        gap: 10px 20px;
    }

}

@media(max-width:1150px) {
    .pagination {
        padding: 140px 0 20px 0;
    }






    .personal-account__sidebar {
        display: none;
    }

    .my-orders__head .calc__item-row-dropdown {
        width: 220px;
    }

    .my-orders__btn {
        width: 220px;
        padding: 9px;
        font-size: 14px;
    }

    .my-orders__head .calc__item-row-dropdown-head-value {
        font-size: 14px;
    }

    .calc__item-row-dropdown-head {
        padding: 5.5px 9px;
    }

    .my-orders__right {
        gap: 20px;
    }

    .my-orders__card-num-value,
    .my-orders__card-date,
    .my-orders__card-status,
    .my-orders__card-link {
        font-size: 14px;
    }

    .my-orders__card {
        padding: 20px;
    }

    .my-orders__card-image {
        width: 120px;
        height: 120px;
    }

    .my-orders__card-img {
        min-width: 120px;
    }

    .my-orders__card-num-bill {
        font-size: 14px;
    }

    .my-orders__card-desc {
        font-size: 14px;
    }

    .my-orders__card-price {
        font-size: 16px;
        font-weight: 500;
    }

    .my-orders__card-price-status {
        font-size: 14px;
    }

    .my-orders__card-left {
        gap: 10px;
    }

    .my-orders__card-top {
        gap: 5px;
    }

    .my-orders__card-name {
        font-weight: 500;
    }

    .my-orders__card-btn-approval.btn-main {
        font-size: 14px;
        padding: 12px;
        max-width: 200px;
    }

    .my-orders__card-btn-repeat.btn-border {
        font-size: 14px;
        padding: 11px;
        max-width: 200px;
    }




    .personal-account-mob {
        display: block;
        padding: 132px 34px 13px 34px;
        background-color: #fff;
    }

    .pagination-personal-account.pagination {
        padding: 20px 0;
    }

    .personal-account__sidebar-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0;
        border: none;
    }

    .personal-account__sidebar-item-link {
        font-size: 14px;
        padding: 11px;
        border: 1px solid var(--lightgray);
        text-align: center;
        justify-content: center;
    }

    .personal-account__sidebar-exit {
        font-size: 14px;
        padding: 7px;
        border: 1px solid var(--lightgray);
        border-radius: 5px;
        justify-content: center;
    }

    .personal-account__sidebar-item-link--active {
        background-color: transparent;
        border: 1px solid var(--orange);
    }







    .my-order__content {
        flex-direction: column-reverse;
    }

    .my-order__head {
        margin: 0px 0px 20px 0px;
    }

    .my-order__head-right {
        max-width: 343px;
    }

    .my-order__date {
        font-size: 18px;
    }

    .my-order__status {
        font-size: 14px;
    }

    .my-order-btn {
        width: 30px;
        height: 35px;
    }

    .my-order__layout {
        max-width: unset;
    }

    .my-order__body {
        flex-direction: column;
        gap: 50px;
    }

    .my-order__rows:not(:last-child) {
        padding: 0;
        border: none;
    }

    .my-order__row-circulation {
        padding: 0px 0px 19px 0px;
        border-color: var(--darkgray);
    }

    .my-order__layout-btns {
        flex-direction: row;
    }

    .personal-data {
        grid-template-columns: repeat(2, 1fr);
    }

    .personal-data.visible{
        display: grid;
    }

    .personal-data__box-desc {
        padding: 0px 0px 53px 0px;
        border-bottom: 1px solid var(--lightgray);
    }

    .personal-data__box {
        gap: 43px;
        padding: 20px;
        max-width: unset;
    }

    .personal-data__box .header__top-list svg {
        display: block;
    }






    .modal-order-img .modal__window {
        padding: 20px;
    }

    .modal-order-img__img {
        padding: 66px 0px 0px 0px;
    }

    .modal-personal .modal__close {
        top: 10px;
        right: 10px;
    }

    .modal-personal .modal__window {
        padding: 20px;
    }

    .modal-personal__name.title-h3 {
        font-size: 25px;
    }
}

@media(max-width:1000px) {
    .login__slider {
        display: none;
    }

    .login__inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .login__content {
        max-width: unset;
    }

    .login__body {
        min-height: 792px;
        padding: 20px 10px;
    }

    .login__title br {
        display: none;
    }

    .login__top {
        gap: 20px;
    }

    .login__form .modal__form-label {
        padding: 22.5px 10px 6.5px 10px;
    }

    .login__subtitle {
        font-size: 25px;
    }

    .login__bot-text {
        font-size: 16px;
    }

    .login__bot {
        padding: 20px 0px 0px 0px;
    }

    .login-loading {
        position: unset;
    }

    .login__subtitle br {
        display: none;
    }



}

@media(max-width:700px) {
    .pagination {
        padding: 120px 0 20px 0;
    }

    .login__title {
        font-size: 20px;
    }

    .login__subtitle {
        font-size: 16px;
    }

    .login__form-tab {
        font-size: 16px;
    }

    .login__bot-text {
        font-size: 14px;
    }

    .login__body {
        min-height: 645px;
    }

    .login__bot-text br {
        display: none;
    }






    .my-orders__head {
        align-items: stretch;
        flex-direction: column;
    }

    .my-orders__btn,
    .my-orders__head .calc__item-row-dropdown {
        width: 100%;
    }

    .my-orders__right {
        gap: 10px;
    }

    .my-orders__card {
        padding: 10px 10px 54px 10px;
        position: relative;
    }

    .my-orders__card-status {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-size: 12px;
    }

    .my-orders__card-head-right {
        position: absolute;
        bottom: 14px;
        right: 10px;
    }

    .my-orders__card:has(.my-orders__card-right button) .my-orders__card-head-right {
        bottom: 84px;
    }

    .my-orders__card:has(.my-orders__card-right button) .my-orders__card-status {
        bottom: 80px;
    }

    .my-orders__card:has(.my-orders__card-right button) {
        padding: 10px 10px 124px 10px;
    }

    .my-orders__card-right {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: 100%;
    }

    .my-orders__card-right button {
        max-width: unset !important;
        width: calc(100% - 20px) !important;
    }

    .my-orders__card-head-left {
        width: 100%;
        justify-content: space-between;
    }

    .my-orders__card-name {
        font-size: 14px;
    }

    .my-orders__card-desc {
        font-size: 12px;
    }

    .my-orders__card-price {
        font-size: 14px;
        white-space: nowrap;
    }

    .my-orders__card-price-status {
        font-size: 12px;
    }

    .my-orders__card-top {
        gap: 8px;
    }

    .my-orders__card-cotent {
        height: 100%;
    }

    .my-orders__card-left {
        height: 100%;
        justify-content: space-between;
    }

    .my-orders__card-bot {
        gap: 10px;
    }






    .personal-account-mob {
        padding: 110px 17px 6px 17px;
    }

    .personal-account__sidebar-list {
        gap: 10px;
    }

    .personal-account-mob .personal-account__sidebar-exit span {
        display: none;
    }

    .personal-account__sidebar-list {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .personal-account__sidebar-item-link {
        width: 100%;
        white-space: nowrap;
    }

    .personal-account__sidebar-item {
        width: 100%;
    }






    .my-order__head {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin: 0px 0px 15px 0px;
    }

    .my-order__head-right {
        max-width: unset;
    }

    .my-order__date {
        font-size: 14px;
    }

    .my-order__status {
        font-size: 12px;
    }

    .my-order__body {
        padding: 20px 10px;
    }

    .my-order__row-name,
    .my-order__row-value {
        font-size: 14px;
    }

    .my-order__col .my-order__row-value {
        font-size: 12px;
    }

    .my-order__row-color-value {
        font-size: 14px;
    }

    .my-order__rows-bot-name {
        font-size: 14px;
    }

    .my-order__layout-title {
        font-size: 18px;
    }

    .my-order__layout-btns {
        flex-direction: column;
    }





    .personal-data {
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }

    .personal-data__cards {
        max-width: unset;
    }

    .personal-data__box {
        max-width: unset;
    }

    .personal-data__box-desc {
        padding: 0px 0px 39px 0px;
        margin: 0px 0px 20px 0px;
        font-size: 16px;
    }

    .personal-data__box {
        gap: 20px;
    }





    .modal-order-img .modal__window {
        padding: 16px 10px;
    }

    .modal-order-img__img {
        padding: 50px 0px 0px 0px;
    }

    .modal-personal .modal__window {
        padding: 16px 10px;
    }

    .modal-personal__bot {
        align-items: center;
    }

    .modal-personal .header__top-list {
        align-items: center;
        justify-content: center;
    }

    .modal-personal .social {
        margin: 0;
        padding: 30px 0px 0px 0px;
        border-top: 1px solid var(--lightgray);
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .modal-personal__name.title-h3 {
        font-size: 18px;
    }

    .modal-sending-error .modal-personal__bot,
    .modal-sending-repeat-error .modal-personal__bot {
        padding: 0px 0px 0px 0px;
        border: none;
    }

    .modal-personal__desc {
        font-size: 14px;
    }

    .my-order__layout-btn.btn-border {
        font-size: 16px;
    }

}