*,
*::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: #ffffff;
}

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

.page {
  min-height: 100vh;
  background: #ffffff;
}

.scrollbar::-webkit-scrollbar {
  width: 1.2rem;
  cursor: pointer;
}
.scrollbar::-webkit-scrollbar-track {
  background: #eee;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #8e8e8e;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #797979;
}

.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: #cdccd8;
  background-size: cover;
}
.section-login .login-link {
  font-size: 1.5rem;
  text-decoration: none;
  color: #9c9ab0;
  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;
}
.section-login .alert-success {
  font-size: 1.5rem;
}
.section-login .btn {
  width: 100%;
}

.login-wrapper__logo {
  margin: 0 0 2rem 0;
  text-align: center;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 470px;
}
.login-wrapper__logo img {
  max-width: 100%;
  max-height: 5rem;
}
@media only screen and (min-width: 400px) {
  .login-wrapper__logo img {
    max-height: 6rem;
  }
}
@media only screen and (min-width: 550px) {
  .login-wrapper__logo img {
    max-height: unset;
  }
}
.login-wrapper__title {
  margin: 0 auto 3rem auto;
  padding: 0;
  color: #9c9ab0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
}
@media only screen and (min-width: 365px) {
  .login-wrapper__title {
    width: 32rem;
  }
}
@media only screen and (min-width: 555px) {
  .login-wrapper__title {
    width: 38rem;
  }
}
.login-wrapper__title span {
  overflow-wrap: break-word;
  hyphens: auto;
}
@media only screen and (min-width: 365px) {
  .login-wrapper__title span {
    max-width: 32rem;
  }
}
@media only screen and (min-width: 555px) {
  .login-wrapper__title span {
    max-width: 38rem;
  }
}
.login-wrapper__info {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
}
.login-wrapper__info strong {
  font-weight: 600;
}
.login-wrapper__info a {
  color: inherit;
  transition: 0.3s;
}
.login-wrapper__info a:hover {
  color: #393562;
}
.login-wrapper__form {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 768px) {
  .login-wrapper__form {
    padding: 3.5rem;
    min-width: 450px;
  }
}
.login-wrapper__form--centered {
  text-align: 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;
}

