@font-face {
  font-family: "MyriadPro-Regular";

  src: url("../fonts/MyriadPro-Regular.eot");

  src: url("../fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/MyriadPro-Regular.woff") format("woff"), url("../fonts/MyriadPro-Regular.woff2") format("woff2"), url("../fonts/MyriadPro-Regular.ttf") format("truetype"), url("../fonts/MyriadPro-Regular.svg#MyriadPro-Regular") format("svg");

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "MyriadPro-Regular";

  src: url("../fonts/MyriadPro-Bold.eot");

  src: url("../fonts/MyriadPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/MyriadPro-Bold.woff") format("woff"), url("../fonts/MyriadPro-Bold.woff2") format("woff2"), url("../fonts/MyriadPro-Bold.ttf") format("truetype"), url("../fonts/MyriadPro-Bold.svg#MyriadPro-Bold") format("svg");

  font-weight: 700;
}

:root {
  --color-base: #1b4591;
  --color-primary: #406bb9;
  --color-secondary: #eec442;
  --color-grey: #c0c0c0;
  --image-url-array: url("/assets/img/btn-arr.png");
}

html, body {
  min-height: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

body > div {
  flex: 1 0 auto;
}

body > footer {
  flex: 0 0 auto;
}

input[type=text] {
  border: 1px solid var(--color-secondary);
  padding: 3px 10px;
  width: 100%;
  max-width: 100%;
}

/* inputs */

.inputs .input label {
  display: flex;
  align-items: center;
}

.inputs .input label .label {
  width: 50%;
}

.inputs .input label .field {
  width: 50%;
}

.inputs .input label .field input[type=text],
.inputs .input label .field input[type=password] {
  border: 1px solid var(--color-secondary);
  padding: 3px 10px;
  width: 100%;
  max-width: 100%;
}

.inputs .input.w-i-1\/12 .label {
  width: 8.333333%;
}

.inputs .input.w-i-1\/12 .field {
  width: 91.666666%;
}

.inputs .input.w-i-2\/12 .label {
  width: 16.666667%;
}

.inputs .input.w-i-2\/12 .field {
  width: 83.333333%;
}

.inputs .input.w-i-3\/12 .label {
  width: 25%;
}

.inputs .input.w-i-3\/12 .field {
  width: 75%;
}

.inputs .input.w-i-4\/12 .label {
  width: 33.333333%;
}

.inputs .input.w-i-4\/12 .field {
  width: 66.666667%;
}

.inputs .input.w-i-5\/12 .label {
  width: 41.666667%;
}

.inputs .input.w-i-5\/12 .field {
  width: 58.333333%;
}

.inputs .input.w-i-6\/12 .label {
  width: 50%;
}

.inputs .input.w-i-6\/12 .field {
  width: 50%;
}

.inputs .input.w-i-7\/12 .label {
  width: 58.333333%;
}

.inputs .input.w-i-7\/12 .field {
  width: 41.666667%;
}

.inputs .input.w-i-8\/12 .label {
  width: 66.666667%;
}

.inputs .input.w-i-8\/12 .field {
  width: 33.333333%;
}

.inputs .input.w-i-9\/12 .label {
  width: 75%;
}

.inputs .input.w-i-9\/12 .field {
  width: 25%;
}

.inputs .input.w-i-10\/12 .label {
  width: 83.333333%;
}

.inputs .input.w-i-10\/12 .field {
  width: 16.666667%;
}

.inputs .input.w-i-11\/12 .label {
  width: 91.666666%;
}

.inputs .input.w-i-11\/12 .field {
  width: 8.333333%;
}

.inputs .input.w-i-12\/12 .label {
  width: 100%;
}

.inputs .input.w-i-12\/12 .field {
  width: 100%;
}

/* loader */

.is-loader-active {
  position: relative;
  opacity: 0.5;
}

.is-loader-active .loader {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-grey);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  animation: loaderRotation 1s linear infinite;
  top: 100px;
  left: 50%;
}

.is-loader-active .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid;
  border-color: var(--color-primary) transparent;
}

@keyframes loaderRotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn {
  display: inline-block;
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: var(--color-base) !important;
}

.btn:hover {
  background-color: var(--color-primary) !important;
}

.btn.is-disabled {
  cursor: default;
  background-color: var(--color-grey) !important;
  pointer-events: none;
  text-decoration: none;
}

.btn.is-loading {
  cursor: default;
  background-color: var(--color-grey) !important;
  pointer-events: none;
  text-decoration: none;
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: btn-flickering 2s ease 0s infinite normal backwards;
  /* IE 10+, Fx 29+ */
}

@keyframes btn-flickering {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0.7;
  }
}

.btn-nav {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid var(--color-secondary);
  position: relative;
}

.btn-nav:after {
  content: "";
  display: inline-block;
  background-image: var(--image-url-array);
  width: 7px;
  height: 12px;
  position: absolute;
  top: 7px;
  right: 0.5rem;
  background-repeat: no-repeat;
}

