form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}
form button[type=submit] {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  width: 100%;
  background: linear-gradient(147deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  margin-top: 15px;
}
form .inputWrapper {
  width: 100%;
}

.inputWrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  width: 100%;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.inputWrapper span {
  color: #690097;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  align-self: end;
}
.inputWrapper .editableActions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.inputWrapper .editableActions button {
  padding: 5px 7px 6px 7px;
  border-radius: 12px;
  background: linear-gradient(147deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
}
.inputWrapper.disabledInput input {
  padding: 5px 0px;
  background: none !important;
  pointer-events: none;
}
.inputWrapper.disabledInput .select {
  background: none;
  pointer-events: none;
}
.inputWrapper.disabledInput .select .selectedOption {
  padding: 5px 0px;
  background: none;
}
.inputWrapper.disabledInput .select .selectedOption svg {
  display: none;
}
.inputWrapper.disabledInput .p-calendar {
  pointer-events: none;
}
.inputWrapper.disabledInput .p-calendar .p-button,
.inputWrapper.disabledInput .p-calendar svg {
  pointer-events: none;
}
.inputWrapper input {
  padding: 20px;
  border-radius: 5px;
  background: #F1F1F5;
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.5s all;
}
.inputWrapper .p-calendar {
  width: 100%;
}
.inputWrapper p.error {
  color: red;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  right: 5px;
  bottom: 5px;
  line-height: 100%;
}
.inputWrapper.light input {
  background: white !important;
}
.inputWrapper.light span {
  color: white;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox input[type=checkbox], .checkbox input[type=radio] {
  visibility: hidden;
  position: relative;
  width: max-content;
  height: 15px;
}
.checkbox input[type=checkbox]::after, .checkbox input[type=radio]::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  visibility: visible;
  background-image: url("../main-images/checkBoxNotActive.svg");
  transition: 0.5s all;
}
.checkbox input[type=checkbox]:checked::after, .checkbox input[type=radio]:checked::after {
  background-image: url("../main-images/checkboxActive.svg");
}
.checkbox.light p {
  color: white;
}
.checkbox.light p a {
  color: white;
}
.checkbox.light input[type=checkbox]::after, .checkbox.light input[type=radio]::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  visibility: visible;
  background-image: url("../main-images/checkboxNotActiveLight.svg");
  transition: 0.5s all;
}
.checkbox.light input[type=checkbox]:checked::after, .checkbox.light input[type=radio]:checked::after {
  background-image: url("../main-images/checkboxActiveLight.svg");
}
.checkbox.error p {
  color: red !important;
}
.checkbox.error p a {
  color: red !important;
}
.checkbox p {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.checkbox p a {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.select {
  border-radius: 5px;
  background: #F1F1F5;
  position: relative;
  width: 100%;
}
.select.open .selectedOption {
  box-shadow: 0px -8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.select.open .optionsList {
  opacity: 1;
  z-index: 1;
  max-height: 200px;
}
.select .selectedOption {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background: #F1F1F5;
  cursor: pointer;
  transition: all 0.5s;
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  z-index: 2;
  position: relative;
}
.select .selectedOption p {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}
.select .optionsList {
  display: flex;
  flex-direction: column;
  padding: 15px 30px 20px 30px;
  position: absolute;
  width: 100%;
  background: #F1F1F5;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s;
  overflow-y: auto;
  max-height: 0px;
}
.select .optionsList p {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  cursor: pointer;
  transition: 0.5s;
  padding: 8px 0px;
}
.select .optionsList p:hover {
  font-weight: 700;
}

.loadingWrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0392156863);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.tooltipChild {
  position: relative;
}

.tooltipWrapper {
  position: absolute;
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 64.815px 46.852px 0px rgba(0, 0, 0, 0.05), 0px 38.519px 25.481px 0px rgba(0, 0, 0, 0.04), 0px 20px 13px 0px rgba(0, 0, 0, 0.04), 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.03), 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.02);
  background: white;
  padding: 16px;
  border-radius: 16px;
  max-width: 350px;
  border: 1px rgba(0, 0, 0, 0.0392156863) solid;
  top: 0;
  width: max-content;
}
.tooltipWrapper p {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

/* extendUsefulLinks */
.extendUsefulLinks {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.extendUsefulLinks .link {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  border-radius: 15px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%);
  height: 234px;
  padding: 20px;
  min-width: 285px;
  width: 285px;
  position: relative;
}
.extendUsefulLinks .link .bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

@media screen and (max-width: 900px) {
  .extendUsefulLinks {
    width: 100%;
  }
}
/* sectHead */
.sectHead {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sectHead h4 {
  color: #690097;
  font-family: "Bebas";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 70px */
}
.sectHead .stroke {
  height: 57px;
  border-radius: 32px;
  width: 5px;
  background: linear-gradient(134deg, #B200FF 14.85%, #FF00F5 86.52%);
}
.sectHead p {
  color: #170021;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}

@media screen and (max-width: 1000px) {
  .sectHead {
    flex-direction: column;
    gap: 5px;
    align-items: start;
    margin-left: 20px;
    align-self: start;
  }
  .sectHead .stroke {
    width: 80%;
    height: 5px;
  }
}
@media screen and (max-width: 600px) {
  .sectHead h4 {
    font-size: 50px;
  }
}
@media screen and (max-width: 450px) {
  .sectHead {
    margin-left: 0;
  }
  .sectHead h4 {
    font-size: 36px;
  }
}
/* newsItem */
.newsItem {
  display: flex;
  flex-direction: column;
  width: 387px;
}
.newsItem .newsImage {
  border-radius: 30px 30px 0px 0px;
  border: 1px #6F00D5 solid;
  border-bottom: none;
}
.newsItem .newsImage img {
  border-radius: 30px 30px 0px 0px;
  width: 100%;
}
.newsItem .newsDescription {
  padding: 20px 30px 35px 30px;
  border-radius: 0px 0px 30px 30px;
  border: 0.5px #F500F6 solid;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: white;
  height: 100%;
}
.newsItem .newsDescription a {
  color: #690097 !important;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
.newsItem .newsDescription a:hover {
  transform: translateY(-2px);
  transform: scale(1.04);
}
.newsItem .newsDescription p {
  color: #888;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
}

/* ContactForm */
.contactForm {
  padding: 45px 102px;
  border-radius: 32px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%);
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  background-position: right bottom;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
  height: 100%;
  position: relative;
  max-width: 810px;
}
.contactForm .inputWrapper span {
  color: white;
}
.contactForm .inputWrapper:nth-child(2) {
  grid-row: 1/span 2;
  grid-column: 2;
  height: 100%;
}
.contactForm .inputWrapper:nth-child(2) textarea {
  height: calc(100% - 20px);
}
.contactForm .inputWrapper:nth-child(4) {
  grid-column: 1/span 2;
  grid-row: 3;
  width: 350px;
  margin-top: 5px;
}
.contactForm .inputWrapper .checkbox input[type=checkbox]::after {
  background-image: url("../main-images/whiteBorderCustomCheckbox.png");
}
.contactForm .inputWrapper .checkbox input[type=checkbox]:checked::after {
  background-image: url("../main-images/whiteBorderCustomCheckboxActive.svg");
}
.contactForm .inputWrapper .checkbox p {
  color: white;
}
.contactForm .inputWrapper .checkbox p a {
  color: white;
  text-decoration: underline !important;
  font-weight: 500;
}
.contactForm button {
  margin-top: 10px;
  grid-column: 1/span 2;
  width: max-content;
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  padding: 16px 52px;
  border-radius: 30px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}

@media screen and (max-width: 800px) {
  .contactForm {
    padding: 45px 75px;
  }
}
@media screen and (max-width: 650px) {
  .contactForm {
    flex-direction: column;
    display: flex;
    padding: 60px 35px;
  }
  .contactForm .inputWrapper:nth-child(1) {
    order: -1;
  }
  .contactForm .inputWrapper:nth-child(2) textarea {
    height: 120px;
  }
  .contactForm .inputWrapper:nth-child(3) {
    order: -2;
  }
  .contactForm .inputWrapper:nth-child(4) {
    width: 100%;
  }
  .contactForm button {
    width: 100%;
    padding: 16px 0px;
  }
}
/* telegramBaner */
.telegramBaner {
  padding: 0px 0px 63px 38px;
  border-radius: 30px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%), url("../main-images/telegramBaner.png");
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: end;
  height: 381px;
  width: 396px;
  background-blend-mode: lighten;
  background-position: top right;
  background-repeat: no-repeat;
}
.telegramBaner h4 {
  color: #FFF;
  font-family: "Bebas";
  font-size: 36.148px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 36.148px */
  margin-bottom: 0 !important;
}
.telegramBaner p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
.telegramBaner a {
  color: #FFF;
  width: max-content;
  margin-top: 8px;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  padding: 14px 27px;
  border-radius: 27.111px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}

/* filterTree */
.filterTree {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filterTree .checkbox {
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  background-image: url("../main-images/checkBoxNotActive.svg");
  cursor: pointer;
}
.filterTree .checkbox.active {
  background-image: url("../main-images/checkboxActive.svg");
}
.filterTree .catWrap .parent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filterTree .catWrap .parent.active > .list {
  display: flex;
}
.filterTree .catWrap .parent .parentCat {
  display: flex;
  gap: 3px;
  align-items: center;
  font-size: 15px;
}
.filterTree .catWrap .parent .parentCat p {
  cursor: pointer;
  font-weight: 500;
  color: #170021;
  font-family: Montserrat !important;
  font-size: 14px;
  font-style: normal;
  line-height: 140%;
}
.filterTree .catWrap .parent .parentCat input {
  width: max-content;
}
.filterTree .catWrap .parent .parentCat img {
  cursor: pointer;
  padding: 4px;
}
.filterTree .catWrap .parent .list {
  padding-left: 10px;
  flex-direction: column;
  gap: 4px;
  display: none;
}
.filterTree .catWrap .parent .list .catLink {
  display: flex;
  gap: 3px;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  color: #170021;
  font-family: Montserrat !important;
  font-size: 13px;
  font-style: normal;
  line-height: 140%;
}
.filterTree .catWrap .parent .list .catLink input {
  width: max-content;
}

/* header */
.headerMenu {
  width: 100%;
  background: white;
}
.headerMenu .menuList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 10px 26px 10px;
}
.headerMenu .menuList a.link {
  color: #000;
  font-family: Montserrat !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.headerMenu .menuList a.link.active .stroke {
  width: 100%;
}
.headerMenu .menuList a.link .stroke {
  height: 3px;
  margin-top: 6px;
  width: 0%;
  border-radius: 5px;
  background: linear-gradient(134deg, #B200FF 14.85%, #FF00F5 86.52%);
  transition: 0.5s;
}
.headerMenu .menuList a.link:hover .stroke {
  width: 100%;
}

/* infinitySlide */
#infinitySlideChild {
  width: max-content;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  animation: infinitySlide 25s linear infinite;
}

.timerWrapper .timer {
  display: flex;
  align-items: center;
  gap: 5px;
}
.timerWrapper .timer .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timerWrapper .timer .item * {
  z-index: 2;
}
.timerWrapper .timer .item .shadow {
  z-index: 1;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 2px rgba(178, 0, 255, 0.1294117647) !important;
}
.timerWrapper .timer .item span {
  position: absolute;
  font-family: "Bebas";
  line-height: 100%;
  color: rgba(0, 0, 0, 0.8117647059);
}

@keyframes infinitySlide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1025px) {
  .headerMenu {
    display: none;
    background: none;
  }
  .mobileMenuList {
    display: block;
  }
  .mobileMenuList .menuList {
    flex-direction: column;
    padding: 0;
    gap: 22px;
    align-items: start;
  }
  .mobileMenuList .menuList a.link, .mobileMenuList .menuList a#directions-open-button {
    color: white;
  }
  .mobileMenuList .menuList .directionsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mobileMenuList .menuList .directionsList .list-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mobileMenuList .menuList .directionsList .list-item h5 {
    color: #6B6B6B;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 0 !important;
  }
  .mobileMenuList .menuList .directionsList .list-item h5 span {
    color: #FF00F5;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
  }
  .mobileMenuList .menuList .directionsList .list-item p {
    color: #EAE9E9;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 14px */
    width: 60%;
    white-space: normal;
  }
}
@media screen and (max-width: 600px) {
  .menuList {
    flex-direction: column;
    padding: 0;
    gap: 22px;
    align-items: start;
  }
  .menuList a.link, .menuList a#directions-open-button {
    color: white;
  }
  .menuList .directionsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .menuList .directionsList .list-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .menuList .directionsList .list-item h5 {
    color: #6B6B6B;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 0 !important;
  }
  .menuList .directionsList .list-item h5 span {
    color: #FF00F5;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
  }
  .menuList .directionsList .list-item p {
    width: 100% !important;
  }
}
@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
:root {
  --purple: #690097;
  --pink: #5;
  --black: #5;
  --darkPurple: #170021;
  --headFont: "Bebas";
  --smallHeadFont: "Montserrat";
  --textFont: "Montserrat";
}

.button {
  padding: 12px 32px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white;
  font-weight: 500;
  outline: none;
  line-height: 100%;
  font-family: var(--textFont);
}

.buttonS {
  padding: 8px 16px;
  font-size: 12px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white !important;
  font-weight: 500;
  outline: none;
  line-height: 100%;
  font-family: var(--textFont);
}

.buttonB {
  padding: 12px 32px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: none;
  border: none;
  color: var(--darkPurple);
  line-height: 100%;
  outline: 1px solid var(--darkPurple) !important;
  font-family: var(--textFont);
  font-weight: 500;
}

.buttonBS {
  padding: 8px 16px;
  width: fit-content;
  text-align: center;
  border-radius: 32px;
  background: none;
  border: none;
  font-size: 12px;
  color: var(--darkPurple);
  line-height: 100%;
  outline: 1px solid var(--darkPurple) !important;
  font-family: var(--textFont);
  font-weight: 500;
}

p {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.text {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.textS {
  color: var(--darkPurple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
}

.textP {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}

h4, h2, h3, h5 {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  margin-bottom: 0;
}

.headTitle {
  color: var(--purple);
  font-family: "Bebas";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 70px */
}

.headTitleM {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
}

.headTitleS {
  color: var(--purple);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}

.footer {
  z-index: -1;
}

html {
  scroll-behavior: smooth;
}

#popupWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.0392156863);
  transition: 0.5s all;
}
#popupWrapper.visible {
  z-index: 100000;
  opacity: 1;
  visibility: visible;
}
#popupWrapper.visible .popupLayer {
  opacity: 1;
  transform: translate(-50%, -50%);
  visibility: visible;
}
#popupWrapper .popupLayer {
  padding: 60px 45px;
  border-radius: 30px;
  background: #FFF;
  max-height: 80vh;
  max-width: 90%;
  width: 440px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0;
  visibility: hidden;
  transition: 1s all;
  overflow-y: auto;
  height: var(--el-height, auto);
}
#popupWrapper .popupLayer.showFinally .popupHead {
  opacity: 0;
  animation: op 1s forwards;
  animation-delay: 1s;
}
#popupWrapper .popupLayer::-webkit-scrollbar {
  width: 5px;
  border-radius: 30px;
}
#popupWrapper .popupLayer::-webkit-scrollbar-track {
  background: #1B1B1B;
  border-radius: 30px;
}
#popupWrapper .popupLayer::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 30px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}
#popupWrapper .popupLayer .popup {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#popupWrapper .popupLayer .popup .closePopup {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
#popupWrapper .popupLayer .popup .popupHead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#popupWrapper .popupLayer .popup .popupHead h4 {
  color: #690097;
  text-align: center;
  font-family: "Bebas";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 30px */
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 !important;
}
#popupWrapper .popupLayer .popup .popupHead h4 hr {
  border: none;
  width: 80%;
  border-radius: 30px;
  opacity: 1;
  background: linear-gradient(154deg, #B200FF 14.85%, #FF00F5 86.52%) !important;
  height: 5px;
  margin: 0 !important;
}
#popupWrapper .popupLayer .popup .popupHead p {
  color: #690097;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
