:root {
    --green-accent: #6eb92b;
    --green-medium: #a7d97b;
    --green-light: #e7ffd1;
    --green-sky: #f0f5eb;
    --green-dark: #869877;
    --black-black: #171616;
    --black-dark: #2b2e3d;
    --black-gray: #44485c;
    --gray-dark: #494c53;
    --gray-medium: #9196a1;
    --gray-sky: #eaebee;
    --gray-disabled: #d8d8d8;
    --gray-border: #dbdfd8;
    --gray-bg: #f3f3f3;
    --white-white: #fff;
    --special-red-error: #e35454;
    --special-blue: #4480f3;
    --special-yellow: #e4aa0b;
    --special-red-light: #fff5f5;
}
body{
    font:16px/19px "Golos Text";
    overflow-x:hidden;
    padding: 0px;
    cursor: context-menu;
    margin: 0px;
    font-weight: 100;
    font-style: normal;
    background: var(--gray-bg);
}
.gray-medium{
    color: var(--gray-medium);
}
.green-dark{
    color: var(--green-dark);
}
.warning, .lk__item--desc span.warning{
    color: var(--special-red-error);
}
.b-grey-bord{
    border: 1px solid var(--gray-border);
}
.green{
    color: var(--green-accent);
}
img{
    max-width: 100%;
}
.underline{
    text-decoration: underline;
}
a.underline:hover{
    text-decoration: none;
}
a{
    text-decoration: none;
    transition: 0.5s;
}
input, button , textarea{
    font-family: 'Golos Text';
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    resize: none 
}
input[type="text"], input[type="email"], input[type="phone"], input[type="password"], textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}
.pl-block{
    padding: 20px;
    box-sizing: border-box;
    background: var(--white-white);
    border-radius: 8px;
}
.pl-block--grey{
    padding: 20px;
    box-sizing: border-box;
    background: var(--gray-bg);
    border-radius: 8px;
}
.column-2 > .pl-block--grey,.column-2 > .pl-block{
    padding: 30px;
}
.m-auto{
    margin: auto;
}
.mw450{
    max-width: 450px;
}
.mw640{
    max-width: 640px;
}
.mw900{
    max-width: 900px;   
}
.pad20{
    padding: 20px;
}
.column-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.column-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.column-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mt20{
    margin-top: 20px;
}
.mt25{
    margin-top: 25px;
}
.mt30{
    margin-top: 30px;
}
.fs13{
    font-size: 13px;
    line-height: 1;
}
.fs18{
    font-size: 18px;
    line-height: 1;
}
.fs20{
    font-size: 20px;
    line-height: 1;
}
.fs24{
    font-size: 24px;
    line-height: 1;
}
.fs32{
    font-size: 32px;
    line-height: 1;
}
.fs38{
    font-size: 38px;
    line-height: 1;
}
.font-medium{
    font-weight: 500;
}
.bold{
    font-weight: 600;
}
.gap10{
    gap: 10px;
}
.gap20{
    gap: 20px;
}
.gap30{
    gap: 30px;
}
.gap40{
    gap: 40px;
}
a.btn-zero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--green-accent);
    color: var(--green-accent);
    border-radius: 8px;
    gap: 6px;
    box-sizing:border-box;
}
a.btn-zero:hover{
    background: var(--green-accent);
    color: var(--white-white);
}
.btn.m-wth, .m-wth{
    width: 100%;
    max-width: 100%;
}
.btn{
    border: 1px solid;
    background: var(--green-accent);
    color: var(--white-white);
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    transition: 0.5s;
}
.btn:hover{
    background: var(--white-white);
    color: var(--green-accent);
}
.btn_green--sm{
    background: var(--green-sky);
    color: var(--green-dark);
    border: 1px var(--green-sky);
}
.btn__warning{
    background: var(--special-red-error);
    color: var(--white-white);
}
.btn__warning:hover{
    background: var(--white-white);
    color: var(--special-red-error);
}
/*Input*/

.text-field__label {
    display: block;
}
.select-wrapper {
    position: relative;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

.custom-select {
    position: relative;
    width: 100%;
    padding: 0 30px 0 10px;
    border: 1px solid var(--gray-sky);
    border-radius: 8px;
    background: var(--gray-sky);
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    padding: 15px;
}
.filter__form--wrap .custom-select {
    min-width: 238px;
}

.custom-select.open {
    background: var(--white-white);
}

.select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #6EB92B;
}

.options-list {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border-top: none;
    border-radius: 8px;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    left: -1px;
    top: 59px;
    box-shadow: 0px 0px 6px #00000014;
}

.options-list li {
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    margin: 4px;
}

.options-list li:hover {
    background: #F3F3F3;
}

/*End Input*/
h1{
    font:50px/1 'Golos Text';
    margin: 20px 0px 10px;
}
h2{
    font: 24px/1 'Golos Text';
    font-weight: 600;
}
h2.title{
    font: 32px/1 'Golos Text';
    font-weight: 600;
}
section h2{
    margin: 0 0 30px;
}
.flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.white{
    color: var(--white-white);
}
.blue-link{
    color: var(--special-blue);
}
.black-link{
    color: var(--black-black);
}
.space-between{
    justify-content: space-between;
}
.center-item{
    align-items: center;
}
.just-centr{
    justify-content: center;
}
.baseline{
    align-items: baseline;
}
.column{
    flex-direction:column;
}
.start{
    align-items: flex-start;
}
.end{
    align-items: flex-end;
}
.j-end{
    justify-content: flex-end;
}
.j-start{
    justify-content: flex-start;
}
.center_block{
    display: flex;
    align-items: center;
    justify-content: center;
}
.u-line{
    text-decoration: underline;
}
.u-line:hover{
    text-decoration: none;
}

.container {
    box-sizing: border-box;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}
