
@import url('forms/basic-forms.css');
@import url('cards/basic-cards.css');
@import url('buttons/basic-buttons.css');


/* -----------Header with Navigation Bar----------- */

.data-fade {
    transition: opacity 0.6s ease;
    opacity: 1;
}
/* Basic Input Styles */
[data-cloak] {
    opacity: 0 !important;
    pointer-events: none !important;
}
.data-cloak {
    opacity: 0 !important;
    pointer-events: none !important;
}

svg.absolute.data-fade {
    opacity: 1;
    fill: #8dbf42;
    transition: fill 0.6s ease, opacity 0.6s ease;
}
button:hover svg.absolute.data-fade {
    fill: #fff;
}

.main-wrapper {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    gap: 1.5rem;
    height: 100%;
    padding-block: 1.5rem;
}

.main-wrapper-topnavbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: 1fr;
    gap: 1rem;
    padding: .3rem;
    width: 100%;
    height: 100%;

    color: var(--myprimary);
    border-radius: var(--myradius);
    background-color: var(--card-dark-bg);
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
}
.main-wrapper-topnavbar-item {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    height: clamp(2rem, 7dvh, 6rem);
    border: 1px solid var(--myprimary);
    min-width: 140px;

    font-size: clamp(0.9rem, 1.2dvw, 2.5rem);
    letter-spacing: .1rem;
    font-family: var(--main-font);
    border-radius: var(--myradius);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.main-wrapper-topnavbar-item:hover {
    background-color: var(--myprimary);
    color: white;
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
    transform: scale(0.993);
}
.main-wrapper-topnavbar-item:active {
    background-color: var(--myprimary);
    color: white;
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
    transform: scale(0.98);
}

.main-wrapper-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 2.5rem;
    padding: 1.5rem;
    line-height: 2.5rem;

    text-align: center;
    border-radius: var(--myradius);
    background-color: var(--card-dark-bg);
    box-shadow: var(--myshadow);
}
.main-wrapper-card-title {
    display: flex;
    align-items: center;
    gap: 6rem;
    height: 42px;

    color: var(--myprimary);
    background-color: transparent;
    border-radius: var(--myradius);

    font-family: var(--main-font);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 42px;
    text-align: left;
}
.main-wrapper-card-title-text {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--myprimary);
    border: var(--myprimary) 1px solid;
    border-radius: var(--myradius);
    flex-grow: 2.5;
    padding-inline: 2rem;

    font-size: 1.2rem;
    line-height: 2.5rem;
    font-weight: 200;

    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
}
.main-wrapper-card-title-buttons {
    flex-grow: 1;
    display: flex;
    gap: 3rem;
}
.middle-btn{
    padding-inline: 2rem;
}
.btn-arrow {
    color: var(--myprimary);
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    height: 42px;

    border: 1px solid var(--myprimary);
    border-radius: var(--myradius);
    transition: var(--mybtn-transition);

    letter-spacing: 0.05rem;
    font-size: 1.2rem;
    line-height: 42px;
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
}
.btn-arrow.h32 {
    height: 32px;
    line-height: 32px;
}
.btn-arrow:hover {
    color: var(--mycolor-white);
    background-color: var(--myprimary);
}
.btn-arrow:active {
    transform: scale(0.98) translate(2px);
}
.svg-hover-white:hover {
    stroke: var(--mycolor-white);
}

.svg__nav_arrow *,
.svg_hover * {
    transition: all .3s ease;
}

svg.svg__nav_arrow_sm *,
.svg_hover_sm * {
    transition: all .3s ease;
}

svg.svg__nav_arrow_sm {
    width: 30px;
    height: 30px;
}

a:hover svg.svg_hover path {
    fill: white;
}

a:hover svg.svg__nav_arrow path {
    stroke: whitesmoke;
}



button:hover svg.svg_hover path {
    stroke: white;
    fill: white;
}

.mono-font-bold {
    font-weight: 700;
    font-family: var(--main-font);
}




[x-cloak] { display: none; }
.not_visible {
    visibility: hidden;
}
.message-enter, .message-leave-to {
  opacity: 0;
}

.message-enter-active, .message-leave-active {
  transition: opacity 0.5s;
}

.semibold {
    font-size: 20px;
    font-weight: 500;
}

.semibold-sm {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
}

/* Remove Arrows/Spinners */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* ======================== */

