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

/*
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.
*/
html {
  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: ui-sans-serif, 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"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

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

/*
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 */
  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,
[type=button],
[type=reset],
[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 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;
}

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)
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
}

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

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

input,
textarea,
select {
  outline: none;
  background-color: transparent;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f7fd;
  color: #2f3238;
  font-variant-numeric: tabular-nums;
}

.bg {
  background-color: #ffffff;
  border: 1px solid #e1e4ed;
  border-radius: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wrapper--mobile {
  display: none;
}
@media (max-width: 992px) {
  .wrapper {
    margin-top: 30px;
  }
  .wrapper--desktop {
    display: none;
  }
  .wrapper--mobile {
    display: flex;
  }
}

.section {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .section {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .section {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .section {
    --container-width: 100%;
  }
}

.container {
  grid-area: center;
}
@media (max-width: 992px) {
  .container--paddingMobile {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 30px;
}

.fancybox__content > .f-button.is-close-btn {
  display: none;
}

.authorization {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(3.75rem, 19.108vw + -8.575rem, 7.5rem);
  gap: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
  height: 100vh;
}
.authorization--center {
  text-align: center;
}
.authorization--gap {
  gap: 0;
}
.authorization__exit {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #ff5900;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  margin-bottom: 40px;
}
.authorization__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  position: relative;
  cursor: pointer;
  background-color: #e1e4ed;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 24px 32px 24px 32px;
  border-radius: 10px;
  transition: all 0.38s ease-in-out;
  z-index: 1;
}
.button::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: opacity 0.38s ease-in-out;
}
@media (hover: hover) {
  .button:hover::after {
    opacity: 1;
  }
}
.button--seal {
  width: 50%;
  padding: 14px clamp(1.25rem, 3.822vw + -1.215rem, 2rem) 14px clamp(1.25rem, 3.822vw + -1.215rem, 2rem);
  border-radius: 5px;
  font-size: 16px;
}
.button--full {
  width: 100%;
}
.button--green {
  background-color: #2cc14d;
  color: #ffffff;
}
.button--gray {
  color: #ffffff;
  background-color: #a7aec2;
}
.button--deletWhite {
  color: #a7aec2;
  border: 1px solid #a7aec2;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 16px clamp(1.25rem, 3.822vw + -1.215rem, 2rem) 16px clamp(1.25rem, 3.822vw + -1.215rem, 2rem);
}
.button--deletWhite::after {
  border-radius: 5px;
}
.button--delete {
  padding: 12px 20px 12px 20px;
  font-size: 16px;
}
.button--padding {
  padding: 14px 21px 14px 21px;
  border-radius: 5px;
}
.button--padding::after {
  border-radius: 5px;
}
.button--borderAndPadding {
  padding: 14px clamp(1.25rem, 3.822vw + -1.215rem, 2rem) 14px clamp(1.25rem, 3.822vw + -1.215rem, 2rem);
  border-radius: 5px;
}
.button--borderAndPadding::after {
  border-radius: 5px;
}
.button--p16 {
  padding: 16px clamp(1.25rem, 3.822vw + -1.215rem, 2rem) 16px clamp(1.25rem, 3.822vw + -1.215rem, 2rem);
  border-radius: 5px;
}
.button--p16::after {
  border-radius: 5px;
}
.button--fs14 {
  font-size: 14px;
  line-height: 17px;
}
.button--fs16 {
  font-size: 16px;
  line-height: 20px;
}
.button--weight {
  font-weight: 500;
}
.button--little {
  font-weight: 400;
}
.button--flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.button__plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.button__plus span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}
.button__plus span:last-child {
  rotate: 90deg;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.input--w440 {
  width: clamp(22.5rem, 25.478vw + 6.067rem, 27.5rem);
}
@media (max-width: 992px) {
  .input--w440 {
    width: 100%;
  }
}
.input--w250 {
  width: clamp(9.125rem, 31.529vw + -11.211rem, 15.313rem);
}
@media (max-width: 992px) {
  .input--w250 {
    width: 100%;
  }
}
.input--w275 .choices__inner {
  width: clamp(11.25rem, 30.255vw + -8.264rem, 17.188rem);
}
@media (max-width: 992px) {
  .input--w275 .choices__inner {
    width: 100%;
  }
}
.input--inner500 .choices__inner {
  width: clamp(18.75rem, 63.694vw + -22.333rem, 31.25rem);
}
@media (max-width: 992px) {
  .input--inner500 .choices__inner {
    width: 100%;
  }
}
.input--width {
  width: clamp(14.625rem, 47.771vw + -16.187rem, 24rem);
}
.input--white .choices__inner {
  background-color: #ffffff;
}
.input__label {
  color: #a7aec2;
  font-size: 14px;
  line-height: 17px;
}
.input__value {
  width: 100%;
  padding: 13px 16px 13px 16px;
  border-radius: 5px;
  border: 1px solid #e1e4ed;
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 20px;
  background-color: #f5f7fd;
  transition: all 0.38s ease-in-out;
}
.input__value--width {
  width: clamp(21.875rem, 29.618vw + 2.771rem, 27.688rem);
}
.input__value--w500 {
  width: clamp(18.75rem, 63.694vw + -22.333rem, 31.25rem);
}
.input__value--white {
  background-color: #ffffff;
}
.input__value--textarea {
  resize: none;
  height: clamp(6.25rem, 8.28vw + 0.909rem, 7.875rem);
}
.input__value--textarea::-webkit-scrollbar {
  width: 10px;
}
.input__value--textarea::-webkit-scrollbar-track {
  border-radius: 5px;
}
.input__value--textarea::-webkit-scrollbar-thumb {
  border-radius: 5px;
}
.input__value--error {
  border-color: #cf4b39;
}
.input__value--date {
  position: relative;
  font-family: "Montserrat" !important;
  font-weight: 500;
}
.input__value--date span::before {
  content: "\e903";
  font-family: "icomoon" !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  font-size: clamp(1.125rem, 1.911vw + -0.107rem, 1.5rem);
  color: #a7aec2;
}
.input__textError {
  opacity: 0;
  visibility: hidden;
  color: #cf4b39;
  font-size: 14px;
  display: none;
  line-height: 17px;
  transition: all 0.38s ease-in-out;
}
.input__textError--open {
  opacity: 1;
  visibility: visible;
  display: flex;
}
.input__wrapper {
  position: relative;
}
.input__wrapper span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1.125rem, 1.911vw + -0.107rem, 1.5rem);
  color: #a7aec2;
  transition: all 0.38s ease-in-out;
}
.input__wrapper span.open {
  color: #2cc14d;
}
.input__wrapper--leftIcon .input__value,
.input__wrapper--leftIcon .choices__list--single {
  padding-left: 50px;
}
.input__wrapper--leftIcon span {
  right: auto;
  left: 16px;
}
.input__wrapper--leftIcon .choices + span {
  transform: translateY(0);
}