header{
    padding: 15px 0;
    background: var(--white-white);
    border-bottom: 1px solid var(--gray-border);
}
.header--date, .header--time{
    display: flex;
    align-items: center;
    gap:6px;
}
.back{
    padding: 60px 0px 40px;
}
.back a {
    color: var(--black-gray);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sect__pad{
    padding: 60px 0px 0px
}
/*Tabs*/
#tabs {
    margin: 10px 0;
}
.tabs-nav {
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.tabs-nav li {
    display: block;
    float: left;
    padding: 0;
    list-style: none;
}
.tabs-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: var(--gray-medium);
    font-weight: 500;
    border-radius: 8px;
}
.tabs-nav a:hover{
    background: var(--gray-sky);
    color: var(--black-black);
}
.tabs-nav a.active {
    background: var(--white-white);
    color: var(--black-black);
}
.tabs-items {
    max-width: 450px;
    margin: 20px auto;
    background: var(--white-white);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
}
/*Radio*/
.tabs-item .radio--wrapper{
    display: flex;
    flex-direction: column;
    gap:12px;
}
.radio {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--gray-disabled);
    padding: 20px 16px;
    box-sizing: border-box;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-medium);
    border-radius: 8px;
}
.radio.active{
    border-color: var(--green-accent);
    background: var(--green-sky);
    color: var(--black-black);
}
.radio.active .radio-input{
    border: 4px solid var(--green-accent);
}
.radio-input {
    appearance: none;
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gray-disabled);
    margin: 0px;
    cursor: pointer;
}
.radio-label{
    cursor: pointer;
    margin-bottom: 0px;
}

.radio-input {
    border-radius: 50%;
}
.radio-input:checked::after {
    width: 16px;
    height: 16px;
    transition: 500ms;
}
.enter--wrapper input, textarea{
    background: var(--gray-sky);
    padding: 15px;
    box-sizing: border-box;
    border-radius: 8px;
    border:0px;
    width: 100%;
    border:1px solid var(--gray-sky);
}
.enter--wrapper textarea{
    min-height: 105px;
}
.enter--wrapper input:focus, textarea:focus{
    background: var(--white-white);
    outline:0px
}
input.error{
    border-color: var(--special-red-error);
    background: var(--white-white);
}
label.error{
    color: var(--special-red-error);
    font-size: 13px;
}
input.valid{
    border-color: var(--green-accent);
    background: var(--white-white);
}
.enter--wrapper input::placeholder, .select-wrapper .selected-text{
    font-weight: 500;
    color: rgb(117, 117, 117);
}
.select-wrapper .selected-text.active{
    font-weight: normal;
    color: var(--black-black)
}
.password, .text-field, .wrap__text-field {
    position: relative;
}
.password-control {
    position: absolute;
    bottom: 13px;
    right: 14px;
    width: 21px;
    height: 21px;
    cursor: pointer;
}
.password-control:after{
    position: absolute;
    content: "\e905";
    font-family: 'elcom';
    font-size: 20px;
    color: var(--gray-medium);
}
.password-control.view:after {
    content: "\e903";
}
#progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}
#progress-bar .bar {
    height: 100%;
    width: 0%;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}