.login-page-bottom {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .login-page-bottom {
    flex-direction: row;
  }
}
.login-page-bottom__links {
  display: flex;
  column-gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.login-page-bottom__links li {
  margin: 0;
  padding: 0;
}
.login-page-bottom__links li a {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
}
.login-page-bottom__links li a span {
  color: inherit;
}
.login-page-bottom__links li a:hover {
  color: #393562;
}

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

.registration-form .form-submit {
  margin-top: 2rem;
}

.registration-form-toggle-group {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.registration-form-toggle-group.closed {
  max-height: 18rem;
}
.registration-form-toggle-group.closed::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.registration-form-toggle-group.closed .registration-form-toggle-group__button {
  display: block !important;
}
.registration-form-toggle-group__button {
  display: none !important;
  position: absolute !important;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #393562 !important;
  text-decoration: underline !important;
  pointer-events: all;
}
.registration-form-toggle-group__button:hover {
  text-decoration: none !important;
}

.second-logo {
  max-height: 2rem !important;
}
@media only screen and (min-width: 400px) {
  .second-logo {
    max-height: 2.5rem !important;
  }
}
@media only screen and (min-width: 550px) {
  .second-logo {
    max-height: 3.5rem !important;
  }
}

.mounty-logo {
  width: 100%;
  margin-bottom: 3rem;
}
.mounty-logo img {
  max-height: 8rem !important;
}
@media only screen and (min-width: 550px) {
  .mounty-logo img {
    max-height: 12rem !important;
  }
}
.mounty-logo--logged {
  max-height: 4rem !important;
}
@media only screen and (min-width: 991px) {
  .mounty-logo--logged {
    max-height: 6rem !important;
  }
}

.language-switcher {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}
.language-switcher__title {
  margin: 3rem auto 3rem auto;
  padding: 0;
  color: #9c9ab0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (min-width: 365px) {
  .language-switcher__title {
    width: 32rem;
  }
}
@media only screen and (min-width: 555px) {
  .language-switcher__title {
    width: 38rem;
  }
}

@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.hidden {
  display: none;
  pointer-events: none;
  opacity: 0;
}
.form-row.disabled {
  pointer-events: none;
}
.form-row.disabled select {
  pointer-events: none;
  opacity: 0.7;
}
@media only screen and (min-width: 550px) {
  .form-row--70-30 .form-field:first-child {
    flex: 60%;
  }
  .form-row--70-30 .form-field:last-child {
    flex: 40%;
  }
}
@media only screen and (min-width: 1500px) {
  .form-row--70-30 .form-field:first-child {
    flex: 70%;
  }
  .form-row--70-30 .form-field:last-child {
    flex: 30%;
  }
}
.form-row-images__image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
.form-row-images__image span {
  height: 20rem;
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-row-images__image span img {
  max-width: 100%;
  max-height: 100%;
}
.form-row-images__image a {
  text-align: center;
}
.form-row .left-spacer-row {
  display: none;
}
@media only screen and (min-width: 550px) {
  .form-row .left-spacer-row {
    flex: 1;
    display: unset;
  }
}
.form-row__custom {
  display: flex;
  flex-direction: column;
  column-gap: 1.2rem;
}
@media only screen and (min-width: 550px) {
  .form-row__half {
    width: calc(50% - 0.6rem);
  }
}
@media only screen and (min-width: 1500px) {
  .form-row__half {
    width: calc(50% - 1.25rem);
  }
}

.form-title {
  display: block;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #9c9ab0;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.form-title--primary {
  color: #393562;
}
.form-title--primary strong {
  color: #9c9ab0;
}

.form-label, .form-field__label {
  display: block;
  margin: 2rem 0 0.5rem 0;
  padding: 0;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1200px) {
  .form-label, .form-field__label {
    font-size: 1.8rem;
  }
}
.form-label.text-right, .text-right.form-field__label {
  text-align: right;
}
.form-label.selected, .selected.form-field__label {
  color: #393562;
}
.form-label--all a {
  color: #393562;
  font-size: 1.5rem;
  text-decoration: underline;
}
.form-label--all a:hover {
  text-decoration: none;
}

.form-field {
  margin: 0 0 1.2rem 0;
}
.form-field__textbox, .form-field__select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: 0;
  border: 0.1rem solid #9c9ab0;
  background: #fff;
}
.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__select {
  background: 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: 1rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: 0;
  border: 0.1rem solid #9c9ab0;
  background: #fff;
  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__btn-file {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.form-field__btn-file input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  opacity: 0;
}
.form-field__btn-file input[type=file],
.form-field__btn-file input[type=file]::-webkit-file-upload-button {
  cursor: pointer;
}
.form-field__btn-file:hover {
  filter: brightness(0) saturate(100%) invert(42%) sepia(27%) saturate(7303%) hue-rotate(229deg) brightness(97%) contrast(104%);
}
.form-field__btn-file.has-files .form-field__btn-file-icon {
  display: none;
}
.form-field__btn-file.has-files .form-field__btn-file-content {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.form-field__btn-file-icon {
  display: block;
}
.form-field__btn-file-content {
  display: none;
}
.form-field__btn-file-content img {
  max-width: 9rem;
  max-height: 6rem;
}
.form-field--toggler {
  display: flex;
  align-items: center;
}
.form-field--toggler .form-field__label {
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  color: #9c9ab0;
}
.form-field--toggler .form-field__label.selected {
  color: #393562;
}
.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 3.8rem;
  cursor: pointer;
  min-height: 2.6rem;
  line-height: 2.9rem;
  outline: none;
  max-width: 100%;
}
.form-field__checkbox:hover {
  text-decoration: underline;
}
.form-field__checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form-field__checkbox input:checked ~ .form-field__indicator:after {
  display: block;
}
.form-field__checkbox .form-field__label {
  margin: 0;
  color: #9c9ab0;
}
.form-field__checkbox .form-field__indicator {
  top: 0;
  border: 0.1rem solid #393562;
  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 #393562;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-field--calendar {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .form-field--calendar {
    width: auto;
  }
}
.form-field--calendar::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1rem;
  z-index: 2;
  pointer-events: none;
  width: 2.3rem;
  height: 4.5rem;
  background: url("../images/admin/calendar.png") no-repeat center center;
  background-size: contain;
}
@media only screen and (min-width: 1200px) {
  .form-field--calendar::after {
    right: 1.4rem;
  }
}
.form-field--calendar-mod {
  width: 100%;
}
.form-field--calendar-mod::after {
  transform: translateY(-50%);
}
@media only screen and (max-width: 549px) {
  .form-field--calendar-mod::after {
    transform: translateY(65%);
    top: 0;
  }
}

.collection-wrapper {
  width: 100%;
}
.collection-wrapper__btn-parent {
  text-align: center;
  padding-top: 2rem;
}
.collection-wrapper__buttons {
  position: relative;
  padding: 2rem 7rem 2rem 3rem;
}
.collection-wrapper__buttons:nth-child(odd) {
  background: #f6f5ff;
}
.collection-wrapper__buttons-custom {
  background: transparent !important;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .collection-wrapper__buttons-custom {
    flex-direction: row;
    gap: 2rem;
  }
  .collection-wrapper__buttons-custom .form-field:last-child {
    flex: 3;
  }
}
.collection-wrapper__remove {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.collection-wrapper__remove-custom {
  top: 9rem;
}
.collection-wrapper .select2-selection {
  background: #fff !important;
}
.collection-wrapper .form-field-separator {
  border-bottom: 1px solid black;
  margin: 2.5rem 0 1rem 0;
}
.collection-wrapper .form-field-separator:last-child {
  display: none;
}

.form-row-collection {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

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

.form-info {
  margin-bottom: 2rem;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #484848;
}
.form-info a {
  color: inherit;
  transition: 0.3s;
}
.form-info a:hover {
  color: #393562;
}
.form-info--center {
  text-align: center;
}
.form-info--login {
  text-align: right;
}

.form-text {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  margin: 0 0 3rem 0;
}
@media (min-width: 1200px) {
  .form-text {
    font-size: 1.8rem;
  }
}
.form-text strong {
  font-weight: 600;
}
.form-text span {
  color: #9c9ab0;
}
.form-text a {
  color: #393562;
}
.form-text a:hover {
  text-decoration: none;
}
.form-text.help-text {
  margin: 1rem 0 0;
  font-size: 1.2rem;
}

.form-controls {
  display: flex;
  justify-content: center;
}
.form-controls--left {
  justify-content: flex-start;
}
.form-controls.hidden, .form-controls .hidden {
  display: none;
  opacity: 0;
  z-index: -1;
}
@media (min-width: 1500px) {
  .form-controls {
    padding: 2rem 0 0 0;
  }
}

.form-separator {
  width: 100%;
  height: 0.1rem;
  margin: 4rem 0 3rem 0;
  background: #ddd;
}

.required-indication {
  color: #df1918;
  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: 2.4rem;
  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: #9c9ab0;
  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: #393562;
  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-text-block {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .form-text-block {
    font-size: 1.8rem;
  }
}
@media (min-width: 1500px) {
  .form-text-block {
    padding: 3.5rem;
  }
}
.form-text-block--gray {
  background: #ececec;
}
@media (min-width: 768px) {
  .form-text-block--indent {
    margin-left: 3rem;
  }
}
.form-text-block a {
  color: #393562;
}
.form-text-block a:hover {
  text-decoration: none;
}
.form-text-block strong {
  font-weight: 600;
}

.form-row--order-credits {
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .form-row--order-credits {
    padding-top: 2rem;
  }
}
.form-row--order-credits .form-field__label {
  margin: 1rem 0 0 0;
}
@media (min-width: 550px) {
  .form-row--order-credits .form-field__label {
    text-align: right;
  }
}
.form-row--order-credits .form-field__label small {
  font-size: 1.6rem;
}
.form-row--order-credits .form-field__label strong {
  font-weight: 500;
  font-size: 2.4rem;
}
.form-row--order-credits .form-field__label strong span {
  font-weight: 700;
  color: #9c9ab0;
}

.form-price-box-tag {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: inline-block;
  padding: 1rem 2rem;
  margin-top: 2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #9c9ab0;
  font-size: 1.4rem;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .form-price-box-tag {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .form-price-box-tag {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
  }
}

.form-price-box {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: flex;
  margin-bottom: 2rem;
  border: 0.1rem solid #9c9ab0;
  border-radius: 0 0 0 0;
  overflow: hidden;
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .form-price-box {
    font-size: 1.8rem;
  }
}
.form-price-box__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #9c9ab0;
}
@media only screen and (min-width: 768px) {
  .form-price-box__header {
    padding: 2.5rem;
  }
}
@media only screen and (min-width: 1500px) {
  .form-price-box__header {
    padding: 3rem 3.5rem;
  }
}
.form-price-box__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .form-price-box__content {
    padding: 2.5rem;
  }
}
@media only screen and (min-width: 1500px) {
  .form-price-box__content {
    padding: 3rem 3.5rem;
  }
}
.form-price-box__title {
  color: #484848;
}
.form-price-box__title strong {
  text-transform: uppercase;
  color: #9c9ab0;
  font-weight: 600;
}
.form-price-box__price {
  color: #484848;
}
.form-price-box__price strong {
  font-weight: 600;
  color: #9c9ab0;
}

.form-price-box-summary {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .form-price-box-summary {
    font-size: 1.8rem;
  }
}
.form-price-box-summary table tr td:last-child {
  padding-left: 2rem;
  text-align: right;
}

.form-field-avatar {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
}
.form-field-avatar__img img {
  width: 10rem;
}
.form-field-avatar__btn {
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 5rem;
  height: 5rem;
  transform: translate(30%, -75%);
  background: #ffffff;
  box-shadow: 0 0.1rem 0.7rem 0 rgba(54, 74, 99, 0.25);
  border-radius: 50%;
}
.form-field-avatar__btn img {
  display: inline-block;
  max-width: calc(100% - 2rem);
  transform: translate(2px, 2px);
}

.form-check {
  display: inline-block;
  min-height: 1.5rem;
  font-size: 1.8rem;
  width: 50%;
}
.form-check .form-check-input {
  float: left;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  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: #86b7fe;
  outline: 0;
}
.form-check-input:checked {
  background-color: #393562;
  border-color: #393562;
}
.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: 2rem 0 1rem;
}
.form-switch .form-check-input {
  min-width: 2.5em;
  margin-right: 1.5rem;
  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;
}
.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='%2386b7fe'/%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.8rem;
}
.form-switch.yes-no {
  display: flex;
}
.form-switch.yes-no span {
  margin-right: 1.5rem;
}
.form-switch.yes-no label {
  margin-right: 0;
}

.form-check-label {
  margin-right: 2rem;
}

.invalid-feedback {
  color: red;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

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

#mod_comment .form-field textarea {
  background: #f6f5ff;
  border: none;
  resize: none;
}
#mod_comment .mb-3 {
  text-align: center;
  padding-top: 2rem;
}
#mod_comment .mb-3 button {
  text-decoration: none;
}

