@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: "Hello Paris";
    src: local("Hello Paris"), url("../fonts/hello-paris-5.ttf");
}
@font-face {
    font-family: "Font Awesome Regular";
    src: local("Font Awesome Regular"), url("../fonts/fa-regular-400.ttf");
}
@font-face {
    font-family: "Font Awesome Solid";
    src: local("Font Awesome Solid"), url("../fonts/fa-solid-900.ttf");
}
@font-face {
    font-family: "Widock";
    src: local("Widock"), url("../fonts/widock.otf");
}

body, button, input, form, a, p, b, textarea, select {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    transition: .3s;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.home-body {
    background: #ededed;
}
.payment-body {
    background: #ededed;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 25px;
}
body::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
footer.fixed-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}


h1 {
    font-weight: 800;
    line-height: normal;
}

header {
    width: 100%;
    height: auto;
    background: #ffffff;
}
.no-shadow {
    box-shadow: none;
}
footer {
    width: 100%;
    height: auto;
    background: #000000;
    display: flex;
    justify-content: end;
    align-items: center;
    z-index: 200;
    position: relative;
}

.container {
    display: flex;
    width: auto;
    height: 100%;
}
.main-container {
    height: 100%;
    min-height: 100vh;
    justify-content: space-between;
    align-items: stretch;
}
.container-home {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    position: relative;
}
.container-half {
    width: 100%;
    height: 100%;
    display: inline-grid;
    grid-template-columns: 50% 50%;
}
.full-size-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.for-header {
    justify-content: space-between;
    align-items: stretch;
    height: 80px;
}
.auth-header {
    position: relative;
}
.calendar {
    position: relative;
}
.calendar .auth-header {
    margin-bottom: 0;
}
.header-logo {
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
.calendar .header-logo {
    left: 25%;
}
.home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: .5s;
    position: relative;
    width: 25%;
    z-index: 5;
}
.home-btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: .5s;
    position: relative;
    width: 25%;
    z-index: 5;
}
.home-btn:hover {
    background: #ededed;
    cursor: pointer;
}
.home-btn-auth:hover {
    background: #ededed;
    cursor: pointer;
}
.homeun-btn {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding: 5px 40px;
    transition: .5s;
    position: relative;
    box-sizing: border-box;
}
.logo-b {
    font-family: "Hey Beach", serif;
    font-size: 50px;
    line-height: unset;
}

