@font-face {
  font-family: "Gluten-Regular";
  src: url("../fonts/Gluten-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
:root {
  --bg-light: rgba(255, 255, 255, 1);
  --bg-dark: rgba(246, 246, 246, 1);
  --bg-ascent: rgba(29, 94, 201, 1);
  --btn-primary: rgba(28, 146, 32, 1);
  --btn-secondary: rgba(241, 242, 244, 1);
  --btn-darkgray: rgba(226, 226, 226, 1);
  --btn-darkblue: rgba(48, 75, 134, 1);
  --btn-green: rgba(29, 94, 201, 1);
  --btn-tertiary: rgba(255, 255, 255, 1);
  --text-black: rgba(34, 35, 45, 1);
  --text-white: rgba(255, 255, 255, 1);
  --text-grey: rgba(150, 150, 150, 1);
  --text-green: rgba(28, 146, 32, 1);
  --text-blue: rgba(29, 94, 201, 1);
  --text-error: rgba(210, 72, 72, 1);
  --border-line: rgba(217, 221, 234, 1);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:focus-visible {
  box-shadow: 0px 0px 0px 1px rgba(72, 126, 219, 0.52) inset, 0px 0px 0px 2px rgb(218, 229, 248);
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-dark);
  font-family: "Inter", serif;
  font-weight: 400;
  font-size: 14px;
}

main {
  flex: 1;
}

body > header {
  height: 70px;
  z-index: 999;
}

header {
  border-bottom: 1px solid var(--border-line);
  padding: 0;
  background-color: var(--bg-light);
}
header div.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header div.container .header-title {
  font-family: "Inter-Bold", serif;
  font-size: 32px;
  letter-spacing: -6%;
  font-weight: 700;
  color: var(--text-black);
}
header div.container .header-search {
  flex-direction: row;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  justify-content: end;
}
header div.container .header-search input {
  width: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  transition: width 0.3s ease;
  position: relative;
  right: -45px;
}
header div.container .header-search .search-results {
  display: none;
  position: absolute;
  width: 100%;
  right: -12px;
  top: 50px;
  max-width: 500px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-line);
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
}
header div.container .header-search .search-results:not(:has(li.non-clickable)) {
  color: var(--text-grey);
  cursor: pointer;
}
header div.container .header-search .search-results > li {
  padding: 12px 12px;
  display: flex;
  font-size: 16px;
  white-space: pre-wrap;
}
header div.container .header-search .search-results > li .black {
  color: var(--text-black);
  font-weight: 600;
}
header div.container .header-search .search-results > li:not(:last-child) {
  border-bottom: 1px solid var(--border-line);
}
header div.container .header-search.active input {
  max-width: 500px;
  width: 100%;
  padding: 12px;
  opacity: 1;
}
header div.container .header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1 0 auto;
  justify-content: end;
}
header div.container .header-actions .header-locale-wrapper {
  padding: 12px;
  border: 1px solid var(--border-line);
  width: 66px;
}
header div.container .header-actions .header-locale-wrapper > span {
  gap: 4px;
  color: var(--text-black);
}
header div.container .header-actions .header-locale-wrapper > span > svg {
  margin-right: 0;
}
header div.container .header-actions .header-locale-wrapper > .dropdown-menu {
  left: -40px;
}
header div.container .header-actions .header-auth-group {
  display: flex;
  flex-direction: row;
}
header div.container .header-actions .header-auth-group button:first-child {
  margin-right: 12px;
}
header div.container .header-actions .header-auth-group button:last-child {
  width: 105px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: 0.3s;
}
header div.container .header-actions .header-auth-group button:last-child > svg {
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}
header div.container .header-actions .header-auth-group button:last-child:hover > svg {
  opacity: 1;
  width: 20px;
}
header div.container .header-actions img.header-avatar {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-right: 8px;
}
header div.container .header-actions .header-profile-group {
  display: flex;
  align-items: center;
}
header div.container .header-actions .header-profile-group .header-notification-btn {
  width: 44px;
  height: 44px;
  padding: 12px;
  position: relative;
}
header div.container .header-actions .header-profile-group .header-notification-btn svg {
  margin-right: 0;
}
header div.container .header-actions .header-profile-group .header-notification-btn span.notification-count-badge {
  position: absolute;
  background: var(--btn-green);
  border-radius: 50%;
  color: #fff;
  top: -8px;
  right: -11px;
  border: 2px solid #fff;
  padding: 4px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  display: none;
  width: 28px;
  height: 28px;
}
header div.container .header-actions .header-profile-group .vertical-line {
  height: 70px;
  margin-left: 24px;
  margin-right: 0;
}
header div.container .header-actions .header-profile-group .vertical-line:last-child {
  margin-right: 0;
  margin-left: 0;
}
header div.container .header-actions .header-profile-group .header-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0 24px;
}
header div.container .header-actions .header-profile-group .header-profile div.profile-menu {
  position: absolute;
  left: 0;
  width: 100%;
  top: 57px;
  background: rgb(241, 242, 244);
  border-radius: 0 0 8px 8px;
  display: flex;
  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;
  max-height: 0;
  overflow: hidden;
}
header div.container .header-actions .header-profile-group .header-profile div.profile-menu > li {
  padding: 10px;
  gap: 8px;
  display: flex;
  background: rgb(255, 255, 255);
  font-size: 16px;
  transition: background-color 0.3s ease;
}
header div.container .header-actions .header-profile-group .header-profile div.profile-menu > li:first-child {
  margin-bottom: 1px;
}
header div.container .header-actions .header-profile-group .header-profile div.profile-menu > li:last-child {
  margin-top: 8px;
  border-radius: 0 0 8px 8px;
}
header div.container .header-actions .header-profile-group .header-profile div.profile-menu > li:hover {
  background: rgb(241, 242, 244);
}
header div.container .header-actions .header-profile-group .header-profile.show > div > span > svg:last-child {
  transform: rotate(180deg);
}
header div.container .header-actions .header-profile-group .header-profile.show > div > span > svg:last-child > path {
  fill: var(--text-black);
}
header div.container .header-actions .header-profile-group .header-profile.show > .profile-menu {
  flex-direction: column;
  box-shadow: 0px 1px 12px -2px rgba(0, 70, 163, 0.15);
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
  max-height: 250px;
}
header div.container .header-actions .header-profile-group .header-profile div {
  display: flex;
  flex-direction: column;
}
header div.container .header-actions .header-profile-group .header-profile div span:first-child {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
  text-wrap: nowrap;
}
header div.container .header-actions .header-profile-group .header-profile div span#logged-user-type {
  color: var(--text-grey);
}