.yes-no-custom {
  margin: auto 0;
  padding-bottom: 0.6rem;
}
.yes-no-custom label {
  padding: 0;
  margin: 0;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.pl-0 {
  padding-left: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.form-items {
  margin: 3rem 0 0 0;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
}

.form-field__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.form-field__flex .form-field__label {
  width: 100%;
}
.form-field__flex .hidden {
  display: none;
}

.mw-15 {
  max-width: 15rem;
}

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

.evaluation-form {
  display: inline-table;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .evaluation-form {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .evaluation-form .box-table {
    overflow-x: auto;
  }
}
.evaluation-form .box-table .box-table__row:last-of-type, .evaluation-form .box-table .box-table__row-no-footer {
  border-bottom: none;
}
.evaluation-form .box-table .box-table__row-background {
  background: #f6f5ff;
}
.evaluation-form .box-table .box-table__row--evaluation .box-table__col:nth-child(1) {
  width: 10%;
  min-width: 13rem;
}
.evaluation-form .box-table .box-table__row--evaluation .box-table__col:nth-child(2) {
  width: 35%;
  min-width: 25rem;
}
.evaluation-form .box-table .box-table__row--evaluation .box-table__col:nth-child(3) {
  width: 35%;
  min-width: 25rem;
}
.evaluation-form .box-table .box-table__row--evaluation .box-table__col:nth-child(4) {
  width: 15%;
  min-width: 15rem;
}
.evaluation-form--evaluator .box-table {
  border-spacing: 0 1rem;
  border-collapse: separate;
}

.fill-by-city {
  color: #393562;
  margin-left: 1rem;
  font-size: 1.5rem;
}
.fill-by-city span {
  text-decoration: underline;
}
.fill-by-city:hover span {
  text-decoration: none;
}
.fill-by-city .all {
  display: inline-block;
}
.fill-by-city .none {
  display: none;
}
.fill-by-city.active .all {
  display: none;
}
.fill-by-city.active .none {
  display: inline-block;
}

.form-input--select {
  background-color: white;
}

.cities-filter {
  background-color: white !important;
  width: 20rem;
}
.cities-filter .select2-selection {
  background-color: white !important;
}

.evaluator-filter {
  background-color: white !important;
  width: 22rem;
}
.evaluator-filter .select2-selection {
  background-color: white !important;
}

.form-field.hidden {
  display: none;
}

form[name=employee_card] .select2-selection__rendered {
  padding-left: 0 !important;
}
form[name=employee_card] .hidden {
  display: none;
  pointer-events: none;
}
form[name=employee_card] .disabled {
  pointer-events: none;
}
form[name=employee_card] .disabled select, form[name=employee_card] .disabled .select2 {
  pointer-events: none;
  opacity: 0.5;
}
form[name=employee_card] .form-change-center {
  text-align: right;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
form[name=employee_card] .form-change-center a {
  text-decoration: none;
}
form[name=employee_card] .form-change-center a span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color: #393562;
}
form[name=employee_card] .form-change-center a:hover span {
  text-decoration: none;
}

.loader__wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
.loader__wrapper .loader {
  width: 10rem;
  height: 10rem;
}
.loader__wrapper.hidden {
  display: none;
}

.content-box-checklist, .form-field--relative {
  position: relative;
}

.content-box-checklist__parent {
  display: flex;
  flex-direction: column;
  column-gap: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .content-box-checklist__parent {
    flex-direction: row;
  }
}
.content-box-checklist__parent .content-box {
  flex: 1;
}
.content-box-checklist__parent--checkboxes .checklist-checkboxes__responsible {
  flex-basis: 100%;
  justify-content: flex-start;
}
.content-box-checklist__parent--checkboxes .checklist-checkboxes__responsible .select2--custom {
  margin: 0;
}
@media only screen and (min-width: 1900px) {
  .content-box-checklist__parent--checkboxes .checklist-checkboxes__responsible .select2--custom {
    margin: 0 0 0 2rem;
  }
}

.btn-copy {
  position: absolute !important;
  right: 5.7px;
  top: 5.7px;
  padding: 7.5px 10px !important;
  cursor: pointer !important;
  pointer-events: all !important;
  opacity: 1 !important;
}
.btn-copy img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(93%) saturate(27%) hue-rotate(98deg) brightness(106%) contrast(109%);
}
.btn-copy:hover img {
  filter: unset;
}

.checklist-checkboxes--custom {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (min-width: 991px) {
  .checklist-checkboxes--custom {
    flex-direction: row;
  }
}
.checklist-checkboxes--custom .form-check {
  width: auto;
}
.checklist-checkboxes--custom .form-check input {
  margin: 0;
  top: unset;
}
.checklist-checkboxes--custom .form-field__label {
  margin: 0 !important;
  line-height: 1 !important;
}
.checklist-checkboxes__responsible {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  flex-basis: 100%;
}
.checklist-checkboxes__responsible.disabled .form-field__label, .checklist-checkboxes__responsible.disabled .form-check {
  opacity: 0.7;
  pointer-events: none;
}
.checklist-checkboxes__responsible.disabled .select2-selection__arrow {
  display: none;
}
.checklist-checkboxes__responsible .select2--custom {
  margin: 0;
}
@media only screen and (min-width: 991px) {
  .checklist-checkboxes__responsible .select2--custom {
    margin: 0 0 0 2rem;
  }
}
@media only screen and (min-width: 991px) {
  .checklist-checkboxes__responsible {
    flex: 1;
    flex-basis: unset;
    justify-content: flex-end;
  }
}

.select2-container.select2-container--default.select2-container--open {
  z-index: 1000000;
}

.loading {
  opacity: 0.3;
  pointer-events: none;
}

.card-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.card-loader .loader {
  width: 8rem;
  height: 8rem;
  position: fixed;
  left: 50%;
  top: 50%;
}
.card-loader.hidden {
  display: none;
}

.btn, .pagination__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  padding: 1rem 2.5rem;
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  color: #797979;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .btn, .pagination__btn {
    padding: 1.4rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn, .pagination__btn {
    padding: 1.4rem 4rem;
  }
}
.btn:hover, .pagination__btn:hover {
  color: #393562;
  text-decoration: none;
}
.btn:disabled, .pagination__btn:disabled {
  cursor: default;
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.5;
}

.btn-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 3.6rem;
  padding: 0;
}
.btn-info img {
  transform: scale(0.8);
}
@media only screen and (min-width: 768px) {
  .btn-info {
    width: 5rem;
    height: 4.6rem;
  }
  .btn-info img {
    transform: none;
  }
}

.btn-primary, .pagination__btn {
  background: #393562 !important;
  color: #ffffff !important;
}
.btn-primary span, .pagination__btn span {
  color: inherit !important;
}
.btn-primary:hover, .pagination__btn:hover {
  background: #9c9ab0 !important;
  color: #ffffff !important;
}

.btn-secondary {
  background: #9c9ab0 !important;
  color: #393562 !important;
}
.btn-secondary span {
  color: inherit !important;
}
.btn-secondary:hover {
  background: #cdccd8 !important;
  color: #393562 !important;
}

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

.btn-confirm {
  background: #393562 !important;
  color: #ffffff !important;
}
.btn-confirm span {
  color: inherit !important;
}
.btn-confirm:hover {
  background: #9c9ab0 !important;
  color: #ffffff !important;
}

.btn-icon {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.btn-icon img {
  margin-left: -1rem;
}
@media only screen and (min-width: 1200px) {
  .btn-icon img {
    margin-left: -2rem;
  }
}

.btn-link {
  padding: 0;
}

.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 0 0;
}
.container-footer__full {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.container-footer__sticky {
  position: sticky;
  position: -webkit-sticky;
  bottom: 4rem;
  z-index: 100;
  text-align: center;
  display: inline-block !important;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 991px) {
  .container-footer__sticky {
    left: calc(50% + 6rem);
  }
}
.container-footer__sticky.hidden {
  display: none !important;
  opacity: 0;
}
.container-footer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.4rem;
  padding: 0 1.5rem;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.0392156863), 0 1px 6px rgba(0, 0, 0, 0.0392156863);
  background: #ffffff;
  transition: padding-left 0.3s ease;
}
@media (min-width: 991px) {
  .header {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1500px) {
  .header {
    padding: 0 1.5rem;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  column-gap: 1.5rem;
  width: 100%;
}
.header__left {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
@media (min-width: 1500px) {
  .header__left {
    column-gap: 5rem;
  }
}
.header__logo {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .header__logo {
    gap: 2rem;
  }
}
.header__logo .second-logo {
  max-width: 100% !important;
}
@media (min-width: 350px) {
  .header__logo .second-logo {
    max-width: calc(60% - 1rem) !important;
  }
}
@media (min-width: 550px) {
  .header__logo .second-logo {
    max-width: 20rem !important;
  }
}
@media (min-width: 768px) {
  .header__logo .second-logo {
    max-width: 25rem !important;
  }
}
.header__logo img {
  max-width: 100%;
  max-height: 4rem;
}
@media (min-width: 350px) {
  .header__logo img {
    max-width: 40%;
  }
}
@media (min-width: 550px) {
  .header__logo img {
    max-width: unset;
  }
}
@media (min-width: 991px) {
  .header__logo img {
    max-height: 6rem;
  }
}
.header__app-name {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: none;
  font-weight: 600;
  font-size: 2.4rem;
  margin: 1rem 0 0 0;
  color: #374151;
}
@media (min-width: 1200px) {
  .header__app-name {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .header__app-name {
    display: block;
    margin: 1.8rem 0 0 0;
  }
}
.header__sidebar-toggle {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
@media (min-width: 768px) {
  .header__sidebar-toggle {
    display: none;
  }
}
.header__sidebar-toggle img {
  max-height: 2rem;
}
@media (min-width: 991px) {
  .header__sidebar-toggle img {
    max-height: 2.8rem;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media (min-width: 500px) {
  .header__nav {
    column-gap: 1.5rem;
  }
}
@media (min-width: 1500px) {
  .header__nav {
    padding-right: 2rem;
    column-gap: 3.5rem;
  }
}
.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 img {
  max-height: 2.6rem;
}
@media (min-width: 991px) {
  .header__nav-link img {
    max-height: 4rem;
  }
}
.header__nav-link-indication {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #393562;
}
.header__nav-submenu {
  display: none;
  background: #ffffff;
  box-shadow: 0 10px 40px 0 rgba(104, 113, 123, 0.2);
  border-radius: 0;
  border: 0.1rem solid #cdccd8;
}
.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: 3.4rem;
    transform: rotate(45deg);
    width: 1.3rem;
    height: 1.3rem;
    background: #ffffff;
    border-top: 0.1rem solid #cdccd8;
    border-left: 0.1rem solid #cdccd8;
  }
  .header__nav-submenu.notifications:before {
    right: 2.8rem;
  }
}
.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.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  position: relative;
  display: flex;
  align-items: center;
  height: 4.6rem;
  padding: 0 1rem 0 5.5rem;
  font-size: 1.6rem;
  transition: 0.3s;
  border-bottom: 0.1rem solid #cdccd8;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .header__nav-submenu > ul li a {
    font-size: 1.8rem;
  }
}
.header__nav-submenu > ul li a:hover {
  color: #393562;
}
.header__nav-submenu > ul li a img {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  height: 2.2rem;
}
.header__nav-submenu-notifications-header {
  line-height: 1;
  font-size: 1.6rem;
}
.header__nav-submenu-profile-header {
  line-height: 1.2;
  font-size: 1.4rem;
  text-align: left;
}
.header__nav-submenu-profile-header strong {
  font-size: 1.6rem;
}
.header__nav-submenu-notifications-footer a {
  display: block;
  padding: 1.5rem 0;
  color: #797979;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  border-top: 0.1rem solid #9c9ab0;
  text-align: center;
  transition: 0.3s;
}
.header__nav-submenu-notifications-footer a:hover {
  text-decoration: none;
  color: #393562;
}

.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 #cdccd8;
}

.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;
  cursor: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 0.1rem solid #cdccd8;
}
.submenu-notification-card:hover .submenu-notification-card__title {
  color: #393562;
  /*text-decoration: underline;*/
}
.submenu-notification-card__thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.submenu-notification-card__thumb--client {
  background: #6c5ffc;
}
.submenu-notification-card__thumb--sub {
  background: #de209b;
}
.submenu-notification-card__thumb--support {
  background: #3eb9a4;
}
.submenu-notification-card__content {
  width: 100%;
  padding: 0;
}
.submenu-notification-card__title {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  margin-bottom: 0.3rem;
  font-size: 1.6rem !important;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .submenu-notification-card__title {
    font-size: 1.8rem;
  }
}
.submenu-notification-card__title a {
  text-decoration: none;
  color: #484848;
}
.submenu-notification-card__title a:hover {
  text-decoration: underline;
}
.submenu-notification-card__time {
  color: #797979;
  font-size: 1.2rem;
}

.sidebar {
  position: fixed;
  z-index: 99;
  top: 7rem;
  bottom: 0;
  left: 0;
  width: 12rem;
  background: #ffffff;
  box-shadow: 0 1rem 1.5rem rgba(58, 58, 58, 0.1);
  transition: transform 450ms ease, width 450ms ease;
}
@media (max-width: 990px) {
  .sidebar {
    top: 8.5rem;
    transform: translateX(-100%);
  }
}
@media (min-width: 991px) {
  .sidebar {
    top: 8.5rem;
    padding-top: 0;
  }
}
@media (max-width: 990px) {
  .sidebar.closed {
    transform: translateX(0);
  }
}
@media (min-width: 991px) {
  .sidebar.closed {
    transform: translateX(-100%);
  }
  .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;
}
.sidebar__nav {
  margin: 0 0 3.5rem 0;
}
@media (min-width: 1500px) {
  .sidebar__nav {
    margin: 0 0 3.5rem 0;
  }
}
.sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__nav ul li {
  margin: 0;
  padding: 0;
}
.sidebar__nav ul li.selected a {
  background: #f6f5ff;
  color: #393562;
}
.sidebar__nav ul li.selected a img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(9%) saturate(3838%) hue-rotate(206deg) brightness(100%) contrast(87%);
}
.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.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  height: 11rem;
  padding: 2.5rem 0;
  text-align: center;
  transition: 0.3s;
  border-bottom: 0.1rem solid #f0efff;
  font-size: 1.6rem;
  color: #495b78;
}
@media (min-width: 1200px) {
  .sidebar__nav ul li a {
    font-size: 1.8rem;
  }
}
.sidebar__nav ul li a:hover {
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  color: #393562;
}
.sidebar__nav ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(9%) saturate(3838%) hue-rotate(206deg) brightness(100%) contrast(87%);
}
.sidebar__nav ul li a img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(17%) saturate(1031%) hue-rotate(178deg) brightness(91%) contrast(82%);
}
.sidebar__nav ul li a span {
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.content {
  padding: 8.5rem 0 4rem 0;
  transition: margin-left 0.3s ease;
}
@media (min-width: 991px) {
  .content {
    margin-left: 12rem;
  }
}
@media (min-width: 991px) {
  .content.closed {
    margin-left: 0;
  }
}
.content__container {
  padding: 0 2rem;
}
@media (min-width: 1200px) {
  .content__container {
    padding: 0 4rem;
  }
}
@media (min-width: 1500px) {
  .content__container {
    padding: 0 7rem;
  }
}

.container-header {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  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.8rem;
  }
}
@media (min-width: 1200px) {
  .container-header {
    min-height: 8.6rem;
  }
}
.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: 2.4rem;
  color: #393562;
}
.container-header__title small {
  margin-left: 1rem;
}
.container-header__subtitle {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #9c9ab0;
}
.container-header__subtitle strong {
  color: #393562;
}
.container-header__subtitle.mb-3 {
  margin-bottom: 3rem;
}
.container-header__subtitle.mtb-3 {
  margin: 3rem 0;
}