.header-right-dropdown-user-alias {
    font-size: 1rem;
    color: #ffffff;
    padding: .2rem;
    border: 1px solid #ffffff;
    border-radius: 8px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.8rem;
    background-color: var(--myprimary);
    color: #fff;
    box-shadow: 0 20px 35px 4px rgba(34, 80, 35, 0.16);
    height: clamp(1rem, 3rem, 3rem);
}
.header-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.header-brand-img {
    height: 2.8rem;
}
.header-brand-text {
    font-size: 1.5rem;
    line-height: 2rem;
    display: inline-block;
    color: white;
    transform: scale(1.06);
}
.header-brand-text:after {
    content: "";
    display: block;
    position: relative;
    z-index: -1;
    width: 0;
    border-bottom: 1px solid #ffffff;
    bottom: .15em;
    transition: all .5s;
}
.header-brand-text:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 1s;
}
.header-right-svg_standby {
    padding: 0.05rem;
}
.header-right-text {
    font-size: var(--myfont-size);
    color: white;
    transition: all .4s;
}
.header-right-text:hover {
    text-shadow: 3px -3px 3px silver;
    color: white;
    transform: scale(1.05);
}
.header-right-dropdown {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    transition: all .4s;
}
.header-right-dropdown:hover {
    display: flex;
    align-items: center;
    text-shadow: 3px -3px 3px silver;
    color: white;
    transform: scale(1.03);
}
.header-right-dropdown-icon {
    width: 1.75rem;
}
.header-right-dropdown-user-portrait {
    height: 3rem;
    border-radius: 100px;
    object-fit: cover;
    -o-object-fit: cover;
}

/* ============ Footer ============ */
.my_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--myprimary);
    color: #fff;
    box-shadow: 0 0 40px rgba(97, 97, 97, 0.17);
    height: clamp(1rem, 3rem, 3rem);
}
.footer_text_copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.social_networks_signs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.footer-img-social {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}

/* ============  Index page - Container ============ */
.index-container {
    display: grid;
    grid-template-columns: 5fr 3fr;
    grid-template-rows: 5fr 1fr;
    gap: clamp(1rem, 5vw, 4rem);
    color: white;
    min-height: max(40px, 100%);
    min-width: clamp(90%, 100%, 1300px);
}
.index-large-text {
    margin-inline: auto;
    display: flex;
    flex-grow: 2;
    flex-direction: column;
    justify-content: center;
    height: min(100vh, 100%);
    gap: clamp(1rem, 3vw, 2rem);
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.02rem;
}
.index-title {
    font-size: clamp(2.5rem, 10vw, 8rem);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02rem;
    font-weight: 600;
}
.index-title-caption {
    font-size: clamp(1.3rem, 2vw, 3rem);
    font-weight: 300;
}
.index-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    white-space: nowrap;
    width: max(220px, 95%);
    max-width: 90%;
}
.btn.index-menu-btn {
    background-color: transparent;
    min-height: clamp(2.3rem, 5vh, 3rem);
    min-width: clamp(220px, 80%, 800px);
    font-size: clamp(1rem, 0.8526rem + 0.8421vw, 1.8rem);
    font-weight: 200;
  }
.btn.index-menu-btn:hover {
    background-color: var(--myprimary);
  }


.grid-cols1-2 {
    display: grid;
    grid-template-columns: 1.1fr 3fr;
    gap: clamp(1rem, 1vw, 4rem);
    color: white;
}

/*------------- Pagination -------------*/
.pagination {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    place-items: center;
    place-content: center;
    justify-self: center;

    min-width: 100%;
    min-height: 2rem;

    color: var(--myprimary);
    border: 1px solid var(--myprimary);
    border-radius: var(--myradius-sm);
    transition: all .3s ease;
}
.pagination_select_time {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.pagination a {
    transition: color .3s ease, border .3s ease;
}
.pagination a:hover {
    color: greenyellow;
}
.pagination a:active {
    color: greenyellow;
}

.pagination .active a {
    border: 1px solid var(--myprimary);
    padding: 0.3rem;
    border-radius: 25%;
}
.pagination .active a:hover {
    border: 1px solid greenyellow;
}
/*----------------- END -----------------*/



/* Centered not small card title */
.dialog_title {
    font-weight: 200;
    padding: 0 2.4rem;
    width: 100%;

    text-align: center;
    line-height: 3rem;
    font-size: clamp(1rem, 1rem + .5vw, 3rem);

    color: var(--myprimary);
    border: 1px solid var(--myprimary);
    border-radius: var(--myradius);
    white-space: nowrap;
}


.form_group {
    min-width: 100%;
}
.custom_form {
	width: 100%;
    padding: 0;
    margin-top: .5rem;
}
.custom_form .custom_input {
    position: relative;
    min-height: 36px;
    max-height: 36px;
    min-width: 270px;
	padding: 5px 15px;

    color: transparent;
	background: transparent;
	border: 2px solid rgba(246, 246, 246, 0.15);
	border-radius: 7px;
	outline: none;

	font-size: 18px;
	font-weight: 500;
    transition: border-color 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
}

.custom_form .custom_input.hasValue {
	border-color: rgba(141, 191, 66, 0.75);
	background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    color: var(--myprimary);
}
.custom_form .custom_input:focus {
	border-color: rgba(164, 206, 55, 0.8);
	background: rgba(54, 54, 54, 0.2);
    color: var(--myprimary);
    box-shadow:
            1px 1px 10px rgba(153, 191, 59, 0.3),
            0 0 30px rgba(0, 0, 0, 0.7);
}
.custom_form label {
    float: left;
	position: absolute;
    min-height: 36px;
    max-height: 36px;
	top: -27px;
	left: 10px;
	color: rgba(232, 232, 232, 0.7);

	font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06rem;

	pointer-events: none;
	padding: 0 5px;
    transition: top 0.3s ease, left 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}
.custom_form .custom_input.hasValue ~ label,
.custom_form .custom_input:focus ~ label {
    position: relative;
	top: -62px;
    left: 5px;
	color: var(--myprimary);
    font-size: 15px;
}


.custom_form .custom_input[type="time"] {
    padding-left: 28px;
    max-width: 160px;
    min-width: 150px;
    font-size: 22px;
    max-height: 37px;
}
.custom_form .custom_input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    position: relative;
    filter: invert(30%) sepia(100%) saturate(1000%) hue-rotate(50deg) brightness(140%);
    transition: all 0.3s ease;
}
.custom_form .custom_input[type="time"]:focus::-webkit-calendar-picker-indicator {
    filter: invert(30%) sepia(100%) saturate(1000%) hue-rotate(50deg) brightness(200%);
    scale: 1.1;
}