.password #result{
    margin-top: 6px;
}
#result-change,#result {
    font-size: 13px;
}
.success {
    color: var(--green-accent);
}
.error {
    color: var(--special-red-error);
}
.medium {
    color: var(--special-yellow);
}
.error-message i, .success-message i{
    position: relative;
    font-size: 38px;
}
.error-message i:after{
    width: 16px;
    height: 16px;
    background: var(--special-red-error);
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    font: 13px / 15px "Golos Text";
    text-align: center;
    font-weight: 600;
    color: var(--white-white);
    left: -6px;
    bottom: 24px;
}
.success-message i:after{
    width: 16px;
    height: 16px;
    background: var(--green-accent);
    content: '\e902';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    font: 13px / 15px "elcom";
    text-align: center;
    font-weight: 600;
    color: var(--white-white);
    left: -6px;
    bottom: 24px;
}
#progress-bar .bar.success{
    background: var(--green-accent);
}
#progress-bar .bar.error{
    background: var(--special-red-error);
}
#progress-bar .bar.medium{
    background: var(--special-yellow);
}
.main-ico{
    position: relative;
    display: block;
    width: 100%;
}
.main-ico:after{
    position: absolute;
    content: "\e907";
    color: var(--gray-medium);
    font-family: elcom;
    right: 15px;
    top: 16px;
    font-size: 20px;
}
.remember__wrap label{
    font-weight: 500;
}
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.check__form span a{
    color: var(--special-blue);
    text-decoration: underline;
}
.check__form span a:hover{
    text-decoration: none;
}
.custom-checkbox+label {
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    cursor: pointer;
    position: relative;
}
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 5px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background: var(--white-white);
    transition: 0.5s;
    border: 2px solid var(--gray-disabled);
}
.custom-checkbox:checked+label::before {
    background: var(--green-accent);
    border: 2px solid var(--green-accent);
}
.custom-checkbox:checked+label::after {
    content: '';
    display: inline-block;
    transform: rotate(45deg);
    height: 9px;
    width: 5px;
    border-bottom: 2px solid var(--white-white);
    border-right: 2px solid var(--white-white);
    flex-shrink: 0;
    flex-grow: 0;
    background-position: center center;
    position: absolute;
    left: 7px;
    top: 3px;
    transition: 0.5s;
}
.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0px;
}
.with-link{
    margin: 0 0 30px;
}
.breadcrumb a, .breadcrumb{
    font-size: 14px;
    font-weight: 300;
}
.breadcrumb li {
    position: relative;
    display: flex;
    align-items: center;
}
.breadcrumb li:not(:last-child):after {
    content: "\e90f";
    font-family: 'elcom';
    margin: 0 10px;
    color: var(--gray-medium);
    font-size: 10px;
}
.breadcrumb a {
    text-decoration: none;
    color: var(--gray-medium);
}
.breadcrumb a:hover {
    color: var(--black-black);
}
.breadcrumb li {
    line-height: 2;
}
.breadcrumb a,
.breadcrumb span {
    display: inline-block;
    vertical-align: middle;
}
.fogot a{
    color: var(--gray-medium);
    font-weight: 500;
    text-decoration: underline;
}
.fogot a:hover{
    text-decoration: none;
}
.upload-container {
    border-radius: 8px;
    border: 1px dashed var(--green-dark);
    position: relative;
}
.upload-container.active label{
    display: none;
}
.upload-container.active{
    background:var(--green-sky);
}
.upload-container.active .file-item{
    flex-direction: column;
    min-height: 93px;
    justify-content: center;
    padding: 0px 10px;
}
.upload-label {
  display: block;
  text-align: center;
  background: var(--gray-sky);
  color: var(--gray-dark);
  padding: 18px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0px;
}
.upload-label .small{
    color: var(--gray-medium);
    font-size: 13px;
}
.upload-label:hover {
  background: var(--white-white);
}
.upload-label i {
  margin-right: 6px;
}
input[type="file"] {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.file-item {
  background: var(--white-white);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.file-item.uploaded{
    flex-direction: column;
    background: var(--green-sky);
}
.file-name {
  font-size: 16px;
    font-weight: 500;
  color: var(--gray-dark);
}

.file-progress {
  width: 100%;
  height: 4px;
  background: var(--gray-border);
  bottom: 0;
  left: 0;
    border-radius: 4px;
  overflow: hidden;
    margin: 5px 0;
}
.upload__label--file {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}
.upload__label--file span{
    font-size: 18px;
}
.file-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--green-accent);
  transition: width 0.2s linear;
}
.uploaded .percent{
    color: var(--green-accent);
}
.file-remove {
  background: none;
  border: none;
  color: var(--special-red-error);
  cursor: pointer;
  font-size: 13px;
  margin-left: 10px;
  transition: color 0.2s;
    text-decoration: underline;
}
.file-remove:hover {
  text-decoration: none;
}
.percent, .file-progress--text {
  font-size: 13px;
  color: var(--black-black);
}
.btn-reg__form {
    max-width: 162px;
}
/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-window {
    background: var(--white-white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
    max-width: 90%;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.modal-header {
    background: var(--gray-bg);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-border);
}
.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}
.modal-content {
    padding: 20px;
}
span.change-sert a {
    max-width: 157px;
    display: block;
    margin: 0 auto;
}
.sert-item{
    border: 1px solid var(--green-dark);
}
.sert-item a{
    color: var(--black-dark);
    display: flex;
    flex-direction: column;
    gap:10px;
}
.sert-item__small{
    font-size: 15px;
}
/*Footer*/
footer{
    margin-top: 80px;
    background: var(--black-dark);
}
.logo--desc {
    width: 154px;
}
.footer__menu ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    gap:28px;
}
.footer__menu ul li a{
    color: var(--gray-medium);
    font-weight: 500;
}
.footer__support a{
    color: var(--white-white);
    border:1px solid var(--gray-medium);
    padding: 13px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.politic-block{
    background: var(--black-black);
    padding: 22px 0;
}
.politic-block__link a{
    color: var(--gray-medium);
    text-decoration: underline;
}
.politic-block__link a:hover{
    text-decoration: none;
}
.politic-block__phone a{
    font-size: 22px;
}
.secure-ok {
    text-align: center;
    font-size: 34px;
}
.secure-ok i, .password__wrap, .deposit-take__wrap{
    position: relative;
}
.deposit-take__wrap:after{
    position: absolute;
    font-family: 'elcom';
    content: "\e911";
    top: 1px;
    right: 15px;
    color: var(--gray-medium);
    font-size: 22px;
}
.secure-ok i:before{
    color: var(--black-black)
}
.secure-ok i:after{
    position: absolute;
    content: "\e902";
    color: var(--white-white);
    background: var(--green-accent);
    border-radius: 50%;
    border: 2px solid var(--white-white);
    width: 16px;
    height: 16px;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -4px;
    left: -7px;
}
.main_menu{
    background: var(--white-white);
    padding: 10px 0;
    z-index: 3;
    position: relative;
}
.main_menu.index{
    z-index: 1;
}
.main_menu nav ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}
.main_menu nav ul .nav_catalog a {
    background: var(--green-accent);
    color: var(--white-white);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: normal;
    border: 1px solid var(--green-accent)
}
.main_menu nav ul .nav_catalog a:hover {
    background: var(--white-white);
    color: var(--green-accent);
}
.main_menu nav ul .nav_catalog a:hover i:before{
    color: var(--green-accent);
}
.main_menu .login_btn a:hover i:before{
    color: var(--white-white);
}
.main_menu nav ul a{
    font-weight: 500;
    color: var(--black-black)
}
.main_menu nav ul a:hover{
    color: var(--green-accent);
}
.main_menu .user-card {
    gap:16px;
    position: relative;
}
#base {
    padding: 60px 0 80px;
    background: url(../img/main-fon.webp) no-repeat center;
    position: relative;
    background-size: cover;
}
#base:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #2323237d;
    top: 0px;
    left: 0px;
}
#base #search{
    background: #FFFFFF66;
    padding: 20px;
    box-sizing:border-box;
    backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
}
#search .search {
    position: relative;
}
#search .search input {
    border: none;
}
#search .search .input {
    width: 100%;
    padding: 15px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    outline: 1px solid var(--gray-border);
}
#search .search .search__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 37px;
    height: 100%;
    cursor: pointer;
    background: none;  
    display: flex;
    align-items: center;
    justify-content: center;
}
#search .search .search__btn input{
    background: none
}
#search .search .search__btn:before{
    content: "\e914";
    color: var(--green-accent);
    font-family: 'elcom' !important;
}

