@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: white;
  --burger-color-active: white;
  --border-radius: 7px;
  --container-width: 1670px;
  --container-padding: 30px;
  --font-default: "Roboto", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: rgba(0, 0, 0, 0.04);
  --color-body: #000000;
  --color-text: #000000;
  --primary: #FF9000;
  --positive: #00C65B;
  --negative: #FE5353;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
  text-decoration: none;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
  overflow-x: hidden;
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}
.wrapper__right {
  width: 100%;
  padding-left: 394px;
}
@media (max-width: 1600px) {
  .wrapper__right {
    padding-left: 320px;
  }
}
@media screen and (max-width: 992px) {
  .wrapper__right {
    padding-left: 0;
  }
}
.wrapper__content {
  padding: 50px 32px 50px 30px;
}
@media screen and (max-width: 992px) {
  .wrapper__content {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper__content {
    padding: 25px 0;
  }
}

.burger-content {
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
  overflow-y: scroll;
}
.burger-content__body {
  color: white;
}
.burger-content .aside__ul {
  display: flex;
  flex-direction: column;
}
.burger-content .aside__btns {
  display: flex;
  flex-direction: column;
}
.burger-content .aside__btns .header__balans {
  font-size: 14px;
}

.burger {
  cursor: pointer;
  display: none;
  width: 28px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
  margin-left: 20px;
}
@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -9px;
}
.burger i::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -9px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.offer {
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 35px;
}

.offer_auth {
    font-size: 32px;
    line-height: 45px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-left: 20%;
}

.offer_auth_forget {
    font-size: 22px;
    line-height: 45px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-left: 13%;
}
@media screen and (max-width: 768px) {
  .offer {
    font-size: 24px;
    line-height: 28px;
    margin-left: 25px;
    margin-bottom: 25px;
  }

    .offer_auth {
        font-size: 24px;
        line-height: 28px;
        margin-left: 25px;
        margin-bottom: 25px;
    }
}