/* Modal CSS */
/* Main Properties */
.modal {
    position: fixed;
    inset: 0;

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

    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);

    transition: opacity 0.3s ease;
    z-index: 100;
}
.modal.open {
    opacity: 1;
}
.modal .content {
    padding: 2rem;
    min-width: 45%;
    text-align: center;
    border-radius: 7px;
    background-color: rgba(15, 15, 15, 0.75);
    box-shadow: 0 .5rem 1rem rgba(22, 22, 22, 0.5);
}

/* HEADER */
.modalHeaderElem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10%;

    width: 100%;
}
.modalTitleText {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 2rem;
    width: 100%;

    font-weight: 200;
    line-height: 3rem;
    font-size: 1.4rem;

    color: var(--myprimary);
    border: 1px solid var(--myprimary);
    border-radius: var(--myradius);
    white-space: nowrap;
}
.modalTitleSpanRight {
    font-size: 1.2rem;
}

/* TOAST MESSAGES */
#messages {
    position: fixed;
    bottom: 10px;
    right: 50px;
    z-index: 999;
    width: max-content;
    white-space: nowrap;
}

.my_toast {
    display: grid;
    grid-template-columns: 35px 1fr 10%;
}


/* MODAL BUTTONS */
.modal .content .modalBtnCloseTop {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;

    background-color: transparent;
    font-size: 1.2rem;
    font-weight: 200;

    color: var(--myprimary);
    border: var(--myprimary) 1px solid;
    border-radius: var(--myradius);

    line-height: 2.5rem;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--myshadow);
    transition: var(--mybtn-transition);
}
.modal .content .modalBtnCloseTop::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-image: url('/static/img/svg/form_svg/close.svg');
    width: 1.7rem;
    height: 1.7rem;
    transition: var(--mybtn-transition);
    filter: none;
}
.modal .content .modalBtnCloseTop:hover {
    box-shadow: 5px 7px 11px rgba(0, 0, 0, 0.23);
    transform: scale(1.1);
    background: var(--myprimary_light);
    border: 1px solid transparent;
}
.modal .content .modalBtnCloseTop:hover::before {
    filter: brightness(0) invert(1); /* Фильтр для изменения цвета на белый */
}
.modal .content .cancelButtonText,
.modal .content .confirmButtonText {
    background-color: var(--myprimary);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    margin-inline: 2rem;
}
/* ----------END---------- */

.modalFooter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 90%;
    margin: 2rem 0;
    margin-inline: auto;
}
.grid-cols-for-modal-form {
    display: grid;
    grid-template-columns: 1fr 140px 140px;
    gap: 1rem;
    margin: 1rem 0;
}


.modal .titleText {
    font-size: 2rem;
    font-weight: 700;
    color: var(--myprimary);
}

.modal .messageText {
    color: var(--myprimary);
    font-size: 1.4rem;
    margin: 2rem 0;
}

/* NEW ADD BTN */

.add-btn-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 32px;
    color: var(--myprimary);
    background-color: transparent;
    border: 1px solid var(--myprimary);
    margin-inline: auto;
    margin-top: 2.5rem;
    margin-bottom: 1rem;


    font-weight: 200;
    font-size: 1.2rem;

    border-radius: var(--myradius);
    transition: var(--mybtn-transition);

    position: relative;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25);
    transform: scale(0.99) translateX(-1px);
}

.add-btn-sm:hover {
    background-color: var(--myprimary);
    color: white;
    cursor: pointer;
    transform: scale(1) translate(0px);
}


.btn-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    color: var(--myprimary);
    background-color: transparent;
    border: 1px solid var(--myprimary);

    font-weight: 500;
    font-size: 16px;

    border-radius: var(--myradius);
    transition: var(--mybtn-transition);

    position: relative;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-sm:hover {
    background-color: var(--myprimary);
    color: white;
    border: 1px solid transparent;
    cursor: pointer;
    transform: scale(0.995) translateX(2px);
}


.add-btn-under_input {
    position: absolute;
    top: 28px;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    color: var(--myprimary);
    background-color: transparent;
    border: 1px solid var(--myprimary);
    border-radius: 5px;
    margin-inline: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;


    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.07rem;

    transition: var(--mybtn-transition);

    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25);
    transform: scale(0.99) translateX(-1px);
}

