.modal {
    position:fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #E1E4E5CC;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    overflow-y: auto;
}

.modal > div > svg {
    position: absolute;
    top: 16px;
    right: 15px;
}

.modal > div {
    position: relative;
    padding: 32px 50px 41px;
    background: #FFFFFF;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
}

.login-container {
    margin-top: 48px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: 420px;
    padding: 0 53px 31px;
    overflow: hidden;
}
.login-title {
    text-align: center;
    font-size: 16px;
    color: #AFBEC4;
    padding-bottom: 40px;
}
.input-form {
    padding: 0 18px;
    line-height: 33px;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    background: rgba(175, 190, 196, 0.1);
    border: 1px solid rgba(229, 229, 229, 0.9);
    border-radius: 3px;
}
.input-form:focus {
    border-color: #A4C8E2;
    outline: none;
}
.login-password-input {
    margin-top: 20px;
    height: 35px;
    transition: .3s ease-in-out;
}
.login-has-password-input {
    padding-top: 20px;
}
.login-button {
    margin-top: 40px;
}
.login-agreement {
    white-space: pre;
    margin-top: 18px;
    font-size: 12px;
    color: #AFBEC4;
}
.login-agreement a {
    font-size: 12px;
    color: #A4C8E2;
}
.transition-hidden {
    margin-top: 0;
    height: 0;
    opacity: 0;
    border-width: 0;
}

.login-code-input-row {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.login-code-input-row-tab {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    width: 60px;
    height: 50px;
}

.login-resend-text {
    white-space: pre;
    padding: 43px 0 32px;
    font-size: 16px;
    color: #AFBEC4;
    text-align: center;
}
.login-resend-highlighted {
    font-weight: 600;
    font-size: 16px;
    color: #90B9D7;
}

.login-country-flag {
    width: 26px;
    height: 26px;
    min-width: 26px;
}
.login-country-flag-row {
    display: flex;
    align-items: center;
}
.login-country-flag-row span {
    font-weight: inherit;
    padding-left: 12px;
    font-size: 12px;
    line-height: 16px;
}

.login-phone-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.login-country-input {
    width: 60px;
    display: flex;
    padding: 0;
}
.login-code-input {
    padding: 0 6px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    width: 65px;
}
.login-phone-input {
    width: 160px;
}

.react-select__control {
    cursor: pointer !important;
    min-height: unset !important;
    flex: 1;
    padding-left: 6px;
    padding-right: 13px;
    border: none !important;
    background: none !important;
}
.react-select__menu {
    width: 138px !important;
    overflow: hidden;
}
.react-select__menu-list {
    padding: 0 !important;
    max-height: 200px !important;
}
.react-select__menu-list::-webkit-scrollbar {
    width: 8px;
}
.react-select__menu-list::-webkit-scrollbar-thumb {
    background: rgba(170, 138, 159, 0.53);
    border-radius: 8px;
}
.react-select__menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 138, 159, 1);
}

.react-select__control--is-focused {
    box-shadow: none !important;
}
.react-select__value-container {
    padding: 0 !important;
    overflow: unset !important;
}
.react-select__single-value {
    display: flex;
    margin: 0 !important;
    overflow: unset !important;
}
.react-select__input {
    top: -14px;
    left: -6px;
    padding: 0 13px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    background-color: hsl(0,0%,100%);
    border-radius: 4px;
    box-shadow: 0 0 0 1px hsla(0,0%,0%,0.05), 0 4px 11px hsla(0,0%,0%,0.05);
    position: absolute;
    width: 138px;
}

.react-select__control--menu-is-open .react-select__input {
    opacity: 1;
    pointer-events: inherit;
    border-color: #A4C8E2;
    border-width: 1px;
}

.react-select__option--is-focused {
    background-color: rgba(246, 246, 246, 0.7) !important;
}
.react-select__option--is-selected {
    background-color: #C6C6C6 !important;
}

.login-tabs {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: space-between;
    width: 248px;
    margin-bottom: 40px;
}

.login-tab {
    user-select: none;
    padding-top: 26px;
    width: 104px;
    display: flex;
    justify-content: center;
    border-top-width: 2px;
    border-color: white;
    transition: all .2s ease;
    font-size: 18px;
    cursor: pointer;
}
.login-tab-inactive {
    color: #979797;
}
.login-tab-inactive:hover {
    border-color: #979797;
}
.login-tab-active {
    border-color: #80506F;
    color: #80506F;
}

