/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.u-font-weight-bold {
  font-weight: bold; }

.u-font-size-bigger {
  font-size: bigger; }

.u-width-1rem {
  width: 1rem; }

.u-width-full {
  width: 100%; }

.u-height-full {
  height: 100%; }

.nowrap {
  white-space: nowrap; }

.u-position-relative {
  position: relative; }

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

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

.u-full-w {
  width: 100%; }

.u-full-h {
  height: 100%; }

.u-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.u-clickable {
  cursor: pointer; }

.u-opacity-07, .btn.btn--disabled {
  opacity: 0.7; }

.no-margin {
  margin: 0; }

.block {
  display: block; }

.arrow-rotate-down {
  transform: rotate(90deg); }

.arrow-rotate-left {
  transform: rotate(180deg); }

.arrow-rotate-up {
  transform: rotate(270deg); }

.margin-left {
  margin-left: 10px; }

.margin-right {
  margin-right: 10px; }

.margin-auto {
  margin: auto; }

.text-overflow {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; }

.text-overflow--1-line {
  -webkit-line-clamp: 1;
  line-break: anywhere; }

button {
  outline: none; }

.btn {
  padding: 10px 20px;
  text-decoration: none;
  box-sizing: border-box;
  height: 50px;
  transition: background-color .2s;
  cursor: pointer;
  border: 1px solid;
  border-color: transparent;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  font-size: 16px; }
  .btn.theme-light,
  .theme-light .btn {
    background-color: #be037a; }
  .btn.theme-dark,
  .theme-dark .btn {
    background-color: red; }
  .btn.theme-light,
  .theme-light .btn {
    color: #fff; }
  .btn.theme-dark,
  .theme-dark .btn {
    color: yellow; }
  .btn:hover.theme-light,
  .theme-light .btn:hover {
    background-color: #850255; }
  .btn:hover.theme-dark,
  .theme-dark .btn:hover {
    background-color: darkred; }

.btn.btn--disabled {
  cursor: not-allowed; }

.btn.btn--secondary.theme-light,
.theme-light .btn.btn--secondary {
  background-color: #ea5638; }

.btn.btn--secondary.theme-dark,
.theme-dark .btn.btn--secondary {
  background-color: red; }

.btn.btn--secondary.theme-light,
.theme-light .btn.btn--secondary {
  color: #be037a; }

.btn.btn--secondary.theme-dark,
.theme-dark .btn.btn--secondary {
  color: yellow; }

.btn.btn--secondary:hover.theme-light,
.theme-light .btn.btn--secondary:hover {
  background-color: #7209b7; }

.btn.btn--secondary:hover.theme-dark,
.theme-dark .btn.btn--secondary:hover {
  background-color: darkred; }

.btn.btn--gradient {
  background-color: initial;
  background-image: linear-gradient(180deg, var(--gradient-from), var(--gradient-to)); }
  .btn.btn--gradient.theme-light,
  .theme-light .btn.btn--gradient {
    --gradient-from: rgba(190, 3, 122, 0.1); }
  .btn.btn--gradient.theme-dark,
  .theme-dark .btn.btn--gradient {
    --gradient-from: tomato; }
  .btn.btn--gradient.theme-light,
  .theme-light .btn.btn--gradient {
    --gradient-to: #be037a; }
  .btn.btn--gradient.theme-dark,
  .theme-dark .btn.btn--gradient {
    --gradient-to: red; }
  .btn.btn--gradient:hover.theme-light,
  .theme-light .btn.btn--gradient:hover {
    --gradient-from: #be037a; }
  .btn.btn--gradient:hover.theme-dark,
  .theme-dark .btn.btn--gradient:hover {
    --gradient-from: red; }
  .btn.btn--gradient:hover.theme-light,
  .theme-light .btn.btn--gradient:hover {
    --gradient-to: #850255; }
  .btn.btn--gradient:hover.theme-dark,
  .theme-dark .btn.btn--gradient:hover {
    --gradient-to: darkred; }

.btn.btn--light.theme-light,
.theme-light .btn.btn--light {
  background-color: #fff; }

.btn.btn--light.theme-dark,
.theme-dark .btn.btn--light {
  background-color: #fff; }

.btn.btn--light.theme-light,
.theme-light .btn.btn--light {
  color: #000; }

.btn.btn--light.theme-light,
.theme-light .btn.btn--light {
  border-color: #be037a; }

.btn.btn--light.theme-dark,
.theme-dark .btn.btn--light {
  border-color: red; }

.btn.btn--light:hover.theme-light,
.theme-light .btn.btn--light:hover {
  background-color: #c8c8c8; }

.btn.btn--light:hover.theme-dark,
.theme-dark .btn.btn--light:hover {
  background-color: #c8c8c8; }

.flat-btn {
  box-sizing: border-box;
  max-height: 50px;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: initial;
  outline: none;
  font-size: 16px; }

.btn--dark {
  box-sizing: border-box;
  max-height: 50px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  cursor: pointer;
  border-color: transparent;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  font-size: 16px; }
  .btn--dark.theme-light,
  .theme-light .btn--dark {
    background-color: rgba(114, 9, 183, 0.1); }
  .btn--dark.theme-dark,
  .theme-dark .btn--dark {
    background-color: light-green; }
  .btn--dark.theme-light,
  .theme-light .btn--dark {
    color: #000; }
  .btn--dark:hover.theme-light,
  .theme-light .btn--dark:hover {
    color: #fff; }
  .btn--dark:hover.theme-dark,
  .theme-dark .btn--dark:hover {
    color: yellow; }
  .btn--dark:hover.theme-light,
  .theme-light .btn--dark:hover {
    background-color: #7209b7; }
  .btn--dark:hover.theme-dark,
  .theme-dark .btn--dark:hover {
    background-color: green; }

@media (max-width: 768px) {
  .btn,
  .btn--dark,
  .btn--disabled,
  .btn--secondary,
  .btn--gradient,
  .flat-btn {
    font-size: 14px;
    white-space: nowrap; } }

/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.u-font-weight-bold {
  font-weight: bold; }

.u-font-size-bigger {
  font-size: bigger; }

.u-width-1rem {
  width: 1rem; }

.u-width-full {
  width: 100%; }

.u-height-full {
  height: 100%; }

.nowrap {
  white-space: nowrap; }

.u-position-relative {
  position: relative; }

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

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

.u-full-w {
  width: 100%; }

.u-full-h {
  height: 100%; }

.u-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.u-clickable {
  cursor: pointer; }

.u-opacity-07, .btn.btn--disabled {
  opacity: 0.7; }

.no-margin {
  margin: 0; }

.block {
  display: block; }

.arrow-rotate-down {
  transform: rotate(90deg); }

.arrow-rotate-left {
  transform: rotate(180deg); }

.arrow-rotate-up {
  transform: rotate(270deg); }

.margin-left {
  margin-left: 10px; }

.margin-right {
  margin-right: 10px; }

.margin-auto {
  margin: auto; }

.text-overflow {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; }

.text-overflow--1-line {
  -webkit-line-clamp: 1;
  line-break: anywhere; }

.landing-container {
  height: 100%;
  background-image: url("../images/landing-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden; }

.landing-container__main,
.landing-container__reset-password {
  height: 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 55% 32%;
  grid-column-gap: 13%; }

.landing-container__main {
  background-image: url("../images/landing-arrow.svg"); }

.landing-container__reset-password {
  background-image: url("../images/landing-arrow-big.svg"); }

.landing-container__left {
  margin: 20px 0 160px 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.landing-container__logo {
  width: 150px; }

.landing-container__left__content {
  color: #fff; }
  .landing-container__left__content p {
    font-size: 14px; }

.landing-container__left__content-header {
  font-size: 50px;
  line-height: 55px;
  margin: 0;
  max-width: 1%; }

.landing-container__left__content-subtitle {
  max-width: 50%; }

.landing-container__left__content__images {
  display: flex; }

.landing-container__left__content__image {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden; }
  .landing-container__left__content__image img {
    width: 100%; }

.landing-container__left__content__image-header {
  width: 100%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  padding: 0 10px; }

.landing-container__left__reset-password {
  color: #fff;
  max-width: 70%; }
  .landing-container__left__reset-password p {
    font-size: 14px; }

.landing-container__left__reset-password-header {
  font-size: 50px;
  line-height: 55px;
  margin: 0; }

.landing-container__left__reset-password-btn {
  background-color: #fff !important;
  color: #be037a !important;
  margin-bottom: 20px; }
  .landing-container__left__reset-password-btn:hover {
    background-color: #bbb !important; }

.landing-container__right {
  margin: 12vh 5vw 50vh 0; }

.login-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .login-form-container p {
    margin: 0;
    color: red;
    font-size: 16px;
    align-self: flex-start; }

.login-form {
  width: 100%; }

.login-form-container__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.form-field {
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #fff;
  min-width: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1); }

.form-field__icon {
  padding: 10px 10px 10px 20px; }

.form-field__input {
  max-width: 70%;
  padding: 10px 5px;
  flex: 1;
  outline: none;
  border: none;
  align-self: stretch;
  color: #fff;
  background: transparent; }
  .form-field__input::placeholder {
    color: rgba(255, 255, 255, 0.5); }

.dot {
  width: 5px;
  height: 5px;
  border-radius: 25px;
  margin-right: 5px; }

.dot--red {
  background-color: #e62626; }

.dot--yellow {
  background-color: #ffd900; }

.dot--green {
  background-color: #1ad555; }

.landing-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8); }
  .landing-link:hover {
    color: #fff;
    text-decoration: underline; }

.landing__error-msg {
  padding-bottom: 10px; }

@media (max-width: 1000px) {
  .landing-container {
    overflow-y: auto; }
  .landing-container__main {
    display: flex;
    flex-direction: column; }
  .landing-container__left,
  .landing-container__right {
    margin: 5vh 5vw; }
  .login-form-container {
    align-items: flex-start; }
  .login-form,
  .login-form-container__submit {
    width: 80%; } }

@media (max-width: 830px) {
  .landing-container__main {
    background-size: cover; } }

/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.u-font-weight-bold {
  font-weight: bold; }

.u-font-size-bigger {
  font-size: bigger; }

.u-width-1rem {
  width: 1rem; }

.u-width-full {
  width: 100%; }

.u-height-full {
  height: 100%; }

.nowrap {
  white-space: nowrap; }

.u-position-relative {
  position: relative; }

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

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

.u-full-w {
  width: 100%; }

.u-full-h {
  height: 100%; }

.u-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.u-clickable {
  cursor: pointer; }

.u-opacity-07, .btn.btn--disabled {
  opacity: 0.7; }

.no-margin {
  margin: 0; }

.block {
  display: block; }

.arrow-rotate-down {
  transform: rotate(90deg); }

.arrow-rotate-left {
  transform: rotate(180deg); }

.arrow-rotate-up {
  transform: rotate(270deg); }

.margin-left {
  margin-left: 10px; }

.margin-right {
  margin-right: 10px; }

.margin-auto {
  margin: auto; }

.text-overflow {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; }

.text-overflow--1-line {
  -webkit-line-clamp: 1;
  line-break: anywhere; }

.tooltip {
  position: absolute;
  border-radius: 5px;
  padding: 5px; }
  .tooltip.theme-light,
  .theme-light .tooltip {
    background-color: #333333; }
  .tooltip.theme-dark,
  .theme-dark .tooltip {
    background-color: black; }
  .tooltip.theme-light,
  .theme-light .tooltip {
    border-color: #333333; }
  .tooltip.theme-dark,
  .theme-dark .tooltip {
    border-color: black; }

.tooltip--left {
  left: -10px;
  top: 50%;
  transform: translate(-100%, -50%); }
  .tooltip--left::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-left-color: inherit;
    border-width: 6px;
    margin-top: -6px; }

.tooltip--right {
  right: -10px;
  top: 50%;
  transform: translate(100%, -50%); }
  .tooltip--right::after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-right-color: inherit;
    border-width: 6px;
    margin-top: -6px; }

.tooltip--top {
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%); }
  .tooltip--top::after {
    left: 50%;
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: inherit;
    border-width: 6px;
    margin-left: -6px; }

.tooltip--bottom {
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%); }
  .tooltip--bottom::after {
    left: 50%;
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: inherit;
    border-width: 6px;
    margin-left: -6px; }

.close-window {
  width: 100%;
  position: relative;
  margin-bottom: 20px; }

.close-popup-icon {
  position: absolute;
  top: -10px;
  right: 0;
  cursor: pointer; }

.generic-popup__backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500; }
  .generic-popup__backdrop.generic-popup__backdrop--lightbox {
    background-color: rgba(0, 0, 0, 0.5); }

.generic-popup__container {
  padding: 20px;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999; }

.generic-error-popup {
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  padding: 20px; }

.loading-popup__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999; }

.loading-popup__backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500; }
  .loading-popup__backdrop.loading-popup__backdrop--lightbox {
    background-color: rgba(0, 0, 0, 0.5); }

.loading-popup__spinner {
  height: 2em; }

.sidebar__logo {
  width: 80% !important;
  cursor: pointer; }

.sidebar__logo--expanded {
  width: 50% !important;
  align-self: flex-start;
  cursor: pointer; }

.sidebar-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid;
  border-bottom: 1px solid; }
  .sidebar-buttons.theme-light,
  .theme-light .sidebar-buttons {
    border-color: rgba(0, 0, 0, 0.1); }
  .sidebar-buttons a:nth-child(4) {
    margin-bottom: 40px; }

.sidebar__btn {
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px; }
  .sidebar__btn.theme-light,
  .theme-light .sidebar__btn {
    color: rgba(0, 0, 0, 0.5); }
  .sidebar__btn.theme-dark,
  .theme-dark .sidebar__btn {
    color: yellow; }
  .sidebar__btn.theme-light,
  .theme-light .sidebar__btn {
    border-color: rgba(0, 0, 0, 0.1); }
  .sidebar__btn img {
    width: 30px; }

.sidebar__btn--expanded {
  justify-content: flex-start;
  padding: 10px 20px; }

.sidebar__btn--active {
  border-color: transparent !important; }
  .sidebar__btn--active.theme-light,
  .theme-light .sidebar__btn--active {
    background-color: rgba(190, 3, 122, 0.1); }
  .sidebar__btn--active.theme-dark,
  .theme-dark .sidebar__btn--active {
    background-color: tomato; }

.sidebar__btn-title {
  margin-left: 20px; }

.sidebar__btn-title--active.theme-light,
.theme-light .sidebar__btn-title--active {
  color: #be037a; }

.sidebar__btn-title--active.theme-dark,
.theme-dark .sidebar__btn-title--active {
  color: red; }

.sidebar__expand-btn {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  margin-top: auto; }

.sidebar__expand-btn--expanded {
  width: auto; }

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

.sidebar__logout-btn--expanded {
  width: auto; }

.settings {
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr; }
  .settings__left {
    padding: 30px; }
  .settings--split {
    grid-template-columns: 55% 45%; }

.settings__header {
  font-size: 50px;
  line-height: 55px; }

.settings__main {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-column-gap: 40px; }

.settings__sidebar {
  display: flex;
  flex-direction: column; }

.settings__sidebar-btn {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  border-right: 1px solid; }
  .settings__sidebar-btn.theme-light,
  .theme-light .settings__sidebar-btn {
    border-color: rgba(0, 0, 0, 0.1); }
  .settings__sidebar-btn.theme-light,
  .theme-light .settings__sidebar-btn {
    color: rgba(0, 0, 0, 0.5); }
  .settings__sidebar-btn.theme-dark,
  .theme-dark .settings__sidebar-btn {
    color: yellow; }

.settings__sidebar-btn--active {
  border-right: 2px solid; }
  .settings__sidebar-btn--active.theme-light,
  .theme-light .settings__sidebar-btn--active {
    color: #be037a; }
  .settings__sidebar-btn--active.theme-dark,
  .theme-dark .settings__sidebar-btn--active {
    color: yellow; }
  .settings__sidebar-btn--active.theme-light,
  .theme-light .settings__sidebar-btn--active {
    border-color: #be037a; }
  .settings__sidebar-btn--active.theme-dark,
  .theme-dark .settings__sidebar-btn--active {
    border-color: red; }

.settings__sidebar-btn__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid;
  border-radius: 20px; }
  .settings__sidebar-btn__icon-container.theme-light,
  .theme-light .settings__sidebar-btn__icon-container {
    border-color: rgba(0, 0, 0, 0.1); }
  .settings__sidebar-btn__icon-container img {
    width: 30px; }

.settings__sidebar-btn__icon-container--active {
  border-color: transparent !important; }
  .settings__sidebar-btn__icon-container--active.theme-light,
  .theme-light .settings__sidebar-btn__icon-container--active {
    background-color: rgba(190, 3, 122, 0.1); }
  .settings__sidebar-btn__icon-container--active.theme-dark,
  .theme-dark .settings__sidebar-btn__icon-container--active {
    background-color: tomato; }

.settings__sidebar-btn__title {
  margin-left: 20px; }

@media (max-width: 768px) {
  .settings__main {
    grid-template-columns: 1fr;
    grid-row-gap: 20px; }
  .settings__sidebar > * {
    font-size: 16px; }
  .settings__sidebar-btn {
    padding: 10px 0; } }

.form__search-input-container {
  box-sizing: border-box;
  width: 25%;
  min-width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.05); }

.form__search-input {
  margin-left: 10px;
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 16px; }

.form__element {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative; }
  .form__element--flex-row {
    flex-direction: row; }
  .form__element--wrapper {
    flex: 1;
    position: relative; }

.form__input {
  font-size: 16px;
  font-weight: 300;
  border: 0;
  outline: none;
  border-bottom: 1px solid;
  background: transparent;
  padding: 5px 10px;
  margin-top: 10px; }
  .form__input.theme-light,
  .theme-light .form__input {
    border-color: #be037a; }
  .form__input.theme-dark,
  .theme-dark .form__input {
    border-color: red; }
  .form__input--stretch {
    flex: 1; }
  .form__input--error {
    border: 1.5px solid red !important; }
  .form__input--transparent {
    background: transparent; }

.form__textarea {
  resize: vertical;
  font-size: 16px;
  font-weight: 300;
  border: 0;
  outline: none;
  border-bottom: 1px solid;
  background: #f8f8f8;
  padding: 5px 10px;
  margin-top: 20px; }
  .form__textarea.theme-light,
  .theme-light .form__textarea {
    border-color: #3a0ca3; }
  .form__textarea.theme-dark,
  .theme-dark .form__textarea {
    border-color: dark-green; }

.form__textarea--error {
  border: 1.5px solid red !important; }

.form__option-input {
  background-color: #f8f8f8; }
  .form__option-input.theme-light,
  .theme-light .form__option-input {
    border-color: #7209b7; }
  .form__option-input.theme-dark,
  .theme-dark .form__option-input {
    border-color: green; }

.form__select {
  font-size: 16px;
  font-weight: 300;
  border-color: transparent;
  border-radius: 5px;
  outline: none;
  padding: 5px 10px;
  margin-top: 10px; }
  .form__select.theme-light,
  .theme-light .form__select {
    background-color: rgba(114, 9, 183, 0.1); }
  .form__select.theme-dark,
  .theme-dark .form__select {
    background-color: light-green; }

.form__multi-select {
  border-radius: 5px !important;
  cursor: initial !important;
  border-color: transparent !important;
  margin-top: 10px; }
  .form__multi-select.theme-light,
  .theme-light .form__multi-select {
    background-color: rgba(114, 9, 183, 0.1); }
  .form__multi-select.theme-dark,
  .theme-dark .form__multi-select {
    background-color: light-green; }
  .form__multi-select.theme-light,
  .theme-light .form__multi-select {
    color: #000; }
  .form__multi-select .react-dropdown-select-input {
    font-size: 16px; }
  .form__multi-select .react-dropdown-select-option, .form__multi-select .react-dropdown-select-item-selected {
    font-size: 16px; }
    .form__multi-select .react-dropdown-select-option.theme-light,
    .theme-light .form__multi-select .react-dropdown-select-option, .form__multi-select .react-dropdown-select-item-selected.theme-light,
    .theme-light .form__multi-select .react-dropdown-select-item-selected {
      background-color: #be037a; }
    .form__multi-select .react-dropdown-select-option.theme-dark,
    .theme-dark .form__multi-select .react-dropdown-select-option, .form__multi-select .react-dropdown-select-item-selected.theme-dark,
    .theme-dark .form__multi-select .react-dropdown-select-item-selected {
      background-color: red; }
    .form__multi-select .react-dropdown-select-option.theme-light,
    .theme-light .form__multi-select .react-dropdown-select-option, .form__multi-select .react-dropdown-select-item-selected.theme-light,
    .theme-light .form__multi-select .react-dropdown-select-item-selected {
      color: #fff; }
    .form__multi-select .react-dropdown-select-option.theme-dark,
    .theme-dark .form__multi-select .react-dropdown-select-option, .form__multi-select .react-dropdown-select-item-selected.theme-dark,
    .theme-dark .form__multi-select .react-dropdown-select-item-selected {
      color: yellow; }

.form__multi-select--error {
  border-radius: 5px !important;
  cursor: initial !important;
  margin-top: 10px;
  border: 1.5px solid red !important; }
  .form__multi-select--error.theme-light,
  .theme-light .form__multi-select--error {
    background-color: rgba(114, 9, 183, 0.1); }
  .form__multi-select--error.theme-dark,
  .theme-dark .form__multi-select--error {
    background-color: light-green; }
  .form__multi-select--error.theme-light,
  .theme-light .form__multi-select--error {
    color: #000; }
  .form__multi-select--error .react-dropdown-select-input {
    font-size: 16px; }
  .form__multi-select--error .react-dropdown-select-option, .form__multi-select--error .react-dropdown-select-item-selected {
    font-size: 16px; }
    .form__multi-select--error .react-dropdown-select-option.theme-light,
    .theme-light .form__multi-select--error .react-dropdown-select-option, .form__multi-select--error .react-dropdown-select-item-selected.theme-light,
    .theme-light .form__multi-select--error .react-dropdown-select-item-selected {
      background-color: #be037a; }
    .form__multi-select--error .react-dropdown-select-option.theme-dark,
    .theme-dark .form__multi-select--error .react-dropdown-select-option, .form__multi-select--error .react-dropdown-select-item-selected.theme-dark,
    .theme-dark .form__multi-select--error .react-dropdown-select-item-selected {
      background-color: red; }
    .form__multi-select--error .react-dropdown-select-option.theme-light,
    .theme-light .form__multi-select--error .react-dropdown-select-option, .form__multi-select--error .react-dropdown-select-item-selected.theme-light,
    .theme-light .form__multi-select--error .react-dropdown-select-item-selected {
      color: #fff; }
    .form__multi-select--error .react-dropdown-select-option.theme-dark,
    .theme-dark .form__multi-select--error .react-dropdown-select-option, .form__multi-select--error .react-dropdown-select-item-selected.theme-dark,
    .theme-dark .form__multi-select--error .react-dropdown-select-item-selected {
      color: yellow; }

.form__range-input {
  outline: none;
  -webkit-appearance: none;
  -webkit-transition: .2s;
  width: 96%;
  height: 5px;
  background: #f1e6f8; }

.form__range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 25px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: #3a0ca3; }

.form__range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: #3a0ca3; }

.form__date-input {
  font-size: 16px;
  font-weight: 300;
  border-color: transparent;
  border-radius: 5px;
  outline: none;
  padding: 5px 10px;
  margin-top: 10px; }
  .form__date-input.theme-light,
  .theme-light .form__date-input {
    background-color: rgba(114, 9, 183, 0.1); }
  .form__date-input.theme-dark,
  .theme-dark .form__date-input {
    background-color: light-green; }

.form__school-group-input {
  align-self: center;
  flex: 1;
  margin-left: 30px; }

.form__radio-btn-list {
  min-width: max-content; }

@media (max-width: 768px) {
  .form__label,
  .form__select {
    font-size: 14px; } }

.cross-sections__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.cross-sections__list {
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.cross-sections__list-piece {
  display: grid;
  grid-template-columns: 1fr 3vw 3vw;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .cross-sections__list-piece > * {
    display: flex;
    align-items: center; }

.cross-sections__list-header {
  display: grid;
  grid-template-columns: 1fr;
  margin: 40px 0 0 40px; }

.cross-sections__popup {
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  padding: 10px; }

.cross-sections__popup-header {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300; }
  .cross-sections__popup-header.theme-light,
  .theme-light .cross-sections__popup-header {
    color: #be037a; }
  .cross-sections__popup-header.theme-dark,
  .theme-dark .cross-sections__popup-header {
    color: yellow; }

.cross-sections__popup__icon-wrapper {
  position: absolute;
  top: -20px;
  border-radius: 20px; }
  .cross-sections__popup__icon-wrapper.theme-light,
  .theme-light .cross-sections__popup__icon-wrapper {
    background-color: #fff; }
  .cross-sections__popup__icon-wrapper.theme-dark,
  .theme-dark .cross-sections__popup__icon-wrapper {
    background-color: #fff; }

.cross-sections__popup__icon-container,
.cross-sections__popup__remove-icon-container {
  padding: 10px;
  display: flex;
  border-radius: 20px; }
  .cross-sections__popup__icon-container.theme-light,
  .theme-light .cross-sections__popup__icon-container,
  .cross-sections__popup__remove-icon-container.theme-light,
  .theme-light
  .cross-sections__popup__remove-icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .cross-sections__popup__icon-container.theme-dark,
  .theme-dark .cross-sections__popup__icon-container,
  .cross-sections__popup__remove-icon-container.theme-dark,
  .theme-dark
  .cross-sections__popup__remove-icon-container {
    background-color: tomato; }

.cross-sections__popup__remove-icon-container {
  background-color: rgba(230, 37, 38, 0.1) !important; }

.cross-sections__popup__icon {
  width: 40px; }

.cross-sections__popup__buttons {
  display: flex;
  justify-content: flex-end; }

.cross-sections__popup__submit-btn {
  margin-top: 20px; }

.cross-sections__popup__cancel-btn {
  margin-top: 20px;
  background: transparent !important;
  transition: box-shadow .2s; }
  .cross-sections__popup__cancel-btn.theme-light,
  .theme-light .cross-sections__popup__cancel-btn {
    color: #be037a; }
  .cross-sections__popup__cancel-btn.theme-dark,
  .theme-dark .cross-sections__popup__cancel-btn {
    color: yellow; }
  .cross-sections__popup__cancel-btn:hover {
    box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.3); }

@media (max-width: 768px) {
  .cross-sections__list {
    padding: 10px; }
    .cross-sections__list > * {
      font-size: 14px; }
  .cross-sections__list-header {
    margin-left: 20px; }
    .cross-sections__list-header > * {
      font-size: 14px; }
  .cross-sections__list-piece {
    padding: 10px; } }

.icon__image {
  width: 30px; }

.image {
  width: 30px; }

.agents__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.agents__list {
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.agents__list-piece {
  display: grid;
  grid-template-columns: 1fr 3vw 3vw;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .agents__list-piece > * {
    display: flex;
    align-items: center; }
  .agents__list-piece label {
    margin-right: 10px; }

.agents__list-header {
  display: grid;
  grid-template-columns: 1fr;
  margin: 40px 0 0 40px; }

.agents__popup {
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  padding: 10px; }

.agents__popup-header {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300; }
  .agents__popup-header.theme-light,
  .theme-light .agents__popup-header {
    color: #be037a; }
  .agents__popup-header.theme-dark,
  .theme-dark .agents__popup-header {
    color: yellow; }

.agents__popup__icon-wrapper {
  position: absolute;
  top: -20px;
  border-radius: 20px; }
  .agents__popup__icon-wrapper.theme-light,
  .theme-light .agents__popup__icon-wrapper {
    background-color: #fff; }
  .agents__popup__icon-wrapper.theme-dark,
  .theme-dark .agents__popup__icon-wrapper {
    background-color: #fff; }

.agents__popup__icon-container,
.agents__popup__remove-icon-container {
  padding: 10px;
  display: flex;
  border-radius: 20px; }
  .agents__popup__icon-container.theme-light,
  .theme-light .agents__popup__icon-container,
  .agents__popup__remove-icon-container.theme-light,
  .theme-light
  .agents__popup__remove-icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .agents__popup__icon-container.theme-dark,
  .theme-dark .agents__popup__icon-container,
  .agents__popup__remove-icon-container.theme-dark,
  .theme-dark
  .agents__popup__remove-icon-container {
    background-color: tomato; }

.agents__popup__remove-icon-container {
  background-color: rgba(230, 37, 38, 0.1) !important; }

.agents__popup__icon {
  width: 40px; }

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

.agents__popup__submit-btn {
  margin-top: 20px; }

.agents__popup__cancel-btn {
  margin-top: 20px;
  background: transparent !important;
  transition: box-shadow .2s; }
  .agents__popup__cancel-btn.theme-light,
  .theme-light .agents__popup__cancel-btn {
    color: #be037a; }
  .agents__popup__cancel-btn.theme-dark,
  .theme-dark .agents__popup__cancel-btn {
    color: yellow; }
  .agents__popup__cancel-btn:hover {
    box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.3); }

@media (max-width: 768px) {
  .agents__list {
    padding: 10px; }
    .agents__list > * {
      font-size: 14px; }
  .agents__list-header {
    margin-left: 20px; }
    .agents__list-header > * {
      font-size: 14px; }
  .agents__list-piece {
    padding: 10px; } }

.slider-container {
  display: flex;
  flex-direction: row;
  align-items: center; }

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  justify-content: flex-end;
  align-items: center;
  border-radius: 100px;
  border: none;
  outline: none; }

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* The switch__slider */
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s; }
  .switch__slider.theme-light,
  .theme-light .switch__slider {
    background-color: rgba(0, 0, 0, 0.1); }

.switch__slider:before {
  position: absolute;
  content: "";
  left: 0.5px;
  top: 3px;
  -webkit-transition: .4s;
  transition: .4s;
  width: 24px;
  height: 24px;
  margin-right: 3px;
  margin-left: 3px;
  border-radius: 20px;
  background-color: #fff; }

input:checked + .switch__slider.theme-light,
.theme-light input:checked + .switch__slider {
  background-color: #3a0ca3; }

input:checked + .switch__slider.theme-dark,
.theme-dark input:checked + .switch__slider {
  background-color: dark-green; }

input:focus + .switch__slider {
  box-shadow: 0 0 1px; }

input:checked + .switch__slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px); }

/* Rounded switch__sliders */
.switch__slider--round {
  border-radius: 34px; }

.switch__slider--round:before {
  border-radius: 50%; }

.survey {
  height: 100%;
  box-sizing: border-box;
  padding: 30px; }

.survey__header {
  font-size: 50px;
  line-height: 55px; }

.survey__toolbar {
  margin-top: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.survey__list {
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.survey__list-header {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 3vw;
  margin-top: 30px; }

.survey__list-piece {
  display: grid;
  grid-template-columns: 1fr 1fr 3vw;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer; }
  .survey__list-piece > * {
    display: flex;
    align-items: center; }

@media (max-width: 768px) {
  .survey__list-header,
  .survey__list-piece {
    font-size: 14px; } }

.survey-intro-questions__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.survey-intro-questions__list {
  overflow-y: auto;
  max-height: 65vh;
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.survey-intro-questions__list-piece {
  display: flex;
  align-items: center;
  margin: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color .5s; }

.survey-intro-questions__list-piece__icon {
  margin-left: auto; }

.survey-intro-questions__list-piece--active.theme-light,
.theme-light .survey-intro-questions__list-piece--active {
  background-color: rgba(114, 9, 183, 0.1); }

.survey-intro-questions__list-piece--active.theme-dark,
.theme-dark .survey-intro-questions__list-piece--active {
  background-color: tomato; }

.survey-intro-questions__list-header {
  display: grid;
  grid-template-columns: 1fr;
  margin: 40px 0 0 40px; }

.survey-intro-questions__new-question-btn-container {
  position: relative; }

.survey-intro-questions__question-type-selector {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff; }

.survey-intro-questions__question-type {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 25px; }
  .survey-intro-questions__question-type.theme-light,
  .theme-light .survey-intro-questions__question-type {
    background-color: rgba(114, 9, 183, 0.1); }
  .survey-intro-questions__question-type.theme-dark,
  .theme-dark .survey-intro-questions__question-type {
    background-color: light-green; }
  .survey-intro-questions__question-type:nth-child(1) {
    margin-top: 20px; }

.survey-question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
  border: none;
  border-radius: 20px; }
  .survey-question-icon.theme-light,
  .theme-light .survey-question-icon {
    background-color: rgba(114, 9, 183, 0.1); }
  .survey-question-icon.theme-dark,
  .theme-dark .survey-question-icon {
    background-color: light-green; }

@media (max-width: 768px) {
  .survey-intro-questions__list > *,
  .survey-intro-questions__list-header > *,
  .survey-intro-questions__new-question-btn-container > *,
  .form__search-input-container > * {
    font-size: 14px; }
  .survey-intro-questions__list {
    padding: 10px; }
  .survey-intro-questions__list-header {
    margin-left: 20px; }
  .survey-intro-questions__list-piece {
    margin: 10px; } }

.survey-description {
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid;
  border-radius: 25px; }
  .survey-description.theme-light,
  .theme-light .survey-description {
    border-color: rgba(0, 0, 0, 0.1); }
  .survey-description__modify {
    text-decoration: none;
    margin-left: auto;
    cursor: pointer; }
    .survey-description__modify.theme-light,
    .theme-light .survey-description__modify {
      color: #be037a; }
    .survey-description__modify.theme-dark,
    .theme-dark .survey-description__modify {
      color: red; }

.section-creator {
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.1);
  z-index: 500; }
  .section-creator.theme-light,
  .theme-light .section-creator {
    background-color: #fff; }
  .section-creator.theme-dark,
  .theme-dark .section-creator {
    background-color: #fff; }

.section-creator__toolbar {
  display: flex;
  align-items: center;
  font-size: 14px; }

.section-creator__close-icon {
  cursor: pointer;
  margin-left: auto;
  height: 20px; }

.section-creator__header {
  display: flex;
  align-items: center;
  margin: 20px 0; }

.section-creator__header__icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border: 1px solid;
  border-radius: 20px;
  border-color: transparent !important; }
  .section-creator__header__icon-container.theme-light,
  .theme-light .section-creator__header__icon-container {
    color: #be037a; }
  .section-creator__header__icon-container.theme-dark,
  .theme-dark .section-creator__header__icon-container {
    color: red; }
  .section-creator__header__icon-container.theme-light,
  .theme-light .section-creator__header__icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .section-creator__header__icon-container.theme-dark,
  .theme-dark .section-creator__header__icon-container {
    background-color: tomato; }

.section-creator__forms {
  margin-top: 10px 0;
  flex: initial; }

.section-creator__submit-buttons {
  margin-bottom: 30px; }

@media (max-width: 1000px) {
  .section-creator {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50vw;
    z-index: 500; } }

@media (max-width: 768px) {
  .section-creator {
    width: 60vw; } }

.question-creator {
  background: #fff;
  z-index: 500;
  overflow-y: auto;
  font-size: 18px;
  box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.3);
  display: flex;
  flex-direction: column;
  padding: 20px 30px; }
  .question-creator div {
    margin: 5px 0; }
  .question-creator__score-select {
    width: auto;
    max-width: 10vw;
    white-space: break-lines;
    margin-left: 20px; }
  .question-creator__options-headers {
    display: flex;
    justify-content: space-between; }

.question-creator__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px; }

.question-creator__close-icon {
  cursor: pointer;
  width: 20px; }

.question-creator__header {
  display: flex;
  align-items: center;
  margin: 20px 0 30px 0; }

.question-creator__answers-header {
  font-size: 18px; }

.question-creator__textarea {
  font-size: 18px;
  background: #f8f8f8; }

.question-creator__input {
  margin: 20px 0; }
  .question-creator__input input {
    background: #f8f8f8; }

.question-creator__questions-forms {
  flex: 1;
  border-radius: 10px; }

.question-creator__question-form {
  border-radius: 10px;
  background: #f8f8f8;
  padding: 20px; }
  .question-creator__question-form:not(:first-child) {
    margin-top: 20px; }

.question-creator__language-header {
  font-weight: bold; }
  .question-creator__language-header.theme-light,
  .theme-light .question-creator__language-header {
    color: #be037a; }
  .question-creator__language-header.theme-dark,
  .theme-dark .question-creator__language-header {
    color: red; }

.question-creator__multiple-choice {
  margin: 20px 0; }

.question-creator__matrix {
  margin: 20px 0; }

.question-creator__matrix-option {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  margin: 20px 0 0 20px !important; }
  .question-creator__matrix-option.theme-light,
  .theme-light .question-creator__matrix-option {
    color: #3a0ca3; }
  .question-creator__matrix-option.theme-dark,
  .theme-dark .question-creator__matrix-option {
    color: dark-green; }
  .question-creator__matrix-option div {
    margin: 0; }
  .question-creator__matrix-option button {
    margin-top: 10px; }

.question-creator__review-scale {
  margin: 20px 0; }

.question-creator__scale-selectors {
  display: flex;
  font-size: 16px;
  margin-left: 10px !important; }

.question-creator__scale-select {
  flex-direction: row;
  align-items: center; }
  .question-creator__scale-select select {
    margin: 0 20px;
    border: 1px solid;
    padding: 5px 30px 5px 5px; }
    .question-creator__scale-select select.theme-light,
    .theme-light .question-creator__scale-select select {
      border-color: #3a0ca3; }
    .question-creator__scale-select select.theme-dark,
    .theme-dark .question-creator__scale-select select {
      border-color: dark-green; }
    .question-creator__scale-select select.theme-light,
    .theme-light .question-creator__scale-select select {
      background-color: #fff; }
    .question-creator__scale-select select.theme-dark,
    .theme-dark .question-creator__scale-select select {
      background-color: #333333; }

.question-creator__scale-labels {
  font-size: 16px; }
  .question-creator__scale-labels.theme-light,
  .theme-light .question-creator__scale-labels {
    color: #3a0ca3; }
  .question-creator__scale-labels.theme-dark,
  .theme-dark .question-creator__scale-labels {
    color: dark-green; }
  .question-creator__scale-labels input.theme-light,
  .theme-light .question-creator__scale-labels input {
    border-color: #3a0ca3; }
  .question-creator__scale-labels input.theme-dark,
  .theme-dark .question-creator__scale-labels input {
    border-color: dark-green; }

.question-creator__add-option-btn {
  margin-top: 20px;
  justify-content: flex-start;
  width: 45%;
  min-width: 180px;
  border-radius: 10px; }

.question-creator__remove-option-icon {
  position: absolute;
  width: 20px;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  cursor: pointer; }

.question-creator__sliders {
  margin-top: 30px;
  font-size: 16px; }

.question-creator__submit-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto !important; }

.question-creator__remove-btn {
  align-self: flex-start;
  margin-top: 20px; }
  .question-creator__remove-btn.theme-light,
  .theme-light .question-creator__remove-btn {
    color: #e62626; }

@media (max-width: 1000px) {
  .question-creator {
    width: 50vw; }
  .question-creator__toolbar {
    font-size: 14px; } }

@media (max-width: 768px) {
  .question-creator {
    width: 60vw; }
    .question-creator > * {
      font-size: 16px; }
  .question-creator__toolbar {
    font-size: 14px; }
  .question-creator__question-form,
  .question-creator__answers-header {
    font-size: 16px; } }

.delete-popup {
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  padding: 10px; }

.delete-popup__header {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300; }
  .delete-popup__header.theme-light,
  .theme-light .delete-popup__header {
    color: #be037a; }
  .delete-popup__header.theme-dark,
  .theme-dark .delete-popup__header {
    color: yellow; }

.delete-popup__icon-wrapper {
  position: absolute;
  top: -20px;
  border-radius: 20px; }
  .delete-popup__icon-wrapper.theme-light,
  .theme-light .delete-popup__icon-wrapper {
    background-color: #fff; }
  .delete-popup__icon-wrapper.theme-dark,
  .theme-dark .delete-popup__icon-wrapper {
    background-color: #fff; }

.delete-popup__remove-icon-container {
  padding: 10px;
  display: flex;
  border-radius: 20px; }
  .delete-popup__remove-icon-container.theme-light,
  .theme-light .delete-popup__remove-icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .delete-popup__remove-icon-container.theme-dark,
  .theme-dark .delete-popup__remove-icon-container {
    background-color: tomato; }

.delete-popup__icon {
  width: 40px; }

.delete-popup__buttons {
  display: flex;
  justify-content: flex-end; }

.delete-popup__buttons__submit-btn {
  margin-top: 20px; }

.delete-popup__buttons__cancel-btn {
  margin-top: 20px;
  background: transparent !important;
  transition: box-shadow .2s; }
  .delete-popup__buttons__cancel-btn.theme-light,
  .theme-light .delete-popup__buttons__cancel-btn {
    color: #be037a; }
  .delete-popup__buttons__cancel-btn.theme-dark,
  .theme-dark .delete-popup__buttons__cancel-btn {
    color: yellow; }
  .delete-popup__buttons__cancel-btn:hover {
    box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.3); }

.survey-answer {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: 100vh; }

.survey-answer__message {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px; }

.survey-answer__sidebar {
  padding: 40px 30px;
  box-sizing: border-box;
  box-shadow: 1px 0 0 0 rgba(50, 50, 50, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; }

.survey-answer__sidebar__buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid;
  border-color: rgba(0, 0, 0, 0.1); }

.survey-answer__sidebar__buttons-piece {
  margin: 10px 0;
  display: flex;
  align-items: center; }

.survey-answer__sidebar__buttons-piece__ordering,
.survey-answer__main__header__ordering {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 1px solid;
  border-radius: 20px;
  border-color: #be037a; }

.survey-answer__sidebar__buttons-piece__ordering--active {
  background-color: rgba(190, 3, 122, 0.1);
  border-color: transparent;
  color: #be037a; }

.survey-answer__sidebar__buttons-piece__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.language-selector {
  padding: 10px;
  background: #fff;
  border: 1px solid;
  border-radius: 20px;
  border-color: #be037a;
  margin-top: auto;
  margin-bottom: 10px; }

.survey-answer__main {
  padding: 40px 30px;
  overflow-x: hidden;
  overflow-y: auto; }

.survey-answer__main__header {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid;
  border-radius: 25px;
  border-color: rgba(0, 0, 0, 0.1); }

.survey-answer__main__header__ordering {
  background-color: rgba(190, 3, 122, 0.1);
  border-color: transparent;
  color: #be037a; }

.survey-answer__main__header__section {
  display: flex;
  flex-direction: column;
  margin-left: 10px; }
  .survey-answer__main__header__section span:nth-child(1) {
    color: #be037a;
    font-size: 14px; }

.survey-answer__main__description {
  margin: 20px 0 0 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5); }

.survey-answer__questions {
  margin: 30px 0; }

.survey-answer__question {
  border-radius: 25px;
  background: #f8f8f8;
  padding: 20px;
  margin-top: 20px; }

.survey-answer__question--error {
  border: 1px solid;
  border-color: red; }

.survey-answer__question__error-msg {
  color: red;
  margin: 10px; }

.survey-answer__question__header {
  display: flex;
  align-items: center;
  margin: 0 0 10px 10px; }

.survey-answer__question__header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
  border: none;
  border-radius: 20px;
  background-color: rgba(114, 9, 183, 0.1); }

.survey-answer__question__options-multiple-choice {
  width: 60%;
  margin-left: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.survey-answer__question__slider-options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse; }

.survey-answer__question__slider-labels {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  width: 96%;
  margin: 0 27px; }

.survey-answer__question__option-multiple-choice {
  padding: 10px 20px;
  margin: 0 3% 3% 0;
  border: 1px solid;
  border-color: #7209b7;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color .2s, color .2s; }
  .survey-answer__question__option-multiple-choice:first-child {
    margin-left: 0; }
  .survey-answer__question__option-multiple-choice:hover {
    background-color: #7209b7;
    color: #fff; }

.survey-answer__question__slider-zero-value-answer-choice {
  padding: 10px 20px;
  margin: 1% 0 0 0;
  border: 1px solid #7209b7;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color .2s, color .2s; }
  .survey-answer__question__slider-zero-value-answer-choice:first-child {
    margin-left: 0; }
  .survey-answer__question__slider-zero-value-answer-choice:hover {
    background-color: #7209b7;
    color: #fff; }

.survey-answer__question__option-multiple-choice--selected {
  background-color: #7209b7;
  color: #fff; }

.survey-answer__question__options-matrix {
  margin-left: 80px;
  display: grid;
  grid-gap: 20px; }
  .survey-answer__question__options-matrix > * {
    margin: auto; }

.survey-answer__question__options-matrix__checkbox {
  width: 50px;
  cursor: pointer; }

.survey-answer__question__options-review-scale {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .survey-answer__question__options-review-scale span {
    width: min-content; }

/* START DISABLED STYLING */
input[type="range"]:disabled::-webkit-slider-thumb {
  background: #cccccc;
  cursor: context-menu !important; }

input[type="range"]:disabled::-moz-range-thumb {
  background: #cccccc;
  cursor: context-menu !important; }

input[type="range"]:disabled::-ms-thumb {
  background: #cccccc;
  cursor: context-menu !important; }

/* END DISABLED STYLING*/
.survey-answer__question__range-input {
  margin: 0 20px; }

.survey-answer__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .survey-answer__toolbar button {
    height: 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    transition: background-color .2s; }

.survey-answer__toolbar__section-switch-previous {
  background: transparent;
  margin-right: 10px; }
  .survey-answer__toolbar__section-switch-previous:hover {
    background-color: rgba(190, 3, 122, 0.1); }

.survey-answer__toolbar__section-switch-next {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(190, 3, 122, 0.1);
  margin-left: auto; }
  .survey-answer__toolbar__section-switch-next:hover {
    background-color: rgba(190, 3, 122, 0.3); }

.survey-answer__toolbar__save-answers-btn {
  background-color: #be037a;
  color: #fff;
  margin-left: auto; }
  .survey-answer__toolbar__save-answers-btn:hover {
    background-color: #850255; }

.survey-answer__toolbar__section-switch-next__ordering {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 1px solid;
  border-radius: 20px;
  border-color: #be037a; }

.survey-answer__toolbar__section-switch-arrow-left {
  transform: rotate(180deg);
  margin-right: 5%; }

@media (max-width: 1000px) {
  .survey-answer {
    grid-template-columns: 160px 1fr; }
  .survey-answer__main {
    padding: 30px 20px; }
  .survey-answer__sidebar {
    padding: 30px 20px; }
  .sidebar__logo--expanded {
    width: 100% !important; }
  .language-selector {
    font-size: 16px; }
  .survey-answer__question__options-multiple-choice,
  .survey-answer__question__options-review-scale,
  .survey-answer__question__options-matrix {
    width: 80%; }
  .survey-answer__question__options-matrix {
    grid-gap: 10px; } }

@media (max-width: 768px) {
  .survey-answer {
    grid-template-columns: 120px 1fr; }
  .survey-answer__sidebar {
    padding: 20px 10px; }
    .survey-answer__sidebar > * {
      font-size: 14px; }
  .survey-answer__main > * {
    font-size: 14px; }
  .survey-answer__toolbar__section-switch-next {
    font-size: 14px !important; }
  .survey-answer__toolbar__section-switch-previous {
    font-size: 14px !important;
    padding: 5px !important; }
  .survey-answer__main__header {
    padding: 10px; }
  .survey-answer__question {
    padding: 10px; }
  .survey-answer__question__options-multiple-choice,
  .survey-answer__question__options-review-scale,
  .survey-answer__question__options-matrix {
    width: 100%;
    margin-left: 0; }
  .language-selector {
    font-size: 14px; }
  .survey-answer__question__header {
    margin-left: 0; }
  .survey-answer__question__header__icon {
    border-radius: 15px;
    margin-right: 10px; }
  .icon__image {
    width: 20px; } }

@media (max-width: 480px) {
  .survey-answer {
    grid-template-columns: 80px 1fr; }
  .survey-answer__question__options-matrix {
    grid-gap: 5px; } }

.school {
  height: 100%;
  box-sizing: border-box;
  padding: 30px; }

.school__header {
  font-size: 50px;
  line-height: 55px; }

.school__toolbar {
  margin-top: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.school__list {
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.school__list-header {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 3vw 3vw;
  margin-top: 30px; }

.school__list-piece {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 3vw 3vw;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer; }
  .school__list-piece > * {
    display: flex;
    align-items: center; }

.school__popup {
  min-width: 50vw;
  max-height: 70vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 10px; }
  .school__popup--small {
    min-width: 25vw; }

.school__popup-header {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300; }
  .school__popup-header.theme-light,
  .theme-light .school__popup-header {
    color: #be037a; }
  .school__popup-header.theme-dark,
  .theme-dark .school__popup-header {
    color: yellow; }

.school__popup__icon-wrapper {
  position: absolute;
  top: -20px;
  border-radius: 20px; }
  .school__popup__icon-wrapper.theme-light,
  .theme-light .school__popup__icon-wrapper {
    background-color: #fff; }
  .school__popup__icon-wrapper.theme-dark,
  .theme-dark .school__popup__icon-wrapper {
    background-color: #fff; }

.school__popup__icon-container,
.school__popup__remove-icon-container {
  padding: 10px;
  display: flex;
  border-radius: 20px; }
  .school__popup__icon-container.theme-light,
  .theme-light .school__popup__icon-container,
  .school__popup__remove-icon-container.theme-light,
  .theme-light
  .school__popup__remove-icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .school__popup__icon-container.theme-dark,
  .theme-dark .school__popup__icon-container,
  .school__popup__remove-icon-container.theme-dark,
  .theme-dark
  .school__popup__remove-icon-container {
    background-color: tomato; }

.school__popup__remove-icon-container {
  background-color: rgba(230, 37, 38, 0.1) !important; }

.school__popup__icon {
  width: 40px; }

.school__popup__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px; }
  .school__popup__form div:nth-child(1) {
    padding: 0; }

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

.school__popup__submit-btn {
  margin: 20px 0 0 auto; }

.school__popup__cancel-btn {
  margin-top: 20px;
  background: transparent !important;
  transition: box-shadow .2s; }
  .school__popup__cancel-btn.theme-light,
  .theme-light .school__popup__cancel-btn {
    color: #be037a; }
  .school__popup__cancel-btn.theme-dark,
  .theme-dark .school__popup__cancel-btn {
    color: yellow; }
  .school__popup__cancel-btn:hover {
    box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.3); }

@media (max-width: 768px) {
  .school__list {
    padding: 10px; }
    .school__list > * {
      font-size: 14px; }
  .school__list-header {
    margin-left: 10px;
    padding: 10px; }
    .school__list-header > * {
      font-size: 14px; }
  .school__list-piece {
    padding: 10px; } }

.school-details {
  height: 100%;
  box-sizing: border-box;
  padding: 30px; }

.school-details__header {
  font-size: 50px;
  line-height: 55px; }

.school-details__main {
  margin-top: 3%;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-column-gap: 40px; }

.school-details__breadcrumb {
  margin-top: 30px;
  font-size: 14px;
  text-decoration: none; }
  .school-details__breadcrumb.theme-light,
  .theme-light .school-details__breadcrumb {
    color: rgba(0, 0, 0, 0.5); }
  .school-details__breadcrumb.theme-dark,
  .theme-dark .school-details__breadcrumb {
    color: yellow; }
  .school-details__breadcrumb:hover.theme-light,
  .theme-light .school-details__breadcrumb:hover {
    color: #be037a; }
  .school-details__breadcrumb:hover.theme-dark,
  .theme-dark .school-details__breadcrumb:hover {
    color: yellow; }

.school-details__sidebar {
  display: flex;
  flex-direction: column; }

.school-details__sidebar-btn {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  border-right: 1px solid; }
  .school-details__sidebar-btn.theme-light,
  .theme-light .school-details__sidebar-btn {
    border-color: rgba(0, 0, 0, 0.1); }
  .school-details__sidebar-btn.theme-light,
  .theme-light .school-details__sidebar-btn {
    color: rgba(0, 0, 0, 0.5); }
  .school-details__sidebar-btn.theme-dark,
  .theme-dark .school-details__sidebar-btn {
    color: yellow; }

.school-details__sidebar-btn--active {
  border-right: 2px solid; }
  .school-details__sidebar-btn--active.theme-light,
  .theme-light .school-details__sidebar-btn--active {
    color: #be037a; }
  .school-details__sidebar-btn--active.theme-dark,
  .theme-dark .school-details__sidebar-btn--active {
    color: yellow; }
  .school-details__sidebar-btn--active.theme-light,
  .theme-light .school-details__sidebar-btn--active {
    border-color: #be037a; }
  .school-details__sidebar-btn--active.theme-dark,
  .theme-dark .school-details__sidebar-btn--active {
    border-color: red; }

.school-details__sidebar-btn__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid;
  border-radius: 20px; }
  .school-details__sidebar-btn__icon-container.theme-light,
  .theme-light .school-details__sidebar-btn__icon-container {
    border-color: rgba(0, 0, 0, 0.1); }
  .school-details__sidebar-btn__icon-container img {
    width: 30px; }

.school-details__sidebar-btn__icon-container--active {
  border-color: transparent !important; }
  .school-details__sidebar-btn__icon-container--active.theme-light,
  .theme-light .school-details__sidebar-btn__icon-container--active {
    background-color: rgba(190, 3, 122, 0.1); }
  .school-details__sidebar-btn__icon-container--active.theme-dark,
  .theme-dark .school-details__sidebar-btn__icon-container--active {
    background-color: tomato; }

.school-details__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px; }

.school-details__right__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px; }

.school-details__right__details-piece {
  display: flex;
  align-items: center; }

.school-details__right__submit-survey {
  padding: 30px;
  border-radius: 25px; }
  .school-details__right__submit-survey.theme-light,
  .theme-light .school-details__right__submit-survey {
    background-color: rgba(190, 3, 122, 0.1); }
  .school-details__right__submit-survey.theme-dark,
  .theme-dark .school-details__right__submit-survey {
    background-color: lightcoral; }
  .school-details__right__submit-survey div {
    margin: 10px 0; }

.school-details__right__submit-survey__header {
  margin: 0 0 30px 0;
  font-size: 30px;
  font-weight: 300; }
  .school-details__right__submit-survey__header.theme-light,
  .theme-light .school-details__right__submit-survey__header {
    color: #be037a; }
  .school-details__right__submit-survey__header.theme-dark,
  .theme-dark .school-details__right__submit-survey__header {
    color: yellow; }

.survey-details__right__submit-survey__btn {
  margin-top: 30px; }

.survey-details__right__submit-survey__btn-icon {
  margin-right: 10px; }

.school-details__right__survey-list-container {
  grid-column: 1/3;
  font-size: 16px; }

.school-details__right__survey-list {
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1); }

.school-details__right__survey-list-header {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr 0.5fr;
  margin-top: 10px; }

.school-details__right__survey-list-piece {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr 0.5fr;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .school-details__right__survey-list-piece > * {
    display: flex;
    align-items: center; }

.school-details__right__survey-list-piece__url {
  max-width: 15vw;
  position: relative; }

.school-details__survey-created-popup {
  max-width: 30vw;
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin: -20px; }
  .school-details__survey-created-popup.theme-light,
  .theme-light .school-details__survey-created-popup {
    background-color: rgba(190, 3, 122, 0.1); }
  .school-details__survey-created-popup.theme-dark,
  .theme-dark .school-details__survey-created-popup {
    background-color: lightcoral; }

.school-details__survey-created-popup__icon {
  width: 10vw;
  margin: auto; }

.school-details__survey-created-popup__header {
  text-align: center;
  font-weight: 300; }
  .school-details__survey-created-popup__header.theme-light,
  .theme-light .school-details__survey-created-popup__header {
    color: #be037a; }
  .school-details__survey-created-popup__header.theme-dark,
  .theme-dark .school-details__survey-created-popup__header {
    color: yellow; }

.school-details__survey-created-popup__details-piece {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  position: relative; }
  .school-details__survey-created-popup__details-piece span {
    margin-right: 5px;
    max-width: 85%;
    line-break: anywhere; }
  .school-details__survey-created-popup__details-piece img {
    width: 25px; }

.survey-details__survey-created-popup__button {
  margin: 20px auto auto; }

.copied-to-clipboard-tooltip {
  position: absolute;
  top: -40px;
  right: -25px;
  border-radius: 10px;
  font-size: 14px;
  padding: 5px 10px; }
  .copied-to-clipboard-tooltip.theme-light,
  .theme-light .copied-to-clipboard-tooltip {
    background-color: #be037a; }
  .copied-to-clipboard-tooltip.theme-dark,
  .theme-dark .copied-to-clipboard-tooltip {
    background-color: red; }
  .copied-to-clipboard-tooltip.theme-light,
  .theme-light .copied-to-clipboard-tooltip {
    color: #fff; }
  .copied-to-clipboard-tooltip.theme-dark,
  .theme-dark .copied-to-clipboard-tooltip {
    color: yellow; }

@media (max-width: 768px) {
  .school-details__sidebar > * {
    font-size: 16px; }
  .school-details__right {
    font-size: 14px; }
  .school-details__sidebar-btn {
    padding: 10px 0; }
  .school-details__main {
    grid-column-gap: 20px; } }

.survey-add {
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr; }

.survey-add--split {
  grid-template-columns: 55% 45%; }

.survey-add__left {
  padding: 30px; }

.survey-add__toolbar {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap; }

.survey-add__left__breadcrumbs {
  display: flex;
  align-items: center; }
  .survey-add__left__breadcrumbs > * {
    margin-right: 10px; }

.survey-add__left__link {
  text-decoration: none; }
  .survey-add__left__link.theme-light,
  .theme-light .survey-add__left__link {
    color: #000; }

.survey-add__left__new-survey.theme-light,
.theme-light .survey-add__left__new-survey {
  color: #be037a; }

.survey-add__left__new-survey.theme-dark,
.theme-dark .survey-add__left__new-survey {
  color: red; }

.survey-add__left__name-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  margin: 30px 20px; }
  .survey-add__left__name-input select.theme-light,
  .theme-light .survey-add__left__name-input select {
    background-color: rgba(190, 3, 122, 0.1); }
  .survey-add__left__name-input select.theme-dark,
  .theme-dark .survey-add__left__name-input select {
    background-color: tomato; }

.survey-add__left__content {
  margin: 20px 0;
  font-size: 18px; }

.survey-add__left__introduction {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid;
  border-radius: 25px; }
  .survey-add__left__introduction.theme-light,
  .theme-light .survey-add__left__introduction {
    border-color: rgba(0, 0, 0, 0.1); }

.survey-add__left__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
  border: 1px solid;
  border-radius: 20px;
  border-color: transparent !important; }
  .survey-add__left__icon-container.theme-light,
  .theme-light .survey-add__left__icon-container {
    background-color: rgba(190, 3, 122, 0.1); }
  .survey-add__left__icon-container.theme-dark,
  .theme-dark .survey-add__left__icon-container {
    background-color: tomato; }
  .survey-add__left__icon-container img {
    width: 30px; }

.survey-add__left__introduction__details {
  display: block;
  font-size: 14px; }
  .survey-add__left__introduction__details.theme-light,
  .theme-light .survey-add__left__introduction__details {
    color: rgba(0, 0, 0, 0.5); }
  .survey-add__left__introduction__details.theme-dark,
  .theme-dark .survey-add__left__introduction__details {
    color: yellow; }

.survey-add__left__introduction__modify {
  text-decoration: none;
  margin-left: auto; }
  .survey-add__left__introduction__modify.theme-light,
  .theme-light .survey-add__left__introduction__modify {
    color: #be037a; }
  .survey-add__left__introduction__modify.theme-dark,
  .theme-dark .survey-add__left__introduction__modify {
    color: red; }

.survey-add__left__new-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid;
  border-radius: 25px; }
  .survey-add__left__new-section.theme-light,
  .theme-light .survey-add__left__new-section {
    border-color: rgba(0, 0, 0, 0.1); }

.survey-add__left__add-section-icon {
  margin-right: 10px; }

.survey-add__left__sections-piece {
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color .5s; }
  .survey-add__left__sections-piece.theme-light,
  .theme-light .survey-add__left__sections-piece {
    background-color: rgba(190, 3, 122, 0.1); }
  .survey-add__left__sections-piece.theme-dark,
  .theme-dark .survey-add__left__sections-piece {
    background-color: tomato; }

.survey-add__left__sections-piece--active {
  background-color: rgba(190, 3, 122, 0.3) !important; }

.survey-add__left__sections-piece__ordering {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
  border: 1px solid;
  border-radius: 25px; }
  .survey-add__left__sections-piece__ordering.theme-light,
  .theme-light .survey-add__left__sections-piece__ordering {
    border-color: #be037a; }
  .survey-add__left__sections-piece__ordering.theme-dark,
  .theme-dark .survey-add__left__sections-piece__ordering {
    border-color: red; }
  .survey-add__left__sections-piece__ordering.theme-light,
  .theme-light .survey-add__left__sections-piece__ordering {
    color: #be037a; }
  .survey-add__left__sections-piece__ordering.theme-dark,
  .theme-dark .survey-add__left__sections-piece__ordering {
    color: red; }

.survey-answer__sidebar__buttons-piece__check {
  width: 20px; }

.survey-add__left__sections-piece__arrow-container {
  width: 15px;
  height: 15px;
  padding: 10px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px; }
  .survey-add__left__sections-piece__arrow-container.theme-light,
  .theme-light .survey-add__left__sections-piece__arrow-container {
    background-color: #fff; }
  .survey-add__left__sections-piece__arrow-container.theme-dark,
  .theme-dark .survey-add__left__sections-piece__arrow-container {
    background-color: #fff; }

.survey-add__left__sections-piece__arrow-down {
  transition: transform .5s;
  transform: rotate(90deg); }

.survey-add__left__sections-piece__arrow-up {
  transition: transform .5s;
  transform: rotate(-90deg); }

.survey-add__left__sections-questions {
  margin: 0 20px;
  padding: 0 10px;
  border-left: 1px solid; }
  .survey-add__left__sections-questions.theme-light,
  .theme-light .survey-add__left__sections-questions {
    border-color: rgba(0, 0, 0, 0.1); }

.survey-add__left__sections-questions-piece {
  display: flex;
  align-items: center;
  margin: 10px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color .5s; }

.survey-add__left__sections-questions-piece--active.theme-light,
.theme-light .survey-add__left__sections-questions-piece--active {
  background-color: rgba(114, 9, 183, 0.1); }

.survey-add__left__sections-questions-piece--active.theme-dark,
.theme-dark .survey-add__left__sections-questions-piece--active {
  background-color: tomato; }

.survey-add__left__sections-questions-piece__icon {
  margin-left: auto; }

.survey-add__left__new-question {
  display: flex;
  align-items: center; }

.survey-add__left__add-question-btn img {
  transition: transform .5s; }

.survey-add__left__add-question-btn--collapsed img {
  transition: transform .5s;
  transform: rotate(45deg); }

.survey-add__left__question-type {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-left: 20px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 25px; }
  .survey-add__left__question-type.theme-light,
  .theme-light .survey-add__left__question-type {
    background-color: rgba(114, 9, 183, 0.1); }
  .survey-add__left__question-type.theme-dark,
  .theme-dark .survey-add__left__question-type {
    background-color: light-green; }

@media (max-width: 1000px) {
  .survey-add--split {
    grid-template-columns: 1fr; }
  .survey-add__left__name-input {
    grid-template-columns: 1fr;
    grid-row-gap: 20px; }
  .survey-add__left__sections-piece,
  .survey-add__left__sections-questions-piece {
    font-size: 16px; }
  .survey-add__left__sections-questions {
    margin: 10px; }
  .survey-question-icon {
    margin-right: 10px !important; }
  .survey-add__left__question-type {
    font-size: 16px;
    margin-left: 10px; } }

@media (max-width: 768px) {
  .survey-add__left__sections-piece,
  .survey-add__left__sections-questions-piece {
    font-size: 14px; }
  .survey-add__left__name-input {
    margin: 20px; }
  .survey-add__left__introduction,
  .survey-add__left__introduction__modify {
    font-size: 14px; }
  .survey-add__left__introduction__details {
    font-size: 12px; }
  .survey-add__left__sections-questions {
    margin: 0; }
  .survey-add__left__question-type {
    font-size: 14px; }
  .survey-add__left__add-question-btn {
    height: 40px; } }

.results {
  height: 100%;
  box-sizing: border-box;
  padding: 30px; }
  .results__toolbar-buttons {
    display: flex; }
  .results__view-switch {
    margin: 20px 0; }
  .results__view-switch-piece {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0; }
    .results__view-switch-piece:hover {
      text-decoration: underline; }
    .results__view-switch-piece--selected.theme-light,
    .theme-light .results__view-switch-piece--selected {
      background-color: rgba(190, 3, 122, 0.1); }
    .results__view-switch-piece--selected.theme-dark,
    .theme-dark .results__view-switch-piece--selected {
      background-color: lightcoral; }

.results__header {
  font-size: 50px;
  line-height: 55px; }

.results__toolbar {
  margin: 30px 0; }

.results__toolbar__filters {
  margin-bottom: 20px;
  display: flex; }
  .results__toolbar__filters--left {
    display: flex;
    align-items: center; }
  .results__toolbar__filters--right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px; }

.results__toolbar__filters__select {
  padding: 15px 10px;
  border-radius: 20px;
  margin: 0 20px 0 0;
  font-size: 16px;
  max-width: 200px; }
  .results__toolbar__filters__select.theme-light,
  .theme-light .results__toolbar__filters__select {
    background-color: rgba(190, 3, 122, 0.1); }
  .results__toolbar__filters__select.theme-dark,
  .theme-dark .results__toolbar__filters__select {
    background-color: tomato; }
  .results__toolbar__filters__select--last {
    margin-left: 20px;
    border: 1px solid;
    background: transparent !important; }
    .results__toolbar__filters__select--last.theme-light,
    .theme-light .results__toolbar__filters__select--last {
      border-color: #be037a; }
    .results__toolbar__filters__select--last.theme-dark,
    .theme-dark .results__toolbar__filters__select--last {
      border-color: red; }

.results__toolbar__filters__btn img {
  height: 100%;
  margin: 0 10px 5px 0; }

.results__toolbar__applied-filters {
  display: flex;
  align-items: center;
  min-height: 35px; }

.results__toolbar__applied-filters-piece {
  border-radius: 25px;
  padding: 5px 10px;
  margin-right: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  max-width: 300px; }
  .results__toolbar__applied-filters-piece.theme-light,
  .theme-light .results__toolbar__applied-filters-piece {
    color: #fff; }
  .results__toolbar__applied-filters-piece.theme-dark,
  .theme-dark .results__toolbar__applied-filters-piece {
    color: yellow; }
  .results__toolbar__applied-filters-piece.theme-light,
  .theme-light .results__toolbar__applied-filters-piece {
    background-color: #be037a; }
  .results__toolbar__applied-filters-piece.theme-dark,
  .theme-dark .results__toolbar__applied-filters-piece {
    background-color: red; }

.results__toolbar__applied-filters-piece__icon {
  margin-left: 5px;
  width: 20px;
  cursor: pointer; }

.results__toolbar__view-mode-switch {
  margin-left: auto; }
  .results__toolbar__view-mode-switch img {
    cursor: pointer;
    margin-left: 20px;
    border-radius: 10px;
    padding: 2px;
    border: 1px solid; }
    .results__toolbar__view-mode-switch img.theme-light,
    .theme-light .results__toolbar__view-mode-switch img {
      border-color: rgba(0, 0, 0, 0.1); }

.results__toolbar__view-mode-switch-piece--active {
  border-color: transparent !important; }
  .results__toolbar__view-mode-switch-piece--active.theme-light,
  .theme-light .results__toolbar__view-mode-switch-piece--active {
    background-color: rgba(190, 3, 122, 0.1); }
  .results__toolbar__view-mode-switch-piece--active.theme-dark,
  .theme-dark .results__toolbar__view-mode-switch-piece--active {
    background-color: tomato; }

.results__answers {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px; }

.results__answers-section {
  display: flex;
  flex-direction: column; }

.results__answers-section-header {
  align-self: center; }

.results__answers-section-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px; }

.results__answers--empty {
  display: flex;
  align-items: center;
  justify-content: center; }

.results__answers--chart-maximized {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr; }

.results__answers__chart-slider {
  display: flex;
  align-items: center; }

.results__answers__chart-slider__switch-btn {
  border-radius: 20px;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid;
  background: transparent; }
  .results__answers__chart-slider__switch-btn.theme-light,
  .theme-light .results__answers__chart-slider__switch-btn {
    border-color: rgba(0, 0, 0, 0.1); }
  .results__answers__chart-slider__switch-btn:hover {
    border-color: transparent !important; }
    .results__answers__chart-slider__switch-btn:hover.theme-light,
    .theme-light .results__answers__chart-slider__switch-btn:hover {
      background-color: rgba(190, 3, 122, 0.1); }
    .results__answers__chart-slider__switch-btn:hover.theme-dark,
    .theme-dark .results__answers__chart-slider__switch-btn:hover {
      background-color: tomato; }
  .results__answers__chart-slider__switch-btn--previous {
    margin-right: 20px; }
  .results__answers__chart-slider__switch-btn--next {
    margin-left: 20px; }
  .results__answers__chart-slider__switch-btn--hidden {
    visibility: hidden; }

.results__answers-piece {
  flex: 1;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer; }
  .results__answers-piece__chart-container {
    display: flex;
    justify-content: center; }
  .results__answers-piece__table-container {
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .results__answers-piece__table-container table, .results__answers-piece__table-container th, .results__answers-piece__table-container tr, .results__answers-piece__table-container td {
      border-collapse: collapse;
      border: 1px solid rgba(0, 0, 0, 0.4);
      padding: 5px;
      text-align: center;
      font-size: 14px; }

@media (max-width: 1000px) {
  .results__answers {
    grid-template-columns: 1fr; } }

/* A normalized styling */
html, body, #app, .app-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-family: 'Poppins', sans-serif;
  --hydrogen-black: #262c2d;
  --hydrogen-darker: #161a1b;
  --hydrogen-brown: #997d56;
  --hydrogen-darker-brown: #6e593e;
  --hydrogen-white: #ffffff;
  --hydrogen-darker-white: #ccc; }

.app-container {
  display: flex; }

.app-container__sidebar {
  width: 120px;
  padding: 40px 30px;
  transition: width .05s;
  box-sizing: border-box;
  z-index: 500;
  box-shadow: 1px 0 0 0 rgba(50, 50, 50, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column; }

.app-container__sidebar--expanded {
  width: 300px;
  transition: width .1s; }

.app-container__main {
  flex: 1;
  overflow: auto;
  min-height: calc(100vh); }