.add-btn-under_input:hover {
    background-color: var(--myprimary);
    color: white;
    cursor: pointer;
    transform: scale(1) translate(0px);
}

.add-btn-under_input:disabled {
    color: #a0a0a0;
    background-color: transparent;
    border-color: #d0d0d0;
    cursor: default;
    box-shadow: none;
    transform: scale(1);
}

.add-btn-under_input:disabled:hover {
    transform: scale(1) translate(0px);
}

.__DELETE__ {
    display: flex;
    justify-content: center;
    align-items: center;
}
.__EMPTY_FORM__,
.added_form {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr .1fr;
    gap: 10px;
    margin-block: 3.5rem;
}
#empty_form {
    display: none;
}
.form_list {
    position: relative;
}
.svg-trash {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    transition: all .3s ease;
}

.date_field {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 33px;
    max-height: 33px;
    min-width: 140px;
    max-width: 140px;
    width: 120px;

	background: rgba(0, 0, 0, 0.45) !important;
	border: 2px solid rgba(246, 246, 246, 0.15) !important;

	border-radius: 7px;
	outline: none;
	font-size: 18px !important;
	font-weight: 500;
    padding-inline: 1rem;
    color: rgba(130, 130, 130, 0.85) !important;
    --tw-ring-color: var(--myprimary) !important;
    --tw-ring-shadow: var(--myprimary);
    transition: border-color 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
}
.search_field {
    position: relative;
    display: flex;
    min-height: 43px;
    max-height: 43px;

    min-width: 230px;
    max-width: 400px;

	background: rgba(0, 0, 0, 0.35) !important;
	border: 2px solid rgba(246, 246, 246, 0.15) !important;

	border-radius: 7px;
	outline: none;
	font-size: 18px !important;
	font-weight: 500;
    color: rgba(130, 130, 130, 0.85) !important;
    --tw-ring-color: var(--myprimary) !important;
    --tw-ring-shadow: var(--myprimary);
    transition: border-color 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
}
.search_field.mw200 {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
}
.search_field.mw100 {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
}
.search_field.w85 {
    min-width: 85px;
    max-width: 85px;
    width: 85px;
}
.search_field.h33 {
    min-width: 33px;
    max-width: 33px;
    width: 33px;
}
.search_field:focus {
    background: rgba(0, 0, 0, 0.2) !important;
	border: 2px solid rgba(152, 204, 49, 0.75) !important;
}
.search_field:hover {
    background: rgba(0, 0, 0, 0.2) !important;
	border: 2px solid rgba(152, 204, 49, 0.75) !important;
}
.search_field:active {
    background: rgba(0, 0, 0, 0.2) !important;
	border: 2px solid rgba(152, 204, 49, 0.75) !important;
}
.search_field:focus-within {
    background: rgba(0, 0, 0, 0.2) !important;
	border: 2px solid rgba(152, 204, 49, 0.75) !important;
}
.search_field.min_max_w_130 {
    min-width: 130px;
    max-width: 130px;
    margin-inline: auto;
}
.search_field.w_330 {
    min-width: 330px;
    max-width: 330px;
    margin-inline: auto;
}
.min_max_w_230 {
    min-width: 230px;
    max-width: 230px;
    margin-inline: auto;
}
.min_max_w_100 {
    min-width: 100px;
    max-width: 100px;
    margin-inline: auto;
}
.min_max_w_50 {
    min-width: 50px;
    max-width: 50px;
    margin-inline: auto;
}
.min_max_w_150 {
    min-width: 150px;
    max-width: 150px;
    margin-inline: auto;
}
.w_280 {
    min-width: 280px;
    max-width: 280px;
    margin-inline: auto;
}
.w_160i {
    min-width: 160px !important;
    max-width: 160px !important;
}
.w_330 {
    min-width: 330px;
    max-width: 330px;
    margin-inline: auto;
}
.flex_inside {
    gap: 1rem;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    flex-direction: row !important;
}
.flex_inside div,
.flex_inside select {
    color: var(--myprimary) !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 500 !important;

    border-radius: var(--myradius);

    cursor: pointer;
    transition: all .2s ease !important;
    outline: none !important;

    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    gap: 1rem;
}
.flex_inside > div > fieldset {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    gap: 1rem;
}
.flex_inside {
    gap: 1rem;
    white-space: nowrap;
}
.fr {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.fr.jb {
    justify-content: space-between;
}
.fc {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fcc {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.fcc.js {
    justify-content: flex-start;
}
.frc {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.frc.jb {
    justify-content: space-between;
}
.frc.je {
    justify-content: end;
}
.fcc.js {
    justify-content: flex-start;
}
.fc.jb {
    justify-content: space-between;
}
.fcc.is {
    align-items: flex-start;
}
.labels_wfull  label {
    white-space: nowrap;
}
.bbgr {
    background-color: #0000004d;
    border-width: 1px;
    border-color: var(--myprimary75);
    border-radius: .5rem;
    padding: 1.5rem;
}
.bgr {
    background-color:#0000004d;
    border-width:1px;
    border-color:transparent;
    border-radius:.5rem;
    --tw-border-opacity:0.5;
    padding: 1.5rem;
}



.grid_forms {
    display: grid;
    gap: 2rem;
    grid-template-columns: 30% 60%;
    width: 100%;
}

.flex_forms {
    display: flex;
    gap: 2rem;
    width: 100%; /* Опционально, задаем ширину контейнера */
}

.grid_forms *,
.flex_forms * {
    width: 100%;
}

.all_in_full_w * {
    width: 100%;
}

.my_select.w-full {
    width: 100%;
    min-width: 100%;
}

.my_select,
.my_select[type=text] {
    position: relative;

	padding-inline: 16px;
    min-height: 37px;
    max-height: 37px;
    line-height: normal;

	background: transparent !important;
	border: 2px solid rgba(246, 246, 246, 0.15);
	border-radius: 7px;
	outline: none;

    color: yellowgreen !important;
	font-size: 18px;
	font-weight: 400;
    transition: border-color 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
    --tw-ring-color: var(--myprimary) !important;
}

.my_select.my_select_textarea_120px {
    min-height: 120px;
}
.my_select__all_div_margin div {
    margin-block: .5rem;
}
.my_select__all_div_margin.flex_for_options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.my_select.my_select_auto_h {
    min-height: 90px;
}

.my_select[type='text']:focus {
	background: rgba(54, 54, 54, 0.2);
    color: var(--myprimary);
	border-radius: 8px;
    box-shadow:
            1px 1px 10px rgba(153, 191, 59, 0.3),
            0 0 30px rgba(0, 0, 0, 0.35);
    border-color: var(--myprimary);
}
.my_select2._field_ {
    min-width: auto !important;
    max-width: max-content !important;
}
.my_select2 {
    position: relative;

    min-height: 37px;
    max-height: 370px;

    min-width: 180px !important;
    max-width: 100% !important;

	padding: 5px 28px;

	background: transparent !important;
	border: 2px solid rgba(246, 246, 246, 0.15) !important;
	border-radius: 7px;
	outline: none;
	font-size: 16px;
	font-weight: 500;
    transition: border-color 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
    padding-inline: 1rem;
    color: yellowgreen !important;
    --tw-ring-color: var(--myprimary) !important;
}

.my_select2[type='text']:focus {
	background: rgba(54, 54, 54, 0.2);
    color: var(--myprimary);
	border-radius: 8px;
    border: 2px solid var(--myprimary) !important;
    box-shadow:
            1px 1px 10px rgba(153, 191, 59, 0.3),
            0 0 30px rgba(0, 0, 0, 0.35);
    border-color: var(--myprimary);
}

.my_select2[type='text']:hover {
	background: rgba(54, 54, 54, 0.2);
    color: var(--myprimary);
	border-radius: 8px;
    border: 2px solid var(--myprimary) !important;
    box-shadow:
            1px 1px 10px rgba(153, 191, 59, 0.3),
            0 0 30px rgba(0, 0, 0, 0.35);
    border-color: var(--myprimary);
}

.select_clicked {
    border-color: rgba(164, 206, 55, 0.8);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 9px;
    color: var(--myprimary);
}

.my_combobox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;

    width: 100%;
    padding-inline: .5rem;
    padding-block: .5rem;

    color: var(--myprimary) !important;
    cursor: pointer;
}
.combobox_option_hover {
    color: greenyellow !important;
    transition: all .3s ease;
    scroll-behavior: smooth;
    box-shadow: 0 0 10px greenyellow;
}
.combobox_option_selected {
    color: greenyellow !important;
    font-weight: 700 !important;
    font-size: 25px;
}
.combobox_not_found_massage {
    padding-inline: .5rem;
    padding-block: 1rem;
    color: yellowgreen;
    font-size: 0.875rem/* 14px */;
    line-height: 1.25rem/* 20px */;
}
._flex_col_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--myprimary);
}
._date_header_.gray_border {
    border: inherit !important;
}
form.hidden_aria_hidden [aria-hidden="true"] {
    display: none;
}
._btn_ {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px !important;

    min-width: 7rem;
    color: var(--myprimary);
    border: 2px solid rgba(141, 191, 66, 0.8);

    background-color: transparent;
    border-radius: var(--myradius);
    box-shadow: var(--myshadow);
    font-family: var(--main-font);
    font-size: var(--myfont-size);

    cursor: pointer;
    transition: var(--mybtn-transition);
}
._btn_:hover {
    border: 2px solid transparent !important;
    background-color: var(--myprimary);
    color: white !important;
}
._btn_:active {
    transform: scale(0.98);
}
._select_ {
    background: rgba(0, 0, 0, 0.15) !important;
    color: rgba(141, 191, 66, 0.95) !important;
    border-radius: 9px !important;
    font-size: 16px;
    font-weight: 500;
    height: 32px !important;
    max-height: 32px !important;
    min-height: 32px !important;
    line-height: 32px !important;
    outline: 2px solid rgba(159, 159, 159, 0.15) !important;
    transition: all .3s ease !important;
}
._select_.w350 {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
}
._select_menu_ {
    background: rgba(0, 0, 0, 0.15) !important;
    outline: 2px solid rgba(159, 159, 159, 0.25) !important;
    transition: all .3s ease !important;
    backdrop-filter: blur(9px);
}
._select_menu_.w350 {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
}
._select_item_ {
    color: greenyellow !important;
    background: rgba(0, 0, 0, 0.25) !important;
    transition: all .3s ease !important;

}
._select_:hover {
    background: rgba(0, 0, 0, 0.25) !important;
    color: var(--myprimary) !important;
    outline: 2px solid rgba(141, 191, 66, 0.7) !important;
}
._header_input_.gray_border {
    color: var(--myprimary);
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    border-radius: var(--myradius);
    letter-spacing: 0.05rem;
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);
    height: 32px !important;
    line-height: 14px !important;
    cursor: pointer;
    max-width: 170px;
    min-width: 170px;
    border: 2px solid rgba(128, 128, 128, 0.3) !important;
    outline: none !important;
}
._header_input_.gray_border.xs {
    max-width: 80px !important;
    min-width: 80px !important;
}
._header_input_.gray_border.md {
    max-width: 180px !important;
    min-width: 180px !important;
}
._header_input_:hover {
    border: 2px solid var(--myprimary) !important;
}
._date_header_ {
    color: var(--myprimary) !important;
    background: transparent !important;
    border: 1px solid var(--myprimary) !important;
    font-size: 20px !important;
    font-weight: 500 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    border-radius: var(--myradius);
    letter-spacing: 0.05rem;
    box-shadow: 7px 9px 13px rgba(0, 0, 0, 0.25);

    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
    line-height: 42px !important;

    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all .2s ease !important;
    outline: none !important;
}
._date_header_.sm {
    height: 30px !important;
    max-height: 30px !important;
    min-height: 30px !important;
    line-height: 30px !important;
}
._date_header_.h32 {
    height: 32px !important;
    max-height: 32px !important;
    min-height: 32px !important;
    line-height: 32px !important;
}
.search_field.w100.h32 {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
}
.mb-3 {
    margin-bottom: 0 !important;
}
._date_header_:hover {
    background: var(--myprimary) !important;
    color: white !important;
    cursor: pointer !important;
}
._date_header_:active {
    background: var(--myprimary) !important;
    color: white !important;
    cursor: pointer !important;
    transform: scale(0.95) !important;
}
.h42 {
    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
    line-height: 42px !important;
}
.h30 {
    height: 30px !important;
    max-height: 30px !important;
    min-height: 30px !important;
    line-height: 30px !important;
}