.logo-p {
    font-family: "Spurs", sans-serif;
    font-size: 16px;
}
.menu-arrow {
    color: #000000;
    font-size: 20px;
    transition: all .5s;
}
.fast-btns {
    padding: 20px 40px 20px 0;
    position: relative;
    justify-content: end;
    align-items: center;
    gap: 10px;
    flex: 1;
    width: 25%;
}
.fast-btn {
    font-size: 18px;
    transition: .5s;
}
.fast-btn:hover {
    transform: scale(1.2);
    color: #a04e45;
    cursor: pointer;
}
.user-language {
    border: none;
    padding: 5px;
    border-radius: 5px;
}
.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.8);
    flex-direction: column;
    border-radius: 5px;
    display: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 99999;
}
.profile-menu-item {
    flex: 1;
    background: #4d67ac;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    transition: .5s;
    margin-bottom: 5px;
    border-radius: 5px;
}
.profile-menu-item:last-child {
    margin-bottom: 0;
}
.profile-menu-item:hover {
    background: #a04e45;
    cursor: pointer;
}
.hidden-form {
    display: flex;
    flex: 1;
}
.username {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.username i {
    padding-top: 10px;
}
.username p {
    font-weight: 800;
    padding: 10px;
}

.header-logo img,
.home-btn img {
    height: 100%;
    width: auto;
    max-height: 50px;
}
.home-btn img {
    height: 50px;
    overflow: hidden;
}
.homeun-btn img {
    width: auto;
    height: 100%;
    object-fit: scale-down;
}
.fa-solid {
    transition: .3s;
}
.fa-solid:last-child {
    margin: 0;
}

.main-header {
    margin-left: 20px;
}

.black-btn {
    padding: 10px;
    background: #333333;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: .5s;
}
.black-btn:hover{
    background: transparent;
    color: #333333;
    cursor: pointer;
}
.user-profile-avatar.black-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: #333333;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
    border-radius: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.user-profile-avatar.black-btn:hover {
    /* не даём black-btn:hover "смыть" фон-аватар */
    background-color: #333333;
    color: transparent;
    filter: brightness(0.92);
}
.user-profile-avatar.black-btn:focus-visible {
    outline: 2px solid rgba(160, 78, 69, 0.9);
    outline-offset: 2px;
}
.black-btn.unable {
    background: transparent;
    color: #b84a25;
    font-size: 12px;
    font-weight: 400;
}
.black-btn.unable:hover {
    cursor: auto;
    color: #674033;
}
.menu-btn {
    padding: 10px;
    color: #333333;
    border-radius: 5px;
    transition: .5s;
    border: 2px solid transparent;
}
.menu-btn:hover {
    background: #ededed;
    border: 2px solid #ededed;
    cursor: pointer;
}
.menu-btn-auth {
    padding: 10px;
    color: #333333;
    border-radius: 5px;
    transition: .5s;
    border: 2px solid transparent;
}
.menu-btn-auth:hover {
    background: #ededed;
    border: 2px solid #ededed;
    cursor: pointer;
}

.abs-lt {
    font-size: 60px;
    font-weight: 600;
    line-height: normal;
}
.abs-lt.school {
    text-align: right;
    font-weight: 700;
    font-size: 48px;
}
.abs-lt.champ {
    text-align: left;
    font-weight: 700;
}
.abs-p {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0;
}

.txt-description h2 {
    font-size: 48px;
}
.txt-description h3 {
    font-size: 32px;
    margin: 10px 0;
}
.txt-description p,
.txt-description ul li {
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 10px;
}
.txt-description p b {
    font-weight: 700;
}

.img-description {
    width: 100%;
}
.img-description img {
    width: 100%;
    object-fit: cover;
}
.black-square-container {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.black-square {
    width: 200px;
    height: 200px;
    background: #111111;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.black-square p {
    color: #ffffff;
    text-align: center;
}

.form-back {
    width: 40%;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 5px;
}
.signup-form,
.solicitar-form {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    border-radius: 5px;
    padding: 40px 90px;
    box-sizing: border-box;
}
.signup-form .crear-input-div,
.solicitar-form .crear-input-div {
    flex-basis: 100%;
    margin-bottom: 10px;
}
.signup-form .crear-input-div:has(+ .signup-forgot-row) {
    margin-bottom: 6px;
}
.signup-form .signup-forgot-row {
    flex-basis: 100%;
    width: 100%;
    margin: 0 0 14px 0;
    padding-left: 2px;
    box-sizing: border-box;
    text-align: left;
}
.signup-form .signup-forgot-link {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    font: inherit;
    font-weight: 500;
    font-size: 14px;
    color: #4d67ac;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.signup-form .signup-forgot-link:hover {
    color: #a04e45;
}
.signup-form .signup-forgot-link:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.signup-form .signup-form-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.signup-form .container-form-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.signup-form .signup-form-btn-full {
    width: 100%;
    box-sizing: border-box;
}
.signup-form .container-form-btn .signup-form-divider {
    margin: 14px 0;
    text-align: center;
    align-self: center;
}
.change-form-header.signup-header {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}
.form-btn {
    padding: 10px 20px;
    background: #4d67ac;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: .5s;
    font-size: 16px;
}
.form-btn:hover {
    background: #a04e45;
    cursor: pointer;
}
.form-btn.black {
    background: #444444;
}
.form-btn.black:hover {
    background: #000000;
}
.crear-btn {
    padding: 10px 20px;
    background: #4d67ac;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: .5s;
    font-size: 14px;
    font-weight: 700;
}
.crear-btn:hover {
    background: #a04e45;
    cursor: pointer;
}
.crear-btn.crear-empty {
    background: transparent;
    border: 2px solid #4d67ac;
    color: #4d67ac;
}
.crear-btn.crear-empty:hover {
    background: #4d67ac;
    color: #FFFFFF;
}
.container-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s linear, visibility .5s linear;
}
.container-popup.show {
    opacity: 1;
    visibility: visible;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #000000;
    transition: .3s;
}
.close-btn:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.container-admin {
    width: 75%;
    padding: 2%;
    animation: fadein .3s ease-in-out forwards;
}
.container-admin.for-people {
    width: 72%;
}
.container-admin.for-change-profile {
    height: 100%;
}
.change-profile-wrapper {
    background: #333333;
    width: 100%;
    height: 100%;
    padding: 40px;
    border-radius: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.container-in {
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
}
.container-in.for-signup {
    justify-content: center;
}
.item {
    flex: 1;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: #333333;
    padding: 20px;
    flex-direction: column;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 20px;
    transition: .5s;
    min-width: 55%;
}
.item h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.item h3, .item button {
    margin-bottom: 20px;
}
.gray-item {
    background: #333333;
}
.white-item {
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.item.white-item.item-results {
    max-height: unset;
}
.item.black-item {
    background: #333333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.item.lightblack-item {
    background: #0b0c0f;
    max-height: unset;
}
.item.black-item.for-signup {
    flex: unset;
    width: 55%;
}
.item.gray-item.personal-main-item {
    max-height: unset;
}
.item.gray-item.profile-dashboard-item {
    min-width: 42%;
    padding: 20px 0 0 0;
}
.item.gray-item.profile-dashboard-item h3 {
    margin-left: 20px;
}
.item::-webkit-scrollbar {
    width: 5px;
    height: 25px;
}
.item::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.item::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.create-btns {
    width: 100%;
    justify-content: start;
}
.create-btn {
    padding: 10px;
    background: #4d67ac;
    color: #ffffff;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    transition: .5s;
    margin-right: 10px;
}
.create-btn:last-child {
    margin-right: 0;
}
.create-btn:hover {
    background: #a04e45;
    cursor: pointer;
}
.create-btn:active {
    transform: scale(1.1);
}
.partner-item {
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 2%;
}
.partner-item.personal-item {
    justify-content: start;
    align-items: stretch;
}
.order-split,
.order-big-split {
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    gap: 10px;
    transition: .5s;
    position: relative;
    overflow: hidden;
    display: flex;
}
.order-split.persons-split {
    flex-direction: column;
}
.order-split img {
    height: 50px;
    width: auto;
    object-fit: scale-down;
}
.order-split.for-personal {
    align-content: start;
    justify-content: start;
    padding: 30px 20px;
}
.order-split.for-personal input {
    flex-basis: 100%;
}
.order-split b {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}
.order-split .order-name {
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}
.order-big-split {
    min-width: 60%;
    justify-content: start;
}
.order-split:hover {
    transform: scale(1.05);
}
.order-data-item {
    gap: 10px;
    min-width: 48%;
}
.order-data-item.flex-grow {
    flex-basis: 100%;
}
.order-data-item .order-txt,
.order-data-item .order-i {
    font-size: 12px;
}
.order-big-split.for-personal {
    min-width: 75%;
    overflow: visible;
}
.order-big-split.for-personal:hover,
.order-split.for-personal:hover {
    transform: none;
}
.order-data-item.personal-data-item {
    min-width: 20%;
}
.order-data-item.personal-data-item p {
    text-align: left;
}
.order-data-item.personal-data-item h4,
.order-data-item.personal-data-item i,
.order-data-item.personal-data-item p,
.order-split.for-personal p {
    color: #ededed;
}
.order-data-item.personal-data-item p {
    font-size: 14px;
    font-weight: 500;
}
.order-data-item.personal-data-item .fa-solid.fa-square-minus:hover {
    color: #a04e45;
    cursor: pointer;
}
.order-split.for-personal .personal-name {
    font-weight: 700;
}
.order-split.for-personal .crear-input-div.select-div .crear-select.select-options {
    border-bottom: none;
}

.barberia-pagina {
    padding: 5px;
    background: #4d67ac;
    border: none;
    color: #ffffff;
    border-radius: 5px;
    transition: .3s;
    text-align: center;
}
.barberia-pagina:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.order-split:last-child {
    margin-bottom: 0;
}
.order-split p {
    margin: 0;
    text-align: center;
    font-weight: 400;
}
.partner-name {
    font-size: 2em;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 2%;
    left: 2%;
    color: rgba(0, 0, 0, 0.1);
}
.partner-name.white-name {
    color: rgba(255, 255, 255, 0.1);
}
.partner-inputs {
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
}
.partner-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: .3s;
}
.partner-fetch-status {
    width: 48%;
    justify-content: center;
    margin-top: 20px;
}
.partner-fetch-status p {
    animation: fadein .3s forwards;
}

.container-change-form {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    border: 1px solid #000000;
}
.container-change-b {
    flex-wrap: wrap;
    height: 100%;
}
.change-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    align-content: start;
    border-radius: 5px;
    padding: 20px;
    transition: .5s;
    min-width: 45%;
    box-sizing: border-box;
}
.change-form .crear-input-div {
    margin-bottom: 10px;
    margin-right: 10px;
}
.change-b-form {
    flex: 1;
    min-width: 60%;
    background: #333333;
    background-size: auto 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    align-content: start;
    border-radius: 5px;
    padding: 20px 10px;
    gap: 2%;
    margin-bottom: 10px;
}
.change-form.gradient {
    background-image: linear-gradient(to right top, #afcfff, #c2ceff, #d7cdff, #ebccff, #ffcbfd);
}
.change-form.gradient-yellow {
    background-image: linear-gradient(to right bottom, #ffffaf, #ffe4a7, #ffcbbc, #ffbde0, #efbcff);
}
.change-form.dark {
    background: #444444;
    background-image: radial-gradient(at 16.0% 84.0%, #0c364d 0px, transparent 50%),radial-gradient(at 39.0% 42.0%, #450e47 0px, transparent 50%),radial-gradient(at 50.0% 28.0%, #692d08 0px, transparent 50%),radial-gradient(at 23.0% 65.0%, #39596e 0px, transparent 50%),radial-gradient(at 85.0% 47.0%, #425357 0px, transparent 50%),radial-gradient(at 55.0% 39.0%, #472525 0px, transparent 50%)
}
.change-form.dark-sub {
    height: 100vh;
    background: #444444;
    background-image: radial-gradient(at 16.0% 84.0%, #1c4d0c 0px, transparent 50%),radial-gradient(at 39.0% 42.0%, #06402c 0px, transparent 50%),radial-gradient(at 50.0% 28.0%, #5e3922 0px, transparent 50%),radial-gradient(at 23.0% 65.0%, #525432 0px, transparent 50%),radial-gradient(at 85.0% 47.0%, #425357 0px, transparent 50%),radial-gradient(at 55.0% 39.0%, #472525 0px, transparent 50%);
    overflow-y: scroll;
    align-content: start;
}
.change-form.dark-sub::-webkit-scrollbar {
    width: 5px;
    height: 25px;
}
.change-form.dark-sub::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.change-form.dark-sub::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.change-form-header-container {
    flex-basis: 100%;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 10px;
}
.white-h4 {
    color: #FFFFFF;
    margin: 10px 0;
}
.change-bar-header-container {
    width: 50%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.change-form-header {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    flex: 1;
}
.change-form-header.add-partners {
    color: #000000;
}
.change-form-header.add-payments {
    color: #FFFFFF;
}
.change-form-elem {
    width: 48%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.change-form-elem.elem-services {
    flex-direction: row;
    flex-wrap: wrap;
    width: 45%;
    justify-content: center;
    align-items: center;
}
.change-barberia-inputs {
    flex: 1;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 10px;
    width: 45%;
    justify-content: center;
}
.change-barberia-inputs h4 {
    flex-basis: 100%;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0;
}
.change-form-elem h4 {
    color: #ffffff;
    margin-bottom: 10px;
}
.change-form-input {
    width: 100%;
    padding: 10px 5px 10px 40px;
    border: 1px solid #ffffff;
    background: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}
.change-form-input.search-reestr {
    border: 1px solid #cecece;
}
.change-form-input.long-textarea {
    min-height: 150px;
}
.change-form-input[type='button'] {
    text-align: left;
    line-height: normal;
}
.change-form-input:focus {
    background: #ededed;
    border: 1px solid #999999;
    outline: none;
}
.change-form-input:focus + .fa-solid,
.change-form-input:focus + .fa-regular,
.change-form-input:focus + .fa-brands {
    color: #000000;
}
.change-form-input.signup-input {
    padding: 15px 5px 15px 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.change-form-input.signup-input.with-phone {
    padding: 15px 5px 15px 75px;
}
.change-form-input.signup-input:focus {
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.change-form-input.for-phone {
    padding: 10px 10px 10px 40px;
}
.container-form-btn,
.container-payments {
    width: 100%;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    flex-basis: 100%;
}
.container-form-btn p {
    margin: 30px 0;
    font-weight: 400;
}
.est-form-btn {
    width: 100%;
    justify-content: center;
    margin: 10px 0;
    flex-basis: 100%;
}
.errors,
.payment-link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.errors p {
    font-weight: 400;
    font-size: 14px;
    color: #a04e45;
    margin-bottom: 10px;
    animation: fadein .5s forwards;
    text-align: center;
}
.errors b {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}
.errors .square-p {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}
.payment-link {
    background: #ffffff;
    border-radius: 10px;
    width: auto;
}
.payment-link a {
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    transition: .3s;
}
.payment-link a:hover {
    cursor: pointer;
    color: #999999;
}
.container-new-payment,
.container-cr-payments {
    flex: 1;
    border: 1px solid #000000;
    border-radius: 5px;
    min-width: 45%;
}
.container-new-payment {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 0 10px #000000;
}
.output-input {
    flex: 1;
    position: relative;
    max-width: 45%;
}
.output-input .fa-solid,
.output-input .fa-regular {
    position: absolute;
    font-size: 14px;
    top: 0;
    left: 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #999999;
    transition: .3s;
}
.container-change-form .payment-form .payment-form-elem .output-input .payment-form-input:focus + .fa-solid,
.container-change-form .payment-form .payment-form-elem .output-input .payment-form-input:focus + .fa-regular {
    color: #000000;
}
.payment-form-input {
    background: #ffffff;
    padding: 15px 5px 15px 30px;
    flex: 1;
    border: 1px solid #ffffff;
    margin-bottom: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
.payment-form-input {
    background: #ededed;
    border: 1px solid #999999;
    outline: none;
}
.customer-order-num {
    flex: 1;
    flex-basis: 100%;
    text-align: center;
    margin-top: 50px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}
.fly-input-div.flex-grow,
.crear-input-div.flex-grow,
.unpaid-sub-header.flex-grow,
.flex-grow {
    flex-basis: 100%;
}
.crear-input-div.flex-grow.full-width {
    width: 100%;
}
.accounts-elem b {
    margin-bottom: 20px;
}
.accounts-elem p {
    font-weight: 400;
}

.change-errors {
    color: #ffffff;
}
.errors.change-errors p {
    color: #FFFFFF;
    font-weight: 600;
}
.errors.change-errors b {
    animation: fadein .5s forwards;
}

/*Styling Selectbox*/
.dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px;
}
.dropdown .select > i {
    font-size: 14px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px;
}

.dropdown.active:hover,
.dropdown.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 10px 10px 0 0;
    background-color: #f8f8f8
}
.dropdown.active .select > i {
    transform: rotate(-90deg)
}
.dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.dropdown .dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}
.dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}
.dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}
.container-menu {
    width: 25%;
    justify-content: start;
    align-items: start;
}
.container-menu.no-display {
    display: none;
}
.menu {
    background-image: linear-gradient(to right top, #afcfff, #c2ceff, #d7cdff, #ebccff, #ffcbfd);
    justify-content: start;
    align-items: start;
    height: 100%;
    width: 100%;
    padding: 60px 0 0 60px;
    box-sizing: border-box;
}
.menuvh {
    height: 80vh;
}
.menu-ul {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.menu-item {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    gap: 3%;
    transition: .3s;
}
.menu-i {
    margin-right: 0;
    display: flex;
    width: 10%;
}
.menu-item:hover {
    cursor: pointer;
    color: #999999;
}
.menu-item:hover > .fa-solid {
    transform: scale(1.2);
}
.container-menew {
    width: 25%;
    justify-content: start;
    align-items: center;
    position: fixed;
    height: 100%;
    z-index: 100;
    display: none;
}
.menew {
    background: rgb(51,51,51);
    background: linear-gradient(45deg, rgba(51,51,51,1) 0%, rgba(71,71,71,1) 100%);
    justify-content: start;
    align-items: stretch;
    height: 100%;
    width: 100%;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}
.menew-item {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: .3s;
    color: #FFFFFF;
    display: inline-grid;
    grid-template-columns: 10% 88%;
    justify-content: space-between;
}
.menew-item.with-chevron {
    grid-template-columns: 10% 76% 10%;
}
.menew-item:hover {
    cursor: pointer;
    color: #999999;
}
.menew-item:hover > i {
    transform: scale(1.1);
}
.menew-item.hr-item {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.menew-ul {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    position: relative;
}
.menew-ul.admin-menew {
    position: absolute;
    bottom: 0;
    left: 100%;
    background: rgb(51,51,51);
    padding: 40px;
    width: 70%;
    box-shadow: 3px -3px 4px rgba(0, 0, 0, 0.5);
    border-radius: 0 5px 5px 0;
    flex-direction: column;
    display: none;
}
.home-btn-menew {
    width: 100%;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: .3s;
    margin-bottom: 20px;
}
.home-btn-menew-auth {
    width: 100%;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: .3s;
    margin-bottom: 20px;
}
.home-btn-menew:hover {
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
.home-btn-menew p {
    color: #FFFFFF;
}
.home-btn-menew-auth:hover {
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
.home-btn-menew-auth p {
    color: #FFFFFF;
}
.for-footer {
    width: 80%;
    height: auto;
    padding: 40px 80px;
    display: inline-grid;
    grid-template-columns: 33% 33% 33%;
}
.footer-menu ul li {
    color: #ffffff;
    margin-bottom: 20px;
    transition: .3s;
}
.footer-menu ul li:last-child {
    margin-bottom: 0;
}
.footer-menu ul li:hover {
    cursor: pointer;
    transform: scale(1.3);
}
.footer-menu ul li:hover:has(a) {
    cursor: pointer;
    transform: none;
}
.footer-menu ul .copyright {
    font-weight: 400;
}
.footer-menu ul .copyright:hover {
    transform: none;
    cursor: auto;
}
.footer-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.container-for-barberias {
    width: 100%;
    padding: 0 50px;
    display: inline-grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
}
.container-barberia-grid {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 50px;
    position: relative;
}
.container-service.add-input {
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.container-service.add-input i {
    font-size: 24px;
    color: #ffffff;
    border-radius: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.container-service.add-input i:hover {
    transform: scale(1.5);
    cursor: pointer;
}
.old-service,
.blank-service {
    width: 100%;
}
.container-service.old-service i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    justify-items: center;
    color: #a04e45;
    transition: .3s;
}
.container-service.old-service i:hover {
    transform: scale(1.5);
    cursor: pointer;
}
.change-form-input.service-input {
    background: #ededed;
    width: 100%;
    padding: 5px 5px 5px 20px;
    border: 1px solid #000000;
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 14px;
}
.change-form-input.new-service-input {
    width: 100%;
    padding: 5px 5px 5px 20px;
    border: 1px solid #000000;
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 14px;
}
.container-service.blank-service i {
    color: #333333;
}

.container-date,
.container-time {
    flex-direction: column;
    border-radius: 3px;
    background: #ededed;
    padding: 5px;
    flex: 1;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.container-time {
    margin: 5px 0;
    min-width: 10%;
    background: transparent;
    color: #ededed;
}
.past-date {
    background: #666666;
    flex-direction: column;
    border-radius: 3px;
    padding: 5px;
    flex: 1;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
}
.cal-b {
    font-size: 14px;
    font-family: "Lora", sans-serif;
    font-weight: 700;
}
.cal-p {
    font-family: "Lora", sans-serif;
    font-weight: 400;
    text-align: center;
}
.container-date:hover,
.container-time:hover {
    background: #cb984e;
    cursor: pointer;
}
.checked-date {
    background: #cb984e;
    color: #ffffff;
}
.checked-time {
    background: #cb984e;
    color: #ffffff;
}
.my-date {
    margin-bottom: 0;
}

.container-citas {
    display: flex;
    width: auto;
    height: auto;
    justify-content: space-between;
    align-items: stretch;
    opacity: 0;
    animation: fadein 2s forwards;
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadein {
    animation: fadein 1s ease-in forwards;
}
.fadeout {
    animation: fadeout .5s ease-out forwards;
}
.citas {
    width: 100%;
    flex: 1;
    overflow-x: scroll;
    padding: 60px 20px 20px 20px;
    gap: 5px;
    cursor: grab;
}
.citas.active {
    cursor: grabbing;
}

.citas[data-dragging="true"] a {
    pointer-events: none;
}
.citas::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.citas::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}
.citas::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.date-time-choose {
    flex-direction: column;
    min-width: 150px;
    height: 100%;
    position: relative;
}
.times {
    flex-direction: column;
    padding: 60px 10px 20px 40px;
    border-right: 1px solid #e5e5e5;
}
.time-elem {
    height: 20px;
    box-shadow: -1px -1px 3px 0 rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    background: rgb(251,251,251);
    background: linear-gradient(0deg, rgba(251,251,251,1) 0%, rgba(255,255,255,1) 35%, rgba(245,245,245,1) 100%);
    position: relative;
    overflow: hidden;
    transition: .3s;
}
.clock-elem {
    height: 20px;
}
.clock-elem-empty {
    height: 19px;
    border-top: 1px solid #ededed;
}
.clock-elem p {
    font-weight: 600;
    color: #666666;
    font-size: 14px;
}
.clock-elem:last-child {
    border-bottom: none;
}
.time-elem.today-time:hover {
    filter: brightness(0.95);
}
.time-elem.today-time:active {
    filter: brightness(0.9);
}
.time-elem.past-time {
    background: rgb(251,251,251);
    background: linear-gradient(0deg, rgba(240,240,240,1) 0%, rgba(245,245,245,1) 35%, rgba(235,235,235,1) 100%);
}
.time-elem.cita-time {
    background: rgb(56,98,210);
    background: linear-gradient(0deg, rgba(56,98,210,1) 0%, rgba(49,79,161,1) 50%, rgba(49,83,173,1) 100%);
    padding: 2px;
    overflow: hidden;
    max-height: 30px;
    flex-direction: column;
    box-sizing: border-box;
    transition: .3s;
    color: #ffffff;
}
.container-for-shrink {
    height: 20px;
    transition: .3s;
}
.container-for-shrink:hover {
    height: 30px;
}
.time-elem.cita-past-time {
    transition: .3s;
}
.time-elem.cita-time.shrinked2,
.time-elem.cita-past-time.shrinked2,
.time-elem.cita-time.shrinked3,
.time-elem.cita-past-time.shrinked3,
.time-elem.cita-time.shrinked4,
.time-elem.cita-past-time.shrinked4 {
    transition: .3s;
}
.time-elem.cita-time:hover,
.time-elem.cita-past-time:hover {
    max-height: 30px;
    height: 30px;
    cursor: pointer;
}
.time-elem.cita-past-time {
    background: rgb(230,254,189);
    background: linear-gradient(0deg, rgba(230,254,189,1) 0%, rgba(227,255,181,1) 50%, rgba(214,254,148,1) 100%);
    padding: 2px;
    overflow: hidden;
    max-height: 30px;
    flex-direction: column;
    box-sizing: border-box;
}
.time-elem.cita-time b,
.time-elem.cita-time p,
.time-elem.cita-past-time p,
.time-elem.cita-past-time b {
    font-size: 12px;
    font-weight: 400;
}
.time-elem.cita-time b,
.time-elem.cita-past-time b {
    font-weight: 700;
}
.time-elem.cita-past-time p,
.time-elem.cita-past-time b {
    color: #000000;
}
.date-name {
    display: flex;
    position: absolute;
    top: -60px;
    left: 0;
    min-width: 150px;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 5%;
}
.cal-round {
    background: #4d67ac;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.cal-round .calendar-b {
    color: #ffffff;
}
.cal-round .calendar-p {
    color: #dedede;
}
.calendar-b,
.calendar-p {
    font-size: 14px;
}
.calendar-b {
    font-weight: 600;
}
.calendar-p {
    font-weight: 600;
    color: #999999;
}
.fly-form {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 50000;
    width: 300px;
    height: 250px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background: radial-gradient(circle at 10% 20%, rgb(90, 92, 106) 0%, rgb(0, 0, 0) 81.3%);
    border-radius: 5px;
    transition: .7s;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 20px;
    cursor: default;
    animation: slidein 0.5s forwards;
}
.fly-form.new-fly-form {
    background: #FFFFFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
    width: 400px;
    height: 250px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1%;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.fly-form p {
    display: flex;
    flex: 1;
    min-width: 80%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}
.fly-form .go-whatsapp {
    color: #FFFFFF;
    transition: .3s;
}
.fly-form .go-whatsapp:hover {
    color: #d9d9d9;
    transform: scale(1.2);
    cursor: pointer;
}
.fly-form p i {
    font-size: 12px;
}
.fly-form .fa-solid {
    margin-right: 10px;
}

@keyframes slidein {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideout {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0);
        opacity: 0;
    }
}
.fly-form-remove {
    animation: slideout 0.5s forwards;
}
.fly-b,
.fly-p,
.fly-thin {
    text-align: left;
    color: #ffffff;
    font-size: 14px;
}
.fly-b {
    font-weight: 700;
}
.fly-thin {
    font-weight: 400;
}
.fly-x-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99999;
}
.fly-btn-container,
.fly-errors-container {
    width: 100%;
    justify-content: center;
    gap: 5%;
    margin-top: 10px;
}
.fly-errors-container {
    padding-top: 20px;
    justify-items: center;
}
.square-p {
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    font-weight: 400;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 5px;
    animation: fadein .5s forwards;
}
.fly-btn-container.crear-cita-btn {
    flex-basis: 100%;
}
.fly-x {
    color: #ffffff;
    transition: .3s;
}
.barberia-white .fly-x {
    color: #333333;
}
.fly-x:hover {
    transform: scale(1.5);
    cursor: pointer;
}
.fly-btn,
.fly-square-btn {
    border: none;
    padding: 10px;
    background: #a04e45;
    color: #ffffff;
    transition: all .5s;
    border-radius: 5px;
    font-weight: 900;
    font-size: 12px;
}
.fly-btn.new-fly-btn,
.fly-square-btn {
    background: #4d67ac;
}
.fly-btn.new-fly-btn:disabled,
.crear-btn:disabled {
    background: #999999;
}
.fly-btn:hover {
    background: #666666;
    cursor: pointer;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2);
}
.fly-square-btn:hover {
    cursor: pointer;
    background: #2E703A;
}
.fly-input-div {
    position: relative;
    flex: 1;
    min-width: 45%;
}
.header-cal-bar-div {
    position: relative;
    min-width: 50%;
}
.add-input-div {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
}
.add-input-c {
    width: 100%;
    height: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.fly-label {
    display: none;
    width: 100%;
}
.custom-checkbox {
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px 5px 15px 30px;
    box-sizing: border-box;
    transition: .3s;
    color: #ffffff;
    font-size: 14px;
}
.custom-checkbox.time-checkbox {
    padding: 5px;
}
.header-cal-bar-div .fly-options .custom-checkbox {
    padding: 10px;
}
.custom-checkbox:last-child {
    border-radius: 0 0 5px 5px;
}
.custom-checkbox:hover {
    background: rgba(255, 255, 255, 0.3);
}
.fly-label:checked + .custom-checkbox {
    background: rgba(255, 255, 255, 0.3);
}
.fly-input-div .fa-solid,
.fly-input-div .fa-regular {
    position: absolute;
    font-size: 14px;
    top: 0;
    left: 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #ededed;
    transition: .3s;
}
.fly-input,
.fly-select {
    background: transparent;
    padding: 5px 5px 5px 30px;
    border: none;
    border-bottom: 1px solid #ffffff;
    font-size: 14px;
    color: #ffffff;
    transition: .3s;
    flex: 1;
    text-align: left;
    width: 100%;
}
.fly-form.new-fly-form .fly-select.selected-option,
.crear-form .crear-input-div .crear-select.select-options.selected-option {
    color: #000000;
}
.header-cal-select {
    background: rgba(77, 103, 172, 0.1);
    padding: 10px 20px 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    transition: .3s;
    flex: 1;
    text-align: left;
}
.fly-select.header-cal-select {
    color: #444444;
}
.header-cal-bar-div .fa-solid {
    color: #444444;
    position: absolute;
    font-size: 14px;
    top: 0;
    left: 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: .3s;
}
.add-select {
    width: 100%;
    padding: 10px 5px 10px 40px;
    border: 1px solid #ffffff;
    background: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-align: left;
    color: #666666;
    line-height: normal;
}
.add-select:focus {
    background: #e1e1e1;
    border: 1px solid #999999;
    outline: none;
}
.add-select.select-options:disabled {
    background: #dcdcdc;
    border: 1px solid #dcdcdc;
}
.fly-input::placeholder,
.fly-select {
    color: #ededed;
}
.fly-input:focus,
.fly-select:focus {
    outline: none;
    border: none;
    background: rgba(255,255,255,0.2);
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}
.fly-form.new-fly-form .fly-select {
    border-bottom: 1px solid #666666;
    font-weight: 500;
    font-size: 14px;
}
.fly-form.new-fly-form .fly-input,
.fly-form.new-fly-form .fly-select:focus {
    color: #000000;
    border-bottom: 1px solid #666666;
    font-weight: 500;
    font-size: 14px;
}
.fly-form.new-fly-form .fly-input::placeholder,
.fly-form.new-fly-form .fly-select {
    color: #999999;
}
.fly-form.new-fly-form .fly-input:disabled::placeholder,
.crear-input:disabled::placeholder {
    color: #dfdfdf;
}
.fly-input.fly-date-chose,
.fly-form.new-fly-form .fly-input.fly-date-chose {
    font-size: 18px;
    font-weight: 800;
    color: #333333;
}
.fly-form.new-fly-form .fly-input.fly-date-chose {
    border-bottom: none;
}
.header-cal-select:focus {
    outline: none;
    border: none;
    background: rgba(77, 103, 172, 0.4);
    color: #000000;
    border-radius: 5px 5px 0 0;
}
.rotate-chevron {
    transform: rotate(180deg);
}
.fly-select {
    position: relative;
}
.fly-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #444444;
    visibility: hidden;
    display: none;
    flex-direction: column;
    z-index: 99999;
    border-radius: 0 0 5px 5px;
    animation: fadeout .1s ease-in forwards;
}
.header-cal-bar-div .fly-options {
    background: #4d67ac;
}
.show-options {
    animation: fadein .3s ease-in forwards;
    visibility: visible;
    overflow-y: scroll;
    max-height: 250px;
    display: flex;
}
.show-options::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.add-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #444444;
    display: none;
    flex-direction: column;
    z-index: 99999;
    border-radius: 0 0 5px 5px;
}
.fly-input-div-op {
    margin: 0;
    flex: 1;
}
.fly-input-div-op label {
    flex: 1;
    box-sizing: border-box;
}
.fly-form.new-fly-form .fly-input-div .fly-input:focus + .fa-solid,
.fly-form.new-fly-form .fly-input-div .fly-input:focus + .fa-regular,
.fly-form.new-fly-form .fly-input-div .fly-select:focus + .fa-solid,
.fly-form.new-fly-form .fly-input-div .fly-select:focus + .fa-regular,
.fly-form.new-fly-form .fly-input-div .fly-select.selected-option + .fa-solid,
.fly-form.new-fly-form .fly-input-div .fly-select.selected-option + .fa-regular,
.crear-form .crear-input-div .crear-select.select-options.selected-option  + .fa-solid,
.crear-form .crear-input-div .crear-select.select-options.selected-option  + .fa-regular {
    color: #000000;
}
.fly-form.new-fly-form .fly-x-container .fly-x {
    color: #666666;
}
.fly-input-div.fly-errors {
    margin-top: 5px;
    justify-content: center;
    align-items: center;
}
.fly-input-div.fly-errors p,
.fly-input-div.fly-errors span {
    display: unset;
    width: 100%;
    color: #000000;
    font-weight: 400;
    font-size: 10px;
    text-align: center;
    animation: fadein .5s forwards;
}
.select-div:has(input[type='radio']:checked) > .add-select,
.select-div:has(input[type='radio']:checked) > i,
.select-div:has(input[type='radio']:checked) > .select-options {
    color: #000000;
}
.con-size {
    animation: incsize .7s ease-in forwards;
}
.con-size-no-anim {
    width: 100%;
}
.no-fade {
    animation: unset;
}
@keyframes incsize {
    0% {
        width: 75%;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        width: 100%;
    }
}
@keyframes decsize {
    from {
        width: 90%;
    }
    to {
        width: 80%;
    }
}
.absolute-i {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 55555;
    opacity: 0;
    transition: .5s;
}
.absolute-i i {
    color: #666666;
    transition: .3s;
}
.absolute-i:hover i {
    transform: scale(1.5);
    cursor: pointer;
}
.order-big-split:hover .absolute-i,
.order-split:hover .absolute-i,
.order-big-split.for-personal:hover .absolute-i,
.order-split.order-data:hover .absolute-i {
    opacity: 1;
}
.order-split.partners-split {
    overflow: visible;
}
.sharp-down-borders {
    border-radius: 10px 10px 0 0;
}
.container-crear {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
.crear-form {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2%;
    max-width: 50%;
    padding: 2%;
    box-sizing: border-box;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}
.crear-form h4 {
    flex-basis: 100%;
}
.crear-input-div,
.price-input-div,
.course-input-div {
    position: relative;
    flex: 1;
    min-width: 48%;
}
.course-input-div {
    flex-wrap: wrap;
    border: 1px solid #FF6633;
    min-width: 90%;
    background: rgba(100, 100, 100, 0.1);
    border-radius: 5px;
    justify-content: space-between;
}
.course-textarea {
    width: calc(100% - 16px);
    height: 100px;
    font-weight: 400;
    border: none;
    resize: vertical;
    display: none;
}
.course-textarea.visible {
    display: block;
    animation: fadein .5s forwards;
    padding: 10px;
}
.crear-input-div.for-qr {
    background: #FFFFFF;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.crear-input-div.for-qr:hover {
    cursor: pointer;
    opacity: 0.8;
}
.crear-input-div.for-qr img {
    height: 100%;
    width: auto;
    object-fit: scale-down;
}
.price-input-div {
    margin-bottom: 10px;
}
.crear-input-div.half-crear-input-div {
    min-width: 30%;
}
.crear-date-input-div,
.crear-time-input-div {
    position: relative;
}
.additional-phone {
    transition: all .3s;
}
.crear-input-div .fa-solid,
.crear-input-div .fa-regular,
.crear-input-div .fa-brands,
.crear-date-input-div .fa-solid,
.crear-time-input-div .fa-solid,
.crear-date-input-div .fa-regular,
.crear-time-input-div .fa-regular,
.crear-input-div .additional-phone {
    position: absolute;
    font-size: 14px;
    top: 0;
    left: 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #999999;
    transition: .3s;
}
.crear-input-div .fa-brands.max-custom-svg img {
    height: 18px;
}
.crear-input-div .show-pass {
    position: absolute;
    font-size: 14px;
    top: 0;
    left: unset;
    right: 10px;
    width: 5%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #999999;
    transition: .3s;
}
.crear-input-div .show-pass:hover {
    cursor: pointer;
    color: #333333;
}
.crear-input-div .country-code-label {
    height: 100%;
    width: 25px;
    display: flex;
    position: absolute;
    top: 0;
    left: 40px;
    align-items: stretch;
    justify-content: space-between;
}
.crear-input-div .country-code-input {
    max-width: 100%;
    font-size: 16px;
    background: transparent;
    color: #000000;
    border: none;
    border-right: 1px solid rgba(0,0,0,0.1);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.crear-input-div .country-code-input:focus {
    outline: none;
    color: #000000;
}
.crear-input-div.est-input {
    min-width: 30%;
}
.crear-input-div.est-input .fa-solid {
    color: #333333;
}
.crear-input-div .additional-phone {
    left: 30px;
    font-size: 16px;
    color: #000000;
}
.crear-x-container {
    flex-basis: 100%;
    justify-content: end;
    margin-bottom: 20px;
}
.crear-x-container i {
    font-size: 20px;
    transition: .3s;
}
.crear-x-container i:hover {
    transform: scale(1.5);
    cursor: pointer;
}
.crear-input,
.crear-select,
.service-select,
.time-select {
    width: 100%;
    background: transparent;
    padding: 15px 5px 15px 30px;
    border: none;
    border-bottom: 2px solid #999999;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    transition: .3s;
    text-align: left;
}
.crear-input::-webkit-calendar-picker-indicator {
    background: none;
}
.crear-input.crear-phone {
    padding: 15px 5px 15px 75px;
}
.crear-btn-container {
    flex-basis: 100%;
    justify-content: center;
    margin: 20px 0;
}
.crear-input::placeholder,
.crear-select,
.service-select,
.time-select {
    color: #999999;
}
.crear-select.est-input {
    color: #333333;
}
.crear-input:focus,
.crear-select:focus,
.service-select:focus,
.time-select:focus {
    outline: none;
    border: none;
    background: rgba(0,0,0,0.1);
    border-bottom: 2px solid #000000;
    color: #000000;
}
.crear-input-div .crear-input:focus + .fa-solid,
.crear-input-div .crear-input:focus + .fa-regular,
.crear-form .crear-input-div .crear-input:focus + .fa-solid,
.crear-form .crear-input-div .crear-input:focus + .fa-regular,
.crear-form .crear-input-div .crear-select:focus + .fa-solid,
.crear-form .crear-input-div .crear-select:focus + .fa-regular,
.crear-form .crear-input-div .service-select:focus + .fa-solid,
.crear-form .crear-input-div .service-select:focus + .fa-regular,
.crear-form .crear-date-input-div .crear-input:focus + .fa-solid,
.crear-form .crear-date-input-div .crear-input:focus + .fa-regular,
.crear-form .crear-time-input-div .crear-input:focus + .fa-solid,
.crear-form .crear-time-input-div .crear-input:focus + .fa-regular,
.crear-form .crear-input-div .time-select:focus + .fa-solid,
.crear-form .crear-input-div .time-select:focus + .fa-regular {
    color: #000000;
}
.crear-select.select-options.weekday-interval {
    color: #dcdcdc;
    border: 1px solid #999999;
    border-radius: 5px;
}
.crear-select.select-options.weekday-interval:focus {
    color: #ffffff;
}
.crear-form .crear-input-div .crear-input.crear-phone:focus + .additional-phone {
    color: #000000;
}
.crear-date-time {
    flex: 1;
    min-width: 48%;
    gap: 5%;
}
.crear-date-input-div {
    width: 60%;
}

.crear-time-input-div {
    width: 35%;
}

#vanilla-calendar,
#vanilla-calendar0,
#vanilla-calendar1,
#vanilla-calendar2,
#vanilla-calendar3,
#vanilla-calendar4,
#vanilla-calendar5,
#vanilla-calendar6,
#vanilla-calendar7,
#vanilla-calendar8,
#vanilla-calendar9,
#vanilla-calendar10,
#vanilla-calendar11,
#vanilla-calendar12,
#vanilla-calendar13,
#vanilla-calendar14,
#vanilla-calendar15,
#vanilla-calendar16,
#vanilla-calendar17,
#vanilla-calendar18,
#vanilla-calendar19,
#vanilla-calendar20,
#vanilla-issue,
#vanilla-expire,
#vanilla-calendar-promo {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}
#suscripcion-calendar0,
#suscripcion-calendar1,
#suscripcion-calendar2,
#suscripcion-calendar3,
#suscripcion-calendar4,
#suscripcion-calendar5,
#suscripcion-calendar6,
#suscripcion-calendar7,
#suscripcion-calendar8,
#suscripcion-calendar9,
#suscripcion-calendar10,
#suscripcion-calendar11,
#suscripcion-calendar12,
#suscripcion-calendar13,
#suscripcion-calendar14,
#suscripcion-calendar15,
#suscripcion-calendar16,
#suscripcion-calendar17,
#suscripcion-calendar18,
#suscripcion-calendar19,
#suscripcion-calendar20 {
    display: none;
    position: absolute;
    bottom: -200%;
    left: -100%;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    z-index: 99999;
}
#crear-vanilla-calendar,
#reserve-vanilla-calendar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    z-index: 99990;
}

.crear-header {
    position: relative;
    width: 50%;
    height: 20%;
    justify-content: center;
}
.crear-header img {
    width: 150px;
    height: auto;
}
.crear-errors {
    flex: 1;
    justify-content: center;
    align-items: center;
}
.errors-anim,
.add-personal-errors p {
    animation: fadein .5s forwards;
}
.form-personal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    box-sizing: border-box;
}
.form-personal.hidden-create-personal {
    max-height: 0;
    opacity: 0;
}
.personal-input,
.personal-bar-select {
    flex: 1;
    padding: 5px;
    border: none;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    margin-bottom: 1%;
    color: #ffffff;
    transition: .3s;
    min-width: 20%;
}
.personal-input::placeholder {
    color: #ededed;
}
.personal-input:focus,
.personal-bar-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}
.personal-btn-div {
    flex-basis: 100%;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
.personal-btn-div p {
    color: #ffffff;
    animation: fadein .5s forwards;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}
.crear-errors p {
    color: #000000;
    animation: fadein 1s forwards;
    font-weight: 400;
    text-align: center;
}
.personal-btn {
    width: 30%;
    padding: 5px;
    border: none;
    border-radius: 2px;
    background: #ffc400;
    transition: .3s;
    text-align: center;
}
.personal-btn:hover {
    cursor: pointer;
    background: #e3ae00;
    transform: scale(1.1);
}
.for-personal {
    background: rgb(29,29,29);
    background: linear-gradient(0deg, rgba(29,29,29,1) 0%, rgba(54,54,54,1) 43%, rgba(69,69,69,1) 100%);
}
.absolute-i.white-i i {
    color: #ffffff;
}
.change-barberia-weekdays {
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
}
.weekday-bar {
    background: rgba(255, 255, 255, 0.3);
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 30%;
    margin-bottom: 2%;
    border-radius: 5px;
    padding: 5px 0;
    transition: .3s;
}
.weekday-bar.personal-workday {
    min-width: 20%;
}
.weekday-bar:has(>.check-weekday input[name='weekdays']:checked) {
    background: rgba(255, 255, 255, 0.7);
}
.check-weekday {
    background: transparent;
}
.check-personal-bar {
    background: #ababab;
    border-radius: 5px;
    padding: 10px;
    transition: .3s;
    flex: 1;
    margin-right: 10px;
    display: flex;
}
.check-personal-bar.small {
    background: #ededed;
    margin-right: 5px;
    padding: 5px;
    border: 1px solid transparent;
}
.check-personal-bar.small:last-child {
    margin-right: 0;
}
.check-personal-bar b {
    display: flex;
    width: 90%;
    line-height: normal;
}
.check-personal-bar.small b {
    font-size: 12px;
    font-weight: 400;
}
.check-personal-bar i {
    display: flex;
    width: 10%;
    justify-content: end;
    align-items: center;
}
.check-personal-bar:hover,
.check-weekday:hover {
    cursor: pointer;
    filter: brightness(1.2);
}
.check-weekday .checked {
    color: #ffffff;
    animation: fadein .3s ease-in forwards;
}
.check-personal-bar .checked {
    animation: fadein .3s ease-in forwards;
}
.check-weekday input[type='checkbox'],
.check-weekday .checked,
.check-personal-bar input[type='checkbox'],
.check-personal-bar input[type='radio'],
.check-personal-bar .checked {
    display: none;
}
.check-weekday input[type="checkbox"]:checked ~ .checked,
.check-personal-bar input[type="checkbox"]:checked ~ .checked,
.check-personal-bar input[type="radio"]:checked ~ .checked {
    display: flex;
}
.check-weekday input[type="checkbox"]:checked ~ .unchecked,
.check-personal-bar input[type="checkbox"]:checked ~ .unchecked,
.check-personal-bar input[type="radio"]:checked ~ .unchecked {
    display: none;
}
.check-personal-bar:has(input[type='checkbox']:checked),
.check-personal-bar:has(input[type='radio']:checked) {
    background: #ededed;
}
.check-personal-bar.small:has(input[type='checkbox']:checked),
.check-personal-bar.small:has(input[type='radio']:checked) {
    border: 1px solid #ababab;
}
.crear-input-div.select-div.weekday-interval-div {
    min-width: 20%;
    margin-bottom: 2%;
}
.crear-input-div.select-div.weekday-interval-div .fly-options {
    top: 0;
    height: 100%;
    overflow-y: scroll;
    border-radius: 0;
}
.crear-input-div.select-div.weekday-interval-div .fly-options::-webkit-scrollbar {
    width: 5px;
    height: 25px;
}
.crear-input-div.select-div.weekday-interval-div .fly-options::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.crear-input-div.select-div.weekday-interval-div .fly-options::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.crear-input-div.select-div.weekday-interval-div .fly-options .fly-input-div-op .custom-checkbox {
    border-radius: 0;
}
.time-bar-container {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    gap: 2%;
}
.time-bar-div {
    flex: 1;
    gap: 2%;
}
.time-bar-input {
    background: #ffffff;
    border-radius: 2px;
    border: none;
    flex: 1;
    text-align: center;
    transition: .3s;
}
.time-bar-input:disabled {
    background: #ededed;
}
.morning-afternoon {
    font-size: 12px;
    color: #444444;
}
.container-new-form {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}
.personal-bar-name {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    color: #ffffff;
}
.new-personal-bar {
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.add-personal-errors,
.errors-signup {
    flex-basis: 100%;
    justify-content: center;
    margin-bottom: 20px;
}
.errors-signup {
    flex-direction: column;
}
.add-personal-errors p {
    color: #ffffff;
}
.errors-signup p {
    font-weight: 400;
    color: #000000;
    animation: fadein .5s forwards;
    text-align: center;
}
.time-elem.cita-time.personal-colour0 {
    background: rgb(124,13,233);
    background: linear-gradient(0deg, rgba(124,13,233,1) 0%, rgba(100,13,186,1) 50%, rgba(70,8,131,1) 100%);
}
.time-elem.cita-time.personal-colour1 {
    background: rgb(211,71,10);
    background: linear-gradient(0deg, rgba(211,71,10,1) 0%, rgba(177,60,9,1) 50%, rgba(141,47,6,1) 100%);
}
.time-elem.cita-time.personal-colour2 {
    background: rgb(26,186,7);
    background: linear-gradient(0deg, rgba(26,186,7,1) 0%, rgba(23,151,8,1) 50%, rgba(16,112,5,1) 100%);
}
.time-elem.cita-time.personal-colour3 {
    background: rgb(216,203,9);
    background: linear-gradient(0deg, rgba(216,203,9,1) 0%, rgba(187,176,17,1) 50%, rgba(147,139,17,1) 100%);
}
.time-elem.cita-time.personal-colour4 {
    background: rgb(128,128,128);
    background: linear-gradient(0deg, rgba(128,128,128,1) 0%, rgba(69,69,69,1) 50%, rgba(44,44,44,1) 100%);
}
.time-elem.cita-time.personal-colour5 {
    background: rgb(171,8,8);
    background: linear-gradient(0deg, rgba(171,8,8,1) 0%, rgba(159,8,8,1) 50%, rgba(131,8,8,1) 100%);
}
.container-for-slider {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 0 40px 100px;
}
.container-for-slider.school {
    padding: 0;
    justify-content: center;
    align-items: center;
}
.slider-txt {
    width: 50%;
    flex-direction: column;
    align-items: stretch;
}
.slider-txt.school,
.slider-txt.reestr {
    width: 80%;
}
.slider-txt.reestr {
    padding: 0;
}
.unpaid-slider-content {
    width: 30%;
}
#unpaid-slider {
    height: 100%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    justify-content: space-between;
    align-items: stretch;
}
#unpaid-slider .owl-stage-outer {
    height: 100%;
}
.unpaid-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.unpaid-slide.one-slide {
    background-image: url('../img/unpaid1.jpg');
}
.unpaid-slide.two-slide {
    background-image: url('../img/unpaid2.jpg');
}
.unpaid-slide.three-slide {
    background-image: url('../img/unpaid3.jpg');
}
.unpaid-slide.four-slide {
    background-image: url('../img/unpaid4.jpg');
}
.unpaid-slide.five-slide {
    background-image: url('../img/unpaid5.jpg');
}
.unpaid-slide.six-slide {
    background-image: url('../img/unpaid6.jpg');
}
.slider-content {
    width: 50%;
}
.small-slider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}
#clSlider {
    height: 100%;
    overflow: hidden;
    width: 100%;
}
#slider {
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
    border-radius: 10px 0 0 10px;
}
#sliderSchool {
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
    border-radius: 0 10px 10px 0;
}
.slide {
    background-repeat: no-repeat;
    min-height: 500px;
    width: 100%;
    background-size: cover;
}
.small-slide {
    max-height: 200px;
    width: 100%;
    flex-direction: column;
    padding: 10px;
    align-items: start;
}
.small-slide h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.small-slide ul {
    padding-left: 20px;
}
.small-slide ul li {
    line-height: normal;
    margin: 10px 0;
    padding: 5px;
    border-left: 5px solid #FF6633;
}
.small-slide ul li:hover {
    background: rgba(255, 102, 51, 0.1);
    cursor: pointer;
}
.owl-stage {
    display: flex;
}
.owl-item {
    box-sizing: border-box;
}
.slide.one-slide {
    background-image: url('../img/slider/one.jpg');
}
.slide.two-slide {
    background-image: url('../img/slider/two.jpg');
}
.slide.three-slide {
    background-image: url('../img/slider/three.jpg');
}
.slide.four-slide {
    background-image: url('../img/slider/four.jpg');
}
.slide.five-slide {
     background-image: url('../img/slider/five.jpg');
 }
.slide.six-slide {
    background-image: url('../img/slider/six.jpg');
}
.slide.seven-slide {
    background-image: url('../img/slider/seven.jpg');
}
.slide.eight-slide {
    background-image: url('../img/slider/eight.jpg');
}

.owl-dots {
    width: 100%;
    justify-content: center;
}
.slider-clientes {
    width: 100%;
    margin-top: 50px;
}
.slide-cl {
    width: 100%;
    background: #333333;
    border-radius: 5px;
    flex-direction: column;
    color: #FFFFFF;
    padding: 30px 20px;
    justify-content: start;
    align-items: stretch;
    word-break: normal;
}
.slide-cl h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
}
.slide-cl p {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    word-break: break-all;
}
.slide-cl .cl-logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}
.slide-cl .cl-logo img {
    max-width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cl-sociales {
    width: 100%;
    justify-content: start;
    gap: 20px;
}
.cl-sociales .fa-brands,
.cl-sociales .fa-solid {
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    transition: all .2s;
}
.cl-sociales .fa-solid.fa-globe {
    color: #4d67ac;
}
.cl-sociales .fa-brands:hover,
.cl-sociales .fa-solid:hover {
    transform: scale(1.2);
    cursor: pointer;
}
.cl-sociales .fa-solid.fa-globe:hover {
    color: #4d93ac;
}
.cl-sociales .fa-brands.fa-whatsapp:hover {
    color: green;
}
.cl-sociales .fa-brands.fa-telegram:hover {
    color: #3d8fb6;
}
.cl-sociales .fa-brands.fa-instagram:hover {
    color: #d02597;
}
.cl-btn {
    background: #dddddd;
    border-radius: 5px;
}


.sol-btn,
.anchor-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: .3s;
}
.sol-btn:hover,
.anchor-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.container-for-blocks,
.meet-calendar-div,
.standarts-div {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.container-for-blocks.leaders-hero {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-for-blocks.leaders-presentation {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.leaders-presentation-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.leaders-presentation-iframe {
    width: 100%;
    min-height: 560px;
    border: 0;
    background: #f0f0f0;
}
.container-for-blocks.white-block {
    background: #FFFFFF;
}
.container-for-blocks.for-payment-waiter {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 16px 48px;
    width: unset;
}
.payment-waiter-page .payment-waiter-card.item.white-item {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #ff6633;
}
.payment-waiter-page .payment-waiter-card .payment-waiter-title {
    color: #ff6633;
}
.payment-waiter-page .payment-waiter-card .payment-waiter-details p {
    color: #333;
}
.payment-waiter-page .payment-waiter-card .payment-waiter-details p b {
    color: #1a1a1a;
    font-weight: 600;
}
.payment-waiter-inner.payment-block {
    width: 100%;
    max-width: none;
    padding: 32px 28px;
}
.payment-waiter-title {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff6633;
    margin-bottom: 12px;
    text-align: center;
}
.payment-waiter-message {
    color: #1a1a1a;
}
.payment-waiter-spinner {
    color: #ff6633;
}
.payment-waiter-details {
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.payment-block {
    width: 80%;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    flex-direction: column;
}
.payment-block h4 {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    width: 60%;
}
.payment-block i {
    font-size: 32px;
}
.payment-block-inside {
    width: 60%;
    flex-direction: column;
    align-content: start;
    margin-top: 40px;
}
.payment-block-inside p {
    line-height: normal;
    font-weight: 600;
}
.payment-block-inside p b {
    font-weight: 400;
}
.reg-link-hint {
    font-size: 13px;
    line-height: 1.45;
    color: #555;
    margin-top: 12px;
    max-width: 100%;
}
.reg-link-input {
    font-size: 13px;
    word-break: break-all;
}
.talker-allocate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.talker-allocate-table th,
.talker-allocate-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.talker-allocate-table th {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #444;
}
.talker-allocate-table input[type="number"] {
    width: 100%;
    max-width: 120px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.talker-allocate-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
}
.talker-allocate-step {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #ffb088;
    background: #fff8f5;
    color: #ff6633;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.talker-allocate-step:hover:not(:disabled) {
    background: #ffe8db;
    border-color: #ff6633;
    color: #e55522;
}
.talker-allocate-step:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}
.talker-allocate-qty input[type="number"] {
    width: 4.5rem;
    max-width: 5rem;
    min-width: 3rem;
    padding: 8px 6px;
    text-align: center;
    -moz-appearance: textfield;
}
.talker-allocate-qty input[type="number"]::-webkit-outer-spin-button,
.talker-allocate-qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.talker-allocate-admin-pool {
    margin: 16px 0;
    padding: 14px 16px;
    background: rgba(255, 102, 51, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ff6633;
}
.talker-allocate-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.talker-allocate-errors {
    color: #c00;
    margin-top: 12px;
    font-size: 14px;
}
.talker-allocate-page .save-btn.talker-allocate-submit {
    background-color: #ff6633;
    color: #ffffff;
    border: none;
}
.talker-allocate-page .save-btn.talker-allocate-submit:hover:not(:disabled) {
    background-color: #e55522;
    color: #ffffff;
}
.block-second {
    display: flex;
    width: 80%;
    align-items: start;
    justify-content: space-evenly;
    padding: 20px;
}
.block-plus {
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.block-plus.for-pi {
    position: absolute;
    height: 100%;
    width: 30%;
    align-items: center;
}
.leaders-hero .block-second {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
}
.leaders-hero .block-plus.hero-photo-left,
.leaders-hero .block-plus.hero-photo-right {
    flex: 0 1 30%;
    width: 30%;
    max-width: 300px;
    min-width: 0;
}
.leaders-hero .block-plus.for-pi {
    position: static;
    flex: 0 1 40%;
    min-width: 0;
    width: auto;
    max-width: 560px;
    height: auto;
    align-items: center;
    align-self: flex-start;
    overflow: visible;
}
.block-plus img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
    transition: .3s;
}
.block-plus.for-pi img {
    width: 20%;
}
.block-plus img:hover {
    transform: scale(1.1);
}
.block-plus img:hover + .abs-desc,
.abs-desc:hover {
    height: 80%;
    background: rgba(0, 0, 0, 0.8);
}
.for-pi-desc {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
}
.for-pi-desc h4 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}
.for-pi-desc ul {
    font-weight: 600;
}
.for-pi-desc ul li {
    font-weight: 400;
    margin-top: 10px;
}
.block-h {
    font-size: 28px;
    margin-top: 20px;
}
.block-p {
    font-weight: 300;
    margin-top: 20px;
    line-height: 24px;
}
.form-separator {
    flex-wrap: wrap;
    border: 1px solid #000000;
    background: #333333;
    border-radius: 5px;
    margin-bottom: 10px;
    justify-content: center;
    padding-top: 10px;
}
.download-form {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
}
.download-form img {
    height: 100px;
    width: auto;
    object-fit: scale-down;
}
.d-form-elem {
    justify-content: center;
    padding: 20px 0;
}
.save-d-form {
    background: transparent;
    color: #ededed;
    border: none;
    transition: .3s;
}
.save-d-form:hover {
    cursor: pointer;
    color: #ffffff;
    transform: scale(1.1);
}
.input-file {
    position: relative;
    display: inline-block;
}
.input-file-text {
    padding: 0 10px;
    line-height: 40px;
    text-align: left;
    height: 40px;
    display: block;
    float: left;
    box-sizing: border-box;
    width: 200px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #ddd;
    color: #ffffff;
}
.input-file-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 0 4px 4px 0;
    background-color: #419152;
    line-height: 22px;
    height: 40px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}
.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Focus */
.input-file input[type=file]:focus + .input-file-btn {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Hover/active */
.input-file:hover .input-file-btn {
    background-color: #59be6e;
}
.input-file:active .input-file-btn {
    background-color: #2E703A;
}

/* Disabled */
.input-file input[type=file]:disabled + .input-file-btn {
    background-color: #eee;
}

.logo-div {
    flex-basis: 100%;
    justify-content: center;
    align-items: center;
    gap: 5%;
}
.logo-div img {
    height: 70px;
    width: auto;
    object-fit: scale-down;
}
.del-logo-btn {
    padding: 10px;
    background: #999999;
    border: none;
    border-radius: 5px;
    transition: .3s;
}
.del-logo-btn:hover {
    cursor: pointer;
    background: #333333;
    color: #ffffff;
}
.color-square {
    width: 10px;
    height: 10px;
    border: 1px solid #ffc400;
}
.abs-h3 {
    font-size: 48px;
}
.abs-desc {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 10px;
    transition: 1s;
}
.abs-desc h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}
.abs-desc p {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: normal;
}
.sol-p {
    font-weight: 300;
    text-align: center;
}
.signup-form .crear-input-div .change-form-input.signup-input ~ .additional-phone {
    color: #999999;
    transition: .3s;
}
.signup-form .crear-input-div .change-form-input.signup-input:focus ~ .additional-phone {
    color: #000000;
}
.signup-form .crear-input-div .change-form-input.signup-input:focus ~ .country-code-label .country-code-input {
    color: #000000;
}
#change-profile-form {
    flex: unset;
    width: 65%;
    border-radius: 0;
    padding: 40px 0;
    align-content: start;
}

.get-stat-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    margin-top: 20px;
}
.est-total {
    background: #f2f2f2;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.est-h {
    font-weight: 500;
    display: flex;
    min-width: 45%;
}
@keyframes opac5 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.5;
    }
}
@keyframes backopac5 {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}
.est-tab-container {
    flex-direction: column;
    width: 100%;
    opacity: 0.5;
    animation: backopac5 .5s forwards;
}
.est-tab-container.etc-op {
    animation: opac5 0.5s forwards;
}
.est-tab-row {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.est-tab-row b,
.est-tab-row p {
    display: flex;
    flex: 1;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}
.est-tab-row b:last-child,
.est-tab-row p:last-child {
    border-right: none;
}
.est-tab-row p {
    font-weight: 400;
}
.est-tab-row i {
    display: flex;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    min-width: 5%;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-actions i {
    font-size: 12px;
    margin-right: 10px;
    color: #444444;
}
.tab-actions i:last-child {
    margin-right: 0;
}
.tab-actions i:hover {
    color: #ff6633;
    cursor: pointer;
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.fa-spin {
    animation: fa-spin ease-in-out infinite;
    animation-duration: .8s;
    animation-delay: -1ms;
    transition-delay: 0s;
    transition-duration: 0s;
}
.subs-container {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 5%;
}
.getsubs {
    flex-direction: column;
    padding: 5px;
    flex: 1;
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 10px;
}
.getsubs p {
    margin-bottom: 5px;
}
.unpaid-container {
    width: 100%;
    justify-content: center;
    margin: 50px 0 100px 0;
}
.unpaid-inside {
    display: flex;
    width: 50%;
    background: #f2f2f2;
    border-radius: 0 10px 10px 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px;
}
.unpaid-inside h3 {
    font-size: 32px;
    font-weight: 400;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.unpaid-subs-container {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    gap: 3%;
    justify-content: space-between;
}
.unpaid-subs-container.subs-form {
    width: 80%;
}
.unpaid-options {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}
.unpaid-options p {
    text-align: left;
}
.unpaid-options p b {
    color: #666666;
    font-weight: 400;
    transition: .3s;
}
.unpaid-sub {
    flex: 1;
    background: #a8bbef;
    margin-bottom: 5%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
}
.unpaid-sub:hover,
.unpaid-sub.checked {
    background: #4d67ac;
    cursor: pointer;
    color: #ffffff;
}
.unpaid-sub:hover .unpaid-options p b,
.unpaid-sub.checked .unpaid-options p b {
    color: #ffffff;
}
.unpaid-sub:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f111";
    font-size: 24px;
    color: #ffffff;
}
.unpaid-sub.checked:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f058";
}
.unpaid-sub h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.unpaid-sub p, h4 {
    margin-bottom: 5px;
}
.unpaid-sub p {
    font-weight: 400;
}
.unpaid-subs-container .crear-input-div {
    margin-bottom: 10px;
    flex: 1;
}
.unpaid-subs-container .crear-input-div.flex-grow {
    flex-basis: 100%;
}
.unpaid-subs-container .crear-input-div.flex-grow input:disabled {
    color: #dadada;
}
.unpaid-subs-container .crear-input-div .change-form-input::placeholder {
    font-weight: 400;
}
.unpaid-sub-inside {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
}
.sub-btn {
    background: #4d67ac;
    color: #ffffff;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    transition: .3s;
    flex: 1;
}
.sub-btn:hover {
    cursor: pointer;
    background: #444444;
}
.errors.unpaid-errors {
    flex-basis: 100%;
}
.errors.unpaid-errors p.unpaid-sub-msg {
    color: #000000;
}
.manage-sub-div {
    width: 70%;
    flex-wrap: wrap;
}
.manage-sub-inputs {
    width: 100%;
    flex-basis: 100%;
    border-radius: 5px;
    background: #333333;
    padding: 40px 20px;
    flex-direction: column;
}
.manage-sub-inputs-wrapper {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 5%;
}
.manage-sub-inputs-wrapper:last-child {
    margin-bottom: 0;
}
.manage-sub-inputs-wrapper p,
.manage-sub-inputs-wrapper b {
    font-size: 16px;
    color: #FFFFFF;
}
.manage-sub-inputs-wrapper p {
    font-weight: 400;
}
.manage-sub-btn-div {
    flex-basis: 100%;
    justify-content: center;
}
.manage-sub-btn {
    padding: 10px;
    background: #4d67ac;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}
.manage-sub-btn:hover {
    background: #000000;
    cursor: pointer;
}
.unpaid-sub-header h3 {
    font-size: 14px;
}
.crear-input-div.provincies-div .fly-options {
    max-height: 200px;
    overflow-y: scroll;
    border-radius: 0;
}
.crear-input-div.provincies-div .fly-options::-webkit-scrollbar {
    width: 5px;
    height: 25px;
}
.crear-input-div.provincies-div .fly-options::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.crear-input-div.provincies-div .fly-options::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.agreement-text {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}
.agreement-text p,
.sub-details-subscription .agreement-text p {
    font-size: 10px;
    font-weight: 400;
}
.form-back.pay-sub-form {
    width: 80%;
    height: 60%;
    flex-wrap: wrap;
    padding: 20px;
}
.sub-wrapper {
    justify-content: space-between;
    align-items: stretch;
    gap: 5%;
}
.pay-sub-img {
    flex-basis: 100%;
    height: 10%;
    justify-content: center;
    align-items: center;
}
.pay-sub-img img {
    height: 100%;
    width: auto;
    object-fit: scale-down;
}
.card-name-div {
    flex: 1;
    flex-direction: column;
    padding: 5%;
    border: 1px solid #666666;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}
.card-name-div #payment-form {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.card-name-div #payment-form #card-button {
    background: #4d67ac;
    color: #FFFFFF;
    padding: 10px;
    font-family: "Square Sans Text VF", "Square Sans Text", Arial, sans-serif;
    border: none;
    border-radius: 5px;
    transition: .3s;
}
.card-name-div #payment-form #card-button:hover {
    background: #444444;
    outline: none;
    cursor: pointer;
}
.crear-input-div.input-card-sub {
    width: 100%;
}
.crear-input-div.input-card-sub .change-form-input {
    border: 1px solid #d9d9d9;
    padding: 15px 5px 15px 40px;
    font-family: "Square Sans Text VF", "Square Sans Text", Arial, sans-serif;
}
.crear-input-div.input-card-sub .change-form-input::placeholder {
    font-weight: 400;
    color: #a3a3a3;
}
#card-container {
    margin-top: 10px;
}
.sub-details-div {
    flex: 1;
    flex-direction: column;
    gap: 5%;
}
.sub-details-customer,
.sub-details-subscription {
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-family: "Square Sans Text VF", "Square Sans Text", Arial, sans-serif;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
}
.sub-details-customer {
    height: 30%;
}
.sub-details-subscription {
    height: 65%;
}
.sub-details-customer p,
.sub-details-subscription p {
    font-weight: 400;
    font-size: 12px;
}
.sub-details-customer b,
.sub-details-subscription b {
    font-size: 12px;
}
.sub-details-customer h3,
.sub-details-subscription h3 {
    font-size: 16px;
}
.sub-details-wrapper {
    justify-content: space-between;
}
.sub-details-wrapper.total-sub b,
.sub-details-wrapper.total-sub p {
    font-size: 16px;
    font-weight: 700;
}
.sub-details-subscription .sub-period,
.sub-details-subscription p.sub-cadence {
    font-size: 10px;
}
.sub-errors p {
    font-weight: 400;
    text-align: center;
}
.sub-errors p.sub-error {
    color: red;
    text-align: center;
}
.get-invoice {
    color: #000000;
    padding: 5px 10px;
    background: #FFFFFF;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}
.get-invoice:hover {
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
}
.sub-wrapper.for-factura {
    justify-content: center;
    min-width: 50%;
}
.reestr-div {
    width: 100%;
    justify-content: center;
    align-items: start;
}
.reestr-container {
    width: 80%;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
    align-items: start;
}
.reestr-container.for-admin {
    width: 100%;
}
.cert-people {
    flex-basis: 100%;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    flex-wrap: wrap;
    min-height: 50vh;
}
.cert-people.for-people {
    min-height: unset;
}
.cert-elem {
    flex-basis: 100%;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
}
.cert-elem.for-admin {
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
}
.cert-elem.cert-person {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
}
.cert-elem.cert-person.for-admin {
    margin-bottom: 0;
    border-radius: 0;
}
.cert-elem.cert-person.cert-payment-false {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background: #e3e3e3;
}
.cert-elem-col {
    width: 20%;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.cert-elem-col.for-admin {
    padding: 10px;
}
.cert-elem-col.for-admin.admin-icons {
    justify-content: space-around;
}
.cert-elem-col.for-admin img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
    border: 2px solid #d9d9d9;
}
.cert-elem-col p {
    text-align: center;
    line-height: normal;
    font-weight: 400;
}
.cert-elem.cert-person.cert-payment-false .cert-elem-col p {
    color: #666666;
}
.cert-elem-col.cert-head {
    background: #8c391d;
}
.cert-elem-col.cert-head:hover {
    background: #bb4821;
    cursor: pointer;
}
.cert-elem-col.cert-head p {
    color: #FFFFFF;
    font-weight: 600;
}
.table-holder {
    width: 100%;
    max-height: 80vh;
    overflow: auto;
    flex-direction: column;
    border-radius: 5px;
}
.edit-person-img {
    width: 100%;
    justify-content: center;
}
.table-holder::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.table-holder::-webkit-scrollbar-thumb {
    background: #444444;
    border-radius: 10px;
}
.table-holder::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.9);
}
.cert-content {
    width: 100%;
}
.cert-content thead tr th {
    background: #ededed;
    border: 1px solid #FFFFFF;
    border-bottom: 1px solid #a8a8a8;
}
.cert-content thead tr th:hover {
    cursor: pointer;
    background: #dfdfdf;
}
.cert-clickable:hover {
    cursor: pointer;
    color: #ff6633;
}