.title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
.title--center {
  text-align: center;
}
.title--middle {
  font-size: 24px;
  line-height: 30px;
}

.logo {
  width: 198px;
  height: 83px;
}
.logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.form {
  min-width: 526px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 576px) {
  .form {
    min-width: 100%;
  }
}

.header {
  margin-bottom: 30px;
}
.header__container {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e4ed;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__profile {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.header__profile-name {
  padding-right: 20px;
  border-right: 1px solid #e1e4ed;
}
.header__profile-exit {
  color: #ff5900;
}
@media (max-width: 992px) {
  .header {
    display: none;
  }
}

.nav__container {
  display: flex;
  gap: 10px;
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .nav {
    display: none;
  }
}

.choices {
  margin-bottom: 0;
}
.choices__inner {
  background-color: #f5f7fd;
  border: 1px solid #e1e4ed;
  padding: 13px 16px 13px 16px !important;
  min-height: auto;
  border-radius: 5px;
}
.choices__inner .choices__item {
  padding: 0 !important;
}
.choices__list--single {
  padding: 0px 16px 0px 0px;
}
.choices[data-type*=select-one]::after {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.55 9.17831C15.95 8.77831 16.55 8.77831 16.95 9.17831C17.35 9.57831 17.35 10.1783 16.95 10.5783L12.7 14.8283C12.3 15.2283 11.7 15.2283 11.3 14.8283L7.05 10.5783C6.65 10.1783 6.65 9.57831 7.05 9.17831C7.45 8.77831 8.05 8.77831 8.45 9.17831C9.76867 10.497 12 12.7289 12 12.7289C12 12.7289 14.8592 9.86909 15.55 9.17831Z" fill="%23A7AEC2"/></svg>');
  border: none;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  transition: 0.38s ease-in-out;
  rotate: 0deg;
}
.choices[data-type*=select-one].is-open::after {
  top: 20px;
  rotate: 180deg;
}
.choices__item {
  white-space: nowrap;
  padding: 7px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  font-weight: 500;
  color: #2f3238;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 992px) {
  .choices__item {
    white-space: pre-wrap;
  }
}
.choices__list {
  width: 100% !important;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border: 1px solid #e1e4ed;
}

.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-color: #e1e4ed !important;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.choices__list--dropdown .choices__item--selectable,
.choices__list[aria-expanded] .choices__item--selectable {
  font-weight: 500;
  color: #2f3238;
  font-size: 16px;
  line-height: 20px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f5f7fd;
}

.shipments {
  margin-bottom: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
}
.shipments__form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.shipments__inputs {
  gap: 30px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.shipments__buttons {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.shipments__wrapper {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .card {
    flex-direction: column;
    margin: 0 20px;
    padding: 20px;
  }
  .card .button {
    width: 100%;
  }
}
.card--column {
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}
.card__bottom {
  border-top: 1px solid #E1E4ED;
  width: 100%;
}
.card__info {
  display: flex;
  gap: clamp(1.875rem, 16.879vw + -9.012rem, 5.188rem);
}
@media (max-width: 992px) {
  .card__info {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 10px;
  }
  .card__info--mbNone {
    margin-bottom: 0;
  }
}
.card__number {
  font-weight: 700;
  font-size: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
  line-height: clamp(1.563rem, 1.592vw + 0.535rem, 1.875rem);
  word-break: break-all;
  font-variant-numeric: lining-nums;
  max-width: 275px;
}
@media (max-width: 992px) {
  .card__number {
    font-size: 18px;
    line-height: 22px;
    max-width: 100%;
  }
}
.card__date {
  font-size: 14px;
  line-height: 21px;
  font-variant-numeric: lining-nums;
}
.card__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card__item {
  display: grid;
  grid-template-columns: minmax(235px, 415px) minmax(150px, 215px);
  gap: clamp(1.875rem, 19.108vw + -10.45rem, 5.625rem);
}
.card__item--col {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.875rem, 25.478vw + -14.558rem, 6.875rem);
}
.card__item--width {
  grid-template-columns: minmax(455px, 640px) minmax(180px, 270px);
  gap: 30px;
}
@media (max-width: 992px) {
  .card__item {
    grid-template-columns: 1fr;
  }
}
.card__item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__item-text {
  font-size: 12px;
  line-height: 15px;
  color: #a7aec2;
}
.card__item-box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card__item-icon {
  color: #a7aec2;
  font-size: 16px;
}
.card__item-sity {
  font-size: 14px;
  line-height: 17px;
}
.card__item-sity--color {
  color: #a7aec2;
}

.pages {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.pages__arrow {
  color: #a7aec2;
  font-size: 24px;
}
.pages__arrow:last-child {
  transform: rotate(180deg);
}
.pages__number {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 992px) {
  .pages__number {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pages__number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid #e1e4ed;
  background-color: #e1e4ed;
  transition: all 0.38s ease-in-out;
}
.pages__number-item--active {
  pointer-events: none;
  background-color: #ffffff;
}

.edit {
  margin-bottom: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
}
.edit__wrapper {
  display: grid;
  grid-template-columns: clamp(35rem, 95.541vw + -26.624rem, 53.75rem) auto;
  gap: 30px;
}
@media (max-width: 992px) {
  .edit__wrapper {
    grid-template-columns: 1fr;
  }
}
.edit__wrapper-date {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 472px;
}
.edit__card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
@media (max-width: 992px) {
  .edit__card {
    padding: 20px;
  }
}
.edit__card--height {
  height: -moz-fit-content;
  height: fit-content;
}
.edit__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.edit__card-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edit__title {
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  line-height: clamp(1.563rem, 1.592vw + 0.535rem, 1.875rem);
  font-weight: 700;
}
.edit__inputs {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.edit__inputs--wrap {
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .edit__inputs {
    flex-direction: column;
    align-items: flex-start;
  }
}
.edit__checkboxs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.edit__text {
  width: 80%;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 992px) {
  .edit__text {
    width: 100%;
  }
}
.edit__question {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: clamp(0.625rem, 1.592vw + -0.402rem, 0.938rem);
}
.edit__question:last-child {
  margin-bottom: 0;
}
.edit__textMin {
  color: #a7aec2;
  font-size: 12px;
  line-height: 15px;
}
.edit__textMin--size {
  font-size: 14px;
  line-height: 17px;
}
.edit__box {
  display: flex;
  gap: 10px;
}
@media (max-width: 992px) {
  .edit__box {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .edit__box {
    flex-wrap: wrap;
  }
}
.edit__icon {
  color: #a7aec2;
  font-size: 16px;
}
.edit__icon--green {
  color: #2cc14d;
}
.edit__value {
  font-size: 14px;
  line-height: 17px;
}
@media (max-width: 576px) {
  .edit__value {
    width: 70%;
  }
}
.edit__value--color {
  color: #a7aec2;
}
.edit__value--size {
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  line-height: clamp(1.563rem, 1.592vw + 0.535rem, 1.875rem);
  font-weight: 700;
}
.edit__value--size16 {
  font-size: 16px;
  line-height: 20px;
  font-variant-numeric: normal;
}
.edit__buttons {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.edit__seal {
  padding-top: 30px;
  border-top: 1px solid #e1e4ed;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.edit__seal-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edit__seal-wrapper {
  display: flex;
  gap: 10px;
}
.edit__quantity {
  width: 50%;
  border-radius: 5px;
  border: 1px solid #e1e4ed;
  background-color: #f5f7fd;
  display: flex;
  align-items: center;
  padding: 13px 16px 13px 16px;
}
@media (max-width: 992px) {
  .edit__quantity {
    justify-content: space-between;
  }
}
.edit__quantity-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.edit__quantity-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #a7aec2;
}
.edit__quantity-btn--plus span:last-child {
  rotate: 90deg;
}
.edit__quantity-number {
  font-size: 16px;
  line-height: 20px;
  max-width: 90px;
  text-align: center;
}

.air-datepicker-body--day-name {
  color: #2cc14d;
}
.air-datepicker-cell.-current- {
  color: #2f3238;
  background-color: #f5f7fd;
}

.radio {
  display: flex;
  align-items: center;
  gap: 15px;
}
.radio__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #e1e4ed;
  background-color: #f5f7fd;
  transition: all 0.38s ease-in-out;
}
.radio__input:checked {
  background-color: #ffffff;
  border: 6px solid #2cc14d;
}
.radio__label {
  font-size: 16px;
  line-height: 20px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
}
.checkbox__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #e1e4ed;
  background-color: #f5f7fd;
  transition: all 0.38s ease-in-out;
}
.checkbox__input::before {
  opacity: 0;
  color: #ffffff;
  font-size: 14px;
  transition: opacity 0.38s ease-in-out;
}
.checkbox__input:checked {
  background-color: #2cc14d;
  border-color: #2cc14d;
}
.checkbox__input:checked::before {
  opacity: 1;
}
.checkbox__input--white {
  background-color: #ffffff;
}
.checkbox__label {
  font-size: 16px;
  line-height: 20px;
}

.places {
  margin-bottom: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
}
.places__form {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.places__form-left {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.938rem, 4.777vw + -2.144rem, 1.875rem);
}
.places__checkboxs {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 9.554vw + -3.662rem, 4.375rem);
  margin-bottom: 12px;
}
.places__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.places__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.places__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.place {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
.place__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
       column-gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
  row-gap: 20px;
  width: 83%;
}
.place__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.place__text {
  color: #a7aec2;
  font-size: 12px;
  line-height: 15px;
}
.place__box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.place__icon {
  font-size: 16px;
  color: #a7aec2;
}
.place__icon--green {
  color: #2cc14d;
}
.place__value {
  font-size: 14px;
  line-height: 17px;
}
.place__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.place__buttons .button {
  font-weight: 500;
  text-align: center;
}

.users {
  margin-bottom: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
}
.users__form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 576px) {
  .users__form {
    flex-wrap: wrap;
  }
}
.users__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qr {
  max-width: 576px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
.qr__container {
  height: 100%;
  padding: 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.qr__container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.qr__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.qr__btn {
  font-family: "Montserrat" !important;
  position: absolute;
  left: 20px;
  top: 40px;
  display: flex;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
}
.qr__btn:before {
  transform: rotate(90deg);
  font-family: "icomoon" !important;
  font-size: 24px;
}
.qr__window {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 20px;
  margin-bottom: 75px;
  background-image: url("/img/icon/border.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.qr__title {
  max-width: 75%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.modal {
  display: none;
  max-width: 355px;
  padding: 20px;
}
.modal__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__information {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal__val {
  font-size: 16px;
  line-height: 20px;
}
.modal__label {
  font-size: 14px;
  line-height: 17px;
  color: #a7aec2;
}
.modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal__text {
  word-wrap: break-word;
}
.modal--visible {
  display: block;
}

.qr-code {
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-code__window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/icon/border.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-code__img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.accordion__item {
  margin-top: unset;
  border: unset;
  padding-top: 30px;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__title {
  font-family: "Montserrat" !important;
  font-weight: 500 !important;
  font-size: 14px;
  line-height: 100%;
}
.accordion .ac-trigger {
  width: -moz-fit-content;
  width: fit-content;
  color: #2F3238;
  display: flex;
  align-items: center;
  padding: 0;
}
.accordion .ac-trigger::after {
  content: "";
  width: 16px;
  height: 16px;
  right: -26px;
}
.accordion .ac-trigger[aria-expanded=true]::after {
  content: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.11095 12.9445L7.11095 6.18897L4.17761 9.1223C3.82206 9.47786 3.28873 9.47786 2.93317 9.1223C2.57761 8.76675 2.57761 8.23341 2.93317 7.87786L7.37761 3.43341C7.73317 3.07786 8.2665 3.07786 8.62206 3.43341L13.0665 7.87786C13.4221 8.23341 13.4221 8.76675 13.0665 9.1223C12.7109 9.47786 12.1776 9.47786 11.8221 9.1223L8.88873 6.18897L8.88873 12.9445C8.88873 13.4779 8.53317 13.8334 7.99984 13.8334C7.55539 13.8334 7.11095 13.4779 7.11095 12.9445Z" fill="%23A7AEC2"/></svg>');
}
.accordion .ac-trigger[aria-expanded=false]::after {
  content: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.88905 4.05572L8.88905 10.8113L11.8224 7.87794C12.1779 7.52239 12.7113 7.52239 13.0668 7.87794C13.4224 8.2335 13.4224 8.76683 13.0668 9.12239L8.62239 13.5668C8.26683 13.9224 7.7335 13.9224 7.37794 13.5668L2.9335 9.12238C2.57794 8.76683 2.57794 8.2335 2.9335 7.87794C3.28905 7.52239 3.82239 7.52239 4.17794 7.87794L7.11127 10.8113L7.11128 4.05572C7.11128 3.52239 7.46683 3.16683 8.00016 3.16683C8.44461 3.16683 8.88905 3.52239 8.88905 4.05572Z" fill="%23A7AEC2"/></svg>');
}
.accordion__header.ac-trigger {
  flex-direction: column;
  align-items: flex-start;
}
.accordion__header.ac-trigger::after {
  top: 10px;
}
.accordion__content {
  padding-top: 30px;
}

.table {
  overflow: auto;
}
.table table {
  width: 100%;
  border-spacing: inherit;
  text-align: left;
}
@media (max-width: 992px) {
  .table table {
    min-width: 760px;
  }
}
.table table thead tr th {
  font-variant-numeric: lining-nums;
  padding-right: 15px;
  width: 203px;
  font-weight: 500;
  color: #a7aec2;
  font-size: 12px;
  line-height: 1.5;
  padding-bottom: 15px;
}
.table table thead tr th:first-child {
  width: 590px;
}
.table table tbody tr td {
  padding-right: 15px;
  width: 203px;
  color: #2f3238;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 15px;
  font-variant-numeric: oldstyle-nums;
}
.table table tbody tr td a {
  text-decoration: underline;
  transition: color 0.38s ease-in-out;
}
.table table tbody tr td a:hover {
  color: #2cc14d;
}
.table table tbody tr td:first-child {
  width: 590px;
}/*# sourceMappingURL=style.css.map */