@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;
}
.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;
}
.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-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;
}
.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::-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);
}
.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: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;
}
.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 .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 {
    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 .checked {
    display: none;
}
.check-weekday input[type="checkbox"]:checked ~ .checked,
.check-personal-bar input[type="checkbox"]:checked ~ .checked {
    display: flex;
}
.check-weekday input[type="checkbox"]:checked ~ .unchecked,
.check-personal-bar input[type="checkbox"]:checked ~ .unchecked {
    display: none;
}
.check-personal-bar:has(input[type='checkbox']:checked) {
    background: #ededed;
}
.check-personal-bar.small:has(input[type='checkbox']: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.white-block {
    background: #FFFFFF;
}
.block-second {
    width: 80%;
    align-items: start;
    justify-content: space-evenly;
    padding: 20px;
}
.block-plus {
    width: 25%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.block-plus.for-pi {
    height: 100%;
    width: 30%;
    align-items: center;
}
.block-plus img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
    transition: .3s;
}
.block-plus.for-pi img {
    width: 50%;
}
.block-plus img:hover {
    transform: scale(1.1);
}
.block-plus img:hover + .abs-desc,
.abs-desc:hover {
    height: 60%;
    background: rgba(0, 0, 0, 0.8);
}
.for-pi-desc {
    width: 100%;
    height: auto;
    flex-direction: column;
}
.for-pi-desc h4 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 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 {
    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;
}
.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);
}
@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-container {
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
    align-items: start;
    padding: 2%;
}
.cert-people {
    flex-basis: 100%;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    flex-wrap: wrap;
    min-height: 50vh;
}
.cert-elem {
    flex-basis: 100%;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
}
.cert-elem.cert-person {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
}
.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 p {
    text-align: center;
    line-height: normal;
    font-weight: 400;
}
.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;
}
.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;
}
.cert-content thead tr th:hover {
    cursor: pointer;
    background: #dfdfdf;
}
.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;
}
.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: #999999;
}
.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: 80%;
    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%);
}
.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;
}
.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);
}
.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;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    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;
}
.edit-btn {
    padding: 5px;
    border-radius: 5px;
    background: #333333;
    color: #FFFFFF;
    margin-bottom: 10px;
    border: none;
}
.edit-btn.edit-results {
    background: #4d67ac;
}
.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-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;
}
.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;
}
.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;
    position: relative;
    z-index: 70;
    min-width: 40%;
    align-items: center;
}
.blocks-desc p {
    text-align: center;
}
.block-description {
    position: absolute;
    bottom: 100%;
    left: 100%;
    width: 400px;
    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;
}
.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 {
    flex-direction: column;
    align-items: start;
    width: 80%;
}
.talker-params label {
    width: 50%;
    display: flex;
    justify-content: space-between;
}
.talker-params label input {
    width: 70%;
    border-radius: 5px;
    padding: 5px;
    outline: none;
}
.talker-text-enter {
    width: 80%;
}
#chat {
    width: 80%;
    border: 1px solid #ccc;
    padding: 20px;
    height: 300px;
    overflow-y: scroll;
    margin-top: 10px;
    flex-direction: column;
}
.user,
.bot {
    width: 100%;
    margin-bottom: 10px;
}
.user {
    justify-content: end;
}
.user p,
.bot p {
    color: #000000;
    background: #FFFFFF;
    border-radius: 5px;
    width: 60%;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.talker-results {
    align-items: start;
    justify-content: start;
    width: 80%;
    flex-direction: column;
}
#evaluation {
    min-height: 300px;
    width: 80%;
}
.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;
}
.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 {
    width: 100%;
    min-height: 500px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.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;
}