*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #372e2e;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.page {
  background: #372e2e;
}

.scrollbar::-webkit-scrollbar {
  width: 1.2rem;
  cursor: pointer;
}
.scrollbar::-webkit-scrollbar-track {
  background: #555;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #999;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #064e3b;
}

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

.section-login {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 5rem 0;
  background: #372e2e;
}
.section-login .login-link {
  font-size: 1.5rem;
  text-decoration: none;
  color: #484848;
  margin: 2rem 0;
  display: block;
  text-align: right;
}
.section-login .login-link:hover {
  text-decoration: underline;
}
.section-login .alert-danger {
  color: red;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.section-login .alert-success {
  font-size: 1.5rem;
}
.section-login .btn {
  width: 100%;
  display: block;
  text-align: center;
}

.login-wrapper {
  position: relative;
  z-index: 10;
}
.login-wrapper__logo {
  margin: 0 0 2rem 0;
  text-align: center;
}
.login-wrapper__logo img {
  max-width: 23rem;
}
.login-wrapper__title {
  margin: 0 0 3rem 0;
  padding: 0;
  color: #372e2e;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
.login-wrapper__info {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
}
.login-wrapper__info strong {
  font-weight: 600;
}
.login-wrapper__info a {
  color: inherit;
  transition: 0.3s;
}
.login-wrapper__info a:hover {
  color: red;
}
.login-wrapper__form {
  background: #fffaf7;
  border-radius: 3rem;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  padding: 2rem;
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 768px) {
  .login-wrapper__form {
    padding: 3.5rem;
  }
}
.login-wrapper__form--centered {
  text-align: center;
}
.login-wrapper__form .form-field__label {
  display: none !important;
}
.login-wrapper__form .form-field__textbox {
  width: 100% !important;
}
.login-wrapper__form .form-submit {
  margin-top: 2.5rem;
  justify-content: center;
}
.login-wrapper__form.scrollbar {
  max-height: calc(100vh - 23rem);
  overflow-y: auto;
}
.login-wrapper__form.scrollbar::-webkit-scrollbar-track {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media only screen and (min-width: 365px) {
  .auth-form {
    width: 32rem;
  }
}
@media only screen and (min-width: 555px) {
  .auth-form {
    width: 38rem;
  }
}
.auth-form .form-submit {
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .login-wrapper__form {
    padding: 3.5rem;
    min-width: 450px;
  }
}
.login-wrapper__form .tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.login-wrapper__form .tiles__item {
  width: 100%;
}
@media (min-width: 550px) {
  .login-wrapper__form .tiles__item {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 991px) {
  .login-wrapper__form .tiles__item {
    width: calc(33.33% - 1.34rem);
  }
}

#gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --gradient-color-1: #372e2e;
  --gradient-color-2: #3f3a3a;
  --gradient-color-3: #362b2b;
  --gradient-color-4: #483d3d;
  z-index: 0;
}

@media only screen and (min-width: 550px) {
  .form-row {
    display: flex;
    column-gap: 1.2rem;
  }
  .form-row .form-field {
    flex: 1;
  }
}
@media only screen and (min-width: 1500px) {
  .form-row {
    column-gap: 2.5rem;
  }
}
.form-row .help-text {
  font-size: 1.2rem;
  width: 100%;
  text-align: right;
  margin: 1.5rem 0 0.5rem;
}
.form-row-wrapper {
  position: relative;
}
.form-row-remove {
  position: absolute !important;
  right: -70px;
  top: 0;
}

.form-label, .form-field__sufix, .form-field__label {
  display: block;
  margin: 2rem 0 0.8rem 0;
  padding: 0;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .form-label, .form-field__sufix, .form-field__label {
    margin: 0.8rem 0 0.8rem 0;
  }
}
.form-label.text-right, .text-right.form-field__sufix, .text-right.form-field__label {
  text-align: right;
}
.form-label.selected, .selected.form-field__sufix, .selected.form-field__label {
  color: red;
}

.form-field {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.2rem 0;
}
.form-field__expanded {
  flex-wrap: nowrap;
}
.form-field__expanded > div {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.form-field__expanded > div .form-check {
  margin-left: 0;
}
.form-field__nowrap {
  flex-wrap: nowrap;
}
.form-field__nowrap label {
  margin-right: 2rem;
}
.form-field__multiple {
  display: flex;
}
.form-field__multiple .form-field {
  flex: auto;
}
.form-field__multiple .form-field__multiple-fields {
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.form-field__product {
  width: calc(100% - 30rem) !important;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 1rem;
}
.form-field__sufix {
  padding: 0 0 0 1rem;
}
@media only screen and (max-width: 767px) {
  .form-field__sufix {
    margin: 1rem 0 0 0;
  }
}
.form-field__textbox, .form-field__select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  border: none;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
}
.form-field__textbox::placeholder, .form-field__select::placeholder {
  font-style: normal;
  color: #484848;
}
.form-field__textbox:read-only, .form-field__select:read-only {
  outline: none !important;
  cursor: default;
}
.form-field__textbox:focus, .form-field__select:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}
.form-field__select {
  background: #fff url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(100% - 1rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2.5rem;
  cursor: pointer !important;
}
.form-field__textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  border: none;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
  height: 10rem;
  resize: none;
}
@media only screen and (min-width: 1200px) {
  .form-field__textarea {
    height: 15rem;
  }
}
.form-field__textarea::placeholder {
  font-style: italic;
}
.form-field__textarea:read-only {
  outline: none !important;
  cursor: default;
}
.form-field--toggler-main {
  margin: 0 0 3rem 0;
}
.form-field--toggler {
  display: flex;
  align-items: center;
}
.form-field--toggler .form-field__label {
  width: auto !important;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  color: #484848;
}
.form-field--toggler .form-field__label.selected {
  color: #064e3b;
}
.form-field--toggler .form-field__edit {
  width: 6.5rem;
  margin: 0 1rem;
}
.form-field__checkbox {
  margin: 0;
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 3rem;
  cursor: pointer;
  min-height: 2.6rem;
  line-height: 2.9rem;
  outline: none;
  width: 100%;
}
.form-field__checkbox:hover {
  text-decoration: underline;
}
.form-field__checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  pointer-events: none;
}
.form-field__checkbox input:checked ~ .form-field__indicator {
  border-color: #064e3b;
}
.form-field__checkbox input:checked ~ .form-field__indicator:after {
  display: block;
}
.form-field__checkbox .form-field__label {
  margin: 0;
  color: #484848;
  cursor: pointer;
}
.form-field__checkbox .form-field__indicator {
  top: 0;
  border: 0.1rem solid #000000;
  background-color: #fff;
  border-radius: 0.4rem;
  position: absolute;
  top: 0.4rem;
  left: 0;
  height: 1.6rem;
  width: 1.6rem;
  background: #fff;
}
.form-field__checkbox .form-field__indicator::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: -5px;
  width: 8px;
  height: 15px;
  border: solid #064e3b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-field--calendar, .form-field--time {
  position: relative;
  max-width: 16rem;
}
.form-field--calendar__icon, .form-field--time__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
  right: 1rem;
  z-index: 2;
  pointer-events: none;
  font-size: 1.9rem;
}
.form-field--two-fields .form-field__textbox {
  width: auto !important;
  flex-grow: 1;
}
.form-field .autoComplete_wrapper {
  width: calc(100% - 22rem);
}
.form-field .autoComplete_wrapper input {
  width: 100%;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  color: #484848;
  padding: 0.8rem 1.5rem;
}