.checkbox-input input {
    display: none;
}
.checkbox-input label {
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.checkbox-input label span {
    font-weight: 400;
    /*font-size: 14px;*/
}

.orders-active-tab {
    background: #80506F;
}

.chat-button {
    z-index: 10;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 64px;
    bottom: 75px;
    border-radius: 30px;
    background: #90B9D7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-container {
    z-index: 10000;
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 410px;
    height: 570px;
    max-height: 80vh;
    right: 64px;
    bottom: 75px;
    background: #FFFFFF;
    box-shadow: -1px 3px 20px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
}
.chat-body {
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.chat-message-container {
    display: flex;
    width: 100%;
    min-height: 50px;

    border-top-width: 1px;
    border-color: #EBE8E8;
}

.chat-messages > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.unselectable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.chat-header {
    display: flex;
    width: 100%;
    padding: 11px 19px 7px;
    justify-content: space-between;
    border-bottom-width: 1px;
    border-color: #c4c4c4;
}
.chat-header > div {
    display: flex;
    flex: 1;
}
.chat-header > div > span {
    font-size: 18px;
    color: #7F7F7F;
}
.chat-header > div > span > span {
    color: #90B9D7;
}
.chat-header > div > div {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    background: black;
    margin-right: 9px;
}

.profile-info-field {
    display: flex;
    align-items: center;
    color: #2E476E;
    font-weight: 500;
    padding: 3px 0;
}
.profile-info-field span {
    color: #AFBEC4;

    margin-left: 12px;
    margin-right: 8px;
    font-weight: 600;
}

.exhibition-container {
    padding: 10px 0;
    display: flex;
}
.exhibition-container > svg {
    margin-left: 14px;
    cursor: pointer;
}
.exhibition-container > span {
    display: flex;
    flex: 1;
    margin-left: 12px;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
    color: #80506F;
}

.exhibition-container > span > span {
    color: #AFBEC4;
}

.profile-container {
    /*display: flex;*/
    /*flex: 1;*/
}
.profile-inner-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    margin: 0 -50px;
}
.profile-inner-container > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 50px;
}

.profile-header {
    display: flex;
    font-size: 28px;
    padding-bottom: 33px;
    color: #4A2E4D;
}
.profile-header > span {
    font-size: 18px;
    padding-left: 12px;
    color: #90B9D7;
}
.profile-pre-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 67px;
}
.profile-avatar {
    width: 300px;
    height: 70px;
    background: #FFFFFF;
    box-shadow: 0 7px 64px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
}

.profile-avatar > img {
    display: block;
    width: auto;
    height: 100%;
    margin: auto;
}

.profile-link {
    text-decoration: underline;
    color: #80506F;
    font-weight: 500;
    font-size: 14px;
}
.profile-rating-title {
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #80506F;
    display: flex;
    justify-content: center;
}
.profile-info {
    padding-bottom: 18px;
}
.profile-description {
    font-size: 14px;
    font-weight: 400;
    color: #7F7F7F;
}
.profile-exhibitions {
    padding-bottom: 3px;
    padding-top: 40px;
    color: #2E476E;
    font-weight: 600;
    font-size: 14px;
}
.profile-add-exhibition {
    padding-top: 10px;
    display: flex;
    flex: 1;
}
.profile-add-exhibition > svg {
    cursor: pointer;
}
.profile-buttons, .profile-buttons div {
    display: flex;
    flex: 1;
    margin: 102px -50px 0;
}
.profile-buttons div {
    margin: 0 40px;
}


.profile-buttons button {
    margin: 0 10px;
}