#search .search .submit:hover {
    opacity: 0.8;
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    margin-right: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') center / 16px 16px no-repeat;
    background-color: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
input[type="search"]::-webkit-search-cancel-button:hover {
    opacity: 1;
}
#search #search-clear {
    right: 39px;
    position: absolute;
}
.filter__switch{
    cursor: pointer;
}
.filter__switch i{
    font-size: 12px;
    margin-right: 10px;
}
.filter {
    display: none;
}
.filter.active{
    display: block;
}
.slider-container {
    position: relative;
    width: 96%;
    margin: 20px auto 0;
}
.slider-track {
    position: relative;
    height: 2px;
    background: var(--gray-border);
    border-radius: 4px;
    cursor: pointer;
}
.slider-range {
    position: absolute;
    left: 20%;
    right: 50%;
    top: 0;
    bottom: 0;
    background: var(--black-black);
    border-radius: 4px;
}
.slider-handle {
    position: absolute;
    top: -6px;
    width: 14px;
    height: 14px;
    background: var(--green-accent);
    border-radius: 50%;
    cursor: grab;
    transform: translateX(-50%);
}
.slider-handle:active {
    cursor: grabbing;
}
span.calendar_group {
    display: block;
    position: relative;
}
span.calendar_group:after{
    position: absolute;
    content: "\e901";
    color: var(--gray-medium);
    right: 16px;
    top: 16px;
    font-family: 'elcom';
    font-size: 18px;
}
.ui-widget{
    font-family: "Golos Text", sans-serif !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c500 !important;
    background: none !important;
    color: var(--black-black) !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-active, .ui-widget-content .ui-state-active{
    background: var(--green-accent) !important; 
    color: var(--white-white) !important;
}
.ui-datepicker td span, .ui-datepicker td a {
    display: flex !important;
    padding: 0px !important;
    text-align: center !important;
    text-decoration: none;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500 !important;
}
.ui-datepicker th{
    font-size: 13px;
    font-weight: normal !important;
    color: var(--gray-medium);
    text-align: justify !important;
}
.ui-datepicker th.ui-datepicker-week-end{
    color: var(--special-red-error);
}
a.year-dec {
    transform: rotate(180deg);
    position: absolute;
    top: 6px;
    left: 46px;
}
a.year-inc{
    position: absolute;
    top: 10px;
    right: 46px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
    background: none !important;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
    width: auto !important;
    height: auto !important;
    top: 8px !important;
}
.ui-datepicker .ui-datepicker-next {
    right: 30px !important;
}
.ui-datepicker .ui-datepicker-prev {
    transform: rotate(180deg);
    left: 30px !important;
    top: 7px !important;
}
.ui-datepicker .ui-datepicker-prev:after, .ui-datepicker .ui-datepicker-next:after{
    content: "\e916";
    color: #6eb92b;
    font-family: 'elcom';

}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover{
    background: none !important;
    border: 0px !important;
}
.ui-widget-header{
    font-weight: 500 !important;
}
.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 0px !important;
    background: transparent !important;
    border: 0px !important;
}
.ui-widget.ui-widget-content{
    border: 0px !important;
    border-radius: 8px;
    padding: 8px 8px 0 !important;
    box-shadow: 0px 0px 7px #0C10181F; 
}
.lot__main--slide{
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    box-sizing: border-box;
}
.lot__slide_image {
    width: 58px;
    height: 58px;
    background: var(--white-white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.lot__slide_name{
    font: 22px / 1 "Golos Text";
    font-weight: 600;
    min-height: 50px
}
.lot__header{
    border-bottom: 1px solid var(--gray-border)
}
.lot__slide_count{
    font-size: 18px;
}
.lot__slide_count span{
    font-size: 13px;
    color: var(--green-dark);
}
.lot__main--slide .btn{
    background: var(--white-white);
    border-color: var(--black-black);
    color: var(--black-black);
}
.lot__main--slide:hover{
    border-color: var(--green-accent);
    background: var(--white-white);
    cursor: pointer;
    z-index: 3;
}
.lot__main--slide:hover .lot__slide_image{
    background: var(--green-accent);
}
.lot__main--slide:hover .lot__slide_image i{
    color:  var(--white-white);
}
.lot__main--slide:hover .btn{
    background: var(--green-accent);
    border-color: var(--green-accent);
    color: var(--white-white);
}
#lot__main .swiper-horizontal {
    overflow: hidden;
    position: relative;
}
#lot__main .swiper-horizontal:after,#lot__main .swiper-horizontal:before {
    position: absolute;
    content: '';
    width: 44px;
    height: 100%;
    top: 0px;
    z-index: 2;
}
#lot__main .swiper-horizontal:after{
    right: 0px;
    background: var(--white-white);
    background: -webkit-linear-gradient(left, #ffffff00, var(--white-white));
    background: -o-linear-gradient(left, #ffffff00, var(--white-white));
    background: linear-gradient(to right, #ffffff00, var(--white-white));
}
#lot__main .swiper-horizontal:before {
    left: 0px;
    background: var(--white-white);
    background: -webkit-linear-gradient(left, var(--white-white), #ffffff00);
    background: -o-linear-gradient(left, var(--white-white), #ffffff00);
    background: linear-gradient(to right, var(--white-white), #ffffff00);
}
#lot__main .swiper-button {
    width: 54px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-bg);
    border-radius: 50px;
    cursor: pointer;
}
#lot__main .swiper-button:hover{
    background: var(--black-black);
}
#lot__main .swiper-button:hover i{
    color: var(--white-white)
}
#lot__main .swiper-button.swiper-button-disabled:hover{
    background: var(--gray-bg);
    cursor: auto;
}
#lot__main .swiper-button.swiper-button-disabled:hover i{
    color: var(--black-black);
}
#lot__main .swiper-pagination-bullet{
    background: var(--gray-border);
    opacity: 1;
}
#lot__main .swiper-pagination-bullet-active{
    background: var(--green-dark);
    width: 22px;
    border-radius: 8px;
}
#lot__main .swiper-pagination-lot{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.user-card__wrap{
    cursor: pointer;
}
.user-card__avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border-radius: 50%;
    position: relative;
}
.user-card__avatar .tooltip__error, .user-card__avatar .tooltip__success{
    left: -2px;
    top: -2px;
}
.user-card--status{
    font-size: 13px;
    color: var(--green-dark);
}
.user-card__line {
    height: 60%;
    width: 1px;
    background: var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-card--money{
    text-align: center;
    font-size: 18px;
    font-weight: 500
}
.user-card--fill, .begin__price{
    font-size: 13px;
    color: var(--green-dark)
}
.lk__item--name h2{
    margin-bottom: 0px;
    position: relative;
}
.lk__item--name i{
    font-size: 22px;
}
.lk--wrapper__item{
    height: 100%;
}
.lk__item--desc span{
    font-size: 14px;
    color: var(--gray-medium);
    flex: 1;
    margin-right: 45px;
}
.lk__item--desc i:before, .pl-block__click:hover .lk__item--desc span{
    color: var(--gray-dark);
}
.pl-block__click{
    cursor: pointer;
    transition: 0.5s;
}
.pl-block__click:hover{
    background: var(--white-white);
    outline: 1px solid #333;
}
.pl-block__click:hover .lk__item--name i{
    color: var(--green-accent);
}
.lk__item--personal .row {
    display: flex;
    align-items: center; 
    gap: 12px;     
}

.lk__item--personal .left {
    flex: 0 0 auto;
    color: var(--gray-medium);
}

.lk__item--personal .right {
    flex: 0 0 auto;
}
.lk__item--personal .separator {
    flex: 1 1 0;
    border-bottom: 1px dashed var(--gray-border);
    margin: 0 -0.25em;
}
.btn__edit, .btn--zero__black{
    position: relative;
    color: var(--black-black);
    border-color:  var(--green-accent);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.btn__edit:before{
    content: "\e908";
    color: #6eb92b;
    font-family: 'elcom';
}
.btn__black{
    color: var(--black-black);
    border-color: transparent;
    background: var(--white-white);
}
.user_disable.pl-block--grey{
    background: var(--special-red-light);
}
.link-arrow{
    color: var(--black-black);
    display: flex;
    gap: 10px;
    align-items: center;   
}
.link-arrow i:before{
    color: var(--black-black);
}
.tooltip__error, .tooltip__success{
    position: absolute;
    width: 20px;
    height: 20px;
}
.tooltip__error:after {
    position: absolute;
    content: "!";
    width: 16px;
    height: 16px;
    background: var(--special-red-error);
    border-radius: 50%;
    border: 2px solid var(--white-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--white-white);
    font-weight: 600;
}
.tooltip__success:after {
    position: absolute;
    content: "\e902";
    font-family: 'elcom';
    color: var(--white-white);
    background: var(--green-accent);
    border-radius: 50%;
    border: 2px solid var(--white-white);
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 600;
}
.tooltip {
  position: absolute;
  background: var(--white-white);
  color: var(--black-black);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  max-width: 250px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0 !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
  pointer-events: none;
  box-shadow: 0px 0px 7px #0C10181F;
  pointer-events: none; 
}
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  border: 6px solid transparent;
  border-top-color: var(--white-white);
  transform: translateX(-50%);
}
.tooltip.show {
  opacity: 1 !important;
  transform: translateY(0);
}
[data-tooltip] {
  cursor: help;
}

.user-menu {
    position: absolute;
    top: calc(100% + -6px);
    left: 0;
    width: 320px;
    background: var(--white-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.user-menu__header {
  padding: 22px 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-border);
  color: #333;
  font-size: 18px;
}
.user-menu__body {
    padding: 8px;
    list-style: none;
    margin: 0px;
}
.user-menu__item a, .submenu-item a{
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--gray-dark);
    display: flex;
    border-radius: 8px;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.user-menu__item{
    position: relative;
}
.user-menu__item a i{
    font-size: 20px;
    color: var(--black-black);
}
.user-menu__item a:hover, .submenu-item a:hover  {
    background-color: var(--gray-bg);
    color: var(--black-black);
}

.user-menu__item--logout {
    font-weight: 500;
    padding: 4px 8px;
}
.user-menu__item--logout i:before{
    color: var(--special-red-error);
}

.user-menu__footer {
    padding: 8px 0;
    border-top: 1px solid var(--gray-border);
}
.submenu-toggle {
    position: absolute;
    right: 15px;
    top: 22px;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: 0.5s;
}
.submenu-toggle i{
    color: var(--green-dark);
}
.submenu-toggle.open{
    transform: rotate(90deg);
    top: 14px;
    transition: 0.5s;
}
.submenu {
    border-left: 2px solid var(--gray-border);
    display: none;
    margin-left: 24px;
}
#applications thead {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    background: var(--green-sky)
}
.col-id    { 
    width: 78px; 
    min-width: 78px; 
    max-width: 78px; 
}
.col-name, .col-lot-name  { 
    width: 575px;
     min-width: 575px; 
     max-width: 575px; 
 }
.col-status, .col-id__user  { 
    width: 140px;
     min-width: 140px; 
     max-width: 140px; 
 }
.col-data, .col-status__user, .col-action__user, .col-price  { 
    width: 190px;
     min-width: 190px; 
     max-width: 190px; 
 }
.col-summ, .col-lot-person  {
    width: 205px;
     min-width: 205px; 
     max-width: 205px; 
 }
.col-action  { 
    width: 130px;
     min-width: 130px; 
     max-width: 130px; 
}
#applications th {
    padding: 16px 17px;
    box-sizing: border-box;
    font-size: 15px;
}
#applications td{
    padding: 10px 17px;
    box-sizing: border-box;
    font-size: 14px;
}
#applications tbody tr:nth-child(even) {
    background-color: var(--gray-bg); 
}
#applications tbody tr td:not(:last-child) {
    border-right: 1px solid var(--gray-border);
}
#applications thead tr th:not(:last-child) {
    border-right: 1px solid var(--white-white);
}
.checking{
    color: var(--gray-medium)
}
.modal-content .icon-exit:before{
    color: var(--black-black)
}
.modal-content .column-2 .btn{
    max-width: 100%;
}
/*My Finance*/
.finance__list{
    margin: 0px;
    padding: 0px;
    list-style: none;
    padding: 5px;
    background: var(--gray-bg);
    display: inline-flex;
    border-radius: 50px;
    gap:5px;
}
.finance__list a{
    border-radius: 20px;
}
.finance__list a{
    padding: 10px 16px;
    display: block;   
    font-weight: 500;
    color:  var(--gray-medium);
}
.finance__list a.active{
    background: var(--black-black);
    color: var(--white-white);
}
.finance__list a:hover{
    background: var(--white-white);
    color: var(--black-black);
}
.lk__item--name ol{
    padding-left: 20px;
    color: var(--gray-dark);
}
.signature__block--date i:before{
    color: var(--green-accent);
}
.filter__form--count {
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    color:var(--gray-medium);
}
.filter__form--count span{
    color: var(--gray-dark)
}
table#price thead {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    background: var(--gray-sky)
}
table#price th {
    padding: 16px 17px;
    box-sizing: border-box;
    font-size: 15px;
}
table#price td{
    padding: 10px 17px;
    box-sizing: border-box;
    font-size: 14px;
}
table#price tbody tr:nth-child(even) {
    background-color: var(--gray-bg); 
}
table#price tbody tr td:not(:last-child) {
    border-right: 1px solid var(--gray-border);
}
table#price thead tr th:not(:last-child) {
    border-right: 1px solid var(--white-white);
}
.disable h2{
    color:var(--gray-medium);
}
.success--ver h2{
    position: relative;
}
.success--ver h2:after{
    position: absolute;
    content: "\e902";
    font-family: 'elcom';
    color: var(--white-white);
    background: var(--green-accent);
    border-radius: 50%;
    border: 2px solid var(--white-white);
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    right: -30px;
    font-weight: 400;
    top: 3px;
}
.warning__message{
    padding: 10px 20px;
    box-sizing:border-box;
    border-left: 1px solid var(--special-red-error);
    background: var(--special-red-light);
    color: var(--special-red-error);
}
/*Catalog*/
#catalog__filter {
    width: 323px;
}
#productsContainer, .search__wrap{
    width: 980px;
}
.view-switcher {
    margin-bottom: 20px;
    text-align: right;
    background: var(--gray-bg);
    padding: 5px;
    border-radius: 50px;
    display: flex;
}
.view-switcher button {
    padding: 12px 12px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-switcher button.active {
    background-color: var(--white-white);
    color: var(--black-black);
}
.products {
    display: grid;
    grid-gap: 20px;
}
.products.products-favorite.list-view .listen {
    width: 655px;
}
.products.grid-view{
    grid-template-columns: repeat(2, 1fr);
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.products.list-view .product {
    border: 1px solid var(--gray-border);
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    display: flex;
    gap:20px;
}

.products.list-view .product h3 {
    margin: 0px;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products.list-view .product__price-block {
    margin-top: 0px;
    flex-direction: column;
    width: 366px;
    border-left: 1px solid var(--gray-border);
    padding-left: 20px;
}
.products.list-view .product__price-period{
    display: flex;
}
.products.list-view .product .price {
    font-weight: bold;
    margin-left: auto;
}
.products.list-view .product__img{
    width: 200px;
    height: 140px;
    background: var(--gray-sky);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.products.list-view .listen{
    width: 355px;
}
.products.grid-view .product {
    border: 1px solid var(--gray-border);
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.products.grid-view .product img, .products.list-view .product img {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.products.grid-view .product h3 {
    margin: 0px 0 20px;
    min-height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products .product p {
    color: var(--gray-medium);
    margin-bottom: 10px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products.list-view .btn_green--sm{
    max-width:100%;
}
.products.grid-view .product .price {
    font-weight: bold;
    color: #e67e22;
}
.grid-view .product__img{
    height: 240px;
    background: var(--gray-sky);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.products.grid-view .product__liner {
    width: 110%;
    margin-left: -20px;
    height: 1px;
    background: #ccc;
}
.product__price-block{
    margin-top: 20px;
}
.product__price-period > div:first-of-type{
    border-right: 1px solid var(--gray-border);
    padding-right: 10px;
}
.products .btn:hover {
    background: var(--green-accent);
    color: var(--white-white);
}
.category-filters {
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-border);
}
.filters-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 16px;
}
.filters-checklist label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.category-filters__name {
    padding: 13px 16px;
    background: var(--gray-sky);
    font-weight: 500;
    border-radius: 8px 8px 0px 0px;
}
.cat-filter {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.cat-filter + span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none; 
}
.cat-filter + span::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-disabled);
    border-radius: 4px;
    background-color: var(--white-white);
    transition: all 0.2s ease;
}
.cat-filter:hover + span::before {
    border-color: var(--green-accent);
}
.cat-filter:checked + span::before {
    background-color: var(--green-accent);
    border-color: var(--green-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' stroke='none'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85% 85%;
}
.cat-filter:disabled + span::before {
    opacity: 0.5;
    cursor: not-allowed;
}
#catalog__filter label span.label_name{
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}
.products__header--sort{
    width: 337px;
}
.products__header--sort .custom-select{
    border: 0px;
    background: none;
    padding: 0px;
    font-weight: 500;
    width: 146px;
}
.products__header--sort .options-list{
    width: 215px;
}
.products__header--sort .options-list li{
    color: var(--gray-medium);
}
.products__header--sort .options-list{
    left: -73px;
    top: 25px;
}
.products__header--sort .options-list li:hover {
    background: var(--green-sky);
    color: var(--black-black)
}
.products__header--sort .custom-select.open .select-arrow{
    top: 30%;
    transform: rotate(180deg);
}
.catalog__header #search{
    width: 100%
}
.catalog__header #search .search .input {
    padding: 14px 16px;
    outline: 1px solid var(--gray-border);
}
.products .favorite-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.products .favorite-btn {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}
.products .favorite-btn .icon-heart {
    font-size: 21px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.products .favorite-btn .icon-heart.filled:before {
  content: "\e923";
  color: var(--green-accent);
}

.products .favorite-btn:active .icon-heart {
    opacity: 0.8;
}
.products__header--tags .tag {
    display: flex;
    gap: 6px;
    background: var(--gray-bg);
    padding: 11px;
    border-radius: 50px;
    align-items: center;
    width: max-content;
}
.products__header--tags .tag i{
    color: var(--special-red-error);
    font-size: 8px;
    cursor: pointer;
}
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-left: -5px;
  margin-right: -5px;
}
.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    color: var(--gray-medium);
}
.autocomplete-item:hover {
  background-color: var(--gray-sky);
  color: var(--black-black)
}
.autocomplete-item.active {
  background-color: var(--gray-sky);
}
.catalog__header #search{
    position: relative;
    z-index: 4;
    border-radius: 8px;
    background: var(--white-white)
}
.active-search{
    overflow: hidden;
    position: fixed;
    inset: 0;
    z-index: 3;
}
.active-search:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 3;
    background: black;
    opacity: 0.5;
    top: 0px;
}
#noResults{
    display: none;
    margin-top: 70px;
}
#noResults .icon-search:before{
    color: var(--black-black);
    font-size: 24px;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    background-color: var(--gray-bg);
    width: fit-content;
    border-radius: 20px;
}
.pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.pagination__item,
.pagination__prev,
.pagination__next {
    border: none;
    background-color: transparent;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination__item:hover,
.pagination__prev:hover,
.pagination__next:hover {
    background-color: var(--gray-disabled);
}
.pagination__item--active {
  background-color: var(--green-accent);
    color: var(--white-white);
}
.pagination__prev:disabled,
.pagination__next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.tabs-aside{
    width: 325px;
}
.tabs-container{
    width: calc(100% - 355px);
}
.tabs{
    padding: 0px;
    list-style: none;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
    margin: 0px;
    width: 100%;
}
.tabs .tab{
    padding: 10px 16px;
    cursor: pointer;
}
.tabs .tab:hover{
    background: var(--gray-bg)
}
.tabs .tab.active-tab{
    background: var(--green-sky);
    border-left: 2px solid var(--green-accent);
}
.tab-content.active {
    display: block;
}
.tab-content, .spoiler-content {
    display: none;
}
.spoiler-content{
    padding: 20px;
}
.tabs-container h3{
    margin: 0px 0px 30px;
}
.spoiler{
    border:1px solid var(--gray-border);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}
.spoiler:hover{
    background: var(--gray-bg);
}
.spoiler-header{
    position: relative;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    padding: 20px 64px 20px 20px;
}
.spoiler.active .spoiler-header{
    background: var(--green-sky);
}
.spoiler-header:after{
    position: absolute;
    content: "\e913";
    font-family: 'elcom';
    right: 20px;
    top: 23px;
    color: var(--gray-medium);
    font-size: small;
    transform: rotate(45deg);
}
.spoiler.active .spoiler-header:after{
    transform: rotate(0deg);
    color: var(--special-red-error);
}
.spoiler.active .spoiler-content{
    background: var(--white-white)
}

.tabs-lot{
    margin: 0px;
    width: max-content;
    list-style: none;
    padding: 5px;
    background: var(--gray-bg);
    display: inline-flex;
    border-radius: 50px;
    gap:5px;
}
.tabs-lot .tab{
    border-radius: 20px;
    cursor: pointer;
    padding: 10px 16px;
    display: block;   
    font-weight: 500;
    color:  var(--gray-medium);
}
.tabs-lot .tab.active, .tabs-lot .tab:hover{
    background: var(--black-black);
    color: var(--white-white);
}
.lot__right-block .tab-content{
    line-height: 1.5;
    color: var(--black-gray);
    padding-top: 20px;
}
.lot__left-block {
    width: 437px;
    display: flex;
    flex-direction: column;
}
.lot__left-block .lot__swiper {
    height: 326px;
    background: var(--gray-sky);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.lot__left-block .lot__swiper img{
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lot__right-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lot__left-block .swiper-info {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: var(--white-white);
    padding: 3px 12px;
    font-size: 13px;
    border-radius: 16px;
}
.lot-arrow{
    width: 24px !important;
    height: 24px !important;
    background: var(--white-white);
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    color: var(--gray-medium) !important;
}
.lot-signature{
    border: 1px solid var(--green-accent);
    width: max-content;
}
.lot-signature i{
    color: var(--green-accent);
}
.lot__number{
    border: 1px solid var(--green-dark);
    color: var(--green-dark);
    border-radius: 50px;
    padding: 6px 14px;
}
.lot__number span{
    color: var(--black-black)
}
.lot__status{
    padding: 6px 14px;
    border-radius: 50px;   
}
.status__success{
    background: var(--green-sky);
    color: var(--green-dark);
}
.status__warning{
    background: var(--special-red-light);
    color: var(--special-red-error);
}
.lot__status span{
    width: 7px;
    height: 7px;
    display: flex;
    border-radius: 50%;
}
.status__success span{
    background:  var(--green-accent);
}
.status__warning span{
    background:  var(--special-red-error);
}
.period-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.period-table th,
.period-tablet d {
    padding: 6px;
    border: 1px solid white;
    font-weight: 400;
}

.period-table thead {
  background-color: var(--gray-sky);
  color: var(--black-black);
  font-size: 15px;
}

.period-table tbody tr:nth-child(even) {
  background-color: var(--gray-bg);
}

.period-table tbody tr:hover {
  background-color: var(--green-light);
  transition: background-color 0.3s;
}
.period-table td{
    font-size: 14px;
    padding: 10px;
    text-align: center;
}
.period-table tbody tr td:not(:last-child) {
    border-right: 1px solid var(--gray-border);
}
.period-table tbody tr.active{
    background-color: var(--green-light);
    font-weight: 500;
}
.footable{
    flex-grow: 1;
    width: 100%;
}
.footable .action-link{
    color: var(--gray-medium);
    font-weight: 500;
}
.footable .action-link i:before{
    color: var(--gray-medium);
}
.footable .action-link i{
    transform: rotate(90deg);
}
.footable .action-link.active-link{
    color: var(--black-black);
}
.footable .action-link.active-link i:before{
    color: var(--green-accent);
}
.footable .action-link.active-link i{
    transform: rotate(270deg);
}
.action-menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 4px;
    min-width: 220px;
    z-index: 1000;
}

.action-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--black-dark);
    text-decoration: none;
    border-radius: 12px;
}