.form-checklists {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 2rem 0;
}
.form-checklists .form-field {
  border-radius: 0;
  overflow: unset;
}
.form-checklists .form-field--checkbox {
  width: auto;
  flex: 0;
  margin: 1rem 3.5rem 1rem 0;
}

.required-indication {
  color: #dc2626;
  font-weight: 700;
}

.success-message {
  width: 100%;
  padding: 1rem 1.5rem;
  color: #3eb9a4;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.success-message img {
  width: 8rem;
}

.toggler {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  width: 6.5rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.toggler input:checked + label {
  background: #064e3b;
  text-indent: 8px;
}
.toggler input:checked + label:after {
  content: "";
  color: #fff;
}
.toggler input:checked + label:before {
  left: 37px;
}
.toggler label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #372e2e;
  border-radius: 3rem;
  font-weight: 400;
  color: #ffffff;
  transition: background 0.3s, text-indent 0.3s;
  text-indent: 3.5rem;
  cursor: pointer;
}
.toggler label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  color: #ffffff;
  z-index: 1;
}
.toggler label:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 3px;
  left: 3px;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  background: #ffffff;
  transition: left 0.3s;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

.form-field-extra-info {
  width: 100%;
  margin: 0 0 3rem 0;
  font-size: 14px;
}

.form-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 2rem 0;
}

.form-default {
  margin: 0 0 2rem 0;
}
.form-default--small {
  max-width: 70rem;
}
.form-default .form-field__label {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field__label {
    width: 22rem;
    min-width: 22rem;
  }
}
@media only screen and (min-width: 768px) {
  .form-default .form-field__textbox, .form-default .form-field__select {
    width: calc(100% - 22rem);
  }
}
@media only screen and (min-width: 1200px) {
  .form-default .form-field__textarea {
    width: calc(100% - 22rem);
  }
}
.form-default .form-field__textarea--wide {
  width: 100% !important;
}
.form-default .form-field__color {
  width: 10rem;
  height: 4rem;
  padding: 0.8rem 1.5rem;
}
.form-default .form-field .select2-container {
  width: 100% !important;
  min-width: 18rem;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field .select2-container {
    width: calc(100% - 22rem) !important;
  }
}
@media only screen and (min-width: 768px) {
  .form-default .form-field .form-field__product .select2-container {
    width: calc(100% - 8rem) !important;
  }
}
.form-default .form-field .select2-selection__placeholder {
  opacity: 0;
}
.form-default .form-field--w-check-field .form-field__label {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-check-field .form-field__label {
    width: 22rem;
  }
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-check-field .select2-container {
    width: calc(100% - 44rem) !important;
    height: 3.9rem !important;
  }
}
.form-default .form-field--w-check-field .form-field--check-field {
  width: 100%;
  margin: 1rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-check-field .form-field--check-field {
    margin: 0;
    width: 22rem;
    padding: 0 0 0 1.5rem;
  }
}
.form-default .form-field--w-toggle-field {
  margin: 0 0 2rem 0;
}
.form-default .form-field--w-toggle-field .form-field__label {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-toggle-field .form-field__label {
    width: 22rem;
  }
}
.form-default .form-field--w-toggle-field .form-field--toggler {
  margin: 0;
}
.form-default .form-field--w-sufix .form-field__label {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-sufix .form-field__label {
    width: 22rem;
  }
}
.form-default .form-field--w-sufix .form-field__textbox {
  width: calc(100% - 8rem);
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-sufix .form-field__textbox {
    width: calc(100% - 30rem);
  }
}
@media only screen and (min-width: 768px) {
  .form-default .form-field--w-sufix .form-field__sufix {
    width: 8rem;
  }
}
.form-default .form-field--calendar, .form-default .form-field--time {
  position: relative;
  max-width: 100%;
}

.form-default-hidden {
  display: none;
  margin-top: 3rem;
}
.form-default-hidden.visible {
  display: block;
}

.form-row-separator {
  width: 100%;
  height: 0.1rem;
  background: rgba(0, 0, 0, 0.1);
  margin: 1rem 0 2rem 0;
}

.select2-hidden-accessible {
  min-width: 1px !important;
}

@media only screen and (min-width: 768px) {
  .form-field .form-field__checkbox {
    margin: 1rem 0 0 0;
  }
}

.form-payment-table {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  margin: 0 0 2rem 0;
}
@media (min-width: 1200px) {
  .form-payment-table {
    font-size: 1.5rem;
  }
}
.form-payment-table td:first-child {
  padding: 0 2rem 0 0;
}
.form-payment-table td:last-child {
  text-align: right;
}

.form-field-duo {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
}
.form-field-duo .form-field-duo__select {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-field-duo .form-field-duo__select {
    width: calc(100% - 18rem - 1.5rem);
  }
}
.form-field-duo .form-field-duo__select .select2-container {
  width: 100% !important;
}
.form-field-duo .form-field--w-sufix {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-field-duo .form-field--w-sufix {
    max-width: 18rem;
  }
}
.form-field-duo .form-field--w-sufix .form-field__textbox {
  width: calc(100% - 8rem);
}
.form-field-duo.form-field-duo--delivery {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .form-field-duo.form-field-duo--delivery .form-field:last-child {
    flex: unset;
  }
}
@media only screen and (max-width: 767px) {
  .form-field-duo.form-field-duo--delivery .form-field {
    flex: unset;
    width: 100% !important;
  }
}
.form-field-duo.form-field-duo--delivery .select2-container {
  width: 100% !important;
}
.form-field-duo.form-field-duo--delivery .form-field .select2-selection__placeholder {
  opacity: 1;
}

.select2-container--open,
.select2-container--focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
}