.btn-nav:hover {
  border: 1px solid var(--color-base);
  text-decoration: none;
}

.container {
  font-family: "MyriadPro-Regular";
  max-width: 1315px !important;
  font-size: 9pt;
}

.col-w-1 {
  width: 13%;
}

.col-w-2 {
  width: 67%;
}

.col-w-3 {
  width: 20%;
}

.logo .is-hidden-xs {
  margin-top: 10px;
  position: absolute;
  max-width: 162px;
  z-index: 1;
}

.menu ul li {
  position: relative;
  display: flex;
}

.menu ul li > a {
  padding: 4px 8px;
}

.menu ul li > a.is-active, .menu ul li:hover > a {
  background-color: var(--color-base);
  color: var(--color-secondary);
  border-radius: 5px;
}

.menu ul li > ul {
  display: none;
  position: absolute;
  top: 20px;
  background: var(--color-base);
  padding: 0.8rem 0.7rem 0.4rem 0.7rem;
  border-radius: 5px;
  color: #fff;
  min-width: -moz-max-content;
  min-width: max-content;
  z-index: 10;
}

.menu ul li > ul li {
  padding: 2px 0;
  display: block;
}

.menu ul li:hover > ul {
  display: block;
}

h1, h2, h3, .block-h {
  color: #1b4591;
  font-weight: 700 !important;
}

main .col-w-1, main .col-w-3 {
  position: relative;
}

main .col-w-1 .col-content-left, main .col-w-3 .col-content-left {
  position: relative;
  top: 32px;
}

main .col-w-1 .col-content-right, main .col-w-3 .col-content-right {
  position: relative;
  top: -26px;
}

main a:hover {
  text-decoration: underline;
}

footer {
  background-color: #4f4f4f;
  height: 30px;
  border-top: 5px solid;
  border-color: var(--color-secondary);
  position: relative;
}

.request-buttons .button {
  margin-bottom: 0.5rem;
  text-align: center;
  text-decoration-line: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: var(--color-base);
}

.request-buttons .button:hover {
  background-color: var(--color-primary);
}

.request-buttons .button.is-disabled {
  cursor: default;
  background-color: var(--color-grey);
  pointer-events: none;
  text-decoration: none;
}

.request-buttons .button.is-loading {
  cursor: default;
  background-color: var(--color-grey);
  pointer-events: none;
  text-decoration: none;
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: btn-flickering 2s ease 0s infinite normal backwards;
  /* IE 10+, Fx 29+ */
}

.btn-items-group .request-buttons .button {
  margin-right: 1%;
  position: relative;
  width: 24%;
  text-align: center;
  font-size: 12pt;
  padding: 10px;
  margin-bottom: 0.7rem;
}

.btn-items-group .request-buttons .button:hover {
  text-decoration: none;
}

.btn-items-group .request-buttons .button.is-active {
  background: #fff;
  border: 1px solid var(--color-secondary);
  color: #000;
}

.btn-items-group .request-buttons .button.is-active:hover {
  border-color: var(--color-base);
}

.btn-items-group .request-buttons .button.is-dashed {
  background: #fff;
  border: 1px dashed var(--color-base);
  color: #000;
}

.btn-items-group .request-buttons .button.is-dashed:hover {
  border-color: var(--color-secondary);
}

.btn-items-group .request-buttons .button .folder-events {
  display: none;
}

.btn-items-group .request-buttons .button:hover .folder-events {
  display: flex;
  top: 5px;
  right: 5px;
  position: absolute;
}

.btn-items-group .request-buttons .button:hover .folder-events span {
  color: #000;
}

.order-forms .order-forms_form > a.request-buttons .button {
  width: 100%;
  padding: 0.7rem;
  padding-left: 55px;
  font-size: 11pt;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: 10px center;
}

@media not all and (min-width: 1024px) {
  .btn-items-group .request-buttons .button {
    width: 48%;
    margin-bottom: 1rem;
  }
}

.request-buttons .button {
  width: 48%;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 36px;
  padding-right: 0;
  padding-left: 0;
  line-height: 1.1em;
  padding-top: 8px;
  font-size: 8pt;
}

.request-buttons .button.button-calendar {
  background-image: url("/assets/img/icon-calendar.png");
}

.request-buttons .button.button-negotation {
  background-image: url("/assets/img/icon-negotation.png");
}

.request-buttons .button.button-find {
  background-image: url("/assets/img/icon-find.png");
}

.request-buttons .button.button-comp {
  background-image: url("/assets/img/icon-comp.png");
}

.request-buttons .button.button-it {
  background-image: url("/assets/img/icon-it.png");
}

.request-buttons .button.button-ticket {
  background-image: url("/assets/img/icon-ticket.png");
}

.request-buttons .button.button-card {
  background-image: url("/assets/img/icon-card.png");
}