.action-menu a:hover {
    background: var(--gray-bg);
}
#lot-labels-list .label-item {
    padding: 5px 12px;
    border: 1px solid var(--green-accent);
    border-radius: 16px 4px 16px 16px;
    display: flex;
    width: max-content;
    gap: 8px;
}
#lot-labels-list .remove-label {
    font-size: 25px;
    color: var(--special-red-error);
    cursor: pointer;
}
.period__table{
    display: flex;
    gap:8px;
    align-items: center;
    font-size: 14px;
}
.period__table span{
    padding: 10px;
    color: var(--gray-dark)
}
.period__start{
    background: var(--green-light);
}
.period__end{
    background: var(--special-red-light);
}
.period__price{
    background: var(--gray-bg);   
}
.period__action-edit.icon-pencil:before{
    color: var(--black-dark);
    font-size: 24px;
}
.upload-container-perview .file-item.uploaded{
    flex-direction: column;
    background: transparent;
    position: relative;
}
.upload-container-perview .file-item{
  flex-direction: column;
  padding: 0px;
}
.upload-container-perview .file-preview {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}
.upload-container-perview .file-item.uploaded .file-remove{
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--special-red-error);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-white);
  text-decoration: none;
  border-radius: 50%; 
}
.upload-container-perview.active .file-list{
  margin-bottom: 20px;
}