.input {
  height: 55px;
  padding: 0 25px;
  font-size: 15px;
  line-height: 17.58px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.flex-none{
  flex: none !important;
}

.input-group {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.input-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 400;
  width: fit-content !important;
  color: #999;
  background: transparent;
  padding: 10px 5px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.input:focus + .input-label,
.input:not(:placeholder-shown) + .input-label,
.input-label.active {
  top: 0;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}


.custom-select {
  position: relative;
}

.custom-select .input-label {
  z-index: 3;
}

/* Скрываем плейсхолдер Select2 */
.select2-search__field::placeholder {
  opacity: 0 !important;
}

.select2-search__field::-webkit-input-placeholder {
  opacity: 0 !important;
}

.select2-search__field::-moz-placeholder {
  opacity: 0 !important;
}

.select2-search__field:-ms-input-placeholder {
  opacity: 0 !important;
}

/* Скрываем плейсхолдер в Select2 контейнере */
.select2-selection__placeholder {
  display: none !important;
}
.input:focus {
  border-color: var(--primary);
}
.input:disabled {
  color: #A3A3A3;
  background: white;
}
.input:invalid, .input.invalid {
  border-color: var(--negative);
  position: relative;
}
.input:invalid + i, .input.invalid + i {
  font-style: normal;
  position: relative;
  margin-top: 5px;
  display: block;
  left: 15.5px;
  color: var(--negative);
  font-size: 12px;
  line-height: 16px;
}

.input-group .input:invalid + .input-label + i,
.input-group .input.invalid + .input-label + i {
  left: 0;
  text-align: center;
  margin-top: 8px;
}

.input--password {
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 25px;
  display: flex;
  align-items: center;
}
.input--password .input {
  border: none;
  width: 100%;
}
.input--password svg {
  height: 100%;
  cursor: pointer;
}

.input--date {
  width: 279px;
}
@media screen and (max-width: 1200px) {
  .input--date {
    width: 250px;
  }
}
.input--date::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background-image: url("../img/calendar.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

label {
  position: relative;
}
label .custom-placeholder {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  left: 25px;
  z-index: 10;
  background: white;
  padding-right: 25px;
  display: inline-block;
  max-width: -moz-max-content;
  max-width: max-content;
}

.select {
  width: 265px;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  padding-right: 70px;
  position: relative;
  background-image: url("../img/dropdown.svg");
  background-repeat: no-repeat;
  background-size: 12px 8px;
  background-position: right 25px center;
}
@media screen and (max-width: 1200px) {
  .select {
    width: 250px;
  }
}

.custom-select {

  width: 100%;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .custom-select {
    max-width: 100%;
  }
}

.fields__item .custom-select {
  max-width: 100%;
}

.custom-select select {
  display: none;
}

.selected-item {
  background: white;
  padding: 0px 30px 0 25px;
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  color:#00000080;
  z-index: 99;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

.selected-item.has-selection {
  color: #000 !important;
}

.button--history{
  background-color: transparent;
  border: none;
  height: 55px;
  padding: 0 ;
  width: 55px !important;
  font-size: 15px;
  line-height: 17.58px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  text-align: left;
}



.selected-item:after {
  content: "";
  background-image: url("../img/dropdown.svg");
  background-repeat: no-repeat;
  background-size: 12px 8px;
  position: absolute;
  display: block;
  width: 12px;
  height: 8px;
  right: 20px;
  transition: 0.5s;
  top: 50%;
  transform: translateY(-50%);
}

.arrowanim.selected-item:after {
  transform: rotate(180deg) translateY(3px);
}

.item {
  padding: 15px 25px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 17px;
  color: black;
  transition: 0.1s ease;
}
.item:first-child {
  padding-top: 0;
}
.item:last-child {
  padding-bottom: 0;
}

.item:hover, .item.chosen {
  color: var(--primary);
}

.all-items {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  z-index: 100;
  max-height: 315px;
  border-radius: 7px;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1);
  background: white;
  border-bottom: 30px solid white;
  border-top: 30px solid white;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.all-items.scrollable {
  overflow-y: scroll;
}
.all-items::-webkit-scrollbar {
  width: 20px;
}
.all-items::-webkit-scrollbar-track {
  background: white;
}
.all-items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border: 9px solid white;
  border-radius: 100px;
}
.all-items::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.all-items-hide {
  display: none;
}

.button {
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 15px;
  line-height: 17.58px;
  padding: 0 37px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: none;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--primary);
}
.button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 992px) {
  .button {
    font-size: 14px;
  }
}
.button--outline {
  color: black;
  background: transparent;
  border: 1px solid #00000020;
}

.fields {
  background: white;
  border-radius: var(--border-radius);
  padding: 35px 353px 35px 35px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}
@media (max-width: 1400px) {
  .fields {
    padding: 35px 153px 35px 35px;
  }
}
@media screen and (max-width: 1200px) {
  .fields {
    padding: 35px;
  }
}
@media screen and (max-width: 768px) {
  .fields {
    padding: 35px 25px;
  }
}
.fields__item {
  grid-column: 4 span;
  position: relative;
}
.fields__item i {
  display: none;
}
@media screen and (max-width: 768px) {
  .fields__item {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 768px) {
  .fields__item--empty {
    display: none;
  }
}
.fields__item--full {
  grid-column: 12 span;
}
.fields__item--additional {
  grid-column: 9 span !important;
}
@media screen and (max-width: 768px) {
  .fields__item--additional {
    grid-column: 12 span !important;
    height: auto !important;
  }
}
.fields__item--additional.show img {
  transform: rotate(180deg);
}
.fields__item * {
  width: 100%;
}
.fields--svu {
  padding-right: 35px;
}
@media screen and (max-width: 768px) {
  .fields--svu {
    padding-right: 25px;
  }
}
.fields--svu .fields__item {
  grid-column: 3 span;
}
@media screen and (max-width: 1200px) {
  .fields--svu .fields__item {
    grid-column: 4 span;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fields--svu .fields__item {
    grid-column: 12 span;
  }
}
.fields--svu .fields__item--full {
  grid-column: 12 span;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .fields--svu .fields__item--empty {
    display: none;
  }
}
.fields__grid {
  grid-column: 12 span;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}
.fields--default {
  background: transparent;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .fields--default {
    padding: 25px;
    padding-top: 0;
  }
}
.fields__btn {
  background: white;
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.fields__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .fields__btn {
    width: 100%;
    min-height: 50px;
  }
}
.fields__btn img {
  width: 35px;
  height: 35px;
}
.fields .additional-fields {
  position: relative;
}
.fields .additional-fields::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  z-index: 0;
}
.fields .additional-fields__cont {
  cursor: pointer;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background: white;
  padding: 0 9px;
  position: relative;
  z-index: 1;
  margin-left: 32px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .fields .additional-fields__cont {
    margin: 0 auto;
  }
}
.fields .additional-fields span {
  width: -moz-max-content;
  width: max-content;
  color: var(--primary);
  font-size: 12px;
  line-height: 14px;
  transition: 0.3s ease;
}
.fields .additional-fields span:hover {
  opacity: 0.6;
}
.fields .additional-fields img {
  width: 10px;
  height: 10px;
}

.tabs__top {
  display: flex;
  margin-bottom: 35px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .tabs__top {
    flex-direction: column;
  }
}
.tabs__top-item {
  border-bottom: 3px solid transparent;
  opacity: 0.5;
  padding-bottom: 12px;
  padding: 0 16px 12px;
  cursor: pointer;
  transition: 0.3s ease;
}
.tabs__top-item:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tabs__top-item {
    padding: 10px 25px;
    border: none;
  }
}
.tabs__top-item.active {
  opacity: 1;
  color: var(--primary);
  border-color: var(--primary);
}
.tabs__item {
  display: none;
}
.tabs__item.active {
  display: block;
}
.tabs__item-btns {
  display: flex;
  height: 100%;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.top .offer {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top .offer {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .top {
    margin-left: 25px;
    margin-right: 25px;
  }
}

.load__label {
  margin-bottom: 25px;
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.load__label:hover {
  opacity: 0.6;
}
.load__label input {
  display: none;
}
.load__label img {
  width: 17.81px;
  height: 20px;
}
.load__label span {
  color: var(--primary);
  text-decoration: underline;
  font-size: 15px;
}
.load__text {
  font-size: 15px;
  opacity: 0.5;
  margin-bottom: 25px;
}
.load__items {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.load__item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 120px;
  height: 84px;
  position: relative;
}
.load__item-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -15px;
  right: -20px;
  background: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.load__item-close:hover {
  opacity: 0.6;
}
.load__item-close img {
  width: 25px;
  height: 25px;
}

.b-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .b-bottom {
    padding-bottom: 0;
    border: none;
  }
}

.invisible {
  display: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  width: auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.select2-container--default .select2-selection--multiple {
  height: 55px !important;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 7px;
  padding: 0 20px;
}
.select2-container--default .select2-selection--multiple::-webkit-scrollbar {
  display: none;
}

.select2-container--default .select2-search--inline .select2-search__field {
  margin: 0;
}

.select2-search {
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin: 0;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  line-height: 15px;
  padding: 8px 8.5px;
  width: -moz-fit-content;
  width: fit-content;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
  padding: 0;
  height: 100%;
  width: 100%;
  border-radius: 0px !important;
  opacity: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  max-width: 88px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-dropdown {
  border: none;
  overflow: hidden;
  border-radius: 7px !important;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1);
}

.select2-results__options {
  padding: 30px 0px 30px 25px;
  border: none !important;
  outline: none !important;
  max-height: 255px !important;
  border-radius: 7px !important;
  row-gap: 34px;
  display: flex;
  flex-direction: column;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.select2-results__options::-webkit-scrollbar {
  width: 20px;
}
.select2-results__options::-webkit-scrollbar-track {
  background: white;
}
.select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border: 9px solid white;
  border-radius: 100px;
}
.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.select2-container--default.select2-container--open .select2-selection--multiple {
  border-radius: 7px !important;
}

.select2-container--open .select2-dropdown--above {
  margin-top: -10px;
}

.select2-container--open .select2-dropdown--below {
  margin-top: 10px;
}

.select2-results__option {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 17px;
  transition: 0.1s ease;
  padding-left: 30px;
  position: relative;
}
.select2-results__option::before {
  content: "";
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  border-radius: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  overflow: hidden;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: transparent;
  opacity: 0.6;
  color: black;
}

.select2-container--default .select2-results__option--selected {
  background: transparent;
}
.select2-container--default .select2-results__option--selected::before {
  max-width: 13px;
  min-width: 13px;
  max-height: 13px;
  min-height: 13px;
  background: var(--primary);
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--primary);
}

._login {
  background: black;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .login {
    width: 100%;
  }
}
.login__logo {
  text-align: center;
  margin-bottom: 35px;
}
.login__body {
  background: white;
  padding: 45px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 480px) {
  .login__body {
    padding: 20px;
  }
}
.login__form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  min-width: 342px;
}
@media screen and (max-width: 480px) {
  .login__form {
    min-width: 0;
  }
}
.login__link {
  text-align: center;
  margin-top: 25px;
}
.login__link a {
  font-size: 15px;
  line-height: 22px;
}

.aside {
  background: black;
  position: fixed;
  width: 394px;
  min-height: 100vh;
  height: 100%;
}
@media (max-width: 1600px) {
  .aside {
    width: 320px;
  }
}
@media screen and (max-width: 992px) {
  .aside {
    width: 100%;
    position: relative;
    min-height: 0;
  }
}
.aside__top {
  padding: 31px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .aside__top {
    padding: 21px 25px;
  }
}
.aside__logo {
  display: inline-block;
}
.aside__logo img {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .aside__logo img {
    max-width: 125px;
  }
}
.aside__ul {
  border-top: 1px solid rgba(248, 248, 247, 0.15);
  padding-top: 36px;
}
@media screen and (max-width: 992px) {
  .aside__ul {
    display: none;
    padding-top: 25px;
  }
}
.aside__ul-item a {
  display: flex;
  align-items: center;
  color: white;
  border-left: 2px solid transparent;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 14px 30px;
}
.aside__ul-item.active a {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
}
.aside__ul-item.active a svg path {
  stroke: var(--primary);
}
.aside__btns {
  padding: 25px;
  margin-top: 10px;
  border-top: 1px solid rgba(248, 248, 247, 0.15);
  row-gap: 25px;
  display: none;
}
@media (max-width: 1400px) {
  .aside__btns {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .aside__btns {
    display: none;
  }
}
.aside__btns * {
  display: flex !important;
  color: white;
  justify-content: center;
}
.aside__btns .header__balans {
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
.aside__user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin: 20px 25px 25px;
  font-size: 15px;
}
.aside__profile {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.aside__notif {
  margin-right: 2px;
  display: flex;
  align-items: center;
}

.header {
  background: white;
  width: 100%;
  padding: 25px 32px 25px 30px;
}
@media screen and (max-width: 992px) {
  .header {
    display: none;
  }
}
.header-item {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 0 25px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 15px;
}
.header-item strong {
  font-weight: 600;
}
.header__body {
  display: flex;
  align-items: center;
}
.header__balans {
  margin-right: 25px;
}
@media (max-width: 1400px) {
  .header__balans {
    display: none;
  }
}
@media (max-width: 1400px) {
  .header__btn {
    display: none;
  }
}
.header__phone {
  margin-left: auto;
}
@media (max-width: 1400px) {
  .header__phone {
    margin-left: 0;
  }
}
.header__user {
  margin-left: 25px;
  padding: 0 22.5px 0 25px;
    position: relative; /* Важный момент */
}
@media (max-width: 1400px) {
  .header__user {
    margin-left: auto;
  }
}
.header__user-name {
  margin-bottom: 1px;
  line-height: 17px;
}
.header__user-role {
  font-size: 12px;
  line-height: 14px;
  opacity: 0.5;
}
.header__user-dropdown {
  cursor: pointer;
}
.header__notification {
  margin-left: 13px;
  padding: 0;
  width: 50px;
  justify-content: center;
}

.objects {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.objects__item {
  background: white;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 768px) {
  .objects__item {
    border-radius: 0;
  }
}
.objects__item.innactive {
  opacity: 0.5;
}
.objects__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 26px 35px 19px;
  -moz-column-gap: 15px;
       column-gap: 15px;

  row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .objects__item-top {
    padding: 20px 25px 19px;
  }
}
.objects__item-left {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
.objects__item-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .objects__item-icon {
    width: 30px;
    height: 30px;
  }
}
.objects__item-name {
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .objects__item-name {
    font-size: 19px;
    line-height: 23px;
  }
}
.objects__item-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 768px) {
  .objects__item-right {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.objects__item-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.objects__item-btn:hover {
  opacity: 0.6;
}
.objects__elems {
  display: flex;
  -moz-column-gap: 75px;
       column-gap: 75px;
  padding: 30px 35px;
}
@media screen and (max-width: 768px) {
  .objects__elems {
    padding: 25px 30px;
    -moz-column-gap: 50px;
         column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 25px;
  }
}
.objects__elems--default {
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .objects__elems--default {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
}
@media screen and (max-width: 768px) {
  .objects__elems--default {
    padding: 0 25px;
  }
}
.objects__el-sub {
  opacity: 0.5;
}
.objects__more {
  margin-top: 20px;
  text-align: center;
}
.objects__item-status {
  border-radius: var(--border-radius);
  padding: 10px;
  font-size: 12px;
  line-height: 14px;
  color: white;
}
.objects__item-status.positive {
  background: var(--positive);
}
.objects__item-status.negative {
  background: var(--negative);
}

.filter {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px 35px;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  row-gap: 25px;
}
@media screen and (max-width: 768px) {
  .filter {
    border-radius: 0;
    padding: 25px;
  }
  .filter * {
    width: 100%;
  }
}
.filter__export {
  font-size: 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-left: auto;
}
.filter__export span {
  max-width: -moz-max-content;
  max-width: max-content;
}
.filter__export img {
  width: 24px;
  justify-content: flex-start;
}

.common__items {
  margin-top: -10px;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .common__items {
    flex-direction: column;
    row-gap: 24px;
  }
}
.common__item {
  width: 100%;
  border-radius: var(--border-radius);
  background: white;
  padding: 35px;
}
@media screen and (max-width: 768px) {
  .common__item {
    padding: 25px;
  }
}
.common__item-sub {
  opacity: 0.5;
  margin-bottom: 6px;
}
.common__item-text {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .common__item-text {
    margin-bottom: 40px;
  }
}
.common__item-offer {
  font-weight: 600;
  font-size: 64px;
  line-height: 75px;
}
@media screen and (max-width: 1200px) {
  .common__item-offer {
    font-size: 54px;
    line-height: 65px;
  }
}

.employeer-balans {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px 35px 25px 28px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1200px) {
  .employeer-balans {
    row-gap: 20px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .employeer-balans {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .employeer-balans {
    padding: 25px;
    row-gap: 25px;
    margin-bottom: 25px;
  }
}
.employeer-balans__icon {
  min-width: 54px;
  max-width: 54px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}
.employeer-balans__text {
  margin-right: auto;
}
.employeer-balans__sub {
  opacity: 0.5;
}
.employeer-balans__name {
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width: 1200px) {
  .employeer-balans__name {
    font-size: 20px;
    line-height: 24px;
  }
}
.employeer-balans__right {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 768px) {
  .employeer-balans__right {
    flex-direction: column;
    row-gap: 25px;
    width: 100%;
  }
  .employeer-balans__right .select, .employeer-balans__right .button {
    width: 100%;
  }
}
.employeer-balans__right .custom-select {
  min-width: 245px;
}

.all-transactions__items {
  display: flex;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .all-transactions__items {
    margin-bottom: 25px;
  }
}
.all-transactions__item {
  grid-column: 3 span;
  background: white;
  border-radius: var(--border-radius);
  padding: 35px;
}
@media (max-width: 1400px) {
  .all-transactions__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 1200px) {
  .all-transactions__item {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .all-transactions__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .all-transactions__item {
    grid-column: 12 span;
  }
}
.all-transactions__sub {
  opacity: 0.5;
  margin-bottom: 6px;
}
.all-transactions__date {
  margin-bottom: 98px;
}
@media (max-width: 1400px) {
  .all-transactions__date {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .all-transactions__date {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  .all-transactions__date {
    margin-bottom: 25px;
  }
}
.all-transactions__price {
  font-size: 32px;
  line-height: 37px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .all-transactions__price {
    font-size: 25px;
    line-height: 30px;
  }
}

.exports {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 50px;
}
.exports__item {
  grid-column: 4 span;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: var(--border-radius);
  padding: 50px 50px 50px 35px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 1600px) {
  .exports__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 1200px) {
  .exports__item {
    grid-column: 12 span;
    padding: 30px 30px 30px 25px;
  }
}
@media screen and (max-width: 768px) {
  .exports__item {
    padding: 25px;
  }
}
.exports__offer {
  font-size: 32px;
  line-height: 37.5px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .exports__offer {
    font-size: 28px;
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .exports__offer {
    font-size: 23px;
    line-height: 29px;
  }
}

.detail-items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .detail-items {
    padding: 0 25px;
  }
}
.detail-items__item {
  grid-column: 3 span;
  background: white;
  border-radius: var(--border-radius);
  padding: 35px;
}
@media (max-width: 1280px) {
  .detail-items__item {
    padding: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .detail-items__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 768px) {
  .detail-items__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .detail-items__item {
    grid-column: 12 span;
  }
}
.detail-items__sub {
  opacity: 0.5;
  margin-bottom: 6px;
}
.detail-items__date {
  margin-bottom: 75px;
}
@media (max-width: 1280px) {
  .detail-items__date {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .detail-items__date {
    margin-bottom: 25px;
  }
}
.detail-items__offer {
  font-size: 64px;
  line-height: 75px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .detail-items__offer {
    font-size: 54px;
    line-height: 65px;
  }
}

.detail-table {
  margin-bottom: 50px;
  font-family: "Inter", sans-serif;
  padding-bottom: 35px;
  overflow-x: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media screen and (max-width: 1200px) {
  .detail-table {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .detail-table {
    font-size: 14px;
  }
}
.detail-table::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.detail-table::-webkit-scrollbar-track {
  background: #DDD;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}
.detail-table::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 100px;
}
.detail-table::-webkit-scrollbar-thumb:hover {
  background: #c97201;
}
.detail-table__table {
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
  width: 100%;
}
.detail-table__table--colspan {
  padding: 0 !important;
}
.detail-table__table th, .detail-table__table td {
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
  padding: 10px 20px;
  text-align: center;
  min-width: 19px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .detail-table__table th, .detail-table__table td {
    padding: 10px 15px;
  }
}
.detail-table__table th {
  font-weight: 600;
}
.detail-table__table td.active {
  background: var(--primary);
  color: white;
}
.detail-table__table thead {
  background: white;
}
.detail-table__table table {
  border-collapse: collapse;
  border: none;
  border-style: hidden;
  width: 100%;
}
.detail-table__table table tr, .detail-table__table table tbody, .detail-table__table table td, .detail-table__table table th {
  border-collapse: collapse;
}
.detail-table__table .small {
  padding: 10px 0;
  min-width: 50px;
}
.detail-table__table-date {
  font-weight: 600;
}

.gallery {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin: 0 25px;
  }
}
.gallery__item {
  height: 300px;
  display: block;
}
@media screen and (max-width: 768px) {
  .gallery__item {
    height: 200px;
  }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-arrows {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.gallery-arrow {
  cursor: pointer;
  transition: 0.3s ease;
}
.gallery-arrow:hover {
  opacity: 0.6;
}

/* Кнопка помощи */
.help-btn {
  width: 55px;
  height:55px;
  border: 1px solid #ddd;

  background: white;
  cursor: pointer;
  border-radius: 7px;
  color: #999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;

}

.help-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #f8f9fa;
}



/* Попап */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup.active {
  display: flex;
}

.popup__content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 530px;
  width: 90%;
  position: relative;
}

.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.popup__close:hover {
  color: #333;
}

.popup__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;

}

.popup__text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  max-height: 400px;
  overflow-y: auto;
}

.popup__section {
  margin-bottom: 20px;
}

.popup__section:last-child {
  margin-bottom: 0;
}

.popup__section-title {
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 8px;
  color: #000;
  margin-bottom: 8px;
}

.popup__section p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
}

/* Textarea стили */
textarea.input {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
  padding: 15px 25px;
}

textarea.input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Выравнивание влево */
.left-aling {
  text-align: left;
}

.left-aling .help-btn {
  margin: 0;
}

/* Стили для таблицы СВУ */
.detail-table__table tbody tr:hover {
  background-color: #FF90001A;
}

.detail-table__table tbody tr.highlighted-row {
  background-color: #FF90001A;
}

.detail-table__table th.highlighted-column,
.detail-table__table td.highlighted-column {
  color: #FF9000;
  font-weight: bold;
}

.detail-table__table tbody tr td:nth-child(2) {
  font-weight: bold;
}

.read__more{
  font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: underline;
text-decoration-skip-ink: none;
color: #ff9000;
margin-left: auto;
}

.detail-items__offer{
  display: flex;
  align-items: flex-end;
}

/* Стили для табов */
.tabs {
  margin-bottom: 30px;
}

.tabs__nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #DDDDDD;
}

.tabs__btn {
  background: none;
  border: none;
  padding: 15px 25px;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tabs__btn:hover {
  color: var(--primary);
}

.tabs__btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* Новый статус транзакции */
.objects__item-status.new {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #1281ff;
  border: 0.50px solid rgba(0, 0, 0, 0.1);

}

/* Кнопки действий */
.objects__item-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.action-btn {

  border: none;

  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.action-btn:hover {
  background: #f8f9fa;
  border-color: var(--primary);
}

.detail-item_sing{
  width: auto;
}

/* Модальное окно */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: relative;
  background: white;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;

}

.modal__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
}

.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #666;
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: #333;
}

.modal__body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}

/* История изменений */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.history-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.history-user {
  font-weight: 500;
  font-size: 15px;
  color: #000;
}

.history-date{
  font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 14px;
color: #000;
}

.history-header{
  display: flex;
  padding-bottom: 5px;
  gap: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}

.buttons .input-group{
  flex-direction: row;
  gap: 25px;
  display: flex;
}

.w-65{
  width: 256px !important;
  flex: none;
}

.history-changes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-change {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  display: flex;
  gap: 10px;

}

.history-new {
  color: #FF9000;
  font-weight: 600;
}

/* Кнопка истории */
.button--history {
  display: flex;
  align-items: center;

}

.history-action , .history-param{
  opacity: 0.5;
}

.history-old{
  font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 15px;
color: #000;
opacity: 1 !important;
}

.edit-info {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #000;
}

.edit-info span{
  font-weight: 400;
color: #ff9000;
}


.button--history svg {
  flex-shrink: 0;
}

/* Предотвращение скролла при открытом модальном окне */
body.modal-open {
  overflow: hidden;
}


.user-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 999;
    min-width: 150px;
}

.user-dropdown-menu a,
.user-dropdown-menu button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    text-align: left;
    border: none;
    background: none;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.user-dropdown-menu a:hover,
.user-dropdown-menu button:hover {
    background-color: #f0f0f0;
}

.user-dropdown-menu.show {
    display: block;
}

.user-error-text {
    color: #ef4444; /* Equivalent to red-500 */
    font-size: 0.875rem; /* Same as text-sm */
    margin-top: 0.25rem; /* Same as mt-1 */
    margin-bottom: 18px;
    margin-left: 15%;
}

.forgot-error-text {
    color: #ef4444; /* Equivalent to red-500 */
    font-size: 0.875rem; /* Same as text-sm */
    margin-top: 0.25rem; /* Same as mt-1 */
    margin-bottom: 18px;
    margin-left: 0;
}

.user-success-text {
    color: #0baa1e; /* Equivalent to red-500 */
    font-size: 0.875rem; /* Same as text-sm */
    margin-top: 0.25rem; /* Same as mt-1 */
    margin-bottom: 18px;
}

.main-alert {
    background-color: #fff4f4;
    border: 1px solid #f5c2c7;
    color: #842029;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: sans-serif;
}

.main-alert-icon {
    font-size: 20px;
    margin-top: 3px;
}

.main-alert-content {
    flex: 1;
}

.main-alert-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.main-alert ul {
    margin: 0;
    padding-left: 18px;
}

.main-alert li {
    margin-bottom: 4px;
}



.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 280px;
    padding: 12px 40px 12px 14px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #fff;
    color: #444;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23777" stroke-width="2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

select:focus {
    border-color: #4285f4;
    outline: none;
}

option {
    font-size: 15px;
}


/* === Анимации === */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeOut {
    from {opacity: 1; transform: translateY(0);}
    to {opacity: 0; transform: translateY(-10px);}
}

/* === Основной блок === */
.alert-success-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 14px 18px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.4s ease;
    transition: all 0.4s ease;
}

/* === Иконка === */
.alert-success-custom .alert-icon svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    stroke: #10b981;
}

/* === Текст === */
.alert-success-custom .alert-text {
    flex-grow: 1;
    font-size: 15px;
}

/* === Кнопка закрытия === */
.alert-success-custom .alert-close {
    background: none;
    border: none;
    color: #059669;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.alert-success-custom .alert-close:hover {
    color: #064e3b;
}

/* === Скрытие === */
.alert-success-custom.hide {
    animation: fadeOut 0.4s ease forwards;
}

.alert-danger-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fdecea;
    border: 1px solid #f5c2c7;
    color: #842029;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: sans-serif;
    margin: 10px 0;
    animation: fadeIn 0.3s ease-in-out;
}

.alert-icon svg {
    width: 24px;
    height: 24px;
    color: #dc3545;
    margin-right: 10px;
}

.alert-text {
    flex-grow: 1;
    font-size: 15px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #842029;
    cursor: pointer;
}

.alert-close:hover {
    color: #dc3545;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
