@charset "UTF-8";
.btn {
  padding: 12px 20px;
  border-radius: 20px;
  background-color: var(--btn-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 4px;
  transition: all 0.3s ease;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--btn-primary);
  color: var(--text-white);
}
.btn-primary.btn-outline {
  background-color: transparent;
  color: var(--text-blue);
  border: 1px solid var(--btn-primary);
}
.btn-primary.btn-outline:hover {
  background-color: transparent;
}
.btn-primary:hover {
  background-color: var(--btn-darkblue);
}

.btn-success {
  background-color: var(--btn-green);
  color: var(--text-white);
}
.btn-success:hover {
  opacity: 0.7;
}

.btn-secondary {
  background-color: var(--btn-secondary);
  color: var(--text-grey);
}
.btn-secondary:hover {
  background-color: var(--btn-darkgray);
}

.btn-tertiary {
  background-color: var(--btn-tertiary);
  color: var(--text-grey);
}

.btn-danger {
  background-color: rgba(210, 72, 72, 0.1);
  color: var(--text-error);
}

.btn-inline {
  background-color: transparent;
  border: none;
  padding: 0;
}
.btn-inline:hover {
  background-color: transparent;
  text-decoration: underline;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 6px 8px;
  background-color: rgb(228, 239, 255);
  font-weight: 500;
  font-size: 14px;
  width: fit-content;
  flex-wrap: nowrap;
  /* text-wrap: nowrap; */
  text-align: center;
}
.badge.small {
  padding: 2px 6px;
  font-size: 12px;
}
.badge.badge-green {
  background-color: rgb(221, 249, 225);
  color: var(--text-green);
}
.badge.badge-grey {
  background-color: rgb(241, 241, 241);
  color: var(--text-grey);
}
.badge.badge-blue {
  background-color: rgb(228, 239, 255);
  color: var(--text-blue);
}