.my_flex_row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 1.5rem !important;
    color: var(--myprimary) !important;
}

.my_border_and_bg {
    border: 1px solid var(--myprimary) !important;
    border-radius: 10px !important;
    background: transparent !important;
    padding: 1rem !important;
}



.table-row {
    color: yellowgreen;
    cursor: pointer;
    transition: all .3s ease
}
.table-row:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

#regular_table {
    width: 100%;
}
#regular_table th {
     height: 60px
}
#regular_table th {
    background: transparent;
    font-size: 22px;
    text-align: center;
    padding-bottom: 5px;
}

#regular_table tr:hover td {
    background-color: rgba(0, 0, 0, 0.2); /* Цвет фона при наведении */
}

#regular_table tr:hover td:first-child {
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
}

#regular_table tr:hover td:last-child {
    border-top-right-radius: 9px; /* Закругление верхнего правого угла последнего td */
    border-bottom-right-radius: 9px; /* Закругление нижнего правого угла последнего td */
}

.flex_block_col {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 1.5rem;
    padding-block: 2rem;
    margin-inline: auto;
    border-radius:.5rem;
}
.flex_block_row {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    padding-block: 2rem;
    margin-inline: auto;
    border-radius:.5rem;
}

svg {
    user-select: none !important;
    outline: none !important;
}