.plain-text-box {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-size: 1.6rem;
}
@media (min-width: 1200px) {
  .plain-text-box {
    font-size: 1.8rem;
  }
}

.container-info {
  margin-bottom: 5rem;
}
.container-info h2 {
  margin: 0 0 2rem 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #393562;
}
.container-info__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 650px) {
  .container-info__text {
    flex-wrap: wrap;
    gap: 2rem;
    flex-direction: row;
  }
}
.container-info__text div {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex-basis: 100%;
}
@media (min-width: 650px) {
  .container-info__text div {
    flex-basis: calc(50% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  .container-info__text div {
    flex-basis: calc(33% - 2rem);
  }
}
.container-info__text div strong {
  flex-basis: 40%;
  width: 100%;
}
.container-info__text div span {
  flex-basis: 60%;
  width: 100%;
}
.container-info__text strong,
.container-info__text span {
  text-align: left;
  background: white;
  font-size: 1.6rem;
  line-height: 1.2;
}

.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__row-flex {
  flex-flow: column;
  display: flex;
}
@media (min-width: 991px) {
  .container-body__row-flex {
    flex-flow: row wrap;
  }
}
.container-body__col {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .container-body__col {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .charts-grid {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 1.2rem));
    grid-gap: 2.4rem;
    row-gap: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .charts-grid {
    grid-template-columns: repeat(3, calc(33.33% - 1.6rem));
  }
}

.chart-card {
  padding: 2rem 0 0 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  margin: 0 0 2rem 0;
}
@media (min-width: 768px) {
  .chart-card {
    padding: 2rem 0 0 0;
    margin: 0;
  }
}
.chart-card .apexcharts-canvas {
  position: relative;
  top: 3rem;
}
.chart-card__subtitle {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0;
  padding: 0 3rem;
  color: #374151;
}
@media (min-width: 1200px) {
  .chart-card__subtitle {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .chart-card__subtitle {
    margin: 1rem 0 -4rem 0;
  }
}

.tabs-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem 0 2rem;
}
@media (min-width: 768px) {
  .tabs-panel {
    margin: 3.5rem 0 2rem 0;
  }
}
.tabs-panel__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tabs-panel__left {
    justify-content: space-between;
  }
}
.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: #797979;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 1rem 3rem;
  background: #fff;
  border: 0.1rem solid #393562;
  color: #393562;
}
.tabs-panel__btn:hover {
  background: #393562;
  color: #fff;
  text-decoration: none;
}
.tabs-panel__btn.selected {
  background: #393562 !important;
  color: #ffffff !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: #9c9ab0;
}
.tabs-panel__title strong {
  color: #393562;
}