footer {
  background-color: var(--bg-light);
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: 60px;
}
footer div.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer div.container .footer-legal {
  display: flex;
  align-items: center;
}
footer div.container .footer-legal nav {
  display: flex;
}
footer div.container .footer-legal nav a {
  text-decoration: underline;
  color: var(--text-black);
  transition: all 0.3s ease;
}
footer div.container .footer-legal nav a:hover {
  color: var(--text-grey);
}
footer div.container .footer-legal nav li:not(:last-child) {
  margin-right: 32px;
}
footer div.container .footer-legal nav li.separator {
  width: 1px;
  height: auto;
  background: var(--border-line);
}
footer div.container .footer-legal .footer-title {
  font-family: "Inter-Bold", serif;
  font-size: 32px;
  letter-spacing: -6%;
  font-weight: 700;
  color: var(--text-black);
  margin-right: 40px;
}
footer div.container .footer-downloads {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
footer div.container .footer-download-link {
  height: 40px;
}
footer div.container .footer-download-link div {
  display: flex;
  flex-direction: column;
}
footer div.container .footer-download-link div span {
  font-size: 6px;
}
footer .horizontal-line {
  margin: 12px 0;
}
footer .copyright {
  text-align: center;
  color: var(--text-grey);
}

.vertical-line {
  width: 1px;
  align-self: stretch;
  margin: 0 12px;
  background-color: var(--border-line);
}

.horizontal-line {
  height: 1px;
  width: 100%;
  background-color: var(--border-line);
}

.text-muted {
  color: var(--text-grey);
}

.container {
  max-width: 1280px;
  width: 100%;
  height: inherit;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
  .only-mobile {
    display: none !important;
  }
  .only-mobile.flex {
    display: none !important;
  }
  .only-pc {
    display: block !important;
  }
  .only-pc.flex {
    display: flex !important;
  }
  #header-help-btn {
    display: flex;
  }
  header div.container .header-actions {
    gap: 24px;
  }
  header div.container .header-actions .header-locale-wrapper > .dropdown-menu {
    left: -40px;
  }
  header div.container .header-title {
    font-size: 32px;
  }
  header div.container #header-logged-user, header div.container #header-logged-guest {
    display: flex;
  }
  header div.container #mobile-user {
    display: none;
  }
}
@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
  .only-mobile {
    display: none !important;
  }
  .only-mobile.flex {
    display: none !important;
  }
  .only-pc {
    display: block !important;
  }
  .only-pc.flex {
    display: flex !important;
  }
  header div.container #header-logged-user, header div.container #header-logged-guest {
    display: none !important;
  }
  header div.container #mobile-user {
    display: flex !important;
  }
  footer div.container {
    flex-direction: row;
  }
  footer div.container .horizontal-line {
    margin: 12px 0;
  }
  footer div.container .footer-legal {
    flex-direction: row;
  }
  footer div.container .footer-legal nav {
    flex-direction: row;
  }
  footer div.container .footer-legal nav li:not(:last-child) {
    margin-right: 32px;
  }
  footer div.container .footer-legal .footer-title {
    margin-right: 40px;
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  section.main-section div.container div.info h1 {
    font-size: 32px;
  }
  section.main-section div.container div.info h4 {
    font-size: 16px;
  }
  .datepicker-left {
    left: 0;
    right: unset;
  }
  .datepicker-right {
    right: 0;
    left: unset;
  }
  .only-mobile {
    display: block !important;
  }
  .only-mobile.flex {
    display: flex !important;
  }
  .only-pc {
    display: none !important;
  }
  .only-pc.flex {
    display: none !important;
  }
  #header-help-btn {
    display: none;
  }
  header div.container .header-actions {
    gap: 16px;
  }
  header div.container .header-actions .header-locale-wrapper > .dropdown-menu {
    left: -90px;
  }
  header div.container .header-title {
    font-size: 28px;
  }
  footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  footer div.container {
    flex-direction: column;
    gap: 20px;
  }
  footer div.container .horizontal-line {
    margin: 0;
  }
  footer div.container .footer-legal {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  footer div.container .footer-legal .footer-title {
    margin-right: 0;
    font-size: 40px;
  }
  footer div.container .footer-legal nav {
    flex-direction: column;
    gap: 20px;
  }
  footer div.container .footer-legal nav li:not(:last-child) {
    margin-right: 0;
  }
  footer div.container .footer-legal nav li:first-child {
    text-align: center;
  }
  footer div.container .footer-legal nav li.separator {
    width: auto;
    height: 1px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  header div.container .header-search .search-results {
    top: 60px;
    right: 45px;
  }
  header div.container .header-search.active {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    background: white;
    height: 70px;
    padding-right: 60px;
    z-index: 5555;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  appearance: none;
}

input[type=radio] {
  background-color: transparent;
  border: 1px solid var(--border-line);
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
input[type=radio]:checked {
  border-color: var(--text-green);
  -webkit-animation: puls 0.7s forwards;
  animation: pulse 0.7s forwards;
}
input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--text-green);
  transform: scale(0);
}
input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=checkbox] {
  content: 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_136_2569)'%3E%3Crect x='1.33301' y='1.33333' width='17.3333' height='17.3333' rx='3.5' fill='white' stroke='%23E2E2E2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_136_2569'%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");
  border: 1px solid rgb(226, 226, 226);
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
input[type=checkbox]:hover {
  border: 1px solid rgb(28, 146, 32);
}
input[type=checkbox].invalid {
  border: 1px solid var(--text-error);
}
input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
input[type=checkbox]:checked {
  content: 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_136_2572)'%3E%3Crect x='0.833008' y='0.833344' width='18.3333' height='18.3333' rx='4' fill='%231C9220'/%3E%3Cg clip-path='url(%23clip1_136_2572)'%3E%3Cpath d='M5.13965 9.99999L8.61187 13.4722L15.5563 6.52777' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_136_2572'%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%3CclipPath id='clip1_136_2572'%3E%3Crect width='16.6667' height='16.6667' fill='white' transform='translate(1.66699 1.66666)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

img {
  object-fit: cover;
}

input, textarea {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: text;
  outline: none;
  box-shadow: none;
  appearance: none;
}
input.invalid, textarea.invalid {
  border: 1px solid rgb(251, 32, 71) !important;
}

.w-200 {
  width: 200px;
}

.w-250 {
  width: 250px;
}

.black {
  color: var(--text-black);
}

.gray {
  color: var(--text-grey);
}

.text-blue {
  color: var(--text-blue);
}

.text-green {
  color: var(--text-green);
}

.text-error {
  color: var(--text-error);
}

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

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 600;
}

.normal {
  font-weight: 400;
}

div.element-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

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