svg.table__icon {
    width: 24px;
    height: 24px;
    fill: #DADADA;
    stroke: #DADADA;
    border: 1px solid transparent;
    transition: all .2s ease;
    border-radius: 5px;
}
svg.sm__table__icon {
    width: 21px;
    height: 21px;
    fill: #DADADA;
    stroke: #DADADA;
    border: 1px solid transparent;
    transition: all .2s ease;
    border-radius: 5px;
}
svg.table__icon_lg {
    width: 30px;
    height: 30px;
    fill: #DADADA;
    stroke: #DADADA;
    border: 1px solid transparent;
    transition: all .2s ease;
    border-radius: 5px;
}
.table__icon__hover:hover {
    border: 1px solid var(--myprimary);
    fill: var(--myprimary) !important;
    stroke: var(--myprimary) !important;
    cursor: pointer;
    border-radius: 5px;
    transform: scale(1.15);
}

.flex_table {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.flex_table_80 {
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    width: 90%;
    padding: 1rem;
    border-radius:.5rem;
}
.flex_table:focus-visible {
    outline: none;
    border: none;
}
.gtr.px_0 {
    padding-inline: 0;
}
.gtr.px_5px {
    padding-inline: 5px;
}
.gtr {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));

    width: 100%;
    margin-bottom: .6rem;
    padding-inline: 1.3rem;

    color: rgba(218, 218, 218, 0.89);
    background-color: var(--card_bg_35);
    border-radius:.375rem;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.07rem;

    white-space: nowrap;
    cursor: default;
}
.gtr.grid_th {
    color: rgba(218, 218, 218, 0.89);
    max-height: 2.4rem;
    min-height: 2.4rem;
    margin-bottom: .6rem;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.07rem;
    line-height:1.5rem;
    user-select: none;
}
.gtr.grid_th.sm-th {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height:1.3rem;
}
.gtr.grid_tr {
    font-size: 16px;
    color: var(--myprimary);
    margin-block: .15rem;
    padding-block: .2rem;
    transition: transform .5s ease, background-color .5s ease;
}
.gtr.grid_tr_dark {
    font-size: 16px;
    color: var(--myprimary);
    margin-block: .15rem;
    padding-block: .2rem;
    transition: transform .5s ease, background-color .5s ease;
}
.gtr.grid_tr:hover {
    background-color: rgba(0, 0, 0, 0.5);
}.gtr.grid_tr_dark:hover {
    background-color: rgba(0, 0, 0, 0.65);
}
a.link_prime {
    color: var(--myprimary);
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
a.link_prime:hover {
    color: greenyellow;
}
a.link_prime:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid rgba(173, 255, 47, 0.55);
    bottom: .15em;
    transition: all .5s;
}
a.link_prime:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}