.profile-button {
    min-width: 100px;
    padding: 14px 30px;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.data-table {
    width: 100%;
}
.data-table > thead {
    margin-bottom: 7px;
    height: 50px;
}
.data-table th {
    cursor: pointer;
    background: #F6F6F6;
    padding: 0 7px;
    line-height: 41px;
    font-size: 14px;
    color: #979797;
    font-weight: normal;
    text-align: start;
}
.data-table th > svg {
    height: 41px;
    margin-left: 5px;
    display: inline;
}
.data-table td {
    padding: 0 7px;
    font-size: 11px;
    color: #979797;
    line-height: 41px;
}

.profile-my-team {
    display: flex;
    align-items: flex-start;
    color: #90B9D7;
}
.profile-my-team > span {
    font-size: 18px;
    padding-left: 12px;
    line-height: 35px;
    color: #90B9D7;
}

.profile-my-team-modal {
    width: 1060px;
    min-height: 244px;
}
@screen mb {
    .profile-my-team-modal {
        @apply w-auto;
    }
}
.profile-my-team-modal > table {
    margin-top: 25px;
    margin-bottom: 15px;
}

.profile-my-team-modal .profile-button {
    height: 45px;
}

.profile-my-team-modal input {
    font-size: 14px;
}

.profile-my-team-modal select {
    width: 110px;
    font-size: 14px;
}

.text-button {
    font-weight: 500;
    font-size: 18px;
    color: #90B9D7;
    padding: 0 32px;
    line-height: 45px;
}
.profile-my-team-modal-table-big {
    color: #2E476E !important;
    font-weight: 500 !important;
    font-size: 12px !important;
}

.profile-my-team-modal-table-big-grey {
    font-size: 12px !important;
}

.profile-password-modal {
    width: 485px;
}
.profile-password-modal > p {
    font-size: 25px;
    color: #4A2E4D;
    margin-bottom: 28px;
}
.profile-password-modal > div {
    padding-bottom: 15px;
    display: flex;
}
.profile-password-modal > div > div {
    width: 100%;
}
.profile-password-modal > div > div > input {
    width: 100%;
}
.profile-password-modal > div > label > p {
    color: #90B9D7;
    font-size: 14px;
    width: 170px;
    line-height: 35px;
}
.profile-password-modal > div > label > p > span {
    color: #80506F;
}
.profile-password-modal > button {
    margin-top: 19px;
}

.password-input {
    position: relative;
}
.password-input > span {
    padding-top: 2px;
    padding-left: 18px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #AFBEC4;
}
.password-input > svg {
    top: 10px;
    right: 10px;
    cursor: pointer;
    position: absolute;
}

.profile-invite-modal {
    width: 892px;
    display: flex;
}
.profile-invite-modal-divider {
    width: 1px;
    background: #AFBEC4;
    margin: 0 40px 51px;
}

.profile-invite-modal select {
    color: #80506F;
}

.profile-invite-modal input {
    background: #FFFFFF;
    border: 1px solid #E9EFF4;
    height: 25px;
    padding: 0 7px;
    box-shadow: inset 0 4px 8px rgba(151, 151, 151, 0.11);
}

.header-container {
    background: white;
    border-color: #AA8A9F;
    border-bottom-width: 2px;
    display: flex;
    justify-content: center;
    padding-top: 38px;
    padding-bottom: 21px;
}
.header-inner-container {
    padding: 0 59px;
    flex: 1;
    display: flex;
    max-width: 1240px;
}

.header-logo-container {
    /*flex: 1;*/
}

.header-content-container {
    flex: 3;
    display: flex;
    align-items: center;
    padding-bottom: 33px;
}


.header-tabs-container {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.header-right-container {
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex: 1;
}

.header-tab {
    color: inherit;
    line-height: 28px;
    padding: 0 8px;
    font-size: 16px;
    text-transform: uppercase;
}
.header-tab-active {
    color: white;
    background: #A4C8E2;
    padding-top: 4px;
    padding-bottom: 4px;
}

.sign-in-button {
    font-weight: 700;
    font-size: 12px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 40px;
    min-width: 125px;
    background: #AA8A9F;
    color: white;
}

.header-menu-modal {
    position: absolute;
    top: 30px;
    right: 4px;
    padding: 6px 20px;
    background: white;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
}

.header-menu-modal-option {
    cursor: pointer;
    padding: 10px 0;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.icon-inactive {
    color: #AFBEC4;
    stroke: #AFBEC4;
    fill: #AFBEC4;
}
.icon-active {
    color: #90B9D7;
    stroke: #90B9D7;
    fill: #90B9D7;
}

.header-menu-modal-option-text {
    padding-left: 10px;
    white-space: nowrap;

    font-size: 13px;
}

.footer-container {
    background: #F2EEF1;
    display: flex;
    padding: 30px 58px 87px;
    justify-content: center;
}
.footer-inner-container {
    flex: 1;
    display: flex;
    max-width: 1240px;
    justify-content: space-between;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

.footer-field {
    font-size: 14px;
    padding-bottom: 5px;
    color: #7F7F7F;
}

.footer-field-value {
    color:  rgba(128, 80, 111);
    font-size: inherit;
}

.footer-trademark {
    font-size: 12px;
}

.footer-networks {
    display: flex;
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 16px;
    justify-content: space-between;
}

.footer-stores {
    display: flex;
    flex-direction: row;
    padding-top: 8px;
    justify-content: space-between;
}

.footer-title {
    font-weight: 500;
    font-size: 18px;
    color: #4A2E4D;
    line-height: 22px;
    padding-bottom: 15px;
}

.footer-title-big {
    font-size: 21px;
    padding-bottom: 0;
}

.react-select2__control {
    min-height: 28px !important;
    background-color: #F2EDF0 !important;
    cursor: pointer !important;
    border-color: #80506F !important;
}
.react-select2__control--is-focused {
    box-shadow: 0 0 0 1px #AA8A9F !important;
}
.react-select2__indicator-separator {
    display: none;
}


.react-select2__menu-list {
    padding: 0 !important;
}
.react-select2__menu-list::-webkit-scrollbar {
    width: 8px;
}
.react-select2__menu-list::-webkit-scrollbar-thumb {
    background: rgba(170, 138, 159, 0.53);
    border-radius: 8px;
}
.react-select2__menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 138, 159, 1);
}

.react-select2__option--is-focused {
    background-color: rgba(246, 246, 246, 0.7) !important;
}
.react-select2__option--is-selected {
    background-color: #C6C6C6 !important;
}

.react-select2__indicator {
    padding: 0 !important;
}

.catalog-scroll::-webkit-scrollbar {
    width: 8px;
}

.catalog-scroll::-webkit-scrollbar-thumb {
    background: rgba(170, 138, 159, 0.53);
    border-radius: 8px;
}

.catalog-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 138, 159, 1);
}