/* Реестр платежей (super-admin): ссылки как у пользователей — чёрный, без подчёркивания, hover #ff6633 */
.payments-reestr .cert-elem.cert-person.for-admin {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}
.payments-reestr .cert-elem-col.for-admin {
    width: 16.666%;
    flex: 1 1 16.666%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.payments-reestr .cert-elem-col.for-admin p {
    text-align: center;
    width: 100%;
}
.payments-reestr .payments-subline {
    font-size: 13px;
    color: #444444;
    margin-top: 6px;
}
.payments-reestr .admin-table-link {
    color: #000000;
    text-decoration: none;
}
.payments-reestr .admin-table-link:hover {
    color: #ff6633;
}
.payments-reestr .payments-status-cell p {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0.4em;
    justify-content: center;
}
.payments-reestr .payments-receipt-icon-link {
    color: #000000;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.payments-reestr .payments-receipt-icon-link:hover {
    color: #ff6633;
}
.payments-reestr .payments-receipt-icon-link i {
    font-size: 15px;
}
/* Форма платежей: две строки — только здесь, не трогая общий .search-cert-form */
.payments-search-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}
.payments-search-form .payments-search-line {
    width: 100%;
    flex-basis: auto;
    min-width: 100%;
    margin-bottom: 10px;
}
.payments-search-form .payments-toolbar-split {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    gap: 12px;
    box-sizing: border-box;
    margin-bottom: 6px;
    min-width: 0;
}
.payments-search-form .payments-toolbar-col {
    flex: 1 1 0;
    min-width: 0;
    max-width: 50%;
    box-sizing: border-box;
}
.payments-search-form .payments-toolbar-col--filters {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.payments-search-form .payments-toolbar-col--sum {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.payments-selected-sum-label {
    color: #888888;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}
.payments-search-form .payments-filters-bar {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
}
.payments-reestr .payments-table-row--summable {
    cursor: pointer;
}
.payments-reestr .payments-table-row--summable.payments-row-selected {
    background: rgb(252, 217, 205);
    box-shadow: inset 4px 0 0 #ff6633;
}
.payments-filter-select {
    min-width: 140px;
    max-width: 220px;
    flex: 0 0 auto;
}
.reestr-pages {
    width: 100%;
    border-top: 1px solid #ff6633;
    justify-content: space-between;
    padding: 20px 0;
}
.reestr-pages button {
    background: transparent;
    border: none;
    outline: none;
    font-size: 12px;
    align-items: center;
    display: flex;
    line-height: normal;
    gap: 10px;
}
.reestr-pages .curr-page-div button,
.reestr-pages button:disabled {
    color: #666666;
}
.reestr-pages button:disabled:hover {
    cursor: auto;
    color: #666666;
}
.reestr-pages .curr-page-div button.curr-page {
    font-size: 16px;
    color: #000000;
}
.reestr-pages button:hover {
    color: #ff6633;
    cursor: pointer;
}
.reestr-pages button i {
    font-size: 16px;
}
.yu-tr {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.yu-user-tr td {
    text-align: center;
    padding: 5px;
    border: 1px solid #ededed;
    background: #FFFFFF;
    font-weight: 400;
}
.show-cert:hover {
    cursor: pointer;
    color: #ff6633;
}
.sort-tab {
    flex-direction: column;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
}
.sort-tab i {
    color: #FFFFFF;
}
.sort-tab i.checked {
    color: #d2d2d2;
}
.pagination-div {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
}
.pagination-div p {
    font-weight: 400;
}
.pagination-per-page,
.pagination-pages {
    width: 50%;
}
.pagination-per-page {
    justify-content: space-between;
    align-items: center;
}
.rows-div {
    align-items: center;
}
.rows-count {
    padding: 10px;
    background: rgba(0,0,0,0.05);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.2);
    position: relative;
    margin-right: 10px;
    transition: all .3s;
}
.rows-count:hover {
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
.rows-count.fold-borders {
    border-radius: 0 0 5px 5px;
}
@keyframes fadeinvisible {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}
.rows-options {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: -1px;
    width: 100%;
    flex-direction: column;
    background: #eaeaea;
    border-radius: 5px 5px 0 0;
    border: 1px solid rgba(0,0,0,0.2);
}
.rows-options.fadeinvisible {
    animation: fadeinvisible .3s forwards;
}
.rows-options button {
    padding: 10px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-weight: 400;
    transition: all .3s;
}
.rows-options button:first-child:hover {
    border-radius: 5px 5px 0 0;
}
.rows-options button:hover {
    cursor: pointer;
    background: #d9d9d9;
}
.pagination-pages {
    justify-content: end;
}
.page-holder {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    width: 50%;
}
.page-elem {
    flex: 1;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.05);
    border-left: 1px solid rgba(0,0,0,0.2);
    transition: all .3s;
}
.page-elem.active-page {
    background: #4d67ac;
    color: #fff;
}
.page-elem:hover {
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    color: #000000;
}
.page-elem:disabled {
    background: rgba(0,0,0,0.01);
    cursor: unset;
}
.page-elem:first-child {
    border-left: none;
    border-radius: 5px 0 0 5px;
}
.page-elem:last-child {
    border-radius: 0 5px 5px 0;
}
.cards-label {
    flex: 1;
    min-width: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 12px;
}
.cards-input {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px;
    font-weight: 400;
    transition: .3s;
}
.cards-input::placeholder {
    color: #999999;
    transition: .3s;
}
.cards-input:hover,
.cards-input:focus {
    border: 1px solid rgba(0,0,0,0.3);
    outline: none;
}
.cards-input:hover::placeholder,
.cards-label select.cards-input:hover,
.cards-input:hover + i,
.cards-input:hover ~ .additional-phone {
    color: #000000;
}
.cards-input:focus::placeholder {
    color: #555555;
}
.cards-label {
    position: relative;
}
#cards-body .container-in {
    gap: unset;
}
.cards-div {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cards-div h1 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    flex-basis: 100%;
}
.add-new-card-div {
    background: #ededed;
    border-radius: 5px 5px 0 0;
    padding: 10px;
    flex-wrap: wrap;
    display: flex;
}
.card-add-form {
    flex-wrap: wrap;
    display: flex;
}
.add-new-card-div h3 {
    display: flex;
    flex-basis: 100%;
    padding: 10px;
    text-align: left;
}
.cards-label i,
.cards-label .additional-phone,
.cards-label .country-code-label  {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999999;
}
.cards-label .additional-phone {
    left: 35px;
}
.cards-label .country-code-label {
    left: 42px;
    max-width: 23px;
}
.cards-label .country-code-label .country-code-input {
    background: transparent;
    border: none;
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.fly-input-div .country-code-label {
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999999;
    top: 0;
    left: 35px;
    width: 25px;
}
.fly-input-div .additional-phone {
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    top: 0;
    left: 27px;
    width: 10px;
    text-align: left;
    min-width: unset;
    padding: 0;
}
.fly-input-div .country-code-label .country-code-input {
    background: transparent;
    border: none;
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.fly-input.phone-input {
    padding: 5px 5px 5px 60px;
}
.cards-input {
    padding: 10px 10px 10px 30px;
    text-align: left;
    background: #FFFFFF;
}
.cards-input:disabled {
    background: #e8e8e8;
}
.cards-input.phone-input {
    padding: 10px 10px 10px 60px;
}
.change-form-input.phone-input {
    padding: 10px 10px 10px 70px;
}
.change-form-input.phone-input-edit {
    padding: 10px 10px 10px 45px;
}
.cards-input:focus + i,
.cards-input:focus ~ .additional-phone,
.cards-label i.cards-date-checked {
    color: #000000;
}
.cards-label.cards-fifty {
    min-width: 45%;
}
.add-new-card-div.cards-fifty {
    max-width: 46%;
    width: 46%;
    max-height: 300px;
    margin-bottom: 20px;
    align-items: start;
    overflow-y: scroll;
    border-radius: 5px;
}
.add-new-card-div.cards-fifty::-webkit-scrollbar,
.clients-cards::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.add-new-card-div.cards-fifty::-webkit-scrollbar-thumb,
.clients-cards::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.add-new-card-div.cards-fifty::-webkit-scrollbar-thumb:hover,
.clients-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.cards-label.cards-hundred {
    min-width: 90%;
    justify-content: center;
    align-items: center;
}
.cards-calendar.vanilla-calendar.vanilla-calendar_default {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    z-index: 99999;
}
.customer-errors,
.cards-errors,
.card-img-errors {
    flex-basis: 100%;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    flex-direction: column;
}
.card-img-errors {
    flex-basis: unset;
}
.customer-errors p,
.cards-errors p,
.client-card-wrap.fullsize-errors p,
.card-img-errors p,
.card-img-errors b,
.errors.persons p {
    animation: fadein .5s;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color: #999999;
}
.card-img-errors b {
    font-weight: 600;
    color: darkred;
    padding: 5px 0;
}
.cards-btn {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #4d67ac;
    color: #fff;
    transition: .3s;
    outline: none;
}
.cards-btn:hover {
    background: #333333;
    cursor: pointer;
}
.cards-btn:active {
    background: #999999;
}
.card-add-form .cards-label {
    min-width: 90%;
    padding: 5px 10px;
}
.save-foto-form {
    background: transparent;
    color: #444444;
    border: none;
    transition: .3s;
}
.save-foto-form:hover {
    cursor: pointer;
    color: #ffffff;
}
.card-holder {
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.card-data {
    display: flex;
    max-width: 55%;
    width: 55%;
    padding: 5px;
}
.card-data label,
.client-card-wrap label {
    position: relative;
    width: 100%;
    display: flex;
}
.card-data label i,
.client-card-wrap label i {
    position: absolute;
    top: 0;
    left: 5px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b6b6b6;
}
.card-data label input,
.client-card-wrap label input,
.client-card-wrap label textarea {
    padding: 5px 5px 5px 25px;
    border: none;
    border-bottom: 1px solid #b6b6b6;
    transition: .3s;
    width: 100%;
    font-weight: 400;
}
.card-data label input:focus,
.client-card-wrap label input:focus,
.client-card-wrap label textarea:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    background: rgba(0,0,0, 0.05);
}
.card-img,
.card-with-img {
    border: 5px dashed #d9d9d9;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    display: flex;
    position: relative;
    max-width: 40%;
    width: 40%;
    height: 100px;
}
.card-with-img.edit-company-img {
    height: unset;
}
.card-img {
    width: 35%;
}
.card-with-img {
    border: none;
}
.card-img i {
    color: #d9d9d9;
}
.card-with-img img {
    width: 100%;
    border: 2px solid #d9d9d9;
    border-radius: 15px;
    height: 100%;
    object-fit: scale-down;
}
.card-with-img:hover {
    opacity: 0.5;
}
.card-img:hover {
    border: 5px dashed #444444;
    cursor: pointer;
}
.card-img:hover > i {
    color: #444444;
}
.card-with-img.for-change-profile,
.card-img.for-change-profile {
    height: 200px;
    margin-right: 10px;
    width: 30%;
}
.order-split.persons-split .card-with-img,
.order-split.persons-split .card-img {
    max-width: unset;
    width: 80%;
}
.card-img.for-persons,
.card-with-img.for-persons {
    max-width: unset;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}
.card-img.for-persons img,
.card-with-img.for-persons img {
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}
.card-data {
    flex-direction: column;
    justify-content: center;
}
.card-input-file {
    position: absolute;
    border: 1px solid #000000;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
}
.card-input-file:hover {
    cursor: pointer;
}
.clients-cards {
    border: 1px solid #999999;
    border-top: none;
    border-radius: 0 0 5px 5px;
    width: 100%;
    max-height: 300px;
    height: 300px;
    overflow-y: scroll;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    align-content: start;
}
.clients-cards h3 {
    display: flex;
    flex-basis: 100%;
    margin-bottom: 20px;
}
.client-card-form {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: rgba(62,151,209, 0.1);
    padding: 10px;
    border-radius: 5px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.client-card-wrap {
    width: 48%;
    flex-direction: column;
    justify-content: space-between;
}
.client-card-wrap h4 {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}
.client-card-img {
    width: 100%;
    margin-top: 10px;
}
.client-card-img img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
    max-height: 100px;
    border-radius: 5px;
    border: 1px solid #999999;
}
.client-card-wrap label {
    justify-content: center;
    align-items: center;
}
.client-card-wrap label input,
.client-card-wrap label textarea {
    background: transparent;
    padding: 5px 5px 5px 30px;
    font-weight: 400;
}
.client-card-wrap label input[type="button"] {
    padding: 10px;
    width: 30%;
    border: none;
    border-radius: 5px;
    background: #4d67ac;
    color: #FFFFFF;
    margin-top: 10px;
    transition: .3s;
}
.client-card-wrap label input[type="button"]:hover {
    cursor: pointer;
    background: #333333;
}
.client-card-wrap.fullsize-errors {
    width: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
}
.card-holder-btns {
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
}
.update-card,
.delete-card {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .3s;
    color: #FFFFFF;
    font-weight: 500;
}
.update-card {
    background: #33426c;
}
.delete-card {
    background: #6a3752;
}
.update-card:hover,
.delete-card:hover {
    cursor: pointer;
    background: #333333;
}
.client-card-wrap .card-holder-btns {
    padding: 0;
}
.waiter-div {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.waiter-sign {
    width: 50%;
    height: 50%;
    justify-content: center;
    align-items: center;
    position: relative;
}
.waiter-sign h3 {
    font-size: 24px;
    font-family: "Widock", sans-serif;
    color: #FFFFFF;
}
.waiter-sign h3 {
    height: 25%;
    letter-spacing: 5px;
    overflow: visible;
    background: linear-gradient(90deg, #FF6633, #9a3e1f, #FF6633);
    background-repeat: repeat;
    background-size: 60%;
    animation: animatetext 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
@keyframes animatetext {
    0% {
        background-position: -300%;
    }
    100% {
        background-position: 300%;
    }
}
.pulsating-circle {
    position: absolute;
    left: 20%;
    top: 40%;
    transform: translateX(-50%) translateY(-50%);
    width: 90px;
    height: 90px;
}
.pulsating-circle:before {
    content: '';
    position: relative;
    left: 0;
    top: 0;
    display: block;
    width: 90px;
    height: 90px;
    box-sizing: border-box;
    border-radius: 100%;
    background-color: #FF6633;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
    content: '';
    position: absolute;
    left: 25%;
    top: 25%;
    display: block;
    width: 50%;
    height: 50%;
    border: 3px solid #FF6633;
    border-radius: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }
    80%, 100% {
        opacity: 0;
    }
}
@keyframes pulse-dot {
    0% {
        transform: scale(.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.8);
    }
}
.notifications-div {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.notification {
    width: 30%;
    height: 30%;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.close-notification {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #444444;
}
.close-notification:hover {
    cursor: pointer;
    color: #000000;
}
.notification-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.notification-form h4 {
    text-align: center;
    margin-bottom: 20px;
}
.backgrounds-input-div,
.fonts-input-div {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bar-back-label {
    border: 3px solid #FFFFFF;
    border-radius: 5px;
    width: 30%;
    height: 50px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    transition: .3s;
}
.bar-back-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    transition: .3s;
}
.bar-back-label .color-back10 {
    width: 100%;
    height: 100%;
    background: #333333;
    transition: .3s;
}
.bar-back-label .color-back11 {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transition: .3s;
}
.bar-back-label .color-back12 {
    width: 100%;
    height: 100%;
    background: #FF6633;
    transition: .3s;
}
.bar-back-label .color-back13 {
    width: 100%;
    height: 100%;
    background: #7e4e42;
    transition: .3s;
}
.bar-back-label .color-back14 {
    width: 100%;
    height: 100%;
    background: #35465a;
    transition: .3s;
}
.bar-back-label input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
.bar-back-label:hover > img,
.bar-back-label:hover > .color-back10,
.bar-back-label:hover > .color-back11,
.bar-back-label:hover > .color-back12,
.bar-back-label:hover > .color-back13,
.bar-back-label:hover > .color-back14 {
    cursor: pointer;
    transform: scale(1.1);
}
.bar-back-label:has(input:checked) {
    border: 3px solid #4d67ac;
}
.bar-back-label:has(input:checked):after {
    content: "\f058";
    font-family: "Font Awesome Regular", sans-serif;
    font-size: 24px;
    color: #4d67ac;
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
}
.bar-back-label.white-theme:has(input:checked) {
    border: 3px solid #4d67ac;
}
.bar-back-label.white-theme:has(input:checked) {
    transition: .3s;
}
.bar-back-label.white-theme:has(input:checked):after {
    color: #4d67ac;
    transition: .3s;
}
.bar-font-label {
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    width: 30%;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    transition: .3s;
    padding: 10px 5px;
}
.bar-font-label span {
     font-size: 18px;
    color: #FFFFFF;
 }
.bar-font-label input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
.bar-font-label:hover {
    cursor: pointer;
    transform: scale(1.1);
    border: 1px solid #4d67ac;
}
.bar-font-label:has(input:checked) {
    border: 1px solid #4d67ac;
}
.bar-font-label:has(input:checked):after {
    content: "\f058";
    font-family: "Font Awesome Regular", sans-serif;
    font-size: 12px;
    color: #FFFFFF;
}
.personal-time-bar {
    flex-wrap: wrap;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    justify-content: space-between;
}
.personal-time-bar label {
    width: 24%;
    position: relative;
    transition: .3s;
}
.personal-time-bar label:hover {
    cursor: pointer;
}
.personal-time-bar label .time-bar {
    width: 100%;
    opacity: 0;
}
.personal-time-bar label span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #919191;
    transition: .3s;
    border-radius: 5px;
}
.personal-time-bar label:hover span {
    color: #FFFFFF;
}
.personal-time-bar label:has(.time-bar:checked) span {
    color: #000000;
    font-weight: 600;
    background: rgb(255,235,161);
    background: linear-gradient(0deg, rgba(255,235,161,1) 0%, rgba(255,250,234,1) 100%);
}
.personal-workday-new {
    background: rgba(255, 255, 255, 0.3);
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 30%;
    margin-bottom: 2%;
    border-radius: 5px;
    padding: 5px 0;
    justify-content: start;
    overflow: hidden;
    transition: .3s;
}
.personal-workday-new:has(>.check-weekday input[name='weekdays']:checked) {
    background: rgba(255, 255, 255, 0.7);
}
.personal-workday-new.hidden-domingo {
    max-height: 30px;
    width: 12%;
}
.personal-workday-new.unfold {
    animation: unfold 1s ease-out forwards;
}
.personal-workday-new.fold {
    animation: fold 1s ease-out forwards;
}
@keyframes unfold {
    from {
        width: 12%;
        max-height: 30px;
    }
    to {
        width: 30%;
        max-height: unset;
    }
}
@keyframes fold {
    from {
        width: 30%;
    }
    to {
        width: 12%;
        max-height: 30px;
    }
}
.show-personal-create {
    justify-content: start;
}
.show-create-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background: #4d67ac;
    color: #FFFFFF;
    transition: .3s;
}
.show-create-btn:hover {
    background: #000000;
    cursor: pointer;
}
.show-create-btn:active {
    background: #333333;
}
.form-personal.hidden-create-personal.show-create-form {
    animation: show-form 2s ease-in forwards;
    max-height: 100%;
    display: flex;
    opacity: 1;
}
@keyframes show-form {
    0% {
        max-height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
        max-height: 50%;
    }
    100% {
        max-height: 100%;
        opacity: 1;
    }
}
.personal-info {
    width: 100%;
    align-items: stretch;
}
.personal-info .personal-info-name {
    width: 30%;
    height: 100%;
    position: relative;
}
.personal-info .personal-info-name i {
    position: absolute;
    top: 0;
    left: 10px;
    width: 10px;
    height: 100%;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
.personal-name-div {
    width: 30%;
    justify-content: space-between;
}
.personal-name-div p,
.personal-name-div p i {
    color: #FFFFFF;
}
.personal-info-bars {
    width: 70%;
    flex-wrap: wrap;
}
.personal-bar-holder {
    width: 45%;
    margin-right: 10px;
}
.personal-bar-check {
    width: 100%;
    position: relative;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 5px;
    transition: .3s;
}
.personal-bar-check:hover {
    background: #FFFFFF;
    cursor: pointer;
}
.personal-bar-check span {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    transition: .3s;
}
.personal-bar-holder:last-child {
    margin-right: 0;
}
.personal-bar-check:hover span {
    color: #000000;
}
.personal-bar-check input {
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
}
.personal-bar-check:has(input:checked) {
    background: #FFFFFF;
}
.personal-bar-check:has(input:checked):hover {
    background: transparent;
}
.personal-bar-check:has(input:checked) span {
    color: #000000;
}
.personal-bar-check:has(input:checked):hover span {
    color: #FFFFFF;
}
.personal-bar-check:has(input:checked) span:before {
    content: "\f14a";
    font-family: "Font Awesome Regular", sans-serif;
    margin-right: 10px;
}
.social-media {
    margin-top: 20px;
    width: 30%;
    justify-content: space-between;
}
.social-media a {
    font-size: 18px;
}
.social-media a:hover {
    transform: scale(1.5);
    color: #FF6633;
}
.meet-calendar,
.standarts {
    width: 80%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}
.meet-month {
    width: 30%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
}
.meet-month h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #FF6633;
    padding-bottom: 10px;
}
.meet-meeting {
    flex-direction: column;
    background: #d9d9d9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.meet-meeting.past-m {
    background: #c4c4c4;
}
.meet-meeting:hover {
    background: #e8e8e8;
}
.meet-meeting:last-child {
    margin-bottom: 0;
}
.meet-meeting p {
    margin-bottom: 10px;
    font-weight: 500;
}
.meet-meeting b {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.meet-meeting p i {
    color: #df5a2c;
}
.meet-meeting.past-m p,
.meet-meeting.past-m b {
    color: #7c7c7c;
}
.btn-center-div,
.main-h4 {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.btn-center-div.school {
    margin-bottom: 20px;
}
.meet-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333333;
    color: #FFFFFF;
}
.meet-btn.past-m {
    background: #444444;
}
.meet-btn:hover {
    background: #FFFFFF;
    color: #333333;
    cursor: pointer;
}
.main-h4-inside {
    width: 80%;
    justify-content: start;
    padding: 20px 0;
}
.main-h4-inside.jc-end {
    justify-content: space-between;
}
.main-h4-inside h4 {
    font-size: 24px;
    padding: 20px 0;
}
.main-h4-inside ul {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: normal;
}
.main-h4-inside li {
    font-weight: 400;
    margin-left: 10px;
}
.itogi-btns {
    width: 70%;
    justify-content: space-between;
}
.itogi-btns button {
    flex: 1;
    border: none;
    border-left: 5px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
    font-size: 20px;
}
.itogi-btns button:hover {
    cursor: pointer;
    background: rgba(255, 102, 51, 0.4);
    transform: scale(105%);
}
.itogi-years {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #ffb69a;
    border-radius: 5px;
    overflow: hidden;
}
.itogi-years .itogi-year-btn {
    border: none;
    border-right: 1px solid #ffb69a;
    background: #ffffff;
    color: #2c2c2c;
    padding: 10px 8px;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}
.itogi-years .itogi-year-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6633;
    transition: height .2s ease;
}
.itogi-years .itogi-year-btn:hover:before {
    height: 7px;
}
.itogi-years .itogi-year-btn:last-child {
    border-right: none;
}
.itogi-years .itogi-year-btn:hover {
    cursor: pointer;
    background: #fff3ee;
    transform: none;
}
.ecosystem-standarts {
    flex-direction: column;
    gap: 0;
}
.ecosystem-filters {
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
    justify-content: center;
    align-items: stretch;
}
.ecosystem-filters.talker-sphere-filters {
    padding: 0;
    border-bottom: none;
    justify-content: start;
}
.ecosystem-hr {
    width: 80%;
    border: none;
    border-top: 1px solid #ababab;
    margin: 16px 0 8px;
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 80%;
    padding: 10px 0 0;
    box-sizing: border-box;
}
.ecosystem-card {
    border-radius: 5px;
    background: #f0f0f0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}
.ecosystem-logo-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 2px solid #dddddd;
}
.ecosystem-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ecosystem-logo-circle:hover {
    cursor: pointer;
    transform: scale(1.1);
    opacity: 0.8;
}
.ecosystem-logo-fallback {
    font-size: 32px;
    color: #999999;
}
.ecosystem-company-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.ecosystem-company-city {
    font-size: 14px;
    color: #555555;
    margin: 0;
}
.ecosystem-company-office {
    font-size: 14px;
    color: #555555;
    margin: 6px 0 0;
    font-weight: 400;
}
.standarts {
    gap: 5%;
    align-items: stretch;
}
.standart {
    flex: 1;
    min-width: 25%;
    background: #333333;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    gap: 5%;
    align-items: center;
}
.standart i {
    font-size: 24px;
}
.standart i,
.standart p {
    color: #FFFFFF;
}
.standart:hover {
    background: #999999;
    cursor: pointer;
}
.reviews {
    gap: 2%;
    align-items: stretch;
    justify-content: space-between;
    width: 80%;
    overflow-x: scroll;
    padding-bottom: 10px;
}
.reviews.full-width {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: unset;
    padding-bottom: 20px;
}
.reviews::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.reviews::-webkit-scrollbar-thumb {
    background: #b84a25;
    border-radius: 10px;
}
.reviews::-webkit-scrollbar-thumb:hover {
    background: #e85d2d;
}
.video-rut {
    min-width: 150px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 -5px 5px rgba(0,0,0,0.5);
}
.admin-review {
    width: 250px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 -5px 5px rgba(0,0,0,0.5);
    flex-direction: column;
    justify-content: space-between;
}
.admin-review iframe {
    width: 100%;
    height: 60%;
    background: rgba(255, 255, 255, 0.5);
}
.admin-review:hover > iframe {
    background: rgba(255, 255, 255, 0.9);
}
.add-review-form {
    display: flex;
    flex-direction: column;
    height: 35%;
}
.add-review-form .crear-input-div {
    margin-bottom: 10px;
}
.add-review-btns {
    justify-content: space-evenly;
    padding: 5px;
}
.review-btn {
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
.review-btn.save {
    background: #4d67ac;
    color: #FFFFFF;
}
.review-btn.delete {
    background: #d5d5d5;
    color: #333333;
}
.review-btn:hover {
    background: #b84a25;
    cursor: pointer;
}
.flex-one-hundred {
    flex-basis: 100%;
}
.project-description-p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: normal;
    font-weight: 400;
}
.project-description-p b {
    font-weight: 700;
}
.standarts-50 {
    width: 45%;
    flex-wrap: wrap;
}
.standarts-60 {
    width: 55%;
    flex-wrap: wrap;
}
.standarts-40 {
    width: 35%;
    flex-wrap: wrap;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.contact-form.gray-contact-form {
    background: rgba(255,102,51, 0.1);
    border-left: 3px solid #FF6633;
}
.input-box {
    width: 48%;
    margin-bottom: 3%;
    position: relative;
}
.input-box input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.2);
    outline: none;
    padding: 10px 10px 10px 30px;
    font-weight: 400;
}
.input-box input.for-phone {
    padding: 10px 10px 10px 50px;
}
.input-box i {
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999999;
}
.input-box input:focus {
    border: 1px solid rgba(255,102,51,1);
}
.input-box input:focus ~ i {
    color: #FF6633;
}
.input-box .additional-phone {
    position: absolute;
    height: 100%;
    top: 0;
    left: 30px;
    color: #999999;
    display: flex;
    align-items: center;
    font-size: 12px;
}
.my-button {
    width: 100%;
    justify-content: center;
}
.my-button h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.my-button .agreement-text {
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    color: #999999;
    padding-top: 10px;
}
.change-form.add-company {
    display: none;
}
.change-form.add-company.show-add-company {
    display: flex;
    animation: fadein .5s ease-in-out forwards;
    z-index: 999;
}
.company-img {
    width: 100%;
    justify-content: center;
}
.crear-multiselector-30 {
    width: 30%;
    justify-content: center;
    align-items: center;
}
.crear-multiselector-70 {
    width: 70%;
    justify-content: start;
    flex-wrap: wrap;
}
.crear-multiselector-30 h4 {
    color: #FFFFFF;
}
.crear-multiselector-select {
    width: 100%;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px;
    height: 200px;
    max-height: 200px;
    overflow-y: scroll;
    justify-content: start;
}
.crear-multiselector-select::-webkit-scrollbar {
    width: 10px;
    height: 25px;
}
.crear-multiselector-select::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}
.crear-multiselector-select::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.multielem {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    transition: 0.3s;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.multielem:hover,
.multielem:has(input:checked) {
    cursor: pointer;
    background: rgb(255, 102, 51, 0.1);
}
.multielem:has(input:checked):hover {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
}
.company-search-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}
.company-search-input {
    width: 100%;
    box-sizing: border-box;
}
.company-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 2px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
}
.company-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}
.company-dropdown-item:hover {
    background: rgb(255, 102, 51, 0.1);
}
.company-dropdown-item:last-child {
    border-bottom: none;
}
.company-selected-box {
    width: 100%;
    min-height: 44px;
    padding: 10px;
    background: #ababab;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.company-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px 10px 10px;
    background: rgb(255, 102, 51, 0.7);
    border-radius: 5px;
    font-size: 13px;
    position: relative;
}
.company-chip span {
    font-weight: 500;
    color: #FFFFFF;
}
.crear-input-div i.fa-solid.company-chip-remove {
    position: absolute;
    cursor: pointer;
    color: #666;
    padding: 0 2px;
    font-size: 14px;
    line-height: 1;
    top: 0;
    left: unset;
    right: 5px;
    height: 100%;
    width: 20px;
    align-items: center;
    justify-content: end;
    display: flex;
    transition: .3s;
}
.crear-input-div i.fa-solid.company-chip-remove:hover {
    color: #c00;
}
.price-editor {
    width: 100%;
    flex-wrap: wrap;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px;
    justify-content: space-between;
}
.price-editor h5 {
    width: 100%;
    margin-bottom: 20px;
}
.price-elem {
    min-width: 30%;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(255, 102, 51, 0.1);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
.meetings-holder {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.meeting-split {
    width: 30%;
    background: #ededed;
    border-radius: 5px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.meeting-split:hover {
    background: #d1d1d1;
}
.meeting-split-b {
    margin-bottom: 10px;
}
.meeting-split-p {
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}
.meeting-split-txt {
    padding: 10px;
    flex-direction: column;
    align-items: center;
}
.meeting-btns {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
}
.meeting-edit-btn {
    flex: 1;
    background: #000000;
    color: #FFFFFF;
    padding: 5px 0;
    border: none;
}
.meeting-edit-btn:hover {
    background: #ff6633;
    cursor: pointer;
}
.meeting-edit-btn:first-child {
    border-radius: 0 0 0 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.meeting-edit-btn:last-child {
    border-radius: 0 0 5px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.meeting-edit-btn:only-child {
    border-radius: 0 0 5px 5px;
    border: none;
}
.item .meeting-edit-btn {
    margin-bottom: 0;
}
.edit-btn {
    padding: 5px;
    border-radius: 5px;
    background: #333333;
    color: #FFFFFF;
    margin-bottom: 10px;
    border: none;
}
.edit-btn:hover {
    cursor: pointer;
    background: #666666;
}
.edit-btn:last-child {
    margin-bottom: 0;
}
.qr-activate-generation {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px;
}
.qr-edit-wrapper {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
}
.qr-generation {
    display: flex;
    flex-wrap: wrap;
    width: 47%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 20px;
    gap: 10px;
}
.qr-view,
.qr-code-view {
    width: 47%;
    justify-content: end;
}
.qr-activate-btn {
    background: rgb(221,247,255);
    background: linear-gradient(45deg, rgba(221,247,255,1) 0%, rgba(255,238,253,1) 100%);
    border: none;
    color: #000000;
    border-radius: 5px;
    padding: 10px;
}
.qr-activate-btn:hover {
    cursor: pointer;
    transform: scale(1.2);
}
.cards-layout {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: end;
}
.cards-user {
    width: 80%;
    height: calc(90% - 80px);
    background: #333333;
    flex-wrap: wrap;
    padding: 40px 20px;
    border-radius: 5px 5px 0 0;
    align-content: start;
    gap: 40px;
    overflow-y: scroll;
    box-shadow: 0 0 10px rgba(0,0,0,1);
}
.cards-layout.back1,
.cards-layout.small.back1 {
    background: url("../img/pattern/1.jpg");
    background-size: 100% auto;
}
.cards-user.back1,
.cards-user.small.back1 {
    background: url("../img/pattern/1black.jpg");
    background-size: 100% auto;
}
.cards-layout.back2,
.cards-layout.small.back2 {
    background: url("../img/pattern/2.jpg");
    background-size: 100% auto;
}
.cards-user.back2,
.cards-user.small.back2 {
    background: url("../img/pattern/2black.jpg");
    background-size: 100% auto;
}
.cards-layout.back3,
.cards-layout.small.back3 {
    background: url("../img/pattern/3.jpg");
    background-size: 100% auto;
}
.cards-user.back3,
.cards-user.small.back3 {
    background: url("../img/pattern/3black.jpg");
    background-size: 100% auto;
}
.cards-layout.back4,
.cards-layout.small.back4 {
    background: url("../img/pattern/4.jpg");
    background-size: 100% auto;
}
.cards-user.back4,
.cards-user.small.back4 {
    background: url("../img/pattern/4black.jpg");
    background-size: 100% auto;
}
.cards-layout.back5,
.cards-layout.small.back5 {
    background: url("../img/pattern/5.jpg");
    background-size: 100% auto;
}
.cards-user.back5,
.cards-user.small.back5 {
    background: url("../img/pattern/5black.jpg");
    background-size: 100% auto;
}
.cards-layout.back6,
.cards-layout.small.back6 {
    background: url("../img/pattern/6.jpg");
    background-size: 100% auto;
}
.cards-user.back6,
.cards-user.small.back6 {
    background: url("../img/pattern/6black.jpg");
    background-size: 100% auto;
}
.cards-layout.back7,
.cards-layout.small.back7 {
    background: url("../img/pattern/7.jpg");
    background-size: 100% auto;
}
.cards-user.back7,
.cards-user.small.back7 {
    background: url("../img/pattern/7black.jpg");
    background-size: 100% auto;
}
.cards-layout.back8,
.cards-layout.small.back8 {
    background: url("../img/pattern/8.jpg");
    background-size: 100% auto;
}
.cards-user.back8,
.cards-user.small.back8 {
    background: url("../img/pattern/8black.jpg");
    background-size: 100% auto;
}
.cards-layout.back9,
.cards-layout.small.back9 {
    background: url("../img/pattern/9.jpg");
    background-size: 100% auto;
}
.cards-user.back9,
.cards-user.small.back9 {
    background: url("../img/pattern/9black.jpg");
    background-size: 100% auto;
}
.cards-layout.back10,
.cards-layout.small.back10,
.cards-user.back10,
.cards-user.small.back10 {
    background: #333333;
}
.cards-layout.back11,
.cards-layout.small.back11 {
    background: #FFFFFF;
}
.cards-layout.back12,
.cards-layout.small.back12 {
    background: #FF6633;
}
.cards-user.back13,
.cards-user.small.back13 {
    background: #7e4e42;
}
.cards-user.back14,
.cards-user.small.back14 {
    background: #35465a;
}
.cards-layout.small {
    width: 300px;
    height: 600px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 15px solid #000000;
}
.cards-user.small {
    gap: 20px;
}
.cards-user::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}
.cards-user::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 10px;
}
.cards-user::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
.cards-user h3,
.cards-user p,
.cards-user i,
.cards-user b {
    color: #FFFFFF;
}
.cards-img {
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
}
.cards-img-inside {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: -3px -3px 2px rgba(0,0,0,0.5);
}
.cards-img .cards-img-inside img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.cards-name {
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.cards-name h3 {
    font-size: 30px;
    margin-bottom: 10px;
}
.cards-name p {
    font-size: 20px;
    font-weight: 400;
}
.cards-name.small h3 {
    font-size: 24px;
}
.cards-name.small p {
    font-size: 14px;
}
.cards-contacts {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}
.cards-contacts a {
    margin-bottom: 10px;
}
.cards-contacts a i,
.cards-contacts a b {
    font-size: 20px;
}
.cards-contacts.small a i,
.cards-contacts.small a b {
    font-size: 14px;
}
.cards-contacts a b {
    font-weight: 400;
}
.cards-contacts a:hover {
    transform: unset;
    cursor: pointer;
}
.cards-contacts a:hover b {
    color: #c3c3c3;
}
.cards-socials {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cards-socials a {
    font-size: 36px;
    width: 50px;
    height: 50px;
    color: #333333;
    background: #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: -3px -3px 3px rgba(0,0,0,0.5);
}
.cards-socials.small a {
    font-size: 30px;
    width: 44px;
    height: 44px;
}
.cards-socials a i {
    color: #333333;
}
.cards-socials a:hover {
    background: transparent;
}
.cards-socials a:hover i {
    color: #FFFFFF;
}
.cards-socials a .fa-brands.max-custom-icon {
    height: 100%;
}
.cards-socials a .fa-brands.max-custom-icon img {
    height: 100%;
}
.cards-socials.small a .fa-brands.max-custom-icon {
    height: 100%;
}
.cards-socials.small a .fa-brands.max-custom-icon img {
    height: 100%;
}
.cards-info {
    width: 100%;
}
.cards-info.small p {
    font-size: 14px;
}
.cards-website {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.cards-website-btn {
    padding: 5px 10px;
    border-radius: 5px;
    background: rgb(221,247,255);
    background: linear-gradient(45deg, rgba(221,247,255,1) 0%, rgba(255,238,253,1) 100%);
    border: none;
    color: #333333;
    font-size: 20px;
}
.cards-website-btn.small {
    font-size: 14px;
}
.cards-website-btn:hover {
    cursor: pointer;
    transform: scale(1.1);
    opacity: 0.8;
}
.container-common {
    width: 100%;
    min-height: 90vh;
    justify-content: start;
    align-items: stretch;
    flex-direction: column;
}
.common-h3 {
    text-align: center;
    font-size: 32px;
    margin: 20px;
}
.common-center {
    width: 100%;
    justify-content: center;
}
#vk_group {
    min-width: 80%;
}
.search-ul {
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #333333;
    z-index: 1000;
}
.search-ul li {
    color: #FFFFFF;
}

/* Форма добавления сертификата: секции на всю ширину flex-ряда */
#addCertificate #holderSearchSection {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
#addCertificate #holderSearchSection > .crear-input-div {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    flex: 1 1 100%;
}
#addCertificate #holderSearchSection > .cert-new-user-link {
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
}
#addCertificate .certificate-new-person-block {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 10px;
    gap: 0;
}
#addCertificate .certificate-new-person-block > .cert-new-user-link.cert-back-to-holder {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    text-align: left;
}
#addCertificate .certificate-new-person-block .new-personal-bar {
    flex-basis: 100%;
    width: 100%;
}

/* Выпадающий список держателя сертификата (/certificate) */
.holder-dropdown-wrap {
    position: relative;
}
.holder-chip-field {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
}
#addCertificate .holder-chip-field:has(.holder-chip.is-visible) {
    justify-content: flex-start;
}
.holder-chip-field .holder-search-input-inner {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font: inherit;
    color: inherit;
    outline: none;
}
.holder-chip-field .holder-search-input-inner::placeholder {
    color: #a3a3a3;
}
.holder-chip {
    display: none;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.holder-chip.is-visible {
    display: inline-flex;
}
#addCertificate .holder-chip.is-visible {
    flex: 0 0 auto;
    width: fit-content;
    max-width: calc(100% - 12px);
    min-width: 0;
    padding: 0 5px;
    background: #e8e8e8;
    color: #444444;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    box-sizing: border-box;
}
.holder-chip-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#addCertificate .holder-chip.is-visible .holder-chip-text {
    flex: 0 1 auto;
    max-width: min(280px, 70vw);
    color: #333333;
    font-weight: 500;
    line-height: normal;
}
.holder-chip-clear {
    flex-shrink: 0;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}
