.hide_tab_body-clients {
    margin: 15px auto;
    padding: 20px;
    max-width: 1200px;
}

.admin_clients_table-head div {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.customer_shopadmin_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 3px 5px 10px rgba(102, 102, 102, 0.5);
    max-width: 1200px;
}

.admin_customer_info, .admin_clients_table-head {
    width: calc(100% - 120px);
    display: grid;
    grid-template-columns: 3fr 2fr 3fr 5fr 2fr 3fr;
}

.admin_customer_info div {
    text-align: center;
}

.admin_customer_functional_block {
    padding: 0 7px;
    width: 120px;
}

.admin_customer_update {
    color: white;
    cursor: pointer;
    text-align: center;
    padding: 3px 5px;
    border-radius: 12px;
    background: #237ACA;
    transition: .1s;
    border: none;
}

.admin_product_update:hover, .admin_customer_update:hover {
    background: #45576c;
}

.customer_update_modal {
    position: fixed;
    top: 140px;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    padding: 15px;
    background: white;
    box-shadow: 0 0 8px 0 rgba(0,0,0,.52);
    border-radius: 12px;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-direction: column;
    z-index: 2;
    max-height: calc(100vh - 140px);
}

.customers_admin_close_form {
    position: sticky;
    top: 0;
    width: 70px;
    margin-left: calc(100% - 70px);
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    cursor: pointer;
}

.customers_admin_close_form img {
    width: 30px;
    background: #ffffff;
    margin-right: 20px;
}

.form-block-line {
    display: flex;
    width: auto;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.create-customer_checkbox-box{
    padding-top: 20px;
    display: flex;
    gap: 10px;
    height: 24px;
}

.create-customer_checkbox-box.first-block-checkbox {
    height: auto;
    margin-left: 30px;
}

.form-block {
    display: flex;
    flex-direction: column;
}

.form-block-body {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-block-heading {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.form-block-line {
    display: flex;
    width: auto;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.modal_update_form .inputs-box-address.customers-form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.customer_create_modal {
    position: fixed;
    top: 140px;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    padding: 15px;
    background: white;
    box-shadow: 0 0 8px 0 rgba(0,0,0,.52);
    border-radius: 12px;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-direction: column;
    z-index: 2;
    max-height: calc(100vh - 140px);
}

.modal_update_form input {
    margin: 5px 0 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 16px;
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #8F8F8F;
    box-sizing: border-box;
    border-radius: 12px;
    width: 350px;
}
.short-input-block {
    display: flex;
    align-items: center;
    transform: translateY(12px);
    margin-left: 20px;
}

.create-customer_checkbox-box.first-block-checkbox label {
    margin-top: 4px;
}

.short-input-block .input-text.short-input {
    width: 60px;
    margin: 0 5px;
}

.customers_tab_wrapper .selects-box_wrapper {
    max-width: 1170px;
}

.customers_tab_wrapper .add_product_block {
    max-width: 1200px;
}

@media(max-width: 1260px) {
    .customer_shopadmin_title {
        display: inline;
    }
    .admin_customer_info {
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
    }
    .customer_shopadmin_item {
        flex-direction: column;
        max-width: 700px;
    }
    .customer_shopadmin_item .admin_customer_info div {
        line-height: 40px;
    }
    .admin_customer_info div{
        line-height: 68px;
        max-width: 100%;
    }
    .hide_tab_body-clients {
        display: none;
    }
    .customer_update_modal {
        top: 100px;
    }
}