.request-buttons .button.button-pass {
  background-image: url("/assets/img/icon-pass.png");
}

.request-buttons .button.button-vacation {
  background-image: url("/assets/img/icon-vacation-white.png");
  /*border: 1px solid var(--color-secondary);
  background-color: #fff;
  color: black;
  &:hover {
    border: 1px solid var(--color-base);
  }*/
}

.block-events .block-events_item .block-events_item--title {
  color: var(--color-base);
}

.block-events .block-events_item .block-events_item--title:hover {
  text-decoration: underline;
}

.block-events .block-events_item .block-events_item--text span {
  color: var(--color-base);
}

.input-wrapper-calendar {
  position: relative;
}

.input-wrapper-calendar:after {
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  width: 20px;
  background: #e1e1e1 url("/assets/img/icon-calendar-black.png") no-repeat center;
  right: 0;
  border-left: 1px solid var(--color-secondary);
}

.form-vacation .form-vacation_title {
  border-bottom: 1px solid var(--color-secondary);
}

.form-vacation .form-vacation_period .input-wrapper-calendar {
  width: 40%;
}

.news-list .news-list_item {
  margin-top: 20px;
}

.news-list .news-list_item .news-list_item--title {
  display: inline-block;
  margin-top: 0px;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: var(--color-base);
  font-weight: 700;
}

.news-list .news-list_item .news-list_item--title:hover {
  text-decoration: underline;
}

.news-list .news-list_item .news-list_item--text {
  margin-top: 10px;
}

.news-list .news-list_item .news-list_item--detail {
  display: inline-block;
  margin-top: 5px;
  font-size: 9pt;
  border-bottom: 1px dashed;
}

.news-list .news-list_item .news-list_item--detail:hover {
  border-color: transparent;
  text-decoration: none;
}

.news-list .news-list_more {
  text-align: right;
  margin-top: 10px;
}

.news-list .news-list_more a {
  display: inline-block;
  color: var(--color-base);
  border-bottom: 1px dashed;
}

.news-list .news-list_more a:hover {
  border-color: transparent;
  text-decoration: none;
}

.app-calendar .app-calendar_header {
  display: flex;
  justify-content: space-between;
  background: var(--color-base);
  color: #fff;
  border-radius: 5px;
  padding: 5px;
}

.app-calendar .app-calendar_header a {
  display: block;
}

.app-calendar .app-calendar_header a.app-calendar_header--left {
  width: 30px;
  background-image: url("/assets/img/arr-left.png");
  background-position: center;
  background-repeat: no-repeat;
}

.app-calendar .app-calendar_header a.app-calendar_header--right {
  width: 30px;
  background-image: url("/assets/img/arr-right.png");
  background-position: center;
  background-repeat: no-repeat;
}

.app-calendar .app-calendar_names {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.app-calendar .app-calendar_names div {
  width: 14.2857142857%;
  padding: 2px 0;
}

.app-calendar .app-calendar_days {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
}

.app-calendar .app-calendar_days div {
  width: 14.2857142857%;
  cursor: pointer;
  padding: 0px 0;
  position: relative;
}

.app-calendar .app-calendar_days div:hover {
  font-weight: 700;
}

.app-calendar .app-calendar_days div.wd {
  color: rgb(220, 38, 38);
}

.app-calendar .app-calendar_days div.is-active {
  border: 1px solid var(--color-base);
  border-radius: 5px;
}

.app-calendar .app-calendar_days div.is-opacity {
  opacity: 0.5;
}

.app-calendar .app-calendar_days div span {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  width: 3px;
  bottom: 3px;
  right: 2px;
}

.app-calendar .app-calendar_days div span i {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--color-base);
  margin-bottom: 2px;
}

.about-track {
  max-width: 700px;
  position: relative;
  padding-bottom: 35px;
}

.about-track .about-track_title {
  color: var(--color-base);
  font-weight: 700 !important;
  font-size: 12pt;
}

.about-track .about-track_date {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: var(--color-base) !important;
  font-size: 1.2rem;
  font-weight: 700;
}

.about-track:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 29px;
  background: url("/assets/img/icon-track.png") no-repeat center;
  bottom: 0;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.about-track.about-track_not--next:after {
  display: none;
}

.staff-section .staff-section_title {
  position: relative;
}

.staff-section .staff-section_title span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-right: 8px;
}

.staff-section .staff-section_title:after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--color-base);
  position: absolute;
  left: 0;
  bottom: 8px;
}

.staff-section .staff-section_item {
  border: 1px solid var(--color-grey);
  border-radius: 5px;
  width: 24%;
  max-height: 283px;
  margin-bottom: 1rem;
}

.staff-section .staff-section_item .staff-section_item--image {
  margin: 15px;
  border: 1px solid var(--color-grey);
  display: block;
  text-decoration: none;
  height: 134px;
}