#popupWrapper .popupLayer .popup .popupBody {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}
#popupWrapper .popupLayer .popup .popupBody .cropPicture {
  width: 300px;
  margin-bottom: 20px;
  max-height: 300px;
}
#popupWrapper .popupLayer .popup .popupBody .cropPicture img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}
#popupWrapper .popupLayer .popup .popupBody .defaultDropZone {
  align-items: center;
}
#popupWrapper .popupLayer .popup .popupBody .defaultDropZone p {
  text-align: center;
}
#popupWrapper .popupLayer .popup .actionButtons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#popupWrapper .popupLayer .popup .actionButtons button {
  flex-grow: 1;
  padding: 18px 32px;
  width: max-content;
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  color: white;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
}
#popupWrapper .popupLayer .cropPictureWrapper .popupButtons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#popupWrapper .popupLayer .cropPictureWrapper .popupButtons button {
  width: 100%;
}

.openEditUploadedDocument {
  background: #4CAF50;
  color: white;
  font-size: 14px;
  padding: 6px 16px;
  font-family: "Montserrat";
  border-radius: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  min-width: fit-content;
}

.header .header_top .header_top-wrapper {
  padding: 10px 0px !important;
}

.autorizedUser.mobile .authBox {
  flex-wrap: wrap;
  row-gap: 15px;
}
.autorizedUser.mobile .authBox .user .userName {
  color: white;
}
.autorizedUser.mobile .authBox .user .dropdown-content {
  display: none !important;
}
.autorizedUser .authBox {
  display: flex;
  gap: 5px;
  align-items: center;
}
.autorizedUser .authBox .newLot {
  color: #FFF;
  font-family: Montserrat;
  font-size: 10.337px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 10.337px */
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 19.382px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}
.autorizedUser .authBox .user {
  position: relative;
}
.autorizedUser .authBox .user:hover .dropdown-content {
  display: flex;
}
.autorizedUser .authBox .user .dropdown-content {
  position: absolute;
  background: linear-gradient(124.97deg, rgb(15, 0, 152) -50.341%, rgb(178, 0, 255) 38.682%, rgb(255, 0, 245) 91.07%);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  opacity: 1;
  z-index: 1;
  border-radius: 13px;
  flex-direction: column;
  right: 0;
  top: 10px;
  padding: 30px 30px 30px 20px;
  gap: 5px;
  border-radius: 15px;
  display: none;
  border: 0.5px solid #E0E0E0;
  background: #FFF;
  box-shadow: 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.03), 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.02);
}
.autorizedUser .authBox .user .dropdown-content .dropdown-content-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.autorizedUser .authBox .user .dropdown-content .dropdown-content-item a {
  color: #000;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 15px */
  text-transform: uppercase;
  padding: 0;
  background: none;
  height: fit-content;
  text-align: left;
}
.autorizedUser .authBox .user .dropdown-content .dropdown-content-item a:hover {
  color: var(--pink);
}
.autorizedUser .authBox .user .userName {
  color: #000;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  cursor: pointer;
  margin-right: 0;
}
.autorizedUser .authBox .userNav {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-left: 5px;
}
.autorizedUser .authBox .userNav a {
  padding: 6px;
  border-radius: 50%;
  background: #FFF;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.autorizedUser .authBox .userNav a .notifCount {
  line-height: 100%;
  display: flex;
  width: 20px;
  height: 20px;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  background: #B200FF;
  color: white;
  font-family: "Bebas";
}

.pageDescription {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
.pageDescription h4 {
  font-family: "Montserrat";
  font-size: 20px;
  color: rgba(105, 0, 151, 0.631372549);
}
.pageDescription p {
  font-family: "Montserrat";
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6117647059);
}
.pageDescription ul {
  padding-left: 15px !important;
}

.noteText {
  font-family: "Montserrat";
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6117647059);
}

@media screen and (max-width: 1025px) {
  .autorizedUser.desc {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .pageDescription {
    max-width: 90%;
  }
}
@media screen and (max-width: 1050px) {
  .autorizedUser.desctop {
    display: none;
  }
}
@keyframes showFinally {
  to {
    height: 300px;
  }
}
@keyframes op {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .popupWrapper .popupLayer {
    padding: 60px 30px;
    width: 100%;
  }
  .pageDescription p, .pageDescription ul, .pageDescription ul li {
    font-size: 10px;
  }
  .pageDescription h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #popupWrapper .popupLayer {
    padding: 60px 25px;
  }
}
@media screen and (max-width: 400px) {
  .popupWrapper .popupLayer {
    padding: 60px 20px;
    max-width: 95%;
  }
}