.form-check {
  display: inline-block;
  min-height: 1.5rem;
  font-size: 1.5rem;
  margin-top: 1.2rem;
}
.form-check + .form-check {
  margin-left: 2rem;
}
.form-check .form-check-input {
  float: left;
}
.form-check.form-check-radio {
  margin-right: 2rem;
}
.form-check.form-check-radio input {
  margin-right: 0.5rem;
}

.form-check-input {
  width: 1em !important;
  height: 1em;
  padding: 0;
  margin-top: 0.65rem;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  transition: background-position 0.15s ease-in-out;
  top: -6px;
  position: relative;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
  margin-right: 1.5rem;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #064e3b;
  outline: 0;
}
.form-check-input:checked {
  background-color: #064e3b;
  border-color: #064e3b;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-switch {
  display: inline-block;
  margin: 1.5rem 0 0;
}
.form-switch .form-check-input {
  min-width: 2.5em;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
  padding: 1rem;
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2064e3b'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch label {
  font-size: 1.5rem;
}
.form-switch.yes-no {
  display: flex;
  margin-top: 1.2rem;
  min-height: 3.9rem;
}
.form-switch.yes-no span {
  margin-right: 1.5rem;
}
.form-switch.yes-no label {
  margin-right: 0;
}

.collection-wrapper .collection-row {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #484848;
}
.collection-wrapper .collection-row:last-of-type {
  border-bottom: 0;
}

.collection-controls {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}

.invalid-feedback {
  font-size: 1.4rem;
  color: red;
  margin: 1.5rem 0 0;
  text-align: right;
}

.form-default .invalid-feedback {
  text-align: left;
  margin: 1.5rem 0;
  width: 100%;
}

.export__custom-final-price, .export__proforma-price {
  display: none;
}
.export__custom-final-price.open, .export__proforma-price.open {
  display: block;
}
.export__new-customer {
  display: none;
}
.export__new-customer.open {
  display: block;
}
.export__customer-wrapper {
  display: none;
}
.export__customer-wrapper.open {
  display: block;
}
.export__planned-wrapper {
  display: none;
}
.export__planned-wrapper.open {
  display: block;
}
.export__date-wrapper {
  display: none;
}
.export__date-wrapper.open {
  display: block;
}

.import__new-supplier, .import__new-carrier {
  display: none;
}
.import__new-supplier.open, .import__new-carrier.open {
  display: block;
}

.customer__company-wrapper, .customer__end-customer-wrapper, .customer__delivery-address-wrapper {
  display: none;
}
.customer__company-wrapper.open, .customer__end-customer-wrapper.open, .customer__delivery-address-wrapper.open {
  display: block;
}

.btn, .pagination__btn, .btn-back {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  padding: 1rem 1.5rem;
  appearance: none;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  transition: 0.3s;
  color: #000000;
  border-radius: 0.5rem;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.btn:hover, .pagination__btn:hover, .btn-back:hover {
  color: #393562;
  text-decoration: none;
}
.btn:disabled, .pagination__btn:disabled, .btn-back:disabled, .btn.btn-disabled, .btn-disabled.pagination__btn, .btn-disabled.btn-back {
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.3;
}

.btn-primary, .pagination__btn {
  background: #064e3b !important;
  color: #fff !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
}
.btn-primary span, .pagination__btn span {
  color: inherit !important;
}
.btn-primary:hover, .pagination__btn:hover {
  background: rgba(6, 78, 59, 0.8) !important;
  color: #fff !important;
}
.btn-primary:focus, .pagination__btn:focus {
  box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.4);
}

.btn-secondary {
  background: #fff !important;
  color: rgba(55, 46, 46, 0.8) !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.1rem solid rgba(55, 46, 46, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.0431372549);
}
.btn-secondary span {
  color: inherit !important;
}
.btn-secondary:hover {
  background: #372e2e !important;
  color: #fff !important;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 4px rgba(55, 46, 46, 0.4);
}

.btn-cancel {
  background: #ddd !important;
  color: #000000 !important;
}
.btn-cancel span {
  color: inherit !important;
}
.btn-cancel:hover {
  background: red !important;
  color: #ffffff !important;
}

.btn-confirm {
  background: red !important;
  color: #ffffff !important;
}
.btn-confirm span {
  color: inherit !important;
}
.btn-confirm:hover {
  background: red-50 !important;
  color: #ffffff !important;
}

.btn-icon {
  padding: 1rem 2.5rem 1rem 1rem;
}
@media only screen and (min-width: 768px) {
  .btn-icon {
    padding: 1rem 2rem 1rem 1.5rem;
  }
}

.btn-back {
  padding: 0;
}
.btn-back:hover {
  color: #064e3b;
  text-decoration: underline;
}

.btn-small {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  text-decoration: none !important;
}

.btn-reset {
  text-decoration: underline;
  font-weight: normal;
}
.btn-reset:hover {
  color: #064e3b;
}