.staff-section .staff-section_item .staff-section_item--image img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.staff-section .staff-section_item .staff-section_item--title {
  display: block;
  text-decoration: none;
  text-align: center;
  margin: 0.2rem auto 0;
  font-weight: 700;
  padding-left: 5px;
  padding-right: 5px;
  min-height: 36px;
}

.staff-section .staff-section_item .staff-section_item--text {
  text-align: center;
  margin: 0.3rem auto 0.7rem;
  font-weight: 700;
  padding-left: 5px;
  padding-right: 5px;
  min-height: 36px;
  max-height: 36px;
  overflow: hidden;
}

.staff-section .staff-section_item .staff-section_item--message {
  text-align: center;
  padding: 0.3rem 0;
  border-top: 1px solid var(--color-grey);
  width: 100%;
  display: block;
  font-weight: 700;
}

.staff-section .staff-section_item .staff-section_item--message:hover {
  text-decoration: none;
  background: var(--color-base);
  color: white;
}

.btn-items-group {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
}

.btn-items-group .btn {
  margin-right: 1%;
  position: relative;
  width: 24%;
  text-align: center;
  font-size: 12pt;
  padding: 10px;
  margin-bottom: 0.7rem;
}

.btn-items-group .btn:hover {
  text-decoration: none;
}

.btn-items-group .btn.is-active {
  background: #fff !important;
  border: 1px solid var(--color-secondary);
  color: #000;
}

.btn-items-group .btn.is-active:hover {
  border-color: var(--color-base);
}

.btn-items-group .btn.is-dashed {
  background: #fff !important;
  border: 1px dashed var(--color-base);
  color: #000;
}

.btn-items-group .btn.is-dashed:hover {
  border-color: var(--color-secondary);
}

.btn-items-group .btn .folder-events {
  display: none;
}

.btn-items-group .btn:hover .folder-events {
  display: flex !important;
  top: 5px;
  right: 5px;
  position: absolute;
}

.btn-items-group .btn:hover .folder-events span {
  color: #000;
}

.folder-items {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
}

.folder-items > a {
  display: block;
  width: 12.5%;
  min-height: 75px;
  text-align: center;
  line-height: 1rem;
  background: url("/assets/img/icon-folder.png") no-repeat top center;
  padding-top: 55px;
  margin-bottom: 1.5rem;
  position: relative;
}

.folder-items > a.add {
  background: none;
  border: 1px dashed var(--color-base);
  border-radius: 0.25rem;
  text-decoration: none;
  text-align: center;
  padding: 24px;
}

.folder-items > a.add:hover {
  border-color: var(--color-secondary);
}

.folder-items > a.return {
  text-align: center;
  background: url(/assets/img/icon-return.png) top center no-repeat;
  background-position-y: 20px;
  background-size: 24px;
  background-position-x: center;
  border: 1px dashed var(--color-grey);
  border-radius: 0.25rem;
}

.folder-items > a.return:hover {
  border-color: var(--color-secondary);
}

.folder-items > a.return + .add {
  margin-left: 0.5rem;
}

.folder-items > a .folder-events {
  display: none;
}

.folder-items > a:hover .folder-events {
  display: flex;
  top: -15px;
  right: 15px;
  position: absolute;
}

.files-items .files-items_item {
  margin-bottom: 0.3rem;
}

.files-items .files-items_item .files-items_item--title {
  text-decoration: underline;
}

.files-items .files-items_item .files-items_item--title:hover {
  text-decoration: none;
}

.files-items .files-items_item .files-items_item--link {
  padding-left: 1rem;
  color: var(--color-base);
  text-decoration: underline;
  padding-right: 20px;
  position: relative;
}

.files-items .files-items_item .files-items_item--link:after {
  position: absolute;
  content: "";
  display: block;
  background: url("/assets/img/icon-download.png") no-repeat center right;
  width: 13px;
  height: 9px;
  right: 0;
  top: 1px;
}

.files-items .files-items_item .files-items_item--link:hover {
  text-decoration: none;
}

.order-forms .order-forms_form {
  width: 50%;
  margin-bottom: 1rem;
}