.gtr.grid_tr a {
    color: var(--myprimary);
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
    font-size: 15px;
}
.gtr.grid_tr a:hover {
    color: greenyellow;
}
.gtr.grid_tr a.no_decor:hover {
    color: transparent;
}
.gtr.grid_tr a:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid rgba(173, 255, 47, 0.55);
    bottom: .15em;
    transition: all .5s;
}
.gtr.grid_tr a.no_decor:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid transparent;
    bottom: .15em;
    transition: all .5s;
}
.gtr.grid_tr a:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}

.gtr.grid_tr .small_dark_gray {
    font-size: 0.9rem;
    color: #656565
}
.gtr.grid_tr .small_gray {
    font-size: 0.9rem;
    color: #b7b7b7
}
.gtr .flex.flex-col.small_gray {
    font-size: 0.7rem;
    color: #b7b7b7
}

.gtr.grid_tr a.small_orange {
    color: #b9894d
}
.gtr.grid_tr a.small_orange:hover {
    color: #dc8517
}
.gtr.grid_tr a.small_orange:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid #dc8517;
    bottom: .15em;
    transition: all .5s;
}
.gtr.grid_tr a.small_orange:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}
.gtr.grid_tr span {
    color: rgba(215, 215, 215, 0.75);
    font-size: .93rem;
    letter-spacing: 0.05rem;
}
._evenly {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) 30px;
}
._30_auto_fit_30 {
    grid-template-columns: 60px repeat(auto-fit, minmax(0, 1fr));
}
._min_1 {
    grid-template-columns: 60px repeat(auto-fit, minmax(0, 1fr));
}
._min_ {
    grid-template-columns: 6% 7% 9% 9% 5% 16% 16% 8% 8% 5% 7% 4%;
}
._table_person_ {
    grid-template-columns: 5% 5% 16% 5% 5% 16% 16% 8% 8% 6% 8% 1%;
}

.__pays_table__ {
      grid-template-columns:   5%  8%      16% 8%   28%   7%    9%  4% 6% 8% 1%;
}
.__pays_table_plus_deps__ {
    grid-template-columns:     5%  8%  5%  15% 6%   25%   7%   10%  4% 6% 8% 1%;
}
.__marked_to_del__ {
    outline: 3px solid rgba(107, 0, 0, 0.5);
}
.__marked_incorrect__ {
    outline: 3px solid rgba(255, 68, 0, 0.5);
}

._grid_row_prepay {
    grid-template-columns: 2% 5% 12% 10% 10% 25% 14% 10% 10% 2%;
}

._min_2 {
    grid-template-columns: 30px 50px repeat(auto-fit, minmax(0, 1fr));
}