.catalog-header {
    margin-right: 8px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

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

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-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.
 */

[type="search"]::-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.
 */

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

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

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

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

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

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

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

table {
  border-collapse: collapse;
}

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;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

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

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

.container {
  width: 100%;
}

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

.form-input {
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #e2e8f0;
  border-width: 1px;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.form-input::-webkit-input-placeholder {
  color: #a0aec0;
  opacity: 1;
}

.form-input::placeholder {
  color: #a0aec0;
  opacity: 1;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px #be9db3;
}

.form-textarea {
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #e2e8f0;
  border-width: 1px;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.form-textarea::-webkit-input-placeholder {
  color: #a0aec0;
  opacity: 1;
}

.form-textarea::placeholder {
  color: #a0aec0;
  opacity: 1;
}

.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px #be9db3;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3e%3cpath d='M15.3 9.3a1 1 0 0 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4l3.3 3.29 3.3-3.3z'/%3e%3c/svg%3e");
  -webkit-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  background-repeat: no-repeat;
  background-color: #fff;
  border-color: #e2e8f0;
  border-width: 1px;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-right: 2.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-position: right 0.5rem center;
  background-size: 1.5em 1.5em;
}

.form-select::-ms-expand {
  color: #a0aec0;
  border: none;
}

@media not print {
  .form-select::-ms-expand {
    display: none;
  }
}

@media print and (-ms-high-contrast: active), print and (-ms-high-contrast: none) {
  .form-select {
    padding-right: 0.75rem;
  }
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px #be9db3;
}

.form-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media not print {
  .form-checkbox::-ms-check {
    border-width: 1px;
    color: transparent;
    background: inherit;
    border-color: inherit;
    border-radius: inherit;
  }
}

.form-checkbox {
  -webkit-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  color: #4299e1;
  background-color: #fff;
  border-color: #bdbdbd;
  border-width: 1px;
  border-radius: 0.25rem;
}

.form-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px #be9db3;
}

.form-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media not print {
  .form-radio::-ms-check {
    border-width: 1px;
    color: transparent;
    background: inherit;
    border-color: inherit;
    border-radius: inherit;
  }
}

.form-radio {
  -webkit-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
  border-radius: 100%;
  height: 1em;
  width: 1em;
  color: #4299e1;
  background-color: #fff;
  border-color: #bdbdbd;
  border-width: 1px;
}

.form-radio:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  border-color: #63b3ed;
}

[x-cloak] { display: none;
}

html {
  display: flex;
  min-height: 100%;
}

div, input {
  border: 0 solid;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: #AFBEC4;
}

::placeholder {
  color: #AFBEC4;
}

body {
  display: flex;
  flex: 1;
  margin: 0;
}

#root {
  display: flex;
  flex-direction: column;
  flex: 1;
}

a {
  text-decoration: none;
  font-size: 16px;
}

.body-container {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 41px 60px 175px;
  min-height: 766px;
}

.body-inner-container {
  position: relative;
  /*display: flex;
  flex: 1;
  justify-content: center;*/
  max-width: 1240px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance:textfield;
}

.default-button {
  min-width: 100px;
  padding: 14px 30px;
  background: #80506F;
  height: 45px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  color: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
  outline: none !important;
  box-sizing: border-box !important;
  border: 1px solid;
}

.default-button:disabled {
  cursor: default;
  background: #c6c6c6;
}

.default-button:enabled:hover {
  background: #AA8A9F;
}

.default-button:enabled:focus {
  color: #80506F;
  background: rgba(170, 138, 159, 0.2);
  border-color: #80506F;
}

.default-button-second {
  background: #90B9D7;
}

.default-button-second:hover {
  background: #A4C8E2;
}

.default-button-second:focus {
  color: #2E476E;
  background: rgba(164, 200, 226, 0.4);
  border-color: #2E476E;
}

.button-space-right {
  margin-right: 15px;
}

.space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.space-y-8 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.space-x-16 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.space-y-20 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.space-y-reverse > :not(template) ~ :not(template) {
  --space-y-reverse: 1;
}

.space-x-reverse > :not(template) ~ :not(template) {
  --space-x-reverse: 1;
}

.divide-y-reverse > :not(template) ~ :not(template) {
  --divide-y-reverse: 1;
}

.divide-x-reverse > :not(template) ~ :not(template) {
  --divide-x-reverse: 1;
}

.divide-solid > :not(template) ~ :not(template) {
  border-style: solid;
}

.divide-dashed > :not(template) ~ :not(template) {
  border-style: dashed;
}

.divide-dotted > :not(template) ~ :not(template) {
  border-style: dotted;
}

.divide-double > :not(template) ~ :not(template) {
  border-style: double;
}