.check-box__text {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .check-box__text {
    font-size: 1.8rem;
  }
}
.check-box__controls {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0 0;
}
.check-box__controls .form-field--toggler {
  margin: 0;
}
.check-box__controls__not-rated {
  margin: 2rem 0 1rem;
}
.check-box__controls__not-rated .form-check {
  width: auto;
}
.check-box__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
  margin: 0 0 3rem 0;
}
.check-box__stepper-title {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  font-size: 2.4rem;
  color: #393562;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .check-box__stepper-title {
    font-size: 1.8rem;
  }
}
.check-box__stepper-btn--next img {
  transform: rotate(180deg);
}
.check-box__stepper-btn--disabled {
  pointer-events: none;
  opacity: 0.3;
}

.group-box {
  padding: 2rem 0 0 0;
  margin: 3rem 0 0 0;
  border-top: 0.1rem solid #cdccd8;
}
.group-box--first {
  padding: 0;
  margin: 0;
  border-top: none;
}
.group-box__header {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  column-gap: 3rem;
  justify-content: space-between;
}
@media (min-width: 500px) {
  .group-box__header {
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .group-box__header {
    column-gap: 5rem;
  }
}
.group-box__rating {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #393562;
}
.group-box__rating--ano {
  color: #57c178;
}
.group-box__rating--ne {
  color: #df3957;
}
.group-box__text {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .group-box__text {
    font-size: 1.8rem;
  }
}
.group-box__controlled-person {
  margin-bottom: 2rem;
}
.group-box .group-field {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  margin: 2rem 0 0 0;
  background: rgba(205, 204, 216, 0.5);
  padding: 2rem;
}
@media (min-width: 1200px) {
  .group-box .group-field {
    font-size: 1.8rem;
  }
}
.group-box .group-field__label {
  display: block;
  margin: 0 0 0.5rem 0;
  padding: 0;
  color: #393562;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .group-box .group-field__label {
    font-size: 2rem;
  }
}
.group-box .group-field p {
  margin: 0;
}