.order-forms .order-forms_form > a.btn {
  width: 100%;
  padding: 0.7rem;
  padding-left: 55px;
  font-size: 11pt;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.order-forms .order-forms_form a.btn-form-service {
  background-image: url("/assets/img/icon-service.png");
}

.order-forms .order-forms_form a.btn-form-calendar {
  background-image: url("/assets/img/icon-calendar.png");
}

.order-forms .order-forms_form a.btn-form-negotation {
  background-image: url("/assets/img/icon-negotation.png");
}

.order-forms .order-forms_form a.btn-form-find {
  background-image: url("/assets/img/icon-find.png");
}

.order-forms .order-forms_form a.btn-form-comp {
  background-image: url("/assets/img/icon-comp.png");
}

.order-forms .order-forms_form a.btn-form-it {
  background-image: url("/assets/img/icon-it.png");
}

.order-forms .order-forms_form a.btn-form-ticket {
  background-image: url("/assets/img/icon-ticket.png");
}

.order-forms .order-forms_form a.btn-form-card {
  background-image: url("/assets/img/icon-card.png");
}

.order-forms .order-forms_form a.btn-form-pass {
  background-image: url("/assets/img/icon-pass.png");
}

.order-forms .order-forms_form a.btn-form-hotel {
  background-image: url("/assets/img/icon-hotel.png");
}

.order-forms .order-forms_form a.btn-form-vacation {
  background-image: url("/assets/img/icon-vacation-white.png");
}

.order-forms .order-forms_form a.btn-form-office {
  background-image: url("/assets/img/icon-office.png");
}

.order-forms .order-forms_form .order-forms_form--inputs {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: none;
}

.order-forms .order-forms_form .order-forms_form--inputs.is-active {
  display: block;
}

.order-forms .order-forms_form .order-forms_form--inputs .form-input {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.order-forms .order-forms_form .order-forms_form--inputs .form-input label {
  width: 105px;
  padding-left: 10px;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group {
  display: flex;
  width: calc(100% - 105px);
  padding-left: 10px;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group select {
  border: 1px solid var(--color-secondary);
  padding: 3px 5px;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group textarea {
  border: 1px solid var(--color-secondary);
  width: 100%;
  resize: none;
  padding: 0.3rem;
  height: 200px;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group.checkboxes {
  display: block;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group.checkboxes label {
  border: 1px solid var(--color-secondary);
  padding: 3px 10px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group.checkboxes label span {
  padding-left: 5px;
}

.order-forms .order-forms_form .order-forms_form--inputs .input-group.checkboxes label + label {
  margin-top: 5px;
}

.order-forms .order-forms_form .order-forms_form--inputs .btn-send {
  text-decoration: none;
}

.order-forms .order-forms_form .form-group-title {
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 10pt;
  font-weight: bold;
}

/* staff card */

.page-staff-employee .card {
  display: flex;
  margin-top: 2rem;
}

.page-staff-employee .card .user-picture {
  width: 30%;
  margin-right: 10%;
  border: 1px solid var(--color-secondary);
  padding: 15px;
  font-size: 10pt;
  color: var(--color-primary);
}

.page-staff-employee .card .user-picture .status {
  font-weight: bold;
}

.page-staff-employee .card .user-picture .events {
  padding-left: 1rem;
}

.page-staff-employee .card .user-picture .events a {
  display: block;
}

.page-staff-employee .card .user-picture .picture {
  margin: 1rem 0 2rem 0;
  border: 1px solid var(--color-secondary);
}

.page-staff-employee .card .user-picture .picture img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.page-staff-employee .card .user-info {
  width: 60%;
}

.page-staff-employee .card .user-info .info-title {
  font-size: 10pt;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.page-staff-employee .card .user-info .info-title.mt {
  margin-top: 0.3rem;
}

.page-staff-employee .card .user-info .info-item {
  display: flex;
  color: var(--color-primary);
}

.page-staff-employee .card .user-info .info-item .info-item-title {
  width: 40%;
}

.page-staff-employee .card .user-info .info-item .info-item-value {
  width: 60%;
}

/* page-negotiation */

.page-negotiation .negotiation-table {
  border-left: 1px solid var(--color-grey);
}

.page-negotiation .negotiation-table .table-header .time {
  border-top: 1px solid var(--color-grey);
}

.page-negotiation .negotiation-table .table-header,
.page-negotiation .negotiation-table .table-data {
  display: flex;
}

.page-negotiation .negotiation-table .table-header .time,
.page-negotiation .negotiation-table .table-data .time {
  width: 50px;
  padding: 5px;
  border-right: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  box-sizing: border-box;
  text-align: center;
}

.page-negotiation .negotiation-table .table-header .title,
.page-negotiation .negotiation-table .table-data .title {
  text-align: center;
  background: var(--color-grey);
  border-top: 1px solid var(--color-grey);
}

.page-negotiation .negotiation-table .table-header .title, .page-negotiation .negotiation-table .table-header .value,
.page-negotiation .negotiation-table .table-data .title,
.page-negotiation .negotiation-table .table-data .value {
  width: 300px;
  padding: 5px;
  border-right: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  box-sizing: border-box;
}

.page-negotiation .negotiation-table .table-header .value .sticker,
.page-negotiation .negotiation-table .table-data .value .sticker {
  background: var(--color-primary);
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  /*width: 285px;
  max-width: 285px;*/
  display: flex;
  align-items: center;
}

/* page-vacations */

.page-vacations .vacations-list {
  border-top: 1px solid var(--color-grey);
  border-left: 1px solid var(--color-grey);
  border-right: 1px solid var(--color-grey);
}

.page-vacations .vacations-list .item {
  display: flex;
  border-bottom: 1px solid var(--color-grey);
}

.page-vacations .vacations-list .item .title {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  width: 50%;
  border-right: 1px solid var(--color-grey);
  font-weight: bold;
}

.page-vacations .vacations-list .item .org {
  font-weight: normal;
}

.page-vacations .vacations-list .item .value {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  width: 50%;
  text-align: center;
}

.page-vacations .vacations-list .item.header div {
  background: var(--color-base);
  color: #fff;
  font-weight: normal;
}

.table.border-collapse {
  border-top: 1px solid var(--color-grey);
  border-left: 1px solid var(--color-grey);
  border-right: 1px solid var(--color-grey);
}

.table.border-collapse .table-header-group {
  background: var(--color-base);
  color: #fff;
}

.table.border-collapse .table-row {
  border-bottom: 1px solid var(--color-grey);
}

.table.border-collapse .table-cell {
  padding: 10px;
  border-right: 1px solid var(--color-grey);
}

.table.border-collapse .table-cell.p-0 {
  padding: 0;
}

/* page new login */

.html-login {
  padding: 0px;
  margin: 0px;
  height: 100%;
}

.html-login body {
  padding: 0px;
  margin: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 10pt;
}

.html-login .page-login {
  /*background: url("/assets/img/login-bg-v3.png") no-repeat;*/
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.html-login .footer-info {
  gap: 6rem;
}

.html-login .footer-info .footer-info__item .footer-info__item-title {
  font-size: 36pt;
  line-height: 42pt;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.html-login .footer-info .footer-info__item .footer-info__item-text {
  font-size: 13pt;
  line-height: 15pt;
}

.html-login .form {
  width: 100%;
  position: absolute;
  top: 11rem;
}

.html-login .form .error {
  text-align: center;
  color: red;
  background: #fff;
  margin-bottom: 1rem;
}

.html-login .form .error:not(:empty) {
  padding: 3px 0;
}

.html-login .form form {
  width: 685px;
  margin: 0 auto;
}

.html-login .form form .form-header {
  color: white;
  font-size: 49pt;
  /*text-align: center;*/
}

.html-login .form form .form-input {
  position: relative;
  display: flex;
  background: #fff;
  align-items: center;
  font-size: 16pt;
  margin-bottom: 1rem;
  box-shadow: -1px 4px 5px -2px rgba(34, 60, 80, 0.3);
}

.html-login .form form .form-input label {
  width: 200px;
  background: #ffbd36;
  height: 100%;
  padding: 3px 40px;
  color: white;
  font-weight: bold;
}

.html-login .form form .form-input input {
  width: calc(100% - 200px);
  padding: 3px 10px;
  border: 0;
}

.html-login .form form .form-input i {
  position: absolute;
  right: 1rem;
  cursor: pointer;
  color: grey;
}

.html-login .form form .form-input input:focus {
  border: 0;
  outline: none;
}

.html-login .form form .events {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.html-login .form form .events [type=submit] {
  background: #ffbd36;
  padding: 0rem 2rem;
  font-size: 16pt;
  line-height: 36px;
  color: white;
  border-radius: 3rem;
  cursor: pointer;
  box-shadow: -1px 4px 5px -2px rgba(34, 60, 80, 0.3);
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.html-login .form form .events [type=submit]:hover {
  background: var(--color-secondary);
}

.html-login .form form .events .btn-password {
  width: -moz-fit-content;
  width: fit-content;
  background: #3d67b0;
  padding: 0rem 2rem;
  font-size: 16pt;
  line-height: 36px;
  color: white;
  border-radius: 3rem;
  cursor: pointer;
  box-shadow: -1px 4px 5px -2px rgba(34, 60, 80, 0.3);
  text-decoration: none;
}

.html-login .form form .events .btn-password:hover {
  background: var(--color-base);
}

@media not all and (min-width: 1024px) {
  .col-w-1 {
    width: 100%;
  }

  .col-w-2 {
    width: 100%;
  }

  .col-w-3 {
    width: 100%;
  }

  .is-hidden-xs {
    display: none !important;
  }

  .slogan {
    margin-right: 5rem !important;
  }

  .menu-xs {
    background: var(--color-base);
    padding: 15px 1rem;
    margin: 0 -1rem;
  }

  .menu-xs ul {
    display: flex;
    /*width: 40%;*/
    justify-content: space-between;
  }

  .menu-xs ul li {
    margin-right: 25px;
  }

  .menu-xs ul li:last-child {
    margin-right: 0px;
  }

  .menu-xs ul li a {
    display: block;
    width: 35px;
    height: 35px;
  }

  .menu-xs ul li a.menu-xs_main {
    background: url("/assets/img/menu-xs.png") no-repeat center;
    background-size: cover;
  }

  .menu-xs ul li a.menu-xs_calendar {
    background: url("/assets/img/menu-calendar-xs.png") no-repeat center;
    background-size: cover;
  }

  .menu-xs ul li a.menu-xs_book {
    background: url("/assets/img/menu-book-xs.png") no-repeat center;
    background-size: cover;
  }

  .menu-xs .current-date, .menu-xs .exchange-rates {
    color: #fff;
  }

  .menu-xs .current-date span, .menu-xs .exchange-rates span {
    color: var(--color-secondary);
  }

  .menu ul.is-active {
    display: block !important;
    position: absolute;
    z-index: 10;
    background: var(--color-base);
    margin: 0 -1rem;
    color: #fff;
  }

  .menu ul.is-active li {
    display: block;
  }

  .menu ul.is-active li a {
    font-size: 10pt;
    display: block;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--color-primary);
  }

  .menu ul.is-active li a:first-child {
    display: flex;
  }

  .menu ul.is-active li a:first-child svg {
    margin-right: 0.5rem;
  }

  .menu ul.is-active li ul {
    position: relative;
    padding: 0;
    top: 0;
    background: var(--color-primary);
  }

  .menu ul.is-active li ul li a {
    padding-left: 2rem;
  }

  .app-calendar.is-active {
    display: block !important;
    position: fixed;
    background: #fff;
    z-index: 20;
    width: 100%;
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  h1, h2, h3, .block-h {
    background: var(--color-secondary);
    padding: 0.8rem 1rem;
    text-align: center;
    margin: 0 -1rem;
    position: relative;
  }

  h1 a.list_more, h2 a.list_more, h3 a.list_more, .block-h a.list_more {
    width: 60px;
    display: block;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background: var(--color-base) url("/assets/img/arr-right.png") no-repeat center;
  }

  main .col-w-1 .col-content-left, main .col-w-3 .col-content-left {
    top: 0px;
  }

  main .col-w-1 .col-content-right, main .col-w-3 .col-content-right {
    top: 0px;
  }

  .form-vacation {
    font-size: 12pt;
    margin-bottom: 3rem;
  }

  .user-name-lg {
    margin-bottom: 1rem;
  }

  .user-name-lg div {
    font-size: 10pt;
    align-items: center;
    display: flex;
  }

  .user-name-lg div b {
    padding-left: 0.5rem;
  }

  .staff-section .staff-section_title span {
    background: transparent;
  }

  .staff-section .staff-section_title:after {
    display: none;
  }

  .staff-section .staff-section_item {
    width: 48%;
    margin-bottom: 1rem;
  }

  .btn-items-group .btn {
    width: 48%;
    margin-bottom: 1rem;
  }

  .folder-items a {
    width: 20%;
  }

  .order-forms .order-forms_form {
    width: 100%;
  }

  .order-forms .order-forms_form .order-forms_form--inputs .form-input label {
    width: 30%;
  }

  .order-forms .order-forms_form .order-forms_form--inputs .form-input .input-group {
    width: 70%;
  }

  .html-login .login-logo {
    top: 2rem;
  }

  .html-login .form {
    top: 7rem;
  }

  .html-login .form form {
    width: 90%;
  }

  .html-login .form form .form-input {
    font-size: 14pt;
  }

  .html-login .form form .form-input label {
    width: 100px;
    padding: 3px 10px;
  }

  .html-login .form form .events [type=submit], .html-login .form form .events .btn-password {
    font-size: 14pt;
  }

  .html-login .form form .form-header {
    font-size: 14pt;
    text-align: center;
  }

  .html-login .footer-info {
    /*display: block;*/
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }

  .html-login .footer-info .footer-info__item {
    width: 45%;
    margin-bottom: 2rem;
  }

  .html-login .footer-info .footer-info__item .footer-info__item-title {
    font-size: 20pt;
    line-height: 22pt;
  }

  .html-login .footer-info .footer-info__item .footer-info__item-text {
    font-size: 10pt;
    line-height: 12pt;
  }
}

@media (min-width: 1024px) {
  .menu-xs {
    display: none !important;
  }

  .is-hidden-lg {
    display: none !important;
  }
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 30, 52, 0.25);
  transform: scale(1.2);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 9pt;
}

.modal.is-active {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal .modal__wrapper {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  padding: 3.75rem 2.5rem;
}

.modal .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal .modal__content {
  position: relative;
  width: 37.5rem;
  max-height: 100%;
  padding: 40px 0 0 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #8b8b8b;
  border-radius: 0.25rem;
}

.modal .modal__body {
  padding: 1rem;
}

.modal .modal__close-btn {
  padding: 7px 15px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-base);
  color: #fff;
}

.modal .modal__title {
  padding: 7px 15px;
  position: absolute;
  top: 0;
  left: 0;
  background: #ebebeb;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid #8b8b8b;
}

.file-uploader {
  background: #fff;
}

.file-uploader .uploader-header {
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.uploader-header .uploader-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.uploader-header .file-completed-status {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.file-uploader .file-list {
  list-style: none;
  width: 100%;
  padding-bottom: 10px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-color: #999 transparent;
  scrollbar-width: thin;
}

.file-uploader .file-list:has(li) {
  padding: 20px;
}

.file-list .file-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.file-list .file-item:last-child {
  margin-bottom: 0px;
}

.file-list .file-item .file-extension {
  height: 40px;
  width: 40px;
  color: #fff;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--color-base);
}

.file-list .file-item .file-content-wrapper {
  flex: 1;
}

.file-list .file-item .file-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.file-list .file-item .file-name {
  /*font-size: 1rem;*/
  font-weight: 600;
}

.file-list .file-item .file-info {
  display: flex;
  gap: 5px;
}

.file-list .file-item .file-info small {
  color: #5c5c5c;
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
}

.file-list .file-item .file-info .file-status {
  color: #5145BA;
}

.file-list .file-item .cancel-button {
  align-self: center;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
}

.file-list .file-item .cancel-button:hover {
  color: #E3413F;
}

.file-list .file-item .file-progress-bar {
  width: 100%;
  height: 3px;
  margin-top: 2px;
  border-radius: 30px;
  background: #d9d9d9;
}

.file-list .file-item .file-progress-bar .file-progress {
  width: 0%;
  height: inherit;
  border-radius: inherit;
  background: var(--color-base);
}

.file-uploader .file-upload-box {
  margin: 10px 20px 20px;
  border-radius: 5px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--color-base);
  transition: all 0.2s ease;
}

.file-uploader .file-upload-box.active {
  border: 1px solid var(--color-secondary);
  background: #F3F6FF;
}

.file-uploader .file-upload-box .box-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #626161;
}

.file-uploader .file-upload-box.active .box-title {
  pointer-events: none;
}

.file-upload-box .box-title .file-browse-button {
  color: var(--color-base);
  cursor: pointer;
}

.file-upload-box .box-title .file-browse-button:hover {
  text-decoration: underline;
}

/* ! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: "MyriadPro-Regular", sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.left-4 {
  left: 1rem;
}

.right-1 {
  right: 0.25rem;
}

.top-16 {
  top: 4rem;
}

.top-\[-15px\] {
  top: -15px;
}

.float-left {
  float: left;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-8 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-header-group {
  display: table-header-group;
}

.table-row-group {
  display: table-row-group;
}

.table-row {
  display: table-row;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.h-\[100px\] {
  height: 100px;
}

.h-full {
  height: 100%;
}

.w-1\/12 {
  width: 8.333333%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-2\/12 {
  width: 16.666667%;
}

.w-3\/12 {
  width: 25%;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-6\/12 {
  width: 50%;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-\[120px\] {
  width: 120px;
}

.w-\[130px\] {
  width: 130px;
}

.w-\[150px\] {
  width: 150px;
}

.w-\[180px\] {
  width: 180px;
}

.w-\[40px\] {
  width: 40px;
}

.w-\[90px\] {
  width: 90px;
}

.w-full {
  width: 100%;
}

.grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-5 {
  gap: 1.25rem;
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-base {
  --tw-border-opacity: 1;
  border-color: rgb(27 69 145 / var(--tw-border-opacity));
}

.border-grey {
  --tw-border-opacity: 1;
  border-color: rgb(192 192 192 / var(--tw-border-opacity));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(64 107 185 / var(--tw-border-opacity));
}

.border-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(238 196 66 / var(--tw-border-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-middle {
  vertical-align: middle;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.leading-4 {
  line-height: 1rem;
}

.text-base {
  --tw-text-opacity: 1;
  color: rgb(27 69 145 / var(--tw-text-opacity));
}

.text-grey {
  --tw-text-opacity: 1;
  color: rgb(192 192 192 / var(--tw-text-opacity));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(64 107 185 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.opacity-50 {
  opacity: 0.5;
}

.outline {
  outline-style: solid;
}

.outline-0 {
  outline-width: 0px;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:border-secondary:hover {
  --tw-border-opacity: 1;
  border-color: rgb(238 196 66 / var(--tw-border-opacity));
}

.hover\:bg-grey-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.focus\:outline-0:focus {
  outline-width: 0px;
}

@media not all and (min-width: 1024px) {
  .max-lg\:left-0 {
    left: 0px;
  }

  .max-lg\:m-0 {
    margin: 0px;
  }

  .max-lg\:ml-0 {
    margin-left: 0px;
  }

  .max-lg\:mr-0 {
    margin-right: 0px;
  }

  .max-lg\:mt-2 {
    margin-top: 0.5rem;
  }

  .max-lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .max-lg\:flex {
    display: flex;
  }

  .max-lg\:w-full {
    width: 100%;
  }

  .max-lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-lg\:pl-2 {
    padding-left: 0.5rem;
  }

  .max-lg\:pr-2 {
    padding-right: 0.5rem;
  }
}

@media not all and (min-width: 640px) {
  .max-sm\:bottom-0 {
    bottom: 0px;
  }

  .max-sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:w-6\/12 {
    width: 50%;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }
}

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