.divide-none > :not(template) ~ :not(template) {
  border-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.appearance-none {
  -webkit-appearance: none;
          appearance: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

.bg-clip-border {
  background-clip: border-box;
}

.bg-clip-padding {
  background-clip: padding-box;
}

.bg-clip-content {
  background-clip: content-box;
}

.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.bg-white {
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.bg-white-smoke {
  --bg-opacity: 1;
  background-color: #f2eef1;
  background-color: rgba(242, 238, 241, var(--bg-opacity));
}

.bg-gray-100 {
  --bg-opacity: 1;
  background-color: #f6f6f6;
  background-color: rgba(246, 246, 246, var(--bg-opacity));
}

.bg-gray-300 {
  --bg-opacity: 1;
  background-color: #e0e0e0;
  background-color: rgba(224, 224, 224, var(--bg-opacity));
}

.bg-gray-400 {
  --bg-opacity: 1;
  background-color: #bdbdbd;
  background-color: rgba(189, 189, 189, var(--bg-opacity));
}

.bg-red-200 {
  --bg-opacity: 1;
  background-color: #fed7d7;
  background-color: rgba(254, 215, 215, var(--bg-opacity));
}

.bg-red-300 {
  --bg-opacity: 1;
  background-color: #feb2b2;
  background-color: rgba(254, 178, 178, var(--bg-opacity));
}

.bg-red-500 {
  --bg-opacity: 1;
  background-color: #f56565;
  background-color: rgba(245, 101, 101, var(--bg-opacity));
}

.bg-blue-skyblue {
  --bg-opacity: 1;
  background-color: #90b9d7;
  background-color: rgba(144, 185, 215, var(--bg-opacity));
}

.bg-brown-dim {
  --bg-opacity: 1;
  background-color: #80506F;
  background-color: rgba(128, 80, 111, var(--bg-opacity));
}

.bg-brown-dim-light {
  --bg-opacity: 1;
  background-color: #AA8A9F;
  background-color: rgba(170, 138, 159, var(--bg-opacity));
}

.bg-brown-rosy {
  --bg-opacity: 1;
  background-color: #ab8ca0;
  background-color: rgba(171, 140, 160, var(--bg-opacity));
}

.bg-brown-lightest {
  background-color: rgba(128, 80, 111, 0.1);
}

.hover\:bg-gray-100:hover {
  --bg-opacity: 1;
  background-color: #f6f6f6;
  background-color: rgba(246, 246, 246, var(--bg-opacity));
}

.hover\:bg-gray-200:hover {
  --bg-opacity: 1;
  background-color: #eeeeee;
  background-color: rgba(238, 238, 238, var(--bg-opacity));
}

.hover\:bg-brown-dim:hover {
  --bg-opacity: 1;
  background-color: #80506F;
  background-color: rgba(128, 80, 111, var(--bg-opacity));
}

.hover\:bg-brown-dim-light:hover {
  --bg-opacity: 1;
  background-color: #AA8A9F;
  background-color: rgba(170, 138, 159, var(--bg-opacity));
}

.hover\:bg-brown-lightest:hover {
  background-color: rgba(128, 80, 111, 0.1);
}

input:checked ~ .toggled\:bg-brown-dim-light {
  --bg-opacity: 1;
  background-color: #AA8A9F;
  background-color: rgba(170, 138, 159, var(--bg-opacity));
}

.bg-none {
  background-image: none;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-repeat-round {
  background-repeat: round;
}

.bg-repeat-space {
  background-repeat: space;
}

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

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

.border-transparent {
  border-color: transparent;
}

.border-white {
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.border-white-smoke {
  --border-opacity: 1;
  border-color: #f2eef1;
  border-color: rgba(242, 238, 241, var(--border-opacity));
}

.border-gray-100 {
  --border-opacity: 1;
  border-color: #f6f6f6;
  border-color: rgba(246, 246, 246, var(--border-opacity));
}

.border-gray-200 {
  --border-opacity: 1;
  border-color: #eeeeee;
  border-color: rgba(238, 238, 238, var(--border-opacity));
}

.border-gray-300 {
  --border-opacity: 1;
  border-color: #e0e0e0;
  border-color: rgba(224, 224, 224, var(--border-opacity));
}

.border-gray-500 {
  --border-opacity: 1;
  border-color: #a0aec0;
  border-color: rgba(160, 174, 192, var(--border-opacity));
}

.border-red-500 {
  --border-opacity: 1;
  border-color: #f56565;
  border-color: rgba(245, 101, 101, var(--border-opacity));
}

.border-red-600 {
  --border-opacity: 1;
  border-color: #e53e3e;
  border-color: rgba(229, 62, 62, var(--border-opacity));
}

.border-blue-silver {
  --border-opacity: 1;
  border-color: #afbec4;
  border-color: rgba(175, 190, 196, var(--border-opacity));
}

.border-blue-skyblue {
  --border-opacity: 1;
  border-color: #90b9d7;
  border-color: rgba(144, 185, 215, var(--border-opacity));
}

.border-brown-dim {
  --border-opacity: 1;
  border-color: #80506F;
  border-color: rgba(128, 80, 111, var(--border-opacity));
}

.border-brown-dim-light {
  --border-opacity: 1;
  border-color: #AA8A9F;
  border-color: rgba(170, 138, 159, var(--border-opacity));
}

.border-brown-dim-lighter {
  --border-opacity: 1;
  border-color: #be9db3;
  border-color: rgba(190, 157, 179, var(--border-opacity));
}

.hover\:border-brown-dim-lighter:hover {
  --border-opacity: 1;
  border-color: #be9db3;
  border-color: rgba(190, 157, 179, var(--border-opacity));
}

.hover\:border-brown-lightest:hover {
  border-color: rgba(128, 80, 111, 0.1);
}

.focus\:border-brown-dim:focus {
  --border-opacity: 1;
  border-color: #80506F;
  border-color: rgba(128, 80, 111, var(--border-opacity));
}

input:checked ~ .toggled\:border-brown-dim {
  --border-opacity: 1;
  border-color: #80506F;
  border-color: rgba(128, 80, 111, var(--border-opacity));
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

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

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

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

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

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

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

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

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t-0 {
  border-top-width: 0;
}

.border-r-0 {
  border-right-width: 0;
}

.border-l-0 {
  border-left-width: 0;
}

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

.border-r {
  border-right-width: 1px;
}

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

.box-border {
  box-sizing: border-box;
}

.box-content {
  box-sizing: content-box;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-text {
  cursor: text;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

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

.table {
  display: table;
}

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

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

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

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

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

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

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

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

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

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

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.group:hover .group-hover\:block {
  display: block;
}

.hover\:block:hover {
  display: block;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

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

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

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

.place-items-auto {
  place-items: auto;
}

.place-items-start {
  place-items: start;
}

.place-items-end {
  place-items: end;
}

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

.place-items-stretch {
  place-items: stretch;
}

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

.place-content-start {
  place-content: start;
}

.place-content-end {
  place-content: end;
}

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

.place-content-around {
  place-content: space-around;
}

.place-content-evenly {
  place-content: space-evenly;
}

.place-content-stretch {
  place-content: stretch;
}

.place-self-auto {
  place-self: auto;
}

.place-self-start {
  place-self: start;
}

.place-self-end {
  place-self: end;
}

.place-self-center {
  place-self: center;
}

.place-self-stretch {
  place-self: stretch;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

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

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

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

.content-start {
  align-content: flex-start;
}

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

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

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

.self-stretch {
  align-self: stretch;
}

.justify-items-auto {
  justify-items: auto;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

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

.justify-items-stretch {
  justify-items: stretch;
}

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

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

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

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

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

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

.justify-self-auto {
  justify-self: auto;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

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

.justify-self-stretch {
  justify-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.clear-both {
  clear: both;
}

.clear-none {
  clear: none;
}

.font-itf {
  font-family: "ITF Devanagari", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-damascus {
  font-family: Damascus, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-lugansky {
  font-family: LuganskyV, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

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

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

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-64 {
  height: 16rem;
}

.h-176 {
  height: 44rem;
}

.h-px {
  height: 1px;
}

.h-full {
  height: 100%;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

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

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

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-xxs {
  font-size: 0.625rem;
}

.leading-tight {
  line-height: 1.25;
}

.list-inside {
  list-style-position: inside;
}

.list-outside {
  list-style-position: outside;
}

.list-disc {
  list-style-type: disc;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-12 {
  margin: 3rem;
}

.m-16 {
  margin: 4rem;
}

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

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

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

.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.ml-0 {
  margin-left: 0;
}

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

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

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

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

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

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

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

.mr-3 {
  margin-right: 0.75rem;
}

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

.ml-3 {
  margin-left: 0.75rem;
}

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

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

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

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

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

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

.ml-5 {
  margin-left: 1.25rem;
}

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

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

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

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

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

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

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

.mr-10 {
  margin-right: 2.5rem;
}

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

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

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

.mr-12 {
  margin-right: 3rem;
}

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

.ml-12 {
  margin-left: 3rem;
}

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

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

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

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

.mr-24 {
  margin-right: 6rem;
}

.ml-24 {
  margin-left: 6rem;
}

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

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

.mr-40 {
  margin-right: 10rem;
}

.mr-48 {
  margin-right: 12rem;
}

.ml-48 {
  margin-left: 12rem;
}

.ml-102 {
  margin-left: 25.5rem;
}

.ml-176 {
  margin-left: 44rem;
}

.ml-auto {
  margin-left: auto;
}

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

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

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

.-mb-6 {
  margin-bottom: -1.5rem;
}

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

.max-w-xs {
  max-width: 20rem;
}

.min-w-12 {
  min-width: 3rem;
}

.object-contain {
  object-fit: contain;
}

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

.object-fill {
  object-fit: fill;
}

.object-none {
  object-fit: none;
}

.object-scale-down {
  object-fit: scale-down;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto;
}

.overscroll-auto {
  overscroll-behavior: auto;
}

.overscroll-contain {
  overscroll-behavior: contain;
}

.overscroll-none {
  overscroll-behavior: none;
}

.overscroll-y-auto {
  overscroll-behavior-y: auto;
}

.overscroll-y-contain {
  overscroll-behavior-y: contain;
}

.overscroll-y-none {
  overscroll-behavior-y: none;
}

.overscroll-x-auto {
  overscroll-behavior-x: auto;
}

.overscroll-x-contain {
  overscroll-behavior-x: contain;
}

.overscroll-x-none {
  overscroll-behavior-x: none;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-16 {
  padding: 4rem;
}

.p-32 {
  padding: 8rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-10 {
  padding-top: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

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

.pr-20 {
  padding-right: 5rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-full {
  top: 100%;
}

.bottom-full {
  bottom: 100%;
}

.left-full {
  left: 100%;
}

.left-1\/2 {
  left: 50%;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.hover\:shadow-sm:hover {
  box-shadow: 1px 2px 6px rgba(74, 46, 77, 0.48);
}

.active\:shadow-none:active {
  box-shadow: none;
}

.focus\:shadow-none:focus {
  box-shadow: none;
}

.fill-current {
  fill: currentColor;
}

.fill-none {
  fill: none;
}

.stroke-current {
  stroke: currentColor;
}

.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

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

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

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

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

.text-black {
  --text-opacity: 1;
  color: #000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.text-white {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.text-white-smoke {
  --text-opacity: 1;
  color: #f2eef1;
  color: rgba(242, 238, 241, var(--text-opacity));
}

.text-gray-400 {
  --text-opacity: 1;
  color: #bdbdbd;
  color: rgba(189, 189, 189, var(--text-opacity));
}

.text-gray-500 {
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
}

.text-gray-600 {
  --text-opacity: 1;
  color: #7F7F7F;
  color: rgba(127, 127, 127, var(--text-opacity));
}

.text-gray-700 {
  --text-opacity: 1;
  color: #616161;
  color: rgba(97, 97, 97, var(--text-opacity));
}

.text-red-500 {
  --text-opacity: 1;
  color: #f56565;
  color: rgba(245, 101, 101, var(--text-opacity));
}

.text-red-600 {
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
}

.text-red-700 {
  --text-opacity: 1;
  color: #c53030;
  color: rgba(197, 48, 48, var(--text-opacity));
}

.text-blue-500 {
  --text-opacity: 1;
  color: #4299e1;
  color: rgba(66, 153, 225, var(--text-opacity));
}

.text-blue-light {
  --text-opacity: 1;
  color: #A4C8E2;
  color: rgba(164, 200, 226, var(--text-opacity));
}

.text-blue-dark {
  --text-opacity: 1;
  color: #2E476E;
  color: rgba(46, 71, 110, var(--text-opacity));
}

.text-blue-silver {
  --text-opacity: 1;
  color: #afbec4;
  color: rgba(175, 190, 196, var(--text-opacity));
}

.text-blue-skyblue {
  --text-opacity: 1;
  color: #90b9d7;
  color: rgba(144, 185, 215, var(--text-opacity));
}

.text-brown-dim {
  --text-opacity: 1;
  color: #80506F;
  color: rgba(128, 80, 111, var(--text-opacity));
}

.text-brown-dim-light {
  --text-opacity: 1;
  color: #AA8A9F;
  color: rgba(170, 138, 159, var(--text-opacity));
}

.text-brown-late {
  --text-opacity: 1;
  color: #4a2e4d;
  color: rgba(74, 46, 77, var(--text-opacity));
}

.hover\:text-blue-300:hover {
  --text-opacity: 1;
  color: #90cdf4;
  color: rgba(144, 205, 244, var(--text-opacity));
}

.hover\:text-blue-light:hover {
  --text-opacity: 1;
  color: #A4C8E2;
  color: rgba(164, 200, 226, var(--text-opacity));
}

.hover\:text-blue-dark:hover {
  --text-opacity: 1;
  color: #2E476E;
  color: rgba(46, 71, 110, var(--text-opacity));
}

.hover\:text-blue-smoke:hover {
  --text-opacity: 1;
  color: #f7f7f7;
  color: rgba(247, 247, 247, var(--text-opacity));
}

.hover\:text-brown-dim:hover {
  --text-opacity: 1;
  color: #80506F;
  color: rgba(128, 80, 111, var(--text-opacity));
}

.hover\:text-brown-dim-light:hover {
  --text-opacity: 1;
  color: #AA8A9F;
  color: rgba(170, 138, 159, var(--text-opacity));
}

input:checked ~ .toggled\:text-white {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

input:checked ~ .toggled\:text-gray-500 {
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
}

input:checked ~ .toggled\:text-brown-dim {
  --text-opacity: 1;
  color: #80506F;
  color: rgba(128, 80, 111, var(--text-opacity));
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

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

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

.hover\:underline:hover {
  text-decoration: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions {
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  -webkit-font-feature-settings: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
          font-feature-settings: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.normal-nums {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant-numeric: normal;
}

.ordinal {
  --font-variant-numeric-ordinal: ordinal;
}

.slashed-zero {
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.lining-nums {
  --font-variant-numeric-figure: lining-nums;
}

.oldstyle-nums {
  --font-variant-numeric-figure: oldstyle-nums;
}

.proportional-nums {
  --font-variant-numeric-spacing: proportional-nums;
}

.tabular-nums {
  --font-variant-numeric-spacing: tabular-nums;
}

.diagonal-fractions {
  --font-variant-numeric-fraction: diagonal-fractions;
}

.stacked-fractions {
  --font-variant-numeric-fraction: stacked-fractions;
}

.select-none {
  -webkit-user-select: none;
          user-select: none;
}

.select-text {
  -webkit-user-select: text;
          user-select: text;
}

.select-all {
  -webkit-user-select: all;
          user-select: all;
}

.select-auto {
  -webkit-user-select: auto;
          user-select: auto;
}

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

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

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

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

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.break-normal {
  word-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-56 {
  width: 14rem;
}

.w-64 {
  width: 16rem;
}

.w-84 {
  width: 21rem;
}

.w-102 {
  width: 25.5rem;
}

.w-128 {
  width: 32rem;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/5 {
  width: 60%;
}

.w-5\/12 {
  width: 41.666667%;
}

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

.w-full {
  width: 100%;
}

.w-max-content {
  width: -webkit-max-content;
  width: max-content;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.-z-1 {
  z-index: -1;
}

.gap-x-2 {
  grid-column-gap: 0.5rem;
  grid-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.gap-y-3 {
  grid-row-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.gap-y-8 {
  grid-row-gap: 2rem;
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

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

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

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

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

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.auto-rows-min {
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  -webkit-transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
          transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.transform-none {
  -webkit-transform: none;
          transform: none;
}

.-translate-x-1\/2 {
  --transform-translate-x: -50%;
}

.translate-x-1\/2 {
  --transform-translate-x: 50%;
}

.-translate-y-1\/2 {
  --transform-translate-y: -50%;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-transform;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 {
  transition-duration: 200ms;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-ping {
  -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
          animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.decoration-color-blue-silver {
  -webkit-text-decoration-color: #afbec4;
          text-decoration-color: #afbec4;
}

.rc-slider-track {
  background-color: #80506F;
}

.rc-slider-rail {
  background-color: #AFBEC4;
  border-radius: 8px;
}

.rc-slider-dot {
  -webkit-transform: scale(0.25, 1);
          transform: scale(0.25, 1);
  border: none;
  border-radius: 0;
}

.rc-slider-mark {
  top: -18px;
}

.rc-slider-mark > .rc-slider-mark-text-active {
  color: #999;
}

.rc-slider-mark > .rc-slider-mark-text-active ~ .rc-slider-mark-text-active {
  color: #666;
}

.rc-slider-mark-text {
  font-size: .625rem;
}

.rc-slider {
  margin: 23px 0 3px;
}

.rc-slider-handle:empty, .rc-slider-handle-inner {
  transition-duration: .2s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 20px;
  height: 20px;
  border-width: 4px;
  border-color: #A4C8E2 !important;
}

.rc-slider-handle:empty {
  margin-top: -8px;
}

.rc-slider-handle-inner {
  border-radius: 10px;
  background-color: white;
  position: absolute;
  left: -5px;
  top: -5px
}

.rc-slider-handle {
  box-shadow: none !important;
}

.rc-slider-handle:empty:hover, .rc-slider-handle:empty:active {
  -webkit-transform: translateX(-50%) scale(1.1, 1.1) !important;
          transform: translateX(-50%) scale(1.1, 1.1) !important;
}

.rc-slider-handle-inner:hover, .rc-slider-handle-inner:active {
  -webkit-transform: scale(1.1, 1.1) !important;
          transform: scale(1.1, 1.1) !important;
}

@media (max-width: 1100px) {
  .mb\:space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .mb\:space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .mb\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .mb\:flex {
    display: flex;
  }

  .mb\:hidden {
    display: none;
  }

  .mb\:flex-col {
    flex-direction: column;
  }

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

  .mb\:items-start {
    align-items: flex-start;
  }

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

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

  .mb\:justify-around {
    justify-content: space-around;
  }

  .mb\:flex-grow {
    flex-grow: 1;
  }

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

  .mb\:ml-0 {
    margin-left: 0;
  }

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

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

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

  .mb\:p-0 {
    padding: 0;
  }

  .mb\:p-4 {
    padding: 1rem;
  }

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

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

  .mb\:break-all {
    word-break: break-all;
  }

  .mb\:w-64 {
    width: 16rem;
  }

  .mb\:w-84 {
    width: 21rem;
  }

  .mb\:w-auto {
    width: auto;
  }

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

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

@media (min-width: 1122px) {
  .sm\:hidden {
    display: none;
  }

  .sm\:w-screen-lg-min {
    width: 1122px;
  }
}

@media {
}

@media {
  .lg\:w-screen-lg-min {
    width: 1122px;
  }
}


/*# sourceMappingURL=main.13dee3bd.chunk.css.map*/