.zaznam-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  column-gap: 4rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .zaznam-panel {
    align-items: center;
    flex-direction: row;
  }
}

.zaznam-card {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 3rem;
  row-gap: 1rem;
}
@media (min-width: 1200px) {
  .zaznam-card {
    font-size: 1.8rem;
  }
}

.zaznam-rating {
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  color: #797979;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 2rem;
  background: rgba(205, 204, 216, 0.5);
  color: #393562;
}
@media (min-width: 550px) {
  .zaznam-rating {
    padding: 2rem 3rem;
  }
}
@media (min-width: 768px) {
  .zaznam-rating {
    white-space: nowrap;
  }
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.tiles__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  width: 100%;
  padding: 2rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  color: #797979;
  letter-spacing: 0;
  line-height: 1;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: none;
  color: #393562;
  text-align: center;
}
.tiles__item:hover {
  background: #393562;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .tiles__item {
    width: 30rem;
    padding: 4rem 2rem;
  }
}
.tiles__title {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #9c9ab0;
  width: 100%;
  margin: 1rem 0;
}
.tiles__title strong {
  color: #393562;
}

.flex-wrap-column {
  gap: 2rem !important;
}

.mtb-3 {
  margin: 3rem 0;
}

.zaznam-note {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.zaznam-note h2 {
  margin-top: 0 !important;
}
.zaznam-note__img {
  margin: auto 0;
}
.zaznam-note__img img {
  max-width: 4rem;
  width: auto;
  height: auto;
}

.evaluation-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.accordion-panel__item {
  padding: 0;
}
.accordion-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1200px) {
  .accordion-panel__header {
    font-size: 1.8rem;
  }
}
.accordion-panel__header svg, .accordion-panel__header img {
  flex-shrink: 0;
}
.accordion-panel__header.opened svg, .accordion-panel__header.opened img {
  transform: rotate(180deg);
}
.accordion-panel__texts {
  padding: 0 0 1.5rem 0;
  margin: 0 0 1.5rem 0;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.accordion-panel__texts p {
  margin: 0 0 1rem 0;
}
.accordion-panel__texts > *:last-child {
  margin: 0;
}

.box-table {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 0 0;
}
@media (min-width: 1200px) {
  .box-table {
    font-size: 1.8rem;
  }
}
.box-table-shadow {
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  height: 100%;
}
.box-table-shadow.h-auto {
  height: auto;
}
.box-table--evaluator {
  border-collapse: collapse !important;
}
@media (max-width: 990px) {
  .box-table--zaznamy {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .box-table--zaznamy .box-table__row--head {
    display: none !important;
  }
  .box-table--zaznamy .box-table__row {
    display: block;
    padding: 1rem 0;
    width: 50%;
  }
  .box-table--zaznamy .box-table__row:nth-child(2n+1) {
    padding: 1rem 0 1rem 1rem;
    border-left: 0.1rem solid #cdccd8;
  }
  .box-table--zaznamy .box-table__col {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .box-table--zaznamy .box-table__col:first-child {
    padding: 0.5rem 1rem;
  }
  .box-table--zaznamy .box-table__col:last-child {
    padding: 0.5rem 1rem;
  }
  .box-table--zaznamy .box-table__col .box-table__col-lbl {
    display: inline-block;
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 767px) {
  .box-table--zaznamy .box-table__row {
    width: 100%;
    padding: 1rem 0 !important;
    border-left: none !important;
  }
}
.box-table--zaznamy-evaluator {
  overflow: auto;
}
.box-table--zaznamy-cards {
  overflow: auto;
}
.box-table--zaznamy-cards .box-table__row--head {
  border-bottom: 0.1rem solid #cdccd8 !important;
}
.box-table__col-lbl {
  display: none;
  font-weight: 600;
}
.box-table a,
.box-table button {
  color: inherit;
  text-decoration: underline;
}
.box-table a:hover,
.box-table button:hover {
  text-decoration: none;
}
.box-table a.action-icon img,
.box-table button.action-icon img {
  max-height: 23px;
}
.box-table .table-btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 0;
  color: #ffffff;
  cursor: pointer;
  background: #393562;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .box-table .table-btn {
    font-size: 1.8rem;
  }
}
.box-table .table-btn:hover {
  background: #9c9ab0;
}
.box-table__link {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
}
@media (min-width: 1200px) {
  .box-table__link {
    font-size: 1.8rem;
  }
}
.box-table__row {
  display: table-row;
  border-bottom: 0.1rem solid #cdccd8;
}
.box-table__row--head {
  box-shadow: none;
  border: none;
}
.box-table__row--head .box-table__col {
  padding: 2rem 1rem;
  font-weight: 500;
  background: #f6f5ff;
  color: #393562;
}
@media (min-width: 1500px) {
  .box-table__row--head .box-table__col {
    padding: 2.4rem 2rem;
  }
}
.box-table__row.selected {
  background: #f6f5ff;
}
.box-table__row.selected .box-table__col {
  background: transparent;
}
.box-table__row--comment {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 1.5rem 1rem;
}
@media (min-width: 550px) {
  .box-table__row--comment {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1500px) {
  .box-table__row--comment {
    padding: 2.4rem 4rem;
  }
}
.box-table__row--clickable {
  cursor: pointer;
}
.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;
}
@media (min-width: 550px) {
  .box-table__col {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 1500px) {
  .box-table__col {
    padding: 2.4rem 2rem;
  }
}
.box-table__col--question {
  width: 35rem;
  max-width: 35rem;
}
.box-table__col--text {
  width: 35rem;
  max-width: 35rem;
}
.box-table__col-link {
  text-decoration: none !important;
}
.box-table__col-link:hover {
  text-decoration: none !important;
}
.box-table__col-link-action {
  cursor: pointer;
}
.box-table__col:first-child {
  padding-left: 1rem;
}
@media (min-width: 550px) {
  .box-table__col:first-child {
    padding-left: 2rem;
  }
}
@media (min-width: 1500px) {
  .box-table__col:first-child {
    padding-left: 4rem;
  }
}
.box-table__col:last-child {
  padding-right: 1rem;
}
@media (min-width: 550px) {
  .box-table__col:last-child {
    padding-right: 2rem;
  }
}
@media (min-width: 1500px) {
  .box-table__col:last-child {
    padding-right: 2.4rem;
  }
}
.box-table__col--one-line {
  white-space: nowrap;
}
.box-table__col .form-field {
  margin: 0;
}
.box-table__col.text-center {
  text-align: center;
}
.box-table__col .info-icon {
  max-height: 1.4rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 0.7rem;
}
.box-table__col--delete {
  width: 6rem;
}
@media (max-width: 990px) {
  .box-table__mod-header {
    display: table-row !important;
    padding: 0 !important;
  }
}
.box-table__mod-header-first {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: #f6f5ff;
}
.box-table__col-mod {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
@media (min-width: 550px) {
  .box-table__col-mod {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 1500px) {
  .box-table__col-mod {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
.box-table__col-mod__header {
  padding: 0 !important;
}
.box-table__col-mod__done {
  background-color: rgba(119, 221, 145, 0.1);
}
.box-table__col-name {
  font-size: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
@media (min-width: 550px) {
  .box-table__col-name {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 1500px) {
  .box-table__col-name {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
.box-table__col-name span {
  font-weight: 600 !important;
}
.box-table__col-name-child {
  font-weight: 600 !important;
  vertical-align: top !important;
  position: unset;
  flex-basis: 15%;
}
.box-table__col-texts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
.box-table__col-texts p, .box-table__col-texts ul {
  margin: 0;
}
.box-table__col-texts ul {
  padding-left: 2rem;
}
.box-table__col-texts ul li {
  padding-left: 1rem;
}
.box-table__col-date {
  text-align: right;
  font-weight: 400 !important;
}
.box-table__users {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.box-table__user {
  padding: 1rem 2rem;
  background: #f6f5ff;
}
.box-table__images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: left;
  align-items: center;
}
.box-table__images a {
  position: relative;
}
.box-table__images a img {
  max-width: 25rem;
  max-height: 15rem;
  z-index: 8;
  display: block;
  position: relative;
}
.box-table__images a:hover img {
  transform: scale(1.05);
  box-shadow: 0 1rem 1.5rem rgba(58, 58, 58, 0.1);
}
.box-table__images--btn {
  position: absolute;
  background-color: #393562;
  right: 0;
  bottom: 0;
  z-index: 9;
  border: none;
  padding: 0.5rem;
}
.box-table__images--btn img {
  width: 2rem;
  height: 2rem;
}
.box-table__actions {
  display: flex;
  justify-content: flex-end;
}
.box-table__progress {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.box-table__progress img {
  width: 2rem;
}
.box-table--empty {
  margin-top: 1.5rem;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
}
@media (min-width: 1200px) {
  .box-table--empty {
    font-size: 1.8rem;
  }
}

.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:hover:before {
  opacity: 1;
  height: 120%;
  width: 120%;
}
.action-icon.color-red:before {
  background-color: #ffdbe4;
}

.multiple-remove-questions {
  margin: 0 !important;
  top: 0;
}

.logs-table td {
  line-height: 1.2;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.logs-table td:first-child {
  width: 15rem;
  vertical-align: top;
  text-align: left;
}

.box-table__row--green .box-table__col {
  background-color: #f1fcf4;
}
.box-table__row--orange .box-table__col {
  background-color: #fde5d3;
}
.box-table__row--blue .box-table__col {
  background-color: #f6f5ff;
}
.box-table__row--gray .box-table__col {
  background-color: rgba(0, 0, 0, 0.0392156863);
}

.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.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  width: 100%;
  padding: 2rem;
  line-height: 1.4;
  color: #8e8e8e;
}
@media (min-width: 1200px) {
  .modal-window__content {
    font-size: 1.8rem;
  }
}
@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: #9c9ab0;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .modal-window__content h2 {
    font-size: 1.8rem;
  }
}
.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: #393562;
  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.8rem;
  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.8rem;
  color: #484848;
}
.confirmation-modal-content__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.form-modal__header {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: #484848;
}

#generate-popup .modal-window {
  width: 100%;
  max-width: 50rem;
}
#generate-popup .modal-window .form-field__btn-file-icon {
  max-height: 5rem;
}

.modal-sidebar-slider .slick-dots {
  bottom: -4rem;
}
.modal-sidebar-slider .slick-dots li {
  width: unset;
  height: unset;
  margin: 0 0.3rem;
}
.modal-sidebar-slider .slick-dots li button::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: #ffffff;
  opacity: 1;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .modal-sidebar-slider .slick-dots li button::before {
    width: 1rem;
    height: 1rem;
  }
}
.modal-sidebar-slider .slick-dots li.slick-active button::before {
  background: #393562;
}

.select2--swal {
  padding: 1.25em 1em !important;
}
.select2--swal .swal2-title {
  padding: 0 0 1.25em 0 !important;
}
.select2--swal .swal2-select {
  margin: 0 !important;
}

.content-box {
  padding: 2rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .content-box {
    padding: 3rem;
  }
}
@media (min-width: 1500px) {
  .content-box {
    padding: 3.5rem;
  }
}
@media (min-width: 1500px) {
  .content-box .form-default {
    padding: 0 3rem;
  }
}
.content-box__title {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  font-weight: 600;
  font-size: 2.4rem;
  margin: 0 0 3rem 0;
  color: #374151;
}
@media (min-width: 1200px) {
  .content-box__title {
    font-size: 1.8rem;
  }
}
.content-box--intro {
  max-width: 86rem;
  margin: 0 auto;
}
.content-box--intro .check-box__controls {
  padding: 2rem 0 0 0;
}
.content-box .row-review-not-rated {
  display: none;
}
.content-box__mod {
  padding: 0;
  flex-basis: 48%;
  box-shadow: none;
  flex-grow: 1;
  flex-shrink: 0;
}
.content-box__mod-scrollable {
  overflow-y: auto;
  max-height: 100vh;
}
.content-box__mod .box-table__row:last-of-type {
  border-bottom: 0;
}
.content-box__comments {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.content-box__comment {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  padding: 1.5rem 1rem;
}
@media (min-width: 1200px) {
  .content-box__comment {
    font-size: 1.8rem;
  }
}
@media (min-width: 550px) {
  .content-box__comment {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1500px) {
  .content-box__comment {
    padding: 2.4rem 4rem;
  }
}
.content-box__comment-name {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
  font-weight: 500;
}
.content-box__comment-date {
  font-weight: 400;
}
.content-box form.disabled input, .content-box form.disabled textarea, .content-box form.disabled button, .content-box form.disabled a, .content-box form.disabled select {
  pointer-events: none;
  opacity: 0.5;
}
.content-box.readonly input, .content-box.readonly textarea, .content-box.readonly button, .content-box.readonly a, .content-box.readonly select, .content-box.readonly .select2 {
  pointer-events: none;
  opacity: 0.5;
}

.cropped-text {
  position: relative;
  max-width: 100%;
  padding: 0 !important;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  vertical-align: text-bottom !important;
}
.cropped-text__content {
  position: absolute;
  white-space: nowrap;
  overflow-y: visible;
  overflow-x: hidden;
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  top: 0;
  left: 0;
}

.cropped-text:after,
.cropped-text__content:after {
  content: "-";
  display: inline;
  visibility: hidden;
  width: 0;
}

.filter-panel {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filter-panel__header {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem 0 0;
}
@media (min-width: 1200px) {
  .filter-panel__header {
    font-size: 1.8rem;
  }
}
.filter-panel__header img {
  width: 2rem;
}
.filter-panel__fields {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
@media (max-width: 550px) {
  .filter-panel__fields .btn {
    width: 100%;
  }
}
.filter-panel .form-field {
  margin: 0;
}
@media (max-width: 550px) {
  .filter-panel .form-field {
    width: 100%;
  }
}
.filter-panel .form-field__label {
  display: none;
}
.filter-panel .form-field__textbox, .filter-panel .form-field__select {
  min-height: 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.6rem;
}
.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 #393562;
  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: 1rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: 0;
  border: 0.1rem solid #9c9ab0;
  background: #fff;
  box-shadow: 0.2rem 0.1rem 0.3rem 0 rgba(54, 74, 99, 0.15);
  background: #ffffff;
  appearance: none;
  cursor: pointer;
}
.filter-item__remove {
  color: red;
  font-size: 1.5rem;
  margin: auto 0;
}
.filter-item__remove:hover {
  text-decoration: none;
}
.filter-item__remove.hidden {
  display: none;
}

.filter-item .select2-container,
.form-field .select2-container {
  width: 100% !important;
}
.filter-item .select2-container .select2-selection,
.form-field .select2-container .select2-selection {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  color: #484848;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: 0;
  border: 0.1rem solid #9c9ab0;
  background: #fff;
  background: #e3e0ff;
  appearance: none;
  cursor: pointer;
}
.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 #393562;
  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;
}
.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.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  font-size: 1.6rem;
}
@media (min-width: 1200px) {
  .select2-results {
    font-size: 1.8rem;
  }
}
.select2-results__option {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding: 0.6rem 1.5rem !important;
}
.select2-results__option .flag-text {
  color: inherit;
}

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

.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: #9c9ab0 !important;
  color: #484848 !important;
}

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

form[name=question_filter] .yes-no.form-switch, form[name=user_filter] .yes-no.form-switch {
  margin: 1.5rem 0 0.5rem !important;
}
form[name=question_filter] .filter-panel__fields, form[name=user_filter] .filter-panel__fields {
  gap: 3rem;
}

.loader {
  margin: auto 0;
  width: 30px;
  height: 30px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #393562;
  --_m:
          conic-gradient(#0000 10%,#000),
          linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
.loader.hidden {
  display: none;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
.select2--custom .select2-selection {
  background: transparent !important;
}
.select2--custom:not(.w-100) .select2-container {
  width: 30rem !important;
}

.dashboard-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .dashboard-wrapper {
    display: block;
  }
}
.dashboard-wrapper .dashboard-grid {
  order: 2;
}
.dashboard-wrapper .content-box {
  order: 1;
}

.dashboard-list {
  display: flex;
  flex-flow: row wrap;
  column-gap: 2rem;
}
.dashboard-list__item {
  width: 100%;
  padding: 2rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.0588235294), 0 1px 4px rgba(0, 0, 0, 0.0784313725);
  margin-bottom: 2rem;
}
.dashboard-list__item.highlighted {
  background: #f6f5ff;
}
.dashboard-list__item.highlighted .dash-card__title {
  font-weight: 500;
  color: #393562;
}
@media (min-width: 768px) {
  .dashboard-list__item {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 991px) {
  .dashboard-list__item {
    width: calc(33.33% - 1.4rem);
  }
}
@media (min-width: 1200px) {
  .dashboard-list__item {
    padding: 3rem;
  }
}
@media (min-width: 1500px) {
  .dashboard-list__item {
    padding: 3.5rem 4rem;
  }
}

.dash-card {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
}
@media (min-width: 1200px) {
  .dash-card {
    font-size: 1.8rem;
  }
}
.dash-card__content {
  flex: 1;
}
@media (min-width: 320px) {
  .dash-card__content {
    display: flex;
    align-items: center;
    column-gap: 3rem;
    justify-content: space-between;
  }
}
.dash-card__value {
  font-size: 4rem;
  font-weight: 700;
  color: #393562;
  white-space: nowrap;
}

.pagination {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.pagination--mt {
  margin-top: 2rem;
}
@media only screen and (min-width: 550px) {
  .pagination {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.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;
}
.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.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #484848;
  transition: 0.3s;
}
@media only screen and (min-width: 991px) {
  .pagination__item {
    min-width: 5.1rem;
    line-height: 5.1rem;
  }
}
.pagination__item--current {
  background: #393562 !important;
  color: #ffffff !important;
}
.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: #393562;
  }
}
@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 {
  padding: 5rem 0 2rem 0;
  text-align: center;
}
.notofication-center__disable-form {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.notofication-card {
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #484848;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (min-width: 1200px) {
  .notofication-card {
    font-size: 1.8rem;
  }
}
.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 #393562;
}
.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.6rem;
  line-height: 2.3rem;
}
.notofication-card__header .tag-list__item {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}
.notofication-card__title {
  font-weight: 500;
  color: #393562;
}
.notofication-card__title a {
  color: inherit;
}
.notofication-card__title a:hover {
  text-decoration: none;
}
.notofication-card__text {
  font-size: 1.4rem;
  color: #8e8e8e;
}
.notofication-card__text a {
  color: inherit;
}
.notofication-card__text a:hover {
  text-decoration: none;
}

.mod-controls {
  text-align: right;
}
.mod-controls a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .mod-controls a {
    display: inline-block;
    margin: 0;
  }
}
.mod-controls a img {
  max-width: 3rem;
  vertical-align: middle;
  margin-right: 0.8rem;
}
.mod-controls a span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.mod-controls a:hover span {
  text-decoration: none;
}
.mod-controls a:last-of-type img {
  margin-left: 4rem;
}
.mod-controls__left {
  float: left;
}
.mod-controls__done {
  pointer-events: none;
}
.mod-controls__done span {
  color: #77dd91 !important;
  text-decoration: none !important;
}

.mod-item .box-table__col-mod {
  height: 100%;
  padding: 4rem !important;
}
.mod-item .box-table__col-texts {
  justify-content: space-between;
}
.mod-item .box-table__col-texts h3 {
  margin: 0;
  font-size: 1.8rem;
}
.mod-item .box-table__col-texts > div:not(.mod-controls) {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mod-modal {
  width: 80rem;
}
@media (max-width: 768px) {
  .mod-modal {
    padding: 2rem;
  }
}
.mod-modal button {
  text-decoration: none;
}
.mod-modal .content-box__comment {
  margin-bottom: 2rem;
}

.mod-comments-icon {
  font-size: 1.4rem;
}
.mod-comments-icon img {
  max-width: 2.5rem;
  vertical-align: middle;
  margin-right: 1rem;
}
.mod-comments-icon.mod-unread::before {
  left: 2.3rem;
}

.mod-unread {
  position: relative;
}
.mod-unread::before {
  content: " ";
  width: 1rem;
  height: 1rem;
  display: block;
  background-color: red;
  border-radius: 50%;
  top: -0.5rem;
  left: 3rem;
  position: absolute;
}

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