#addCertificate .holder-chip.is-visible .holder-chip-clear {
    color: #333333;
    background: transparent;
    border: none;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
}
#addCertificate .holder-chip.is-visible .holder-chip-clear:hover {
    color: #ff6633;
}
.holder-chip-clear:hover {
    background: rgba(255, 255, 255, 0.22);
}
.cert-holder-suggestions {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    position: absolute;
    width: 100%;
    top: calc(100% + 4px);
    left: 0;
    background: #ffffff;
    z-index: 1000;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    max-height: 260px;
    overflow-y: auto;
}
.cert-holder-suggestions li {
    padding: 10px 14px;
    cursor: pointer;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
    border-bottom: 1px solid #f0f0f0;
}
.cert-holder-suggestions li:last-child {
    border-bottom: none;
}
.cert-holder-suggestions li:hover {
    background: #fff4e8;
}
.cert-holder-suggestions .cert-suggest-name {
    font-weight: 500;
}
.cert-holder-suggestions .cert-suggest-phone {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}
.cert-new-user-link {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 4px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cert-new-user-link:hover {
    opacity: 0.9;
}
.cert-select-disabled .add-select[disabled],
.cert-country-locked .add-select[disabled] {
    opacity: 1;
    cursor: default;
}
.item .cert-name h3 {
    color: #000000;
    font-size: 28px;
}
.cert-name {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: start;
}
.cert-issue {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-size: 12px;
}
.back-to-certificates {
    width: 100px;
    border-radius: 5px;
    background: #acacac;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}
.back-to-certificates:hover {
    cursor: pointer;
    background: #dddddd;
}
.search-cert-form {
    display: flex;
    padding-bottom: 20px;
    flex-basis: 100%;
}
.item .search-btn-div button {
    margin: 0;
}
.search-btn-div {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    justify-content: center;
    align-items: center;
}
.search-btn {
    height: 100%;
    padding: 5px 30px;
    background: #FF6633;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
}
.search-btn:hover {
    cursor: pointer;
    background: #b14825;
}
.persons-div {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.one-person {
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 45%;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}
.one-person-img {
    flex-direction: column;
    width: 30%;
    justify-content: center;
    align-items: center;
}
.one-person-img b {
    text-align: center;
    margin-top: 10px;
}
.one-person-form {
    width: 65%;
}
.add-results-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: -5%;
    background: #d9d9d9;
    border-radius: 5px;
    z-index: 10000;
    min-height: 250px;
    flex-direction: column;
    padding: 10px;
}
.add-results-form label {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.add-results-form label textarea {
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
    border: none;
    min-height: 200px;
    padding: 10px;
    width: 100%;
}
.add-results-form i:hover {
    cursor: pointer;
    transform: scale(1.2);
    color: #666666;
}
.results-div {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gf-results {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    align-content: start;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
}
.nomination-div {
    flex: 1;
    min-width: 30%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
    align-content: start;
}
.nomination-name {
    margin: 10px 0 20px 0;
    text-align: center;
    flex-basis: 100%;
}
.results-save {
    padding: 7px 10px;
    border-radius: 5px;
    background: #444444;
    border: none;
    color: #FFFFFF;
    font-weight: 500;
}
.results-save:hover {
    background: #ededed;
    color: #444444;
    cursor: pointer;
}
.champ-results {
    width: 100%;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    flex-wrap: wrap;
}
.results-h4 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    border: none;
    border-top: 5px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
    padding: 10px;
}
.first-place {
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
}
.second-place {
    width: 49%;
    flex-direction: column;
    align-items: center;
}
.first-place img,
.second-place img {
    max-height: 50px;
    width: auto;
    object-fit: scale-down;
    margin-bottom: 10px;
}
.first-place b,
.second-place b,
.first-place h5,
.second-place h5 {
    text-align: center;
}
.first-place h5,
.second-place h5 {
    border-top: 1px solid #FF6633;
    margin-top: 10px;
    padding-top: 10px;
}
.first-place p.error {
    color: #ff5d5d;
    font-weight: 400;
    animation: fadein .5s forwards;
}
.meetings-results-save {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.results-city {
    width: calc(49% - 10px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px;
    margin-bottom: 10px;
    gap: 10px;
}
.results-city-name {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
    border: none;
    border-bottom: 3px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
    margin-bottom: 10px;
    padding: 5px;
}
.results-city-name h5 {
    text-align: center;
}
.results-city .first-place {
    margin-bottom: 20px;
}
.results-input {
    max-width: 90%;
    border: none;
    border-top: 1px solid #FF6633;
    margin-top: 5px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
}
.results-input.course-name-input {
    width: 100%;
    max-width: unset;
    background: #ffc8b4;
    font-size: 20px;
    margin-top: 0;
    padding: 20px 0;
    border-radius: 5px 5px 0 0;
}
.results-input.block-input {
    max-width: unset;
    line-height: normal;
}
.results-input.theme-input,
.results-input.theme-name-input {
    max-width: unset;
    line-height: normal;
    border-top: none;
}
.results-input.theme-input::placeholder,
.results-input.theme-name-input::placeholder {
    color: #999999;
}
.results-input.theme-name-input {
    width: 100%;
}
.results-input.theme-input {
    width: 48%;
}
.theme-plus {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FF6633;
}
.theme-plus:hover {
    cursor: pointer;
    color: #444444;
}
.results-input.error-result {
    background: rgba(210, 13, 13, 0.1);
}
.homework-textarea.error-result {
    background: rgba(210, 13, 13, 0.1);
}
.results-input::placeholder {
    color: #ededed;
    font-weight: 400;
}
.results-input.city {
    margin-top: 0;
    border-top: none;
}
.results-input.city::placeholder {
    color: #b0b0b0;
}
.results-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.05);
}
.people-h4-div {
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: none;
    border-top: 5px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
    margin-bottom: 20px;
}
.people-h4-div h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    flex: 1;
    border-right: 1px solid rgba(255, 102, 51, 0.1);
    padding: 20px 0;
    margin-bottom: 0;
    text-align: center;
}
.people-h4-div h4:last-child {
    border-right: none;
}
.people-h4-div h4:hover {
    background: rgba(255, 102, 51, 0.2);
    cursor: pointer;
}
.people-h4-div h4.checked {
    background: rgba(255, 102, 51, 0.3);
}
.results-div.people {
    flex-wrap: wrap;
}
.results-div.for-signup {
    align-items: center;
    flex-direction: column;
}
.results-div.for-signup h4 {
    margin-bottom: 20px;
    color: #FFFFFF;
}
.results-div.policy {
    flex-direction: column;
}
.results-div.policy h4 {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}
.results-div.policy p,
.results-div.policy b {
    line-height: normal;
    text-align: justify;
}
.results-div.policy b {
    font-weight: 800;
    margin: 20px 0;
}
.people-div {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.people-item {
    width: 15%;
    flex-direction: column;
}
.people-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
    object-position: top;
}
.people-name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    padding: 10px 0;
    border-top: 2px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
    text-align: center;
    border-radius: 0 0 5px 5px;
}
.save-delete-div {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
}
.save-delete-div i {
    display: flex;
    flex: 1;
    justify-content: center;
    text-align: center;
    color: #999999;
}
.save-delete-div i:hover {
    cursor: pointer;
    transform: scale(1.2);
    color: #000000;
}
.accept-p,
.accept-p a {
    color: #999999;
    font-size: 10px;
    font-weight: 400;
    padding-bottom: 10px;
}
.accept-p a {
    text-decoration: underline;
}
.accept-p a:hover {
    cursor: pointer;
    color: #666666;
}
.gallery {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.gallery-container {
    display: unset;
    line-height: 0;
    -webkit-column-count: 5; /* split it into 5 columns */
    -webkit-column-gap: 5px; /* give it a 5px gap between columns */
    -moz-column-count: 5;
    -moz-column-gap: 5px;
    column-count: 5;
    column-gap: 5px;
}
.gallery-item {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
}
.caption {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: calc(100% - 20px);
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
}
.caption p {
    line-height: normal;
    font-weight: 400;
    font-size: 12px;
}
.gallery-container img {
    width: 100% !important;
    height: auto !important;
    margin-bottom:5px; /* to match column gap */
    transition: filter .5s;
}
.gallery-container img:hover {
    filter: brightness(0.7);
    cursor: zoom-in;
}
.gallery-container img:hover + .caption {
    opacity: 0;
    visibility: hidden;
}
.upload-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.custom-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
}
/* курсор "текстовый" только для текстового поля, но file-инпут (readonly) тоже кликабелен */
#imageName {
    color: #555;
}
/* кнопка */
.save-btn {
    padding: 10px 18px;
    background-color: #4d67ac;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
}
.save-btn.start-talker {
    background-color: #ff6633;
}
.item button.save-btn {
    margin-bottom: 0;
}
.save-btn:hover {
    background-color: #ffffff;
    color: #333333;
}
.upload-form .card-img-errors {
    width: 100%;
}
.del-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 10px;
}
.del-photo:hover {
    background: rgba(0, 0, 0, 0.5);
}
.trainings-container {
    width: 80%;
    flex-direction: column;
    align-items: start;
}
.trainings-container ul {
    margin-bottom: 20px;
}
.trainings-container b,
.trainings-container p,
.trainings-container ul,
.trainings-container ul li {
    line-height: normal;
    font-size: 18px;
}
.trainings-container b {
    font-weight: 700;
}
.trainings-container p {
    font-weight: 400;
}
.trainings-container ul li {
    margin-left: 30px;
    list-style: circle;
    font-size: 16px;
}
.header-orange-h4 {
    padding: 10px 20px;
    border-bottom: 5px solid #FF6633;
    background: rgba(255, 102, 51, 0.1);
}
.courses-container {
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
    align-items: start;
    padding: 2% 10%;
}
.courses-h4 {
    flex-basis: 100%;
    margin-bottom: 20px;
    font-size: 24px;
}
.courses-h4.theme-name {
    border-bottom: 1px solid #ff6633;
    padding-bottom: 10px;
}
.courses-h4.theme-name.with-margin {
    margin-top: 40px;
}
.courses-h4.theme-name-small {
    font-size: 18px;
    font-weight: 400;
}
.course-item {
    display: flex;
    background: #FFFFFF;
    border-radius: 5px;
    width: 45%;
    flex-wrap: wrap;
    row-gap: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    height: 100%;
}
.course-item.start-course {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height .5s ease-in-out;
}
.course-item.start-course.expand {
    max-height: 1000px;
}
.course-checkmark {
    position: absolute;
    top: 5px;
    right: 5px;
}
.expand-arrow {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(100% - 40px);
    left: 0;
    z-index: 80;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
            0deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.5) 75%,
            rgba(255, 255, 255, 0) 100%
    );
}
.expand-arrow i {
    display: flex;
    width: 10%;
    color: #FFFFFF;
    font-size: 18px;
    background: #ff6633;
    border-radius: 5px;
    border: 1px solid #8a361a;
    justify-content: center;
    align-items: center;
}
.expand-arrow:hover {
    transform: scale(1.2);
    cursor: pointer;
}
.expand-arrow i.clicked {
    transform: rotate(180deg);
}
.course-name {
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    background: #FF6633;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}
.course-name.inside-course {
    background: #8a3a1e;
}
.course-lessons {
    width: 100%;
    justify-content: space-evenly;
}
.course-progress {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.course-progress .progress-bar {
    width: calc(var(--progress) * 1%);
    height: 100%;
    background: linear-gradient(90deg, #ad4220, #ff6633);
    transition: width 0.3s ease;
}
.course-progress-p {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}
.blocks-p {
    font-weight: 600;
}
.lessons-p {
    font-weight: 400;
}
.blocks-p,
.lessons-p {
    padding-top: 5px;
    border-top: 1px solid #FF6633;
}
.blocks {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    color: #000000;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}
.blocks-desc {
    display: flex;
    padding: 10px;
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #FF6633;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    z-index: 70;
    min-width: 40%;
    align-items: center;
    position: relative;
}
.blocks-desc p {
    text-align: center;
}
.block-description {
    position: absolute;
    bottom: 100%;
    width: 350px;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    display: none;
    flex-wrap: wrap;
    border: 1px solid #FF6633;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: normal;
}
.blocks-desc .block-description p {
    width: 100%;
    font-weight: 400;
    text-align: left;
}
.block-description.visible {
    display: flex;
    animation: fadein .5s forwards;
}
.blocks-desc:hover {
    background: #e65a2b;
    transform: translateY(-2px);
}
.blocks-desc.online-course {
    padding: 10px 20px;
}
.blocks-desc.online-course:hover {
    cursor: pointer;
}
.school-promo-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.school-promo-input {
    min-width: 230px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #ffffff;
}
.school-promocode-status {
    font-size: 0.95rem;
    color: #555555;
    flex-basis: 100%;
}
.school-price-strike {
    text-decoration: line-through;
    color: #777777;
    margin-right: 8px;
}
.school-price-discounted {
    color: #a04e45;
}
.school-super-admin-actions {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.school-promo-panel {
    width: 100%;
    margin: 8px 0 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.school-promo-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.school-promo-panel-title {
    margin: 0;
    font-size: 1.1rem;
}
.school-promo-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.school-promo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid #ffb088;
    border-radius: 16px;
    background: #fff5ef;
    color: #4a2c1a;
    font-size: 0.92rem;
}
.school-promo-label-delete {
    border: none;
    background: transparent;
    color: #a04e45;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.school-promo-label-delete:hover {
    color: #c62828;
}
.school-promo-empty {
    margin: 0;
    color: #666666;
}
.school-promo-add-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.school-promo-input-control {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}
.school-promo-input-control-narrow {
    width: 110px;
}
.school-promo-input-control-date {
    min-width: 150px;
}
.school-promo-form-message {
    min-height: 1.2em;
    font-size: 0.9rem;
}
.school-promo-form-message.is-ok {
    color: #1a7f37;
}
.school-promo-form-message.is-error {
    color: #c62828;
}
.school-promo-load-error {
    color: #c62828;
    margin: 0;
}
.school-promo-delete-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}
.school-promo-delete-modal-body {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}
.school-promo-delete-modal-body h4 {
    margin: 0 0 8px;
}
.school-promo-delete-modal-body p {
    margin: 0 0 14px;
}
.school-promo-delete-actions {
    display: flex;
    gap: 10px;
}
.school-promo-delete-actions .save-btn {
    margin: 0;
}
.blocks li {
    margin-bottom: 10px;
}
.blocks-name {
    width: 100%;
    padding-left: 20px;
    color: #000000;
}
.blocks-param {
    width: calc(50% - 5px);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
}
.blocks-param i {
    color: #FF6633;
    margin-bottom: 10px;
    font-size: 24px;
}
.blocks-param p {
    font-weight: 400;
}
.talker-params {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 80%;
    gap: 14px;
}
.talker-param-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.talker-param-item p {
    color: #000000;
    font-weight: 600;
}
.talker-start-actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.talker-start-actions-guest {
    justify-content: center;
}
.talker-available-counter {
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    color: #3b3b3b;
    font-weight: 600;
}
.talker-start-actions .talker-available-counter {
    width: auto;
    margin: 0 0 0 auto;
}
.history-talker:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.talker-tariffs {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.talker-tariffs h2 {
    color: #1e1e1e;
}
.talker-free-trial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
}
.talker-free-trial p {
    color: #333;
    line-height: 1.45;
    margin: 0;
}
.talker-tariffs-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 14px;
}
.talker-tariff-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 14px;
}
.talker-tariff-card h3 {
    color: #1f1f1f;
}
.talker-tariff-card p {
    color: #666666;
    font-weight: 500;
}

/* Profile: meetings grid (like Talker tariffs, but separate classes) */
.profile-meetings-section {
    width: 100%;
    flex-wrap: wrap;
}
.profile-meetings-title {
    margin: 0 0 14px;
    color: #1e1e1e;
}
.profile-meetings-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.profile-meeting-card {
    display: flex;
    max-width: 27%;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 16px 16px 14px;
}
.profile-meeting-card-title {
    margin: 0;
    color: #1f1f1f;
    line-height: 1.25;
}
.profile-meeting-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.profile-meeting-line {
    margin: 0;
    color: #3b3b3b;
    font-weight: 500;
    line-height: 1.35;
    display: grid;
    grid-template-columns: max-content max-content 1fr;
    column-gap: 8px;
}
.profile-meeting-label {
    color: #666666;
    font-weight: 600;
}
.profile-meeting-sep {
    color: #999999;
    font-weight: 600;
}
.profile-meeting-value {
    color: #1f1f1f;
    font-weight: 600;
    overflow-wrap: anywhere;
}
.profile-meeting-open-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
}
.profile-meeting-open-btn:hover {
    background: #a04e45;
}
.profile-meetings-empty {
    margin: 0;
    padding: 12px 0 0;
    color: #666666;
    font-weight: 600;
}
.talker-super-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}
.talker-promo-panel {
    width: 100%;
    max-width: 920px;
    margin: 12px auto 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.talker-promo-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.talker-promo-panel-title {
    margin: 0;
    font-size: 1.1rem;
    color: #1f1f1f;
}
.talker-promo-add-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.talker-promo-input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}
.talker-promo-input-narrow {
    width: 110px;
}
.talker-promo-input-date {
    min-width: 150px;
}
.talker-promo-form-message {
    font-size: 0.9rem;
    min-height: 1.2em;
}
.talker-promo-form-message.is-ok {
    color: #1a7f37;
}
.talker-promo-form-message.is-error {
    color: #c62828;
}
.talker-promo-table-wrap {
    overflow-x: auto;
}
.talker-promo-table {
    width: 100%;
}
.talker-promo-col-actions {
    width: 52px;
}
.talker-promo-cell-actions {
    text-align: center;
    vertical-align: middle;
    width: 52px;
}
.talker-promo-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #888888;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease;
}
.talker-promo-delete-btn:hover {
    color: #c62828;
    background: rgba(198, 40, 40, 0.08);
}
.talker-promo-delete-btn:focus-visible {
    outline: 2px solid #ff6633;
    outline-offset: 2px;
}
.talker-promo-load-error {
    color: #c62828;
    margin: 0;
    font-size: 0.9rem;
}
.talker-admin-promo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    justify-content: center;
}
.talker-admin-promo-label {
    font-weight: 500;
    color: #333;
}
.talker-admin-promo-input {
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.talker-promocode-status {
    font-size: 0.9rem;
    color: #555;
    flex-basis: 100%;
    text-align: center;
}
@media (min-width: 600px) {
    .talker-promocode-status {
        flex-basis: auto;
        text-align: left;
    }
    .talker-admin-promo-row {
        justify-content: flex-start;
    }
}
/* Talker — покупка диалогов: только цвета (разметка как раньше, без обёртки) */
.save-btn.talker-pay-top-btn {
    background-color: #ffc9a8;
    color: #4a2c1a;
    border: 1px solid #ffb088;
}
.save-btn.talker-pay-top-btn:hover:not(:disabled) {
    background-color: #ffb890;
    color: #2e1a0d;
    border-color: #ff9a6b;
}
.save-btn.talker-pay-top-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.talker-tariff-card .save-btn.talker-tariff-pay-btn {
    background-color: #ff6633;
    color: #ffffff;
    border: none;
}
.talker-tariff-card .save-btn.talker-tariff-pay-btn:hover:not(:disabled) {
    background-color: #e55522;
    color: #ffffff;
}
/* Попап оплаты Talker: центр, отступы, фиксированная высота, прокрутка, закрытие */
.talker-pay-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 16px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}
.talker-pay-overlay--open {
    display: flex !important;
}
body.talker-pay-scroll-lock {
    overflow: hidden;
}
.talker-pay-backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    z-index: 0;
    -webkit-appearance: none;
    appearance: none;
}
.talker-pay-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: min(88vh, 760px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}
.talker-pay-modal-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}
.talker-pay-modal-head h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ff6633;
}
.talker-pay-modal-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #444;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.talker-pay-modal-close:hover {
    background: rgba(255, 102, 51, 0.12);
    color: #ff6633;
}
.talker-pay-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 20px 20px;
    -webkit-overflow-scrolling: touch;
}
.talker-pay-modal-body #payment-form {
    width: 100%;
    min-height: 220px;
    height: auto;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
}
.talker-param-btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 10px 12px;
    background: #ffffff;
    text-align: left;
    color: #232323;
}
.talker-param-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.talker-param-btn.readonly {
    background: #f3f3f3;
}
.talker-difficulty {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    overflow: hidden;
}
.talker-difficulty-part {
    border: none;
    padding: 10px 8px;
    background: #ffffff;
    color: #2c2c2c;
    border-right: 1px solid #d8d8d8;
}
.talker-difficulty-part:last-child {
    border-right: none;
}
.talker-difficulty-part:hover {
    cursor: pointer;
    background: #f3f3f3;
}
.talker-difficulty-part:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f7f7f7;
}
.talker-difficulty-part.active {
    background: #ff6633;
    color: #ffffff;
    font-weight: 600;
}
.talker-difficulty.talker-action-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.talker-difficulty.talker-action-bar .talker-difficulty-part {
    text-align: center;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 13px;
}
.talker-difficulty-part.talker-action-primary {
    background: #ff6633;
    color: #ffffff;
    font-weight: 600;
}
.talker-difficulty-part.talker-action-primary:hover:not(:disabled) {
    background: #e55522;
    cursor: pointer;
}
.talker-difficulty-part.talker-action-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #ff6633;
    color: #ffffff;
}
.talker-difficulty-part.talker-context-action {
    color: #ff6633;
    font-weight: 600;
}
.talker-difficulty-part.talker-context-action:hover:not(:disabled) {
    background: #fff8f5;
    cursor: pointer;
}
.talker-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}
.talker-popup-body {
    width: min(920px, calc(100vw - 40px));
    max-height: 85vh;
    min-height: 0;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.talker-popup-head {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #ebebeb;
}
.talker-popup-head h3 {
    color: #000000;
    font-weight: 700;
}
.talker-popup-close {
    border: none;
    background: transparent;
    color: #444444;
    font-size: 22px;
    line-height: 1;
}
.talker-popup-close:hover {
    cursor: pointer;
    color: #ff6633;
}
.talker-sphere-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #ebebeb;
    box-sizing: border-box;
    flex-shrink: 0;
}
.talker-sphere-filter {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.talker-sphere-filter.active {
    background: #ff6633;
    color: #ffffff;
    border-color: #ff6633;
    font-weight: 600;
}
.talker-sphere-filter:not(.active):hover {
    border-color: #ffb69a;
    background: #fff8f5;
}
.talker-cases-grid {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 14px;
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.talker-context-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.talker-context-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}
.talker-context-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    max-height: 100%;
    width: min(420px, 100vw);
    max-width: 100%;
    background: #ffffff;
    box-shadow: -6px 0 28px rgba(0, 0, 0, 0.15);
    z-index: 10041;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.talker-context-panel.is-open {
    transform: translateX(0);
}
.talker-context-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}
.talker-context-panel-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-context-panel-body {
    padding: 16px 18px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.talker-context-panel-summary {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
body.talker-context-open {
    overflow: hidden;
}
.talker-notify-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 10050;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: min(480px, calc(100vw - 32px));
    width: calc(100% - 32px);
    box-sizing: border-box;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #f0c4b8;
    border-left: 4px solid #ff6633;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    transform: translate(-50%, -140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.talker-notify-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.talker-notify-text {
    margin: 0;
    flex: 1;
    min-width: 0;
    color: #222222;
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-notify-close {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #444444;
    font-size: 22px;
    line-height: 1;
    padding: 0 0 0 4px;
    cursor: pointer;
    margin: -4px -4px -4px 0;
}
.talker-notify-close:hover {
    color: #ff6633;
}
@media (prefers-reduced-motion: reduce) {
    .talker-context-panel,
    .talker-context-backdrop {
        transition: none;
    }
    .talker-notify-toast {
        transition: none;
    }
}
.talker-case-card {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 12px;
    text-align: left;
    color: #222222;
    white-space: normal;
    height: auto;
}
.talker-case-card:hover {
    cursor: pointer;
    background: #fff3ee;
    border-color: #ffb69a;
}
.talker-case-card-title {
    font-weight: 700;
    margin-bottom: 10px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-case-card-line {
    width: 100%;
    height: 1px;
    background: #ececec;
    margin-bottom: 10px;
}
.talker-case-card-summary {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-chat-shell {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.talker-chat-box {
    width: 100%;
    height: 420px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.talker-chat-messages {
    width: 100%;
    flex: 1;
    min-height: 0;
    padding: 14px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.talker-hint-bar {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: transparent;
}
.talker-hint-btn {
    position: absolute;
    right: 22px;
    bottom: 2px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #ffc14d, #ff9f1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 159, 26, 0.45);
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.talker-hint-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(255, 159, 26, 0.55);
}
.talker-hint-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}
.talker-hint-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10045;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.talker-hint-modal {
    width: min(520px, calc(100vw - 40px));
    max-height: min(70vh, 420px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.talker-hint-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}
.talker-hint-modal-head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #000000;
}
.talker-hint-modal-body {
    padding: 18px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.talker-hint-modal-text {
    margin: 0;
    color: #333333;
    font-size: 15px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-chat-messages.dragging {
    cursor: grabbing;
}
.talker-chat-messages::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.talker-chat-composer {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 6px 14px 14px;
    box-sizing: border-box;
    border-top: 1px solid #efefef;
    background: #ffffff;
}
.talker-composer-row {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}
.talker-chat-composer input {
    width: 100%;
    height: 54px;
    border: 1px solid #d9d9d9;
    border-radius: 27px;
    outline: none;
    padding: 0 62px 0 18px;
    box-sizing: border-box;
    color: #222222;
    font-weight: 500;
}
.talker-send-circle {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #2e7516;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.talker-send-circle:hover {
    cursor: pointer;
    background: #143707;
}
.talker-send-circle:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.talker-finish-wide {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
    color: #ffffff;
    background: #b84a25;
}
.talker-finish-wide:hover {
    cursor: pointer;
    background: #444444;
}
.talker-finish-wide:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.start-talker:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.talker-dialog-limits-hint {
    width: 100%;
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: #8a8a8a;
    text-align: center;
    line-height: 1.35;
}
.user,
.bot {
    width: 100%;
    margin-bottom: 10px;
}
.user {
    justify-content: end;
}
.user p,
.bot p {
    color: #000000;
    background: #f6f7f8;
    border-radius: 5px;
    max-width: 60%;
    padding: 10px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.user p {
    background: #e7f5df;
}
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 6px;
}
@keyframes talker-typing-dot-fade {
    0%,
    100% {
        opacity: 0.22;
        transform: scale(0.92);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}
.typing-bubble .typing-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9a9a9a;
    animation: talker-typing-dot-fade 1s ease-in-out infinite;
}
.typing-bubble .typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-bubble .typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
    .typing-bubble .typing-dot {
        animation: none;
        opacity: 0.55;
    }
}
.talker-results {
    align-items: start;
    justify-content: start;
    width: 80%;
    flex-direction: column;
}
#evaluation {
    min-height: 300px;
    width: 80%;
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.talker-evaluation-loader {
    margin-bottom: 10px;
    color: #b84a25;
    font-weight: 600;
}
.talker-send-btn,
.talker-finish-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    color: #FFFFFF;
}
.talker-send-btn {
    background: #1c4d0c;
}
.talker-finish-btn {
    background: #b84a25;
}
.talker-send-btn:hover,
.talker-finish-btn:hover {
    cursor: pointer;
    background: #444444;
}
.talker-page-nav {
    display: flex;
    width: 80%;
    gap: 10px;
    justify-content: start;
}
.talker-case-form {
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}
.talker-case-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
}
.talker-case-grid label,
.talker-case-full label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #000000;
}
.talker-case-grid input,
.talker-case-grid select,
.talker-case-full textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    padding: 8px 10px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
}
.talker-case-full {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 14px;
}
.talker-case-full textarea {
    resize: vertical;
    min-height: 80px;
}
.talker-form-actions {
    display: flex;
    width: 100%;
    justify-content: start;
    gap: 12px;
}
.gray-btn {
    background: #5f5f5f;
}
.talker-form-error,
.talker-form-success {
    width: 100%;
    border-radius: 5px;
    padding: 12px;
}
.talker-form-error {
    background: #ffe9e9;
    border: 1px solid #e58f8f;
}
.talker-form-success {
    background: #e9ffef;
    border: 1px solid #78c78a;
}
.talker-case-list {
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: start;
}
.talker-case-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}
.talker-case-table th,
.talker-case-table td {
    border: 1px solid #dddddd;
    padding: 10px;
    text-align: left;
    color: #000000;
}
.talker-case-table th {
    background: #f6f6f6;
}
@media (max-width: 900px) {
    .talker-params {
        width: 95%;
    }
    .talker-chat-shell {
        width: 95%;
    }
    .talker-tariffs {
        width: 95%;
    }
    .talker-tariffs-grid {
        grid-template-columns: 1fr;
    }
    .talker-chat-box {
        height: 480px;
    }
    .talker-cases-grid {
        grid-template-columns: 1fr;
    }
    .talker-context-panel {
        width: 100%;
        max-width: 100%;
    }
    .talker-difficulty.talker-action-bar {
        grid-template-columns: 1fr;
    }
    .talker-difficulty.talker-action-bar .talker-difficulty-part {
        border-right: none;
        border-bottom: 1px solid #d8d8d8;
    }
    .talker-difficulty.talker-action-bar .talker-difficulty-part:last-child {
        border-bottom: none;
    }
    .talker-page-nav,
    .talker-case-form,
    .talker-case-list {
        width: 95%;
    }
    .talker-case-grid {
        grid-template-columns: 1fr;
    }
    .talker-case-table {
        font-size: 12px;
    }
}
.current-previous-theme {
    width: 100%;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #FF6633;
}
.current-previous-theme p {
    display: flex;
    width: 50%;
    font-size: 14px;
    align-items: center;
}
.current-previous-theme p.previous-theme {
    justify-content: start;
    text-align: left;
    gap: 10px;
}
.current-previous-theme p.next-theme {
    justify-content: end;
    text-align: right;
    gap: 10px;
}
.current-previous-theme p:hover {
    color: #ff6633;
    cursor: pointer;
}
.current-previous-theme.theme-footer {
    margin-top: 20px;
}
#courseVideo,
#courseVideoTwo {
    width: 100%;
    min-height: 500px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#courseVideoTwo {
    margin-top: 20px;
}
.homework-form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.homework-label {
    display: flex;
    width: 100%;
    row-gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}
.crear-input-div.flex-grow.homework-label-btns {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}
.homework-option {
    flex: 1;
    padding: 5px;
    background: #ededed;
    border-radius: 5px;
    border: 1px solid #999999;
    min-width: 25%;
}
.homework-option:hover {
    background: rgba(255, 102, 51, 0.5);
    cursor: pointer;
}
.homework-option.checked {
    background: rgba(255, 102, 51, 1);
    color: #FFFFFF;
}
.homework-textarea {
    width: calc(100% - 20px);
    padding: 10px;
    min-height: 70px;
    resize: none;
    font-weight: 400;
    border: 1px solid rgba(255, 102, 51, 0.3);
    border-radius: 5px;
    outline: none;
}
.homework-textarea:focus {
    border: 1px solid rgba(255, 102, 51, 0.8);
}
.homework-textarea.error-result:focus {
    background: #FFFFFF;
}
.back-to-course {
    width: 100%;
    justify-content: left;
}
.back-to-course-btn {
    border: none;
    color: #999999;
    background: transparent;
    padding: 0 0 10px 0;
}
.back-to-course-btn:hover {
    cursor: pointer;
    color: #000000;
}
.payment-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.payment-div {
    width: 50%;
    height: 92%;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#payment-form {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: start;
    overflow-y: scroll;
}
.add-meeting-promo {
    width: 100%;
    justify-content: space-between;
}
.meet-promos {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    gap: 10px;
}
.meet-promo-elem {
    border-radius: 5px;
    background: rgba(255, 102, 51, 0.3);
    padding: 5px;
    font-size: 10px;
    font-weight: 400;
    gap: 5px;
}
.meet-promo-elem i:hover {
    cursor: pointer;
    color: #ff6633;
}