.upload-container-perview .file-remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #d9534f;
}
.upload-container-perview .upload-label{
      border-radius: 8px;
    border: 1px dashed var(--green-dark);
    position: relative;
}

.upload-container-perview .file-remove:hover {
  color: #c00;
}

.uploaded .file-progress {
  opacity: 0;
}
.lot_add .upload-container.active label{
  display: block;
}
.bs-timepicker__wrapper{
    position: relative;
}
.bs-timepicker__wrapper .choise__wrap{
    display: flex;
}
.bs-timepicker__wrapper .handle{
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction:column;
    gap:16px;
    margin: 0px;
    text-align: center;
}
.bs-timepicker__wrapper .handle li{
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
}
.bs-timepicker__wrapper .handle li:hover{
    background: var(--gray-bg);
}
.bs-timepicker__wrapper .handle li.selected{
    background: var(--green-accent);
    color: var(--white-white)
}
.bs-timepicker__wrapper .timepicker{
    position: absolute;
    background: white;
    height: 272px;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
    padding: 4px;
    z-index: 2;
    box-sizing: border-box;
}
.bs-timepicker__wrapper .chose-hour,
.bs-timepicker__wrapper .chose-minute {
  max-height: 270px;        
  overflow-y: auto;   
  padding-bottom: 5px;  
}


.bs-timepicker__wrapper .chose-hour::-webkit-scrollbar,
.bs-timepicker__wrapper .chose-minute::-webkit-scrollbar {
  width: 0px;
}
.icon__user-doc{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.docum-send .icon__user-doc{
    background: var(--gray-medium);
    color: var(--white-white);
}
.docum-success{
    background: var(--white-white);
    border: 1px solid var(--green-accent);
}
.docum-success .icon__user-doc{
    background: var(--green-accent);
    font-size: 10px;
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb li:not(:last-child):after {
        margin: 0 5px;
    }
    .products.grid-view .product {
        width: calc(50% - 20px);
    }
    .period-table,
    .period-table thead,
    .period-table tbody,
    .period-table tr,
    .period-table th,
    .period-table td {
    display: block;
    }

    .period-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    }

    .period-table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    }

    .period-table td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: right;
    }

    .period-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 6px;
    width: 45%;
    font-weight: bold;
    text-align: left;
    color: #555;
    }
}

@media (max-width: 480px) {
    .products.grid-view .product {
        width: 100%;
    }
    .view-switcher {
        text-align: center;
        margin-bottom: 15px;
    }
}