.btn-detail {
  text-decoration: underline !important;
  font-weight: normal;
  display: inline-block !important;
  padding: 0 1rem !important;
}
.btn-detail:hover {
  color: #064e3b;
  text-decoration: none !important;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: #372e2e;
  transition: padding-left 0.3s ease;
}
@media (min-width: 991px) {
  .header {
    padding: 1.5rem 1.5rem 0 0;
  }
}
@media (min-width: 1500px) {
  .header {
    padding: 1.5rem 1.5rem 0 0;
  }
}
@media (min-width: 991px) {
  .header.closed {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
  .header.closed .header__logo {
    width: 0;
  }
}
.header__main {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__main .header__selector .form-field {
  margin-bottom: 0;
}
.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 7.4rem;
  background: #372e2e;
  transition: 0.3s;
}
@media (min-width: 991px) {
  .header__logo {
    width: 23rem;
  }
}
.header__logo::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.1);
}
.header__logo img {
  max-width: calc(100% - 4rem);
  max-height: calc(100% - 2rem);
}
@media (min-width: 1500px) {
  .header__logo img {
    max-width: calc(100% - 4rem);
  }
}
.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  column-gap: 1.5rem;
  flex: 1;
  background: #fffaf7;
}
@media (min-width: 991px) {
  .header__container {
    border-top-right-radius: 2.5rem;
    border-top-left-radius: 2.5rem;
  }
}
.header__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  height: 0.1rem;
  background: rgba(0, 0, 0, 0.1);
}
.header__left {
  display: flex;
  align-items: center;
  flex: 1;
  column-gap: 1.5rem;
  padding: 0 0 0 1rem;
}
@media (min-width: 991px) {
  .header__left {
    padding: 0 0 0 1.5rem;
    column-gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .header__left {
    padding: 0 0 0 2rem;
  }
}
.header__right {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
@media (min-width: 550px) {
  .header__right {
    padding: 0 1rem 0 0;
  }
}
.header__selector {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .header__selector {
    display: none;
  }
}
.header__selector > form {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.header__selector > form span {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .header__selector > form span {
    font-size: 1.5rem;
  }
}
.header__selector.fullwidth > form {
  display: block;
}
.header__app-name {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  display: none;
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .header__app-name {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .header__app-name {
    display: block;
  }
}
.header__sidebar-toggle {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.header__sidebar-toggle ion-icon {
  font-size: 2.8rem;
}
.header__nav {
  display: flex;
  align-items: center;
  column-gap: 0.1rem;
}
@media (min-width: 350px) {
  .header__nav {
    column-gap: 1rem;
  }
}
@media (min-width: 991px) {
  .header__nav {
    column-gap: 1rem;
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-item--search {
  display: block;
}
@media (min-width: 991px) {
  .header__nav-item--search {
    display: none;
  }
}
.header__nav-link {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  padding: 0.8rem;
}
.header__nav-link ion-icon {
  font-size: 2.6rem;
}
.header__nav-link-indication {
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #dc2626;
  pointer-events: none;
}
.header__nav-submenu {
  display: none;
  background: #ffffff;
  box-shadow: 0 10px 40px 0 rgba(104, 113, 123, 0.2);
  border-radius: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.header__nav-submenu.open {
  display: block;
}
@media (max-width: 550px) {
  .header__nav-submenu {
    position: fixed;
    top: 6.5rem;
    left: 1.5rem;
    width: calc(100vw - 3rem);
  }
}
@media (min-width: 551px) {
  .header__nav-submenu {
    position: absolute;
    top: 100%;
    right: -1.3rem;
    width: 28rem;
  }
  .header__nav-submenu:before {
    content: "";
    position: absolute;
    top: -0.7rem;
    right: 2.8rem;
    transform: rotate(45deg);
    width: 1.3rem;
    height: 1.3rem;
    background: #ffffff;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-left: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
}
.header__nav-submenu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-submenu > ul li {
  margin: 0;
  padding: 0;
}
.header__nav-submenu > ul li:last-child a {
  border: none;
}
.header__nav-submenu > ul li a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  position: relative;
  display: flex;
  align-items: center;
  height: 4.6rem;
  padding: 0 1rem 0 5rem;
  font-size: 1.5rem;
  transition: 0.3s;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .header__nav-submenu > ul li a {
    font-size: 1.5rem;
  }
}
.header__nav-submenu > ul li a:hover {
  color: #064e3b;
}
.header__nav-submenu > ul li a ion-icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  font-size: 2.2rem;
}
.header__nav-submenu-notifications-header {
  line-height: 1;
  font-size: 1.5rem;
}
.header__nav-submenu-profile-header {
  line-height: 1.2;
  font-size: 1.5rem;
  text-align: left;
}
.header__nav-submenu-profile-header strong {
  font-size: 1.5rem;
}
.header__nav-submenu-notifications-footer a {
  display: block;
  padding: 1.5rem 0;
  color: #064e3b;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}
.header__nav-submenu-notifications-footer a:hover {
  text-decoration: underline;
  color: #064e3b;
}

.submenus-header-base, .header__nav-submenu-notifications-header, .header__nav-submenu-profile-header {
  padding: 1.5rem;
  color: #484848;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.submenu-notifications__item:last-child > * {
  border: none;
}

.submenu-notification-card {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.submenu-notification-card:hover .submenu-notification-card__title {
  color: #064e3b;
  text-decoration: underline;
}
.submenu-notification-card__content {
  width: 100%;
  padding: 0;
}
.submenu-notification-card__title {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  margin-bottom: 0.3rem;
  font-size: 1.5rem !important;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .submenu-notification-card__title {
    font-size: 1.5rem;
  }
}
.submenu-notification-card__title a {
  color: #064e3b;
  text-decoration: none;
}
.submenu-notification-card__title a:hover {
  text-decoration: underline;
}
.submenu-notification-card__title.unseen {
  font-weight: 700;
}
.submenu-notification-card__time {
  color: #372e2e;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
}

.header-search {
  position: relative;
  flex: 1;
  display: none;
  max-width: 45rem;
}
@media (max-width: 990px) {
  .header-search.open {
    display: block;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    border: 1rem solid transparent;
    background: #ffffff;
  }
}
@media (min-width: 991px) {
  .header-search {
    display: block !important;
  }
}
.header-search__input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 6.5rem 1rem 2rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-radius: 2.5rem;
  border: none;
  background: #ffffff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
}
.header-search__input:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}
.header-search__input::placeholder {
  color: rgba(55, 46, 46, 0.5);
}
.header-search__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  padding: 0 1.5rem;
}
.header-search__btn ion-icon {
  font-size: 2.2rem;
}
.header-search__btn:hover ion-icon {
  color: #064e3b;
}

.header-profile-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
  line-height: 3rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: #1e40af;
}

.sidebar {
  position: fixed;
  z-index: 99;
  top: 7rem;
  bottom: 0;
  left: 0;
  width: 23rem;
  padding: 0 0 0 1rem;
  background: #372e2e;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .sidebar {
    top: 7.4rem;
    transform: translateX(-100%);
  }
}
@media (min-width: 991px) {
  .sidebar {
    top: 8.9rem;
    padding: 0 0 0 1.5rem;
  }
}
@media (max-width: 990px) {
  .sidebar.closed {
    transform: translateX(0);
  }
}
@media (min-width: 991px) {
  .sidebar.closed {
    transform: translateX(-100%);
  }
  .sidebar.closed .sidebar__nav {
    opacity: 0;
  }
  .sidebar.closed .sidebar__nav ul li a span {
    display: none;
  }
}
.sidebar__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 3rem;
  height: calc(100vh - 8.5rem);
  overflow-y: auto;
}
@media (min-width: 991px) {
  .sidebar__content {
    top: 8.4rem;
    height: calc(100vh - 8.5rem - 2em);
  }
}
.sidebar__selector {
  padding: 1.3rem 1rem 0 0;
}
@media (min-width: 768px) {
  .sidebar__selector {
    display: none;
  }
}
.sidebar__selector .form-field {
  margin: 0;
}
.sidebar__nav {
  margin: 1rem 0 3.5rem 0;
}
@media (min-width: 991px) {
  .sidebar__nav {
    margin: 3rem 0;
  }
}
.sidebar__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__nav > ul > li {
  margin: 0;
  padding: 0.2rem 0;
}
.sidebar__nav > ul > li.submenu {
  padding-left: 3rem;
}
.sidebar__nav > ul > li > ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 1rem 0;
}
.sidebar__nav > ul > li > ul.opened {
  display: block;
}
.sidebar__nav > ul > li > ul > li {
  margin: 0;
  padding: 0;
}
.sidebar__nav > ul > li > ul > li > a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.5rem;
  padding: 1rem 2rem 1rem 5.5rem;
  text-align: left;
  transition: 0.3s;
  font-size: 1.4rem !important;
  font-weight: normal;
  color: #fff;
  line-height: 1;
}
@media (min-width: 1200px) {
  .sidebar__nav > ul > li > ul > li > a {
    font-size: 1.5rem;
  }
}
.sidebar__nav > ul > li > ul > li > a:hover {
  color: #597fbc;
}
.sidebar__nav > ul > li > ul > li > a span {
  flex: 1;
}
.sidebar__nav > ul > li.selected > a {
  background: #fffaf7;
  color: #372e2e;
}
.sidebar__nav > ul > li.selected > a ion-icon {
  color: #064e3b;
}
.sidebar__nav > ul > li.selected > a:hover {
  background: #fffaf7;
  color: #064e3b;
}
.sidebar__nav > ul > li.selected > a:hover ion-icon {
  color: #064e3b;
}
@media (min-width: 991px) {
  .sidebar__nav > ul > li.selected > a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background: url(../images/admin/radiuscorner.svg) no-repeat center center;
    background-size: 100%;
    transform: translateY(-100%) rotate(90deg);
  }
  .sidebar__nav > ul > li.selected > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background: url(../images/admin/radiuscorner.svg) no-repeat center center;
    background-size: 100%;
    transform: translateY(100%);
  }
}
.sidebar__nav > ul > li > a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.5rem;
  padding: 1.4rem 2rem;
  text-align: left;
  transition: 0.3s;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  border-bottom-left-radius: 2.5rem;
  border-top-left-radius: 2.5rem;
}
@media (min-width: 1200px) {
  .sidebar__nav > ul > li > a {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .sidebar__nav > ul > li > a {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.sidebar__nav > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar__nav > ul > li > a span {
  flex: 1;
}
.sidebar__nav > ul > li > a .arrow-ico ion-icon {
  font-size: 14px;
  color: #ccc;
}
.sidebar__nav > ul > li > a ion-icon {
  color: #fff;
}

.text-red {
  color: #dc2626;
}

.content {
  padding: 8.5rem 0 4rem 0;
  transition: margin-left 0.3s ease;
  background: #fffaf7;
}
@media (min-width: 991px) {
  .content {
    padding: 8.9rem 0 4rem 0;
    margin-left: 23rem;
    margin-right: 1.5rem;
    min-height: calc(100vh - 1.5rem);
    border-bottom-right-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem;
  }
}
@media (min-width: 991px) {
  .content.closed {
    margin-left: 1.5rem;
  }
}
.content__container {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .content__container {
    padding: 0 2rem;
  }
}
.content__container--error {
  color: #ffffff;
}
.content__container--error .container-header__title {
  color: #ffffff;
}
.content__container--error p {
  font-size: 1.6rem;
}

.container-header {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (min-width: 1200px) {
  .container-header {
    font-size: 1.5rem;
  }
}
.container-header__full {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  gap: 2rem;
}
.container-header__controls {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.container-header__center {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.container-header__left, .container-header__right {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 2rem;
}
.container-header__title {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000000;
}
.container-header__subtitle {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000000;
}
.container-header__subtitle strong {
  color: #372e2e;
}

.content-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.container-body__title {
  margin: 0 0 2rem 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #000000;
}
.container-body__title a {
  color: #000000;
  text-decoration: none;
}
.container-body__title a:hover {
  text-decoration: underline;
}
.container-body__row {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .container-body__row {
    display: flex;
    flex-flow: row;
    column-gap: 2rem;
  }
}
@media (min-width: 1500px) {
  .container-body__row {
    column-gap: 3rem;
  }
}
.container-body__col {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .container-body__col {
    flex: 1;
  }
}
.container-body__title-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  margin: 0 0 2rem 0;
}
.container-body__title-wrapper .container-body__title {
  margin: 0;
}
.container-body__title-wrapper .container-body__minibox {
  font-size: 1.5rem;
  border-radius: 0.8rem;
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
}
.container-body__title-wrapper .container-body__minibox span {
  font-weight: bold;
}
.container-body__title-wrapper .container-body__minibox .btn {
  margin-left: 1rem;
}
.container-body__title-part {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1rem;
}

.tabs-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 0 2rem 0;
}
.tabs-panel__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tabs-panel__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  color: red;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 1rem 3rem;
  background: #fff;
  border: 0.1rem solid #9c9ab0;
  color: #393562;
}
@media only screen and (max-width: 550px) {
  .tabs-panel__btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 15px;
  }
}
.tabs-panel__btn:hover {
  border-color: #597fbc;
  background: #edf4ff;
  color: #597fbc;
  text-decoration: none;
}
.tabs-panel__btn.selected {
  border-color: #597fbc;
  background: #edf4ff !important;
  color: #597fbc !important;
}
.tabs-panel__title {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: red-50;
}
.tabs-panel__title strong {
  color: red;
}

.container-body-separator {
  width: 100%;
  height: 3rem;
}

.table-last-c-end {
  width: 100%;
}
.table-last-c-end tr td:last-child,
.table-last-c-end tr th:last-child {
  text-align: right;
}

.table-sep-rows tr td,
.table-sep-rows tr th {
  border-top: 0.1rem solid rgba(55, 46, 46, 0.2);
}
.table-sep-rows tr:first-child td,
.table-sep-rows tr:first-child th {
  border-top: none;
}

.table-th-highlight th {
  color: #84cc16;
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.tiles__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  width: 100%;
  padding: 2rem;
  line-height: 1.4;
  color: #000000;
  border-radius: 0.8rem;
  background: #ffffff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: none;
  text-align: center;
}
@media (min-width: 1200px) {
  .tiles__item {
    font-size: 1.5rem;
  }
}
.tiles__item:hover {
  background: #e9e2de;
  text-decoration: none;
}
@media (min-width: 768px) {
  .tiles__item {
    width: 30rem;
    padding: 4rem 2rem;
  }
}

.box-table {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
  margin: 0 0 0 0;
}
@media (min-width: 1200px) {
  .box-table {
    font-size: 1.5rem;
  }
}
@media (max-width: 990px) {
  .box-table--responsive {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .box-table--responsive .box-table__row--head {
    display: none !important;
  }
  .box-table--responsive .box-table__row {
    display: block;
    padding: 1rem 0;
    width: 50%;
  }
  .box-table--responsive .box-table__row:nth-child(2n+1) {
    padding: 1rem 0 1rem 1rem;
    border-left: 0.1rem solid red-25;
  }
  .box-table--responsive .box-table__col {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .box-table--responsive .box-table__col:first-child {
    padding: 0.5rem 1rem;
  }
  .box-table--responsive .box-table__col:last-child {
    padding: 0.5rem 1rem;
  }
  .box-table--responsive .box-table__col .box-table__col-lbl {
    display: inline-block;
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 767px) {
  .box-table--responsive .box-table__row {
    width: 100%;
    padding: 0 !important;
    margin: 0.5rem 0 !important;
    border-left: none !important;
  }
}
.box-table__col-lbl {
  display: none;
  font-weight: 600;
}
.box-table a {
  color: inherit;
  text-decoration: underline;
}
.box-table a:hover {
  text-decoration: none;
}
.box-table__row {
  display: table-row;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
}
.box-table__row--clickable {
  cursor: pointer;
}
.box-table__row--clickable:hover .box-table__col {
  background: #e9e2de;
}
.box-table__row--head {
  border: none;
  box-shadow: none;
}
.box-table__row--head .box-table__col {
  padding: 0 0.5rem;
  background: transparent;
  font-weight: 700;
  color: #372e2e;
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .box-table__row--head .box-table__col {
    padding: 0 1rem;
  }
}
@media (min-width: 1500px) {
  .box-table__row--head .box-table__col {
    padding: 0 2rem;
  }
}
.box-table__row--head.box-table__sticky {
  position: sticky;
  top: 87px;
  z-index: 1000;
  background: #fffaf7;
}
.box-table__row--head.box-table__sticky .box-table__col {
  border-radius: 0;
}
.box-table__row.highlight-invoice .box-table__col {
  background-color: #dbe7ff;
}
.box-table__row.highlight-delivery-own .box-table__col {
  background-color: #ffdbdb;
}
.box-table__row.highlight-pick-up .box-table__col {
  background-color: #fddbff;
}
.box-table__col {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 1.5rem 0.5rem;
  background: #ffffff;
  border: none;
  box-shadow: none;
  line-height: 1.4;
  color: #000000;
}
.box-table__col.text-center {
  text-align: center;
}
@media (min-width: 550px) {
  .box-table__col {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 1500px) {
  .box-table__col {
    padding: 1.5rem 2rem;
  }
}
.box-table__col:first-child {
  border-radius: 0.8rem 0 0 0.8rem;
  padding-left: 1rem;
}
@media (min-width: 550px) {
  .box-table__col:first-child {
    padding-left: 2rem;
  }
}
.box-table__col:last-child {
  border-radius: 0 0.8rem 0.8rem 0;
  padding-right: 1rem;
}
@media (min-width: 550px) {
  .box-table__col:last-child {
    padding-right: 2rem;
  }
}
.box-table__col--one-line {
  white-space: nowrap;
}
.box-table__col .form-field {
  margin: 0;
}
.box-table__col__products ion-icon {
  vertical-align: middle;
}
.box-table__col__products__wrapper {
  display: none;
}
.box-table__col__products__wrapper.open {
  display: block;
}
.box-table__no-results {
  vertical-align: middle;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  line-height: 1.4;
  color: #000000;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 550px) {
  .box-table__no-results {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 1500px) {
  .box-table__no-results {
    padding: 1.5rem 2rem;
  }
}
.box-table__actions {
  display: flex;
  justify-content: flex-end;
}

.action-icon-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1rem;
}

.action-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  width: 3.6rem;
  margin-bottom: 0;
  border: none;
  background: none;
  outline: none !important;
  transition: 0.3s;
  cursor: pointer;
}
.action-icon:disabled, .action-icon[disabled] {
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.5;
}
.action-icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  background-color: #eee;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
.action-icon:focus:before, .action-icon:hover:before {
  opacity: 1;
  height: 120%;
  width: 120%;
}
.action-icon.color-red:before {
  background-color: #ffdbe4;
}
.action-icon ion-icon {
  font-size: 2rem;
}

.stock-add {
  color: green;
}

.stock-remove {
  color: red;
}

.highlighted-green {
  color: #3eb9a4;
}

.highlighted-red {
  color: #de209b;
}

.tag-list {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.tag-list__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 12px !important;
  border-radius: 0;
  color: #ffffff;
  cursor: default;
}
@media (min-width: 1200px) {
  .tag-list__item {
    font-size: 1.5rem;
  }
}
.tag-list__item--klienti {
  background: #9b59b6;
}
.tag-list__item--uzivatele {
  background: #6c5ffc;
}
.tag-list__item--podpora {
  background: #3eb9a4;
}
.tag-list__item--notifikace {
  background: #de209b;
}
.tag-list__item--stranka {
  background: #f2bd3d;
}
.tag-list__item--formular {
  background: #3eb9a4;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.modal.open {
  display: block !important;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.modal__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal-window {
  display: block;
  position: relative;
  pointer-events: all;
  max-width: calc(100vw - 3rem);
  max-height: calc(100vh - 3rem);
  padding: 2rem;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .modal-window {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .modal-window {
    padding: 4rem 5rem;
  }
}
.modal-window__content {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  width: 100%;
  padding: 2rem;
  line-height: 1.4;
  color: red;
}
@media (min-width: 1200px) {
  .modal-window__content {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .modal-window__content {
    padding: 3rem;
    width: 60%;
  }
}
@media only screen and (min-width: 1200px) {
  .modal-window__content {
    padding: 4rem 5rem;
  }
}
.modal-window__content h2 {
  margin: 2rem 0 3rem 0;
  padding: 0;
  color: red;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .modal-window__content h2 {
    font-size: 1.5rem;
  }
}
.modal-window__close {
  position: absolute;
  top: 2.2rem;
  right: 0;
  margin: 0;
  padding: 0 0.8rem;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 6rem;
  line-height: 0.2;
  cursor: pointer;
  transition: 0.3s;
  color: red;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
}
.modal-window__close:hover {
  color: #000000;
}
@media only screen and (min-width: 1200px) {
  .modal-window__close {
    top: 3.2rem;
    right: 0.7rem;
    font-size: 6rem;
  }
}

.general-modal-content {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
}

.confirmation-modal-content__text {
  padding-top: 3rem;
  margin-bottom: 3rem;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
}
.confirmation-modal-content__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.swal2-popup {
  font-size: 1.5rem !important;
}

.content-box {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  padding: 2rem;
  border-radius: 0.6rem;
  background: #ffffff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .content-box {
    font-size: 1.5rem;
  }
}
.content-box .form-default {
  max-width: 70rem;
}
.content-box .form-default--wider {
  max-width: 120rem;
}
.content-box__attachments {
  display: flex;
  flex-flow: row wrap;
  column-gap: 2rem;
  row-gap: 4rem;
  margin: 1rem 0 0 0;
}
.content-box__attachments .content-box__attachment {
  text-decoration: none;
  color: #484848;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .content-box__attachments .content-box__attachment {
    max-width: 48%;
  }
}
@media (min-width: 992px) {
  .content-box__attachments .content-box__attachment {
    max-width: 31%;
  }
}
@media (min-width: 1500px) {
  .content-box__attachments .content-box__attachment {
    max-width: 23%;
  }
}
@media (min-width: 1700px) {
  .content-box__attachments .content-box__attachment {
    max-width: 18%;
  }
}
.content-box__attachments .content-box__attachment > div {
  text-align: center;
}
.content-box__attachments .content-box__attachment img {
  max-width: 20rem;
  display: block;
  height: auto;
  margin-bottom: 2rem;
}
.content-box__attachments .content-box__attachment ion-icon {
  vertical-align: middle;
}
.content-box__attachments .content-box__attachment a {
  color: #dc2626;
}
.content-box__title {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}
@media (min-width: 1200px) {
  .content-box__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .content-box__title {
    font-size: 1.5rem;
  }
}
.content-box__title strong {
  color: #372e2e;
}
.content-box__subtitle {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  font-weight: 600;
  font-size: 18px;
  margin: 3rem 0 2rem 0;
  color: #374151;
}
@media (min-width: 1200px) {
  .content-box__subtitle {
    font-size: 1.5rem;
  }
}
.content-box__check-title {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-weight: 600;
  font-size: 1.6rem !important;
  margin: 0;
  color: #374151;
}
@media (min-width: 1200px) {
  .content-box__check-title {
    font-size: 1.5rem;
  }
}
.content-box__check-title .form-field {
  margin: 0;
}
.content-box__check-title .form-field__edit {
  margin: 0;
}
.content-box__texts > *:last-child {
  margin: 0;
}
.content-box__texts p {
  margin: 0 0 2rem 0;
}
.content-box__detail-table tbody tr td {
  padding: 0.2rem 0;
}
.content-box__detail-table tbody tr td:first-child {
  font-weight: 500;
  padding: 0.2rem 1.5rem 0.2rem 0;
  vertical-align: top;
}
@media (min-width: 991px) {
  .content-box__detail-table tbody tr td:first-child {
    padding: 0.2rem 2.5rem 0.2rem 0;
  }
}
.content-box__detail-table a {
  color: #484848;
}
.content-box__detail-table a:hover {
  color: #064e3b;
  text-decoration: none;
}
.content-box__detail-table--small small {
  margin-left: 18px;
}

.context-box__price-table-wrapp {
  max-width: 55rem;
  margin: 1rem 0 0 0;
  border: 0.1rem solid rgba(55, 46, 46, 0.2);
  border-radius: 0.6rem;
  padding: 1.6rem 2rem 1.6rem 2rem;
  background: rgba(55, 46, 46, 0.05);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
}

.content-box__price-table tbody tr td {
  padding: 0.2rem 0;
}
.content-box__price-table tbody tr td:first-child {
  font-weight: 600;
  padding: 0.2rem 1.5rem 0.2rem 0;
}
@media (min-width: 991px) {
  .content-box__price-table tbody tr td:first-child {
    padding: 0.2rem 2.5rem 0.2rem 0;
  }
}

.context-box__price-table-wrapp-controls {
  display: flex;
  flex-flow: row wrap;
  gap: 1;
  margin: 1rem 0 0 0;
}

.error-message {
  color: red;
  border: 1px solid red;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.error-message:last-of-type {
  margin-bottom: 0;
}

.success-message {
  color: green;
  border: 1px solid green;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.success-message:last-of-type {
  margin-bottom: 0;
}

.icon-red {
  color: red;
}

.icon-green {
  color: green;
}

.box-info {
  font-size: 1.5rem;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  border-radius: 0.6rem;
}

.report-supplier {
  font-weight: bold;
}
.report-supplier__minus {
  color: red;
}
.report-supplier__plus {
  color: green;
}

.management-office--wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
@media (max-width: 1260px) {
  .management-office--wrapper {
    gap: 1.5rem;
  }
}
.management-office--item {
  flex: 1 1 calc(33.333% - 3rem);
  min-width: 20rem;
  position: relative;
}
.management-office--item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 1260px) {
  .management-office--item:not(:last-child)::after {
    display: none;
  }
}
.management-office--item:last-child {
  border-right: none;
}
@media (max-width: 1260px) {
  .management-office--item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 1.5rem;
  }
  .management-office--item:last-child {
    border-bottom: none;
  }
}

.filter-panel {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filter-panel.mb-4 {
  margin-bottom: 4rem;
}
.filter-panel__header {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem 0 0;
}
@media (min-width: 1200px) {
  .filter-panel__header {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .filter-panel__header {
    width: 100% !important;
  }
}
.filter-panel__header img {
  width: 2rem;
}
.filter-panel__fields {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  flex: 1;
}
@media (max-width: 550px) {
  .filter-panel__fields .btn {
    width: 100%;
  }
}
.filter-panel__fields .filter-date-wrapper {
  display: flex;
  gap: 1rem;
  position: relative;
}
.filter-panel__fields .filter-date-wrapper .filter-date-links {
  position: absolute;
  left: 0;
  bottom: -2rem;
  font-size: 1.1rem;
}
.filter-panel__fields .filter-date-wrapper .filter-date-links span {
  cursor: pointer;
  text-decoration: underline;
  margin-right: 1rem;
}
.filter-panel__fields .filter-date-wrapper .filter-date-links span:hover {
  text-decoration: none;
}
.filter-panel__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1rem;
  width: 100%;
}
@media (min-width: 550px) {
  .filter-panel__right {
    width: unset;
  }
}
.filter-panel__submit {
  text-align: center;
  justify-content: center;
}
.filter-panel__download-btn ion-icon {
  color: #484848;
  font-size: 2.8rem;
}
.filter-panel__download-btn:hover ion-icon {
  color: #064e3b;
}
.filter-panel .form-field--calendar {
  max-width: 100% !important;
}
.filter-panel .form-field {
  margin: 0;
}
@media (max-width: 550px) {
  .filter-panel .form-field {
    width: 100% !important;
  }
}
.filter-panel .form-field__label {
  display: none;
}
.filter-panel .form-field__textbox, .filter-panel .form-field__select {
  min-width: 100%;
}

.filter-item {
  display: flex;
  align-items: center;
}
.filter-item__label {
  display: block;
  margin: 0 1.5rem 0 0;
  padding: 0;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
.filter-item__selector {
  position: relative;
  min-width: 20rem;
}
.filter-item__selector::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  border-top: 0.6rem solid red;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  pointer-events: none;
}
.filter-item__select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  border: none;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
  box-shadow: 0.2rem 0.1rem 0.3rem 0 rgba(54, 74, 99, 0.15);
  background: #ffffff;
  appearance: none;
  cursor: pointer;
}

.filter-item .select2-container,
.form-field .select2-container {
  width: 100% !important;
  min-width: 18rem;
}
.filter-item .select2-container .select2-selection,
.form-field .select2-container .select2-selection {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  border: none;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  outline: none;
  background: #fff;
  appearance: none;
  cursor: pointer;
  padding: 0.9rem 1.5rem;
}
.filter-item .select2-container .select2-selection__arrow b,
.form-field .select2-container .select2-selection__arrow b {
  display: none;
}
.filter-item .select2-container .select2-selection__arrow::before,
.form-field .select2-container .select2-selection__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  border-top: 0.6rem solid #000;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  pointer-events: none;
}
.filter-item .select2-container .select2-selection--single,
.form-field .select2-container .select2-selection--single {
  height: inherit;
}
.filter-item .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: inherit;
  padding-left: 0 !important;
}
.filter-item .select2-container--default .select2-selection--single .select2-selection__arrow,
.form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-results {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  font-size: 1.5rem;
}
@media (min-width: 1200px) {
  .select2-results {
    font-size: 1.5rem;
  }
}
.select2-results__option {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding: 0.6rem 1.5rem !important;
}
.select2-results__option .flag-text {
  color: inherit;
}

.pagination {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* @media only screen and (min-width: 768px) {
       flex-flow: row wrap;
       justify-content: center;

       .pagination__right {
           position: absolute;
           right: 0;
       }
   }*/
}
.pagination--mt {
  margin-top: 2rem;
}
.pagination__btn:disabled, .pagination__btn[disabled] {
  background: #aaa !important;
  pointer-events: none !important;
}
.pagination__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.pagination__list li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.pagination a.pagination__item:hover {
  text-decoration: underline;
  color: #064e3b;
}
.pagination__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  display: block;
  min-width: 4rem;
  padding: 0 0.5rem;
  margin: 0;
  line-height: 4rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #484848;
  transition: 0.3s;
}
@media only screen and (min-width: 991px) {
  .pagination__item {
    min-width: 4rem;
    line-height: 4rem;
  }
}
.pagination__item--current {
  background: #fff;
  color: #000000 !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0431372549);
  border-radius: 0.6rem;
}
.pagination__item--separator {
  opacity: 0.5;
  min-width: 0.1rem;
  padding: 0;
}

.notofication-center__list {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .notofication-center__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(15% + 3rem + 0.8rem);
    width: 0.3rem;
    height: 100%;
    background: #064e3b;
  }
}
@media (min-width: 768px) and (min-width: 991px) {
  .notofication-center__list::before {
    left: calc(18% + 3rem + 0.8rem);
  }
}
.notofication-center__item {
  padding: 1rem 0;
}
.notofication-center__controls {
  display: flex;
  justify-content: center;
  padding: 5rem 0 2rem 0;
  text-align: center;
}

.notofication-card {
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (min-width: 1200px) {
  .notofication-card {
    font-size: 1.5rem;
  }
}
.notofication-card__date-time {
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .notofication-card__date-time {
    flex-direction: column;
    text-align: right;
    width: 15%;
    margin-bottom: 0;
  }
}
@media (min-width: 991px) {
  .notofication-card__date-time {
    width: 18%;
  }
}
@media (min-width: 768px) {
  .notofication-card__date {
    font-size: 1.2rem;
  }
}
.notofication-card__time {
  font-weight: 500;
}
.notofication-card__point {
  position: relative;
  display: none;
  width: 1.9rem;
  margin: 0 3rem;
}
@media (min-width: 768px) {
  .notofication-card__point {
    display: block;
  }
}
.notofication-card__point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #ffffff;
  border: 0.3rem solid #064e3b;
}
.notofication-card__content {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  column-gap: 2rem;
  width: 100%;
  padding: 1.4rem 2rem;
  background: #ffffff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  border-radius: 0;
}
@media (min-width: 768px) {
  .notofication-card__content {
    width: calc(85% - 7.9rem);
  }
  .notofication-card__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-right: 1rem solid #ffffff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    transform: translateX(-99%) translateY(-50%);
  }
}
@media (min-width: 991px) {
  .notofication-card__content {
    width: calc(82% - 7.9rem);
  }
}
.notofication-card__avatar {
  width: 4rem;
}
.notofication-card__info {
  width: calc(100% - 4rem - 2rem);
}
.notofication-card__header {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 1.5rem;
  font-size: 1.5rem;
}
.notofication-card__header .tag-list__item {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}
.notofication-card__title {
  font-weight: 500;
  color: #064e3b;
}
.notofication-card__title a {
  color: inherit;
  text-decoration: none;
}
.notofication-card__title a:hover {
  text-decoration: underline;
}
.notofication-card__text {
  font-size: 1.5rem;
  color: #064e3b;
}
.notofication-card__text a {
  color: inherit;
}
.notofication-card__text a:hover {
  text-decoration: none;
}

#calendar-holder {
  font-size: 1.5rem;
}
#calendar-holder .fc-button-primary {
  background-color: #064e3b;
  border-color: #064e3b;
}
#calendar-holder .fc-button-primary.fc-button-active, #calendar-holder .fc-button-primary:hover {
  background-color: rgba(6, 78, 59, 0.8);
  border-color: rgba(6, 78, 59, 0.8);
}
#calendar-holder .fc-button-primary:focus {
  box-shadow: none;
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
  flex-shrink: 0 !important;
}

.fc-h-event .fc-event-title-container {
  text-wrap: initial !important;
}

.fc-event-main {
  line-height: 1.6rem;
  padding: 0.5rem 1rem !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 0.1rem solid #9c9ab0 !important;
  border-radius: 0;
  outline: none !important;
}
.select2-container--default.select2-container--disabled {
  opacity: 0.5;
}

.select2-search--dropdown .select2-search__field {
  padding: 0.7rem 1rem !important;
}

.select2-search--dropdown {
  padding: 0.7rem !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #372e2e !important;
  color: #fff !important;
}

.select2-dropdown {
  box-shadow: 0rem 0.1rem 1rem 0 rgba(54, 74, 99, 0.25);
  border: none !important;
}

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