.dropdown {
  padding: 12px 20px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background-color: var(--btn-tertiary);
  transition: all 0.3s ease;
  user-select: none;
}
.dropdown.dropdown-border {
  border: 1px solid var(--border-line);
}
.dropdown.dropdown-border.invalid {
  border: 1px solid var(--text-error);
}
.dropdown span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-grey);
}
.dropdown span > svg:first-child {
  margin-right: 8px;
}
.dropdown span > span.black {
  font-weight: 600;
  color: var(--text-black);
  margin-left: 4px;
  margin-right: 8px;
}
.dropdown:hover:not(.active):not(:has(.dropdown-menu:hover)) {
  background-color: var(--btn-darkgray);
}
.dropdown.active {
  box-shadow: 0px 0px 0px 1px rgba(72, 126, 219, 0.52) inset, 0px 0px 0px 2px rgb(218, 229, 248);
}
.dropdown.active > span > svg:last-child {
  transform: rotate(180deg);
}
.dropdown.active > span > svg:last-child > path {
  fill: var(--text-black);
}
.dropdown.active > .dropdown-menu {
  max-height: 250px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown.active > .dropdown-menu#category-dropdown-options {
  max-height: 500px;
}
.dropdown .dropdown-menu {
  display: block;
  position: absolute;
  top: 48px;
  min-width: 150px;
  width: 100%;
  background: var(--bg-light);
  left: 0;
  border-radius: 8px;
  z-index: 99999;
  border: 1px solid var(--border-line);
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  overflow-y: scroll;
  pointer-events: none;
}
.dropdown .dropdown-menu em {
  padding: 12px 12px;
  font-size: 16px;
  display: flex;
}
.dropdown .dropdown-menu.multiselect .dropdown-menu-item::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_885_7000)'%3E%3Crect x='1.33301' y='1.3335' width='17.3333' height='17.3333' rx='3.5' fill='white' stroke='%23E2E2E2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_885_7000'%3E%3Cpath d='M0 4C0 1.79086 1.79086 0 4 0H16C18.2091 0 20 1.79086 20 4V16C20 18.2091 18.2091 20 16 20H4C1.79086 20 0 18.2091 0 16V4Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  margin-left: auto;
  background-repeat: no-repeat;
}
.dropdown .dropdown-menu .dropdown-menu-item {
  padding: 12px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
}
.dropdown .dropdown-menu .dropdown-menu-item.with-mark::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_885_7000)'%3E%3Crect x='1.33301' y='1.3335' width='17.3333' height='17.3333' rx='3.5' fill='white' stroke='%23E2E2E2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_885_7000'%3E%3Cpath d='M0 4C0 1.79086 1.79086 0 4 0H16C18.2091 0 20 1.79086 20 4V16C20 18.2091 18.2091 20 16 20H4C1.79086 20 0 18.2091 0 16V4Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  margin-left: auto;
  background-repeat: no-repeat;
}
.dropdown .dropdown-menu .dropdown-menu-item.selected::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_665_16318)"><rect x="0.833496" y="0.833496" width="18.3333" height="18.3333" rx="4" fill="%231C9220"/><g clip-path="url(%23clip1_665_16318)"><path d="M5.13867 10.0001L8.61089 13.4723L15.5553 6.52783" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g></g><defs><clipPath id="clip0_665_16318"><path d="M0 4C0 1.79086 1.79086 0 4 0H16C18.2091 0 20 1.79086 20 4V16C20 18.2091 18.2091 20 16 20H4C1.79086 20 0 18.2091 0 16V4Z" fill="white"/></clipPath><clipPath id="clip1_665_16318"><rect width="16.6667" height="16.6667" fill="white" transform="translate(1.6665 1.6665)"/></clipPath></defs></svg>');
  background-size: contain;
  margin-left: auto;
}
.dropdown .dropdown-menu .dropdown-menu-item:not(:last-child) {
  border-bottom: 1px solid var(--border-line);
}
.dropdown .dropdown-menu .dropdown-menu-item:first-child {
  border-radius: 16px 16px 0 0;
}
.dropdown .dropdown-menu .dropdown-menu-item:last-child {
  border-radius: 0 0 16px 16px;
}
.dropdown .dropdown-menu .dropdown-menu-item:hover {
  background: var(--bg-dark);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 45, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99999999;
}
.modal-overlay-notifications {
  justify-content: end;
  align-items: flex-start;
  z-index: 10;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.open > .modal-window {
  transform: translate(0);
}
.modal-overlay > .modal-window:has(.modal-candidate-info) {
  background: rgb(246, 246, 246);
  padding: 32px 0;
}
.modal-overlay > .modal-window:has(.modal-candidate-info) .modal-content {
  padding: 0;
}
.modal-overlay > .modal-window:has(.modal-edit) {
  padding: 32px 0;
}
.modal-overlay > .modal-window:has(.modal-edit) .modal-content {
  padding: 0;
}
.modal-overlay > .modal-window {
  background: var(--bg-light);
  padding: 28px 0;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
  transform: translate(0);
  transition: transform, height 0.3s ease;
  display: grid;
  gap: 32px;
  position: relative;
}
.modal-overlay > .modal-window-notifications {
  max-width: 600px;
  transform: translate(0);
  top: 70px;
  border-radius: 0 0 0 16px;
  background-color: rgb(246, 246, 246);
  border: 1px solid var(--border-line);
  padding: 32px;
  gap: 12px;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
}
.modal-overlay > .modal-window-notifications > .notification-card {
  display: flex;
  background-color: var(--bg-light);
  padding: 20px;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-line);
  align-items: flex-start;
  justify-content: space-between;
}
.modal-overlay > .modal-window-notifications > .notification-card svg {
  min-width: 20px;
  width: 20px;
}
.modal-overlay > .modal-window-notifications > .notification-card svg.close {
  min-width: 32px;
  width: 32px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.modal-overlay > .modal-window-notifications > .notification-card svg.close:hover {
  opacity: 0.5;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info {
  display: inline-flex;
  gap: 12px;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info > div h1 {
  font-size: 14px;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info > div span {
  font-size: 12px;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info > div a {
  color: var(--text-blue);
  text-wrap: nowrap;
}
.modal-overlay > .modal-window-notifications > .notification-card > div.info > div a:hover {
  text-decoration: underline;
}
.modal-overlay > .modal-window.modal-sm {
  max-width: 400px;
}
.modal-overlay > .modal-window.modal-md {
  max-width: 500px;
}
.modal-overlay > .modal-window.modal-lg {
  max-width: 600px;
}
.modal-overlay > .modal-window.modal-mid-xl {
  max-width: 700px;
}
.modal-overlay > .modal-window.modal-xl {
  max-width: 800px;
}
.modal-overlay > .modal-window > .modal-title, .modal-overlay > .modal-window > .modal-subtitle {
  transition: all 0.3s ease;
}
.modal-overlay > .modal-window > .modal-header {
  padding: 0 28px;
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row {
  width: 100%;
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row > .modal-title {
  font-size: 28px;
  font-weight: 600;
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row > .modal-subtitle {
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 12px;
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row > .modal-subtitle > .bold {
  color: var(--text-black);
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row > .modal-subtitle .text-highlight {
  font-weight: 600;
  color: var(--text-green);
  text-wrap: nowrap;
}
.modal-overlay > .modal-window > .modal-header > .modal-title-row > .modal-subtitle .fs-16 {
  font-size: 16px !important;
}
.modal-overlay > .modal-window > .modal-header.align-left {
  justify-content: start;
}
.modal-overlay > .modal-window > .modal-header.align-left > .modal-title-row > .modal-title {
  max-width: 90%;
}
.modal-overlay > .modal-window > .modal-header.align-center {
  justify-content: center;
  text-align: center;
}
.modal-overlay > .modal-window > .modal-header.align-center::before {
  content: "";
}
.modal-overlay > .modal-window > .modal-content:has(div.profile-modal-content) {
  padding: 0;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) {
  padding: 0;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons {
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons > div {
  display: flex;
  width: 100%;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons label {
  flex: 1;
  margin: 0;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons label span {
  display: block;
  padding: 16px 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  background-color: #fff;
  box-shadow: 0 0 0 1px var(--text-grey);
  color: var(--text-grey);
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  margin-top: 1px;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons label:first-child span {
  border-radius: 20px 0 0 20px;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons label:last-child span {
  border-radius: 0 20px 20px 0;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) section.radio-buttons input[type=radio]:checked + span {
  background-color: var(--btn-green);
  box-shadow: 0 0 0 1px var(--btn-green);
  color: #fff;
  position: relative;
  z-index: 1;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) div.modal-login {
  gap: 32px;
  display: flex;
  flex-direction: column;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) div.modal-login .modal-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) div.modal-login .modal-subtitle {
  margin-top: 12px;
  text-align: center;
  color: var(--text-grey);
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) div.modal-login .modal-subtitle > span.bold {
  color: var(--text-black);
}
.modal-overlay > .modal-window > .modal-content:has(div.modal-login) div.modal-login .modal-login-content {
  padding: 0 28px;
}
.modal-overlay > .modal-window > .modal-content:has(section.application-info) {
  padding: 0;
  gap: 20px;
}
.modal-overlay > .modal-window > .modal-content:has(section.application-info) .modal-close {
  top: 24px;
}
.modal-overlay > .modal-window > .modal-content {
  display: grid;
  gap: 32px;
  padding: 0 28px;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.modal-overlay > .modal-window > .modal-content button.w-full {
  width: 100%;
}
.modal-overlay > .modal-window > .modal-content .modal-legal {
  padding: 0 28px;
}
.modal-overlay > .modal-window > .modal-content .modal-legal h1, .modal-overlay > .modal-window > .modal-content .modal-legal h2, .modal-overlay > .modal-window > .modal-content .modal-legal h3 {
  color: var(--text-black);
  font-size: 14px;
}
.modal-overlay > .modal-window > .modal-content .modal-legal a {
  color: var(--text-blue);
  transition: opacity 0.3s ease;
}
.modal-overlay > .modal-window > .modal-content .modal-legal a:hover {
  opacity: 0.6;
}
.modal-overlay > .modal-window > .modal-content .modal-legal p {
  margin-bottom: 10px;
}
.modal-overlay > .modal-window > .modal-content .modal-legal ul {
  margin-left: 30px;
  list-style-type: disc;
  margin-bottom: 15px;
}
.modal-overlay > .modal-window > .modal-content .modal-legal ul > li {
  list-style: disc;
}
.modal-overlay > .modal-window > .modal-content .modal-legal .underline {
  text-decoration: underline;
}
.modal-overlay > .modal-window > .modal-content .modal-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.modal-overlay > .modal-window > .modal-content .modal-success > .modal-success-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgb(227, 242, 228);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay > .modal-window > .modal-content .modal-success > .modal-success-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-alert {
  background-color: rgba(210, 72, 72, 0.1);
  display: inline-flex;
  padding: 12px 20px;
  gap: 12px;
  border-radius: 12px;
  font-size: 14px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-alert svg {
  min-width: 20px;
  width: 20px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-info h1 {
  font-size: 28px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-info span {
  font-size: 14px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 70%;
  width: 100%;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-benefits li {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  color: rgb(102, 112, 133);
  font-size: 16px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-price h1 {
  font-size: 40px;
}
.modal-overlay > .modal-window > .modal-content .modal-subscription-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.modal-overlay > .modal-window > .modal-content .modal-danger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.modal-overlay > .modal-window > .modal-content .modal-danger > .modal-danger-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(210, 72, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay > .modal-window > .modal-content .modal-danger > .modal-danger-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.modal-overlay > .modal-window > .modal-content .modal-danger > .modal-danger-btns {
  display: flex;
  flex-direction: row;
  flex: 1 0;
  width: 100%;
  gap: 10px;
  justify-content: center;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content {
  display: grid;
  gap: 20px;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-modal-header > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-modal-header > div img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-modal-header > div div {
  display: flex;
  flex-direction: column;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-modal-header > div div > span {
  font-size: 14px;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > nav {
  padding: 0 20px;
  display: grid;
  gap: 8px;
  user-select: none;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > nav > li {
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
  transition: all 0.3s ease;
  color: var(--text-grey);
  cursor: pointer;
  font-size: 16px;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > nav > li > svg > path {
  stroke: var(--text-grey);
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > nav > li:hover {
  background-color: rgb(241, 242, 244);
  color: var(--btn-green);
  opacity: 0.8;
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > nav > li:hover > svg > path {
  stroke: var(--btn-green);
}
.modal-overlay > .modal-window > .modal-content .profile-modal-content > .profile-add-btn {
  padding: 0 20px;
}
.modal-overlay > .modal-window > .modal-content .logout-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.modal-overlay > .modal-window > .modal-content .logout-modal-content > h1 {
  font-size: 28px;
}
.modal-overlay > .modal-window > .modal-content .logout-modal-content > span {
  font-size: 16px;
}
.modal-overlay > .modal-window > .modal-content .radio-input {
  display: flex;
  flex-direction: row;
  gap: 20px;
  user-select: none;
}
.modal-overlay > .modal-window > .modal-content .radio-input label {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-line);
}
.modal-overlay > .modal-window > .modal-content .radio-input label > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.modal-overlay > .modal-window > .modal-content .radio-input label > div > div {
  background-color: rgb(249, 249, 249);
  width: 52px;
  height: 52px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal-overlay > .modal-window > .modal-content .radio-input label > div > div svg {
  transition: all 0.3s ease;
}
.modal-overlay > .modal-window > .modal-content .radio-input label > div > div svg g {
  opacity: 0.4;
}
.modal-overlay > .modal-window > .modal-content .radio-input label > div > div svg g path {
  fill: rgb(150, 150, 150);
}
.modal-overlay > .modal-window > .modal-content .radio-input label:has(input:checked) {
  border: 1px solid var(--btn-primary);
  box-shadow: 0px 2px 20px -2px rgba(0, 37, 86, 0.12);
}
.modal-overlay > .modal-window > .modal-content .radio-input label:has(input:checked) > div > div {
  width: 72px;
  height: 72px;
  background-color: rgba(28, 146, 32, 0.12);
}
.modal-overlay > .modal-window > .modal-content .radio-input label:has(input:checked) > div > div svg {
  transform: scale(1.25);
}
.modal-overlay > .modal-window > .modal-content .radio-input label:has(input:checked) > div > div svg g {
  opacity: 1;
}
.modal-overlay > .modal-window > .modal-content .radio-input label:has(input:checked) > div > div svg g path {
  fill: rgb(28, 146, 32);
}
.modal-overlay > .modal-window .modal-close {
  position: absolute;
  top: 32px;
  right: 35px;
  width: 32px;
  height: 32px;
  padding: 0;
}
.modal-overlay > .modal-window .modal-close-btn {
  position: initial;
  width: 32px;
  height: 32px;
  padding: 0;
}
.modal-overlay > .modal-window textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  padding: 12px;
  resize: vertical;
  max-height: 500px;
  min-height: 80px;
  border: 1px solid var(--border-line);
  border-radius: 8px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}
.modal-footer-btns {
  display: flex;
  flex-direction: row;
  flex: 1 0;
  width: 100%;
  gap: 10px;
  justify-content: center;
}
.modal-footer button.w-full {
  width: 100%;
}
.modal-footer span {
  color: var(--text-grey);
}
.modal-footer a {
  text-decoration: underline;
}
.modal-footer a:hover {
  color: var(--text-black);
}

.modal-button.primary {
  background-color: #007bff;
  color: white;
}

.modal-button.secondary {
  background-color: #6c757d;
  color: white;
}

.inputs-group-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.input-group > span.input-error {
  color: var(--text-error);
}
.input-group .upload-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  border: 1px dashed var(--border-line);
  border-radius: 12px;
}
.input-group .upload-area.invalid {
  border-color: var(--text-error);
}
.input-group .upload-area.hover {
  border-color: var(--text-black);
}
.input-group .upload-area span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--text-black);
}
.input-group .uploaded-files .file {
  border-radius: 12px;
  border: 1px solid var(--border-line);
  padding: 12px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.input-group .uploaded-files .file div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.input-group .uploaded-files .file svg.delete {
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.input-group .uploaded-files .file svg.delete:hover {
  opacity: 0.6;
}
.input-group label {
  font-size: 14px;
  font-weight: 600;
}
.input-group input {
  padding: 12px;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-line);
  transition: all 0.3s ease;
  color: var(--text-black);
}
.input-group input.no-spin {
  -moz-appearance: textfield;
}
.input-group input.no-spin::-webkit-outer-spin-button, .input-group input.no-spin::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-group input.phone-with-flag {
  padding-left: 44px;
}
.input-group .input-flag {
  position: absolute;
  top: 14px;
  left: 12px;
}
.input-group input:focus {
  box-shadow: 0px 0px 0px 1px rgba(72, 126, 219, 0.52) inset, 0px 0px 0px 2px rgb(218, 229, 248);
}
.input-group input.success:focus {
  box-shadow: none;
}
.input-group input.success {
  font-size: 16px;
}
.input-group label.required::after {
  content: "*";
  color: var(--text-error);
  margin-left: 3px;
}
.input-group > div.inputs-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-group > div.inputs-range span {
  color: var(--text-grey);
}
.input-group textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  padding: 12px;
  resize: vertical;
  max-height: 500px;
  border: 1px solid var(--border-line);
  border-radius: 8px;
}

.date-control {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.date-control > span {
  margin-right: 4px;
}

.date-control button {
  border: 1px solid var(--border-line);
  border-radius: 8px;
  cursor: pointer;
  max-width: 48px;
  width: 100%;
  height: 48px;
}

.datepicker-wrapper {
  position: relative;
  display: flex;
  flex: 1 0;
}
.datepicker-wrapper input.date-input {
  height: 48px;
}

.datepicker {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgb(245, 247, 250);
  padding-top: 12px;
  padding-bottom: 20px;
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
  z-index: 100;
}
.datepicker div.horizontal-line {
  margin: 20px 0;
}

.datepicker-header,
.datepicker-footer {
  display: flex;
  align-items: center;
}

.datepicker-footer {
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
}
.datepicker-footer .btn {
  width: 100%;
}

.datepicker-header {
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  width: 320px;
  margin-bottom: 8px;
}
.datepicker-header > button.prev svg, .datepicker-header > button.next svg {
  transition: all 0.3s ease;
}
.datepicker-header > button.prev svg > path, .datepicker-header > button.next svg > path {
  stroke: #969696;
}
.datepicker-header > button.prev:hover svg > path, .datepicker-header > button.next:hover svg > path {
  stroke: #22232D;
}

.datepicker-header select {
  margin: 0 5px;
  padding: 2px 4px;
}

.datepicker-header select.year-select {
  width: 80px;
}

.days, .dates {
  display: grid;
  grid-template-columns: repeat(7, 32px);
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.days span {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

.dates button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
}

.dates button:hover {
  border: 1px solid var(--border-line);
  background-color: rgb(226, 226, 226);
}

.dates button.selected {
  background-color: var(--btn-green);
  color: #fff;
}

.dates button.today {
  border: 1px solid var(--border-line);
  background-color: rgb(221, 249, 225);
  color: var(--text-black);
}

.dates button.other-month, .dates button:disabled {
  color: var(--text-grey);
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 10px;
}

.loader div {
  width: 8%;
  height: 24%;
  background: rgb(72, 126, 219);
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  animation: fade458 1s linear infinite;
}

@keyframes fade458 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
.loader .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.loader .bar2 {
  transform: rotate(45deg) translate(0, -130%);
  animation-delay: -0.9s;
}

.loader .bar3 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.8s;
}

.loader .bar4 {
  transform: rotate(135deg) translate(0, -130%);
  animation-delay: -0.7s;
}

.loader .bar5 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}

.loader .bar6 {
  transform: rotate(225deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.loader .bar7 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.4s;
}

.loader .bar8 {
  transform: rotate(315deg) translate(0, -130%);
  animation-delay: -0.3s;
}

.container:has(.filter-section.show) .cards .card {
  max-height: 320px;
}

.cards {
  display: grid;
  gap: 12px;
  width: 100%;
}
.cards .card {
  background-color: var(--bg-light);
  padding: 20px 0;
  border-radius: 20px;
  box-shadow: 0 0 4px 0 rgba(0, 54, 124, 0.12);
  display: flex;
  flex-direction: column;
}
.cards .card header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: none;
  color: var(--text-grey);
}
.cards .card header .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.cards .card header .info .price {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-green);
}
.cards .card header .info button {
  display: contents;
}
.cards .card section {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 12px;
  flex: 1 0;
}
.cards .card section .card-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.cards .card section .card-title h4 {
  font-weight: 600;
  font-size: 20px;
}
.cards .card section .card-title .badge {
  background-color: rgba(210, 139, 72, 0.09);
  color: rgb(255, 118, 59);
  gap: 4px;
  padding: 2px 8px;
  text-wrap: nowrap;
}
.cards .card section .card-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--text-grey);
  flex-wrap: wrap;
}
.cards .card section .card-info span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.cards .card section .card-description {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 120%;
}
.cards .card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 0;
  flex-direction: row;
}
.cards .card footer span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.cards .card .horizontal-line {
  margin: 12px 0;
}
.cards .card:hover {
  cursor: pointer;
}
.cards .card:hover .card-title h4 {
  color: var(--text-blue);
}

ul.breadcrumbs {
  display: flex;
  list-style: none;
  flex-direction: row;
  font-size: 12px;
  color: var(--text-grey);
  gap: 6px;
}
ul.breadcrumbs > li > a:hover {
  text-decoration: underline;
}
ul.breadcrumbs > li + li:before {
  content: "/ ";
  color: var(--text-grey);
  font-weight: 400;
}
ul.breadcrumbs > li:last-child {
  color: var(--text-black);
  font-weight: 600;
}

div.upload-photo {
  display: flex;
  flex-direction: column;
  max-width: 160px;
  width: 100%;
  text-align: center;
  gap: 12px;
}

section.upload-photo {
  display: flex;
  flex-direction: column;
  max-width: 160px;
  width: 100%;
  height: 160px;
  border-radius: 50%;
  background-color: var(--bg-light);
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
section.upload-photo:has(.delete-photo-div:hover) > .profile-photo {
  opacity: 0.2;
}
section.upload-photo.invalid {
  border: 1px solid var(--text-error);
}
section.upload-photo > img.profile-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
}
section.upload-photo > div.upload-photo-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 148px;
  height: 148px;
  background-color: rgba(78, 164, 47, 0.08);
  border-radius: 50%;
  position: absolute;
  z-index: 99;
}
section.upload-photo > div.upload-photo-div svg {
  margin-bottom: 12px;
}
section.upload-photo > div.upload-photo-div h4 {
  font-size: 14px;
}
section.upload-photo > div.upload-photo-div span {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-grey);
}
section.upload-photo > div.delete-photo-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  z-index: 99;
  opacity: 0;
  width: 148px;
  height: 148px;
}
section.upload-photo > div.delete-photo-div:hover {
  opacity: 1;
}
section.upload-photo > div.delete-photo-div:hover ~ .profile-photo {
  opacity: 0.2;
}
section.upload-photo > div.delete-photo-div div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-line);
}
section.upload-photo > div.delete-photo-div div:hover {
  background-color: var(--btn-secondary);
}

@media (min-width: 1280px) {
  .modal-overlay.modal-bottom {
    align-items: center;
  }
  .modal-content {
    max-height: 70vh;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1280px) {
  .modal-overlay.modal-bottom {
    align-items: center;
  }
  .modal-content {
    max-height: 70vh;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .datepicker {
    top: -400px;
  }
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .modal-content {
    max-height: 100vh;
  }
  .modal-overlay > .modal-window > .modal-content .modal-subscription-info h1 {
    font-size: 24px;
  }
  .modal-overlay > .modal-window > .modal-content .modal-subscription-btns {
    flex-direction: column;
  }
  .modal-overlay.modal-full > .modal-window {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    top: 0;
    position: fixed;
    left: 0;
    max-width: none;
  }
  .modal-overlay.modal-full > .modal-window > .modal-content > .modal-login .radio-input {
    flex-direction: column;
  }
  button.w-200 {
    width: 100%;
  }
  button.w-250 {
    width: 100%;
  }
  .modal-content > .logout-modal-content > h1 {
    font-size: 20px !important;
  }
  .modal-overlay.modal-center > .modal-window {
    width: 90%;
  }
  .modal-overlay.modal-bottom {
    bottom: 0;
    top: auto;
    align-items: end;
  }
  .modal-overlay.modal-bottom > .modal-window {
    border-radius: 16px 16px 0 0;
  }
  .modal-overlay.modal-bottom > .modal-window > .modal-header > .modal-title-row {
    width: 88%;
  }
  .modal-overlay.modal-bottom > .modal-window > .modal-header > .modal-title-row .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*# sourceMappingURL=components.css.map */