._30_50_cols_5_10 {
    grid-template-columns: 30px 50px repeat(5, 1fr) 20px;
}
._30_50_cols_6_10 {
    grid-template-columns: 30px 50px repeat(6, 1fr) 20px;
}
._20_cols_5_20 {
    grid-template-columns: 20px repeat(5, 1fr) 20px;
}
._20_50_cols_5_20 {
    grid-template-columns: 20px 50px repeat(5, 1fr) 20px;
}
._20_50__cols_5__100_25 {
    grid-template-columns: 20px 50px repeat(5, 1fr) 200px 10px;
}
._30_50__repeat_7__10 {
    grid-template-columns: 30px 50px repeat(7, minmax(50px, 1fr)) 10px;
}
._30_50__repeat_4__10__10 {
    grid-template-columns: 1% 10% 10% 10% 49% 5% 15%;
}
.grid_th.__four_col__ {
    margin: 0;
}
.grid_tr.__four_col__ {
    background-color: rgba(0, 0, 0, 0.25);
}
.__four_col__ {
    grid-template-columns: 50% 25% 25%;
}
._grid_row_inline_payment {
    grid-template-columns: 5% 35% 15% 15% 10% 10% 10%;
}
._grid_row_inline_pay_for_doc_salary {
    grid-template-columns: 5% 10% 10% 5% 8% 25% 10% 5% 5% 5% 5% 5% 3%;
}
._pays_ {
    grid-template-columns: 3% 10% 5% 5% 5% 5% 10% 20% 15% 5% 5% 5% 5% 3%;
}
._row {
    grid-template-columns: 6% 10% 10% 40% 10% 10% 10% 4%;
}
._grid_row_inline_payment {
    grid-template-columns: 5% 35% 15% 15% 10% 10% 10%;
}

._grid_row_prepay_finances {
    grid-template-columns: 3% 3% 15% 15% 12% 12% 10% 10% 10% 10%;
}
._inv_create_table {
    grid-template-columns: 5% 10% 10% 35% 5% 15% 15% 5%;
}
._inv_create_table__footer {
    grid-template-columns: 5% 10% 10% 30% 10% 15% 15% 5%;
}

.gtr.grid_th.inline_th {
    font-size: 14px;
    margin: 0;
    max-height: 1.6rem;
    min-height: 1.6rem;
}
.gtr.grid_tr.inline_tr {
    font-size: 14px;
    max-height: 1.9rem;
    min-height: 1.9rem;
}


.flex_table_th {
    display: grid;
    place-items: center;
    grid-template-columns: 2rem 3rem repeat(auto-fit, minmax(0, 1fr));
    width: 100%;
    padding-inline: 1.3rem;
    background-color: var(--card_bg_35);
    border-radius:.375rem;
    white-space: nowrap;
    cursor: default;

    color: rgba(218, 218, 218, 0.89);
    max-height: 2.4rem;
    min-height: 2.4rem;
    margin-bottom: .6rem;
    user-select: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.07rem;
}
.flex_table_tr {
    display: grid;
    place-items: center;
    grid-template-columns: 2rem 3rem repeat(auto-fit, minmax(0, 1fr));
    width: 100%;
    padding-inline: 1.3rem;
    background-color: var(--card_bg_35);
    border-radius:.375rem;
    white-space: nowrap;
    cursor: default;

    color: var(--myprimary);
    margin-block: .4rem;
    padding-block: .3rem;
    transition: transform .4s ease, background-color .4s ease;
}
.flex_table_tr:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
.flex_table_tr a {
    color: var(--myprimary);
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
    font-size: 1.05rem;
}
.flex_table_tr a:hover {
    color: greenyellow;
}
.flex_table_tr a:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid rgba(173, 255, 47, 0.55);
    bottom: .15em;
    transition: all .5s;
}
.flex_table_tr a:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}
.flex_table_tr .small_dark_gray {
    font-size: 0.9rem;
    color: #525252
}

.flex_table_tr a.small_orange {
    font-size: 0.94rem;
    color: #b9894d
}
.flex_table_tr a.small_orange:hover {
    color: #dc8517
}
.flex_table_tr a.small_orange:after {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 0;
    border-bottom: 1px solid #dc8517;
    bottom: .15em;
    transition: all .5s;
}
.flex_table_tr a.small_orange:hover:after {
    width: 100%;
    border-bottom-width: 1px;
}

code.small_orange {
    font-size: 0.94rem !important;
    color: #b9894d !important;
}

.flex_table_tr span {
    color: rgba(215, 215, 215, 0.75);
    font-size: .93rem;
    letter-spacing: 0.05rem;
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s, visibility 0.5s;
}

.invisible {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0s 0.5s;
    user-select: none;
}
.hx_details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-block: 1rem;
    margin-inline: auto;
    padding-block: 1rem;
    width: 100%;
    max-width: 100%;
}
.hx_details p {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--myprimary);
    width: 100%;
}
.hx_details.lg p {
    font-size: 1.4rem;
}
._65_w {
    min-width: 65%;
    margin-inline: auto;
}

form.search {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: start;
}
.mysearch {
    padding-left: 3.2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 3px solid transparent;
    width: 40%;
    float: left;
    transition: width 0.6s ease-in-out;
    text-transform: capitalize;
}
.mysearch:hover {
    width: 60%;
}
.mysearch:focus {
    width: 60%;
}
.mysearch:focus {
    padding-left: 3.2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(183, 183, 183, 0.5);
}
.mysearch::placeholder {
  color: rgba(110, 110, 110, 0.95) !important;
  opacity: 1;
}

form.search::before {
    content: "";
    display: block;
    background-image: url('/static/img/svg/form_svg/search-svgrepo-com.svg');
    background-size: contain;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: .9rem;
    top: .47rem;
    z-index: 1;
    transition: transform 0.3s ease-in-out, left 0.3s ease-in-out;
}
