/* -------------------------------------------

    BASE STYLES

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

body {
  margin: 0;
  font-family: ProximaRegular, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  background-color: #f2f2f2;
  height: 100%;
  width: 100%;
}

.disable-scroll {
  overflow: hidden;
}

a {
  color: #217295;
  font: 400 14px ProximaRegular;
  text-decoration: none;
}

a:hover {
  color: #2682aa;
  text-decoration: underline;
}

button {
  display: inline-block;
  padding: 11px 24px;
  margin: 0;
  max-width: 350px;
  appearance: none;
  border: none;
  border-radius: 23px;
  font: normal 14px ProximaRegular;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
}
button:hover {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.button {
  display: inline-block;
  padding: 11px 24px;
  margin: 0;
  max-width: 350px;
  appearance: none;
  border: none;
  border-radius: 23px;
  font: normal 14px ProximaRegular;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
}
.button:hover {
  cursor: pointer;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.primary-btn {
  color: #ffffff;
  background-color: #0c8350;
  border: 1px solid #0c8350;
}
.primary-btn:focus {
  box-shadow: 0 0 0 2px rgba(15, 155, 95, 0.5);
}
.primary-btn:hover:not(:disabled), .primary-btn:active:not(:disabled) {
  background-color: #0b6d43;
  border-color: #0a633d;
}

.secondary-btn {
  color: #ffffff;
  background-color: #217295;
  border: 1px solid #217295;
}
.secondary-btn:focus {
  box-shadow: 0 0 0 2px rgba(15, 155, 95, 0.5);
}
.secondary-btn:hover:not(:disabled), .secondary-btn:active:not(:disabled) {
  background-color: #2d93be;
  border-color: #2d93be;
}

.remove-btn {
  color: #fff;
  background-color: #d11149;
  border-color: #d11149;
  float: right;
  margin-top: 22px;
}

.cancel-link {
  padding-left: 15px;
  cursor: pointer;
}

h1 {
  color: #555555;
  font-family: ProximaSemibold;
  font-weight: 500;
  font-size: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

/* -------------------------------------------

    GENERIC STYLES

-------------------------------------------- */
.container {
  padding-top: 74px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.center-window {
  width: 100%;
}

.for-desktop {
  display: none;
}

.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.form-error {
  display: none;
}

.has-error .form-error {
  display: block;
  color: #d11149;
  font: italic normal 12px ProximaRegular;
  text-align: left;
  line-height: 1.5;
}

.alert-msg {
  display: none;
  padding: 16px 16px 16px 20px;
  margin: 6px 0;
  font-size: 14px;
  color: #363636;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 6px;
}
.alert-visible .alert-msg {
  display: flex;
}
.alert-msg .bold {
  font-family: ProximaSemiBold;
}
.alert-msg.warning {
  background-color: #e1f6ff;
  border-color: #e1f6ff;
  border-left: 4px solid #217295;
}
.alert-msg.warning span {
  padding-left: 12px;
  padding-top: 2px;
}
.alert-msg.warning .fa-info-circle {
  font-size: 16px;
  color: #217295;
}
.alert-msg.success {
  background-color: #d3f7d4;
  border-color: #d3f7d4;
  border-left: 4px solid #0c8350;
}
.alert-msg.success span {
  padding-left: 12px;
  padding-top: 2px;
}
.alert-msg.success .fa-info-circle {
  font-size: 16px;
  color: #217295;
}
.alert-msg.success .fa-info-circle.success-circle {
  color: #0c8350;
}
.alert-msg.error {
  background-color: #f0dfe4;
  border-color: #f0dfe4;
  border-left: 4px solid #d11149;
}
.alert-msg.error span {
  padding-left: 12px;
  padding-top: 2px;
}
.alert-msg.error .fa-info-circle {
  font-size: 16px;
  color: #217295;
}
.alert-msg.error .fa-info-circle.error-circle {
  color: #d11149;
}

.hidden {
  display: none;
}

.innerbar-not-selected {
  background-color: none;
  color: red;
}

.circle-check {
  display: flex;
  width: unset;
  top: unset;
  position: relative;
}

.circle-check input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.circle-check .circle {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #c5c5c5;
  box-sizing: border-box;
}
.circle-check .circle.has-type-error {
  border: 1px solid #d11149;
}

.circle-check .circle:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  border-radius: 50%;
  background: #0c8350;
  transition: 0.12s transform ease-in-out;
}

.circle-check.selected .circle:before {
  transform: scale(1) translate(-50%, -50%);
}

@media (min-width: 768px) {
  .for-mobile {
    display: none;
  }
  .for-desktop {
    display: block;
  }
  .container {
    padding-top: 97px;
  }
  .container.trusted-admin-on {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .container.trusted-admin-on {
    padding-top: 110px;
  }
}
/* -------------------------------------------

    GENERIC LANGUAGE SELECTION

-------------------------------------------- */
.custom-select select {
  width: 45px;
  border: none;
  background-color: #ffffff;
  font-size: 14px;
}

/* -------------------------------------------

    GENERIC SELECT CONTAINER

-------------------------------------------- */
.select-container {
  width: 100%;
  height: 24px;
  position: relative;
}
.select-container::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  pointer-events: none;
  right: 0.4375rem;
  cursor: pointer;
}
.select-container select {
  border: 1px solid #d6d6d6;
  background: #fafafa;
  width: 100%;
  height: 100%;
  color: #333333;
  font-family: ProximaRegular;
  font-size: 12px;
  padding: 4px 8px 3px 8px;
  border-radius: 0.25rem;
  appearance: none;
  outline: none;
  cursor: pointer;
}

/* -------------------------------------------

    GENERIC INFO BAR STYLES

-------------------------------------------- */
.info-bar {
  background-color: #ebf9ff;
  border-left: 1px solid #addbe6;
  border-color: #addbe6;
  color: #217295;
  padding: 16px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.info-bar .info-bar-title {
  font-size: 16px;
  font-family: ProximaSemibold;
}
.info-bar .fa-info-circle {
  color: #217295;
  padding-right: 5px;
}
.info-bar ol li:not(:last-child) {
  padding-bottom: 14px;
}

/* -------------------------------------------

    GENERIC MODAL BOX STYLES

-------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal .modal-dialog {
  font-size: 20px;
  color: #363636;
  line-height: 1;
  background-color: #fefefe;
  margin: 10px;
  border: 1px solid #888;
  border-radius: 4px;
  border-left: 4px solid #217295;
  padding-bottom: 30px;
}
.modal .modal-dialog .modal-header {
  padding: 24px 24px 0px 64px;
  border-bottom: 1px solid transparent;
}
.modal .modal-dialog .modal-body {
  padding: 16px 40px 16px 64px;
  line-height: 1.1;
  position: relative;
}
.modal .modal-dialog .modal-body .user-confirmation {
  font-size: 16px;
}
.modal .modal-dialog .modal-body .information-text {
  font-size: 12px;
  color: #6f6f6f;
  min-height: 40px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.modal .modal-dialog .modal-body .information-text .fa-info-circle {
  margin-right: 8px;
}
.modal .modal-dialog .modal-body:before {
  color: #217295;
  position: absolute;
  top: 16px;
  left: 20px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 32px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.modal .modal-dialog .modal-body .form-added-email {
  border: none;
  font-size: 14px;
  color: #363636;
  display: block;
  max-width: 400px;
  width: 100%;
  padding: 0.4rem 0;
  line-height: 1;
  border-bottom: 1px solid #c5cfd4;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.modal .modal-dialog .modal-footer {
  padding-right: 24px;
  padding-left: 64px;
}
.modal .modal-dialog .modal-footer .save-btn {
  margin-top: 0px;
}
.modal .modal-dialog .modal-footer #close-link-trusted {
  padding-left: 0;
}
.modal.fade {
  opacity: 0;
}
.modal.pop-up-opened {
  display: block;
  opacity: 1;
}

@media (min-width: 768px) {
  .modal .modal-dialog {
    margin: 100px auto;
  }
}
/* -------------------------------------------

    HEADER

-------------------------------------------- */
.header {
  display: flex;
  height: 76px;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  right: 0;
  left: 0;
  background: #ffffff;
  border: 1px solid #c5cfd4;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.header.banner-on {
  top: 48px;
}
.header .quadrangle {
  color: white;
  height: 40px;
  width: 40px;
  background: #008d80;
  position: relative;
  border-radius: 4px;
}
.header .quadrangle .quadrangle-text {
  font-size: 22px;
  position: absolute;
  bottom: 8px;
  right: 5px;
}
.header .logo.for-desktop {
  padding: 0 20px 0 32px;
}
.header .logo.for-desktop span {
  display: block;
  height: 40px;
  width: 172px;
  background-image: url("/static/admin/assets/logo-big.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
}
.header .back-to-home {
  padding-left: 12px;
  text-decoration: none;
  flex: 1;
}
.header .back-to-home span {
  color: #363636;
  cursor: pointer;
}
.header .sign-in {
  text-decoration: none;
  padding-right: 25px;
}
.header .sign-in span {
  color: #363636;
  cursor: pointer;
}
.header .burger-menu {
  height: 70px;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  background: #ffffff;
  box-sizing: border-box;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-links > div > a {
  display: flex;
  padding: 16px;
  align-items: center;
  text-decoration: none;
  color: #000000;
}
.nav-links.right {
  padding-right: 25px;
}

/* navigation - language block */
.nav-links .nav-lang {
  position: relative;
}
.nav-links .nav-lang > a {
  padding-right: 14px;
}
.nav-links .nav-lang .caret-down {
  padding-left: 6px;
}
.nav-links .nav-lang .lang-list {
  display: none;
  position: absolute;
  left: 0;
  top: 52px;
  background: #ffffff;
  border: 1px solid #c5cfd4;
}
.nav-links .nav-lang .lang-list.opened {
  display: block;
}
.nav-links .nav-lang .lang-list li {
  padding: 19px;
  font-size: 14px;
  border-bottom: 1px solid #c5cfd4;
}
.nav-links .nav-lang .lang-list li:last-child {
  border-bottom: none;
}
.nav-links .nav-lang .lang-list li:hover {
  cursor: pointer;
  background: #efefef;
  text-decoration: none;
}
.nav-links .nav-lang .lang-list li a {
  color: #000000;
  text-decoration: none;
}

/* navigation - profile block */
.nav-links .nav-profile a span {
  margin-left: 16px;
}
.nav-links .nav-profile img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.nav-links .nav-profile a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .header {
    height: 97px;
  }
  .nav-links .nav-lang .caret-down {
    padding-bottom: 1px;
  }
  .nav-links .nav-profile a {
    padding-right: 32px;
  }
}
/* -------------------------------------------

    CONTENT (MAIN, RIGHT-SIDE)

-------------------------------------------- */
.right-side {
  padding: 0 4px;
  box-sizing: border-box;
  width: 100%;
}

.main {
  min-height: 300px;
  margin-top: 17px;
  padding: 24px 16px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #c5cfd4;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.main h1 {
  margin: 0 0 26px;
}

@media (min-width: 768px) {
  .right-side {
    width: 100%;
    padding: 0 15px;
  }
  .main {
    margin-top: 24px;
    padding: 40px;
    width: 100%;
  }
}
/* -------------------------------------------

    FORM

-------------------------------------------- */
form input[type=text],
form input[type=email],
form input[type=tel],
form select {
  width: 100%;
  padding: 41px 0 5px 0;
  position: relative;
  font: normal 14px ProximaRegular;
  color: #363636;
  border: none;
  border-bottom: 1px solid #c5cfd4;
  background: transparent;
  line-height: 1;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form select:focus {
  outline: none;
}
form input[type=text]:disabled,
form input[type=email]:disabled,
form input[type=tel]:disabled,
form select:disabled {
  cursor: not-allowed;
}
form label:not(.custom-checkbox) {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
  font-size: 14px;
  color: #6f6f6f;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 0.2s;
  transition-property: top;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
form label:not(.custom-checkbox):hover {
  cursor: default;
}
form .input-field {
  display: flex;
  width: 100%;
  position: relative;
  flex: 1;
  flex-wrap: wrap;
}
form .input-field select {
  border-radius: 0;
  background: rgba(255, 255, 255, 0) url("/static/admin/assets/caret-down.svg") no-repeat right 0 bottom 5px;
  background-size: 13px 13px;
  padding: 37.42px 0 6px 0;
}
form .input-field input:required + label::after,
form .input-field label[for=operator-field]::after,
form .input-field label[for=operator]::after,
form .input-field label[for=change-phone-number]::after {
  content: " *";
  color: #d11149;
}
form .input-field select + label {
  top: 33px;
}
form .input-field input:focus, form .input-field:focus select {
  border-color: #999999;
}
form .input-field input:disabled {
  border-bottom: 1px solid #eee;
}
form .input-field.has-error label {
  color: #d11149;
}
form .input-field.has-error select, form .input-field.has-error input {
  border-color: #d11149;
}
form input.active + label, form.active label {
  top: 19px;
  font-size: 12px;
}
form .has-error label {
  color: #d11149;
}
form .has-error input {
  border-color: #d11149;
}

::-ms-reveal {
  display: none;
}

@media (min-width: 768px) {
  form .flexible-width {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  form .flexible-width .input-field {
    width: 48%;
    flex: unset;
  }
}
/* -------------------------------------------

    TOOLTIP

-------------------------------------------- */
.paper-invoice-method .tooltip,
.row .tooltip {
  position: relative;
  float: right;
  margin: 15px 0;
  line-height: 1.1;
}
.paper-invoice-method .tooltip .pointer,
.row .tooltip .pointer {
  height: 15px;
  width: 15px;
  position: relative;
  margin: -18px auto 0 auto;
  left: 0;
  bottom: -13px;
  opacity: 0.9;
  background: #217295;
  clip-path: polygon(50% 93%, 10% 50%, 90% 50%);
}
.paper-invoice-method .tooltip .tooltip-content,
.row .tooltip .tooltip-content {
  display: none;
}
.paper-invoice-method .prefill-tooltip:hover + .tooltip-content,
.row .prefill-tooltip:hover + .tooltip-content {
  display: flex;
  padding: 5px 10px 7px 10px;
  flex-direction: column;
  position: absolute;
  bottom: 25px;
  left: 20px;
  font: normal 14px ProximaRegular;
  line-height: 1.5;
  background: #217295;
  opacity: 0.9;
  border-radius: 10px;
  color: #ffffff;
}

.row .tooltip {
  position: relative;
  display: inline-block;
  margin: 0;
}
.row .tooltip a {
  text-decoration: none;
}
.row .tooltip .fa {
  cursor: alias;
}
.row .tooltip .tooltiptext::before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  background-color: #217295;
  padding: 5px;
  top: 70px;
  left: 45%;
  z-index: 1;
}
.row .tooltip .tooltiptext-checkbox::before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  background-color: #217295;
  padding: 5px;
  top: 25px;
  left: 45%;
  z-index: 1;
}
.row .tooltip .tooltiptext-checkbox.permission::before {
  top: 40px;
}
.row .tooltip .tooltiptext-checkbox.permission.higher::before {
  top: 24px;
}
.row .tooltip .tooltiptext,
.row .tooltip .tooltiptext-checkbox {
  visibility: hidden;
  display: grid;
  text-align: start;
  width: 210px;
  bottom: 35px;
  left: 60px;
  background: #217295;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  border-radius: 4px;
  z-index: 1;
}
.row .tooltip .tooltiptext.check-all,
.row .tooltip .tooltiptext-checkbox.check-all {
  opacity: 0.9;
  font-size: 14px;
  padding: 7px;
  width: 60px;
  bottom: 25px;
  left: -28px;
}
.row .tooltip .tooltiptext.uncheck-all,
.row .tooltip .tooltiptext-checkbox.uncheck-all {
  opacity: 0.9;
  font-size: 14px;
  padding: 7px;
  width: 75px;
  bottom: 25px;
  left: -36px;
}
.row .tooltip .tooltiptext.permission,
.row .tooltip .tooltiptext-checkbox.permission {
  opacity: 0.9;
  font-size: 14px;
  padding: 7px;
  width: 360px;
  bottom: 25px;
  left: -162px;
}
.row .tooltip .tooltiptext.permission.group,
.row .tooltip .tooltiptext-checkbox.permission.group {
  width: 175px;
  left: -80px;
}
.row .tooltip .tooltiptext.permission.requests,
.row .tooltip .tooltiptext-checkbox.permission.requests {
  width: 290px;
  left: -132px;
}

@media (min-width: 768px) {
  .row .tooltip .tooltiptext,
  .row .tooltip .tooltiptext-checkbox {
    visibility: hidden;
  }
  .row .tooltip:hover .tooltiptext,
  .row .tooltip:hover .tooltiptext-checkbox {
    visibility: visible;
  }
  .tooltip .tooltiptext-checkbox {
    visibility: hidden;
  }
  .tooltip:hover .tooltiptext-checkbox {
    visibility: visible;
  }
}
/* -------------------------------------------

    TABLE

-------------------------------------------- */
.generic-table .row {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  font: normal 14px ProximaRegular, sans-serif;
  box-sizing: border-box;
  padding-bottom: 8px;
}
.generic-table .row.row-header {
  align-items: flex-start;
  border-bottom: none;
  word-wrap: break-word;
}
.generic-table .row.no-border {
  border: none;
}
.generic-table .row:not(:last-child) {
  border-bottom: 1px solid #b0bec5;
}
.generic-table .column {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  color: #363636;
}
.generic-table .bold {
  font-weight: bold;
}
.generic-table .truncated {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.generic-table .muted {
  font-size: 14px;
  color: #555555;
}
.generic-table .col-title {
  color: #6f6f6f;
  font-size: 12px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
}
.generic-table .user-status {
  color: #363636;
  font-size: 14px;
  font: normal 14px ProximaRegular;
}
.generic-table .user-name {
  color: #363636;
}

@media (min-width: 768px) {
  .generic-table .row {
    display: flex;
    flex-direction: row;
    padding-bottom: 0px;
  }
  .generic-table .row.row-body {
    border-top: 1px solid #c5cfd4;
  }
  .generic-table .column {
    padding: 8px;
  }
  .generic-table .column:first-child {
    padding-left: 0;
  }
  .generic-table .column:last-child {
    padding-right: 0;
  }
  .generic-table .column.xsmall-col {
    width: 7%;
  }
  .generic-table .column.small-col {
    width: 13%;
  }
  .generic-table .column.medium-col {
    width: 17%;
  }
  .generic-table .row:not(:last-child) {
    border-bottom: none;
  }
}
/* -------------------------------------------

    SIDEBAR

-------------------------------------------- */
/* -------------------------------------------

    SIDEBAR (MOBILE, DESKTOP)

-------------------------------------------- */
.sidebar-mobile, .sidebar-desktop {
  color: #555555;
  font-size: 14px;
}
.sidebar-mobile a, .sidebar-desktop a {
  text-decoration: none;
  color: #555555;
}
.sidebar-mobile i, .sidebar-desktop i {
  color: #555555;
}
.sidebar-mobile .back-home a, .sidebar-mobile .back-home i, .sidebar-desktop .back-home a, .sidebar-desktop .back-home i {
  color: #217295;
}
.sidebar-mobile .back-home i, .sidebar-desktop .back-home i {
  padding-right: 4px;
}
.sidebar-mobile .back-home a:hover, .sidebar-desktop .back-home a:hover {
  color: #18465e;
}
.sidebar-mobile .back-home a:hover i, .sidebar-desktop .back-home a:hover i {
  color: #18465e;
}
.sidebar-mobile .personal-settings, .sidebar-mobile .my-accounts, .sidebar-mobile .bottom, .sidebar-mobile .trusted-admin, .sidebar-desktop .personal-settings, .sidebar-desktop .my-accounts, .sidebar-desktop .bottom, .sidebar-desktop .trusted-admin {
  padding-top: 28px;
}
.sidebar-mobile .block-title, .sidebar-desktop .block-title {
  padding-bottom: 10px;
  font-size: 12px;
}
.sidebar-mobile .block-item, .sidebar-desktop .block-item {
  cursor: pointer;
  user-select: none;
  display: block;
  line-height: 21px;
}
.sidebar-mobile .block-item i, .sidebar-desktop .block-item i {
  min-width: 16px;
}
.sidebar-mobile .block-item:hover, .sidebar-desktop .block-item:hover {
  color: #333333;
  font-family: ProximaSemibold;
}
.sidebar-mobile .block-item:hover i, .sidebar-desktop .block-item:hover i {
  color: #333333;
}
.sidebar-mobile .block-item.active, .sidebar-desktop .block-item.active {
  color: black;
  font-family: ProximaSemiBold;
}
.sidebar-mobile .block-item.active i, .sidebar-desktop .block-item.active i {
  color: #0c8350;
}
.sidebar-mobile .block-item + .block-item, .sidebar-desktop .block-item + .block-item {
  margin-top: 10px;
}
.sidebar-mobile .block-list, .sidebar-desktop .block-list {
  padding-left: 0;
  user-select: none;
  cursor: pointer;
}
.sidebar-mobile .block-list i, .sidebar-desktop .block-list i {
  padding-right: 4px;
}
.sidebar-mobile .block-list .list-content, .sidebar-desktop .block-list .list-content {
  display: none;
  margin: 6px 0 0 25px;
  cursor: pointer;
}
.sidebar-mobile .block-list .list-content i, .sidebar-desktop .block-list .list-content i {
  min-width: 16px;
  padding-right: 0;
}
.sidebar-mobile .block-list .block-list-title .fa-angle-down, .sidebar-mobile .block-list .block-list-title .fa-angle-up, .sidebar-desktop .block-list .block-list-title .fa-angle-down, .sidebar-desktop .block-list .block-list-title .fa-angle-up {
  padding: 2px 5px;
}
.sidebar-mobile .block-list .block-list-title .fa-id-card, .sidebar-desktop .block-list .block-list-title .fa-id-card {
  padding: 0 5px 0 0;
}
.sidebar-mobile .block-list .block-list-title:hover, .sidebar-desktop .block-list .block-list-title:hover {
  color: #333333;
  font-family: ProximaSemibold;
}
.sidebar-mobile .block-list .block-list-title:hover i, .sidebar-desktop .block-list .block-list-title:hover i {
  color: #333333;
}
.sidebar-mobile .block-list .list-content:hover a, .sidebar-desktop .block-list .list-content:hover a {
  color: #333333;
  font-family: ProximaSemibold;
}
.sidebar-mobile .block-list .list-content:hover a i, .sidebar-desktop .block-list .list-content:hover a i {
  color: #333333;
}
.sidebar-mobile .block-list .list-content a.active, .sidebar-desktop .block-list .list-content a.active {
  color: black;
  font-family: ProximaSemiBold;
}
.sidebar-mobile .block-list .list-content a.active i, .sidebar-desktop .block-list .list-content a.active i {
  color: #0c8350;
}
.sidebar-mobile .block-list.active, .sidebar-desktop .block-list.active {
  color: black;
  font-family: ProximaSemiBold;
}
.sidebar-mobile .block-list.active i, .sidebar-desktop .block-list.active i {
  color: #0c8350;
}
.sidebar-mobile .block-list + .block-list, .sidebar-desktop .block-list + .block-list {
  margin-top: 10px;
}
.sidebar-mobile .block-list.opened .list-content, .sidebar-desktop .block-list.opened .list-content {
  display: block;
}
.sidebar-mobile .fa-search, .sidebar-desktop .fa-search {
  padding-left: 8px;
}
.sidebar-mobile .bottom, .sidebar-desktop .bottom {
  padding-bottom: 35px;
}

.sidebar-mobile {
  display: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  padding-bottom: 25px;
  font-size: 16px;
}
.sidebar-mobile .back-home {
  padding-top: 24px;
}
.sidebar-mobile .back-home a {
  font-size: 16px;
  padding: 6px 6px 6px 0;
}
.sidebar-mobile .sidebar-content {
  height: 100%;
  line-height: 1;
  background-color: #f2f2f2;
  padding: 0 16px;
  overflow: auto;
}
.sidebar-mobile .personal-settings, .sidebar-mobile .my-accounts, .sidebar-mobile .bottom, .sidebar-mobile .trusted-admin {
  padding-top: 40px;
}
.sidebar-mobile .block-title {
  font-size: 14px;
}
.sidebar-mobile .block-list, .sidebar-mobile .block-item i {
  min-width: 18px;
  padding-right: 2px;
}
.sidebar-mobile .block-list .list-content i {
  min-width: 18px;
  padding-right: 2px;
}
.sidebar-mobile .block-list, .sidebar-mobile .block-item {
  margin: 0;
  padding: 6px 0;
  font-size: 16px;
}
.sidebar-mobile .block-item {
  line-height: 21px;
}
.sidebar-mobile .block-list {
  line-height: 19px;
}
.sidebar-mobile .block-list .list-content {
  margin: 6px 0 0 30px;
  padding: 6px 0;
}
.sidebar-mobile .block-list .list-content a {
  font-size: 16px;
}
.sidebar-mobile.opened {
  display: block;
}
.sidebar-mobile.opened {
  display: block;
}
.sidebar-mobile.opened ~ .right-side {
  display: none;
}

@media (min-width: 768px) {
  .sidebar-desktop {
    min-width: 280px;
  }
  .sidebar-desktop .sidebar {
    display: block;
    padding: 10px 10px 10px 32px;
    margin: 14px 0;
    background: none;
    overflow: scroll;
    width: 100%;
    box-sizing: border-box;
    list-style-type: none;
  }
  .sidebar-mobile, .sidebar-mobile.opened {
    display: none;
  }
}
/* -------------------------------------------

    FOOTER / FOOTER FOR REGISTRATION PAGE

-------------------------------------------- */
footer {
  display: flex;
  padding: 16px 0 10px 0;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
footer ul li {
  padding: 2px 0;
}
footer > div {
  margin-bottom: 20px;
  line-height: 20px;
}
footer > div a {
  font-family: ProximaSemiBold;
  font-size: 14px;
  color: #555555;
  padding: 4px 0;
}
footer > div a i {
  font-size: 16px;
}
footer > div .title, footer > div .social-links {
  padding: 2px 0;
}
footer > div a:hover {
  color: black;
  text-decoration: none;
}
footer .title,
footer ul {
  font-family: ProximaSemiBold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
footer .social-links {
  display: flex;
  justify-content: center;
}
footer .social-links a {
  padding: 1px 0 0 6px;
}
footer .social-links a:first-child {
  padding-left: 0;
}
footer .social-links a:last-child {
  padding-right: 0;
  margin-right: 0;
}
footer .contact-col li {
  white-space: nowrap;
}
footer .contact-col li:first-child:before, footer .contact-col li:nth-child(2):before {
  content: "\f0e0";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  vertical-align: initial;
}
footer .contact-col li:nth-child(2):before {
  content: "\f095";
}

@media (min-width: 575px) {
  footer {
    padding: 22px 40px 10px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  footer {
    padding: 22px 0 10px 0;
    justify-content: flex-start;
  }
  footer .title,
  footer ul {
    text-align: left;
  }
  footer > div {
    padding: 0 15px;
    margin: 10px 0;
    max-width: 25%;
    flex: 0 0 25%;
    word-break: break-word;
    box-sizing: border-box;
  }
  footer > div.more-info-col {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  footer > div.address-col {
    margin-left: 16.6666666667%;
  }
  footer .social-links {
    justify-content: flex-start;
  }
  footer.registration-page-footer {
    justify-content: center;
  }
  footer.registration-page-footer > div {
    padding: 0;
    max-width: 250px;
  }
  footer.registration-page-footer > div.address-col {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  footer {
    justify-content: flex-start;
  }
  footer.registration-page-footer {
    justify-content: flex-start;
  }
  footer.registration-page-footer > div {
    padding: 0;
  }
  footer.registration-page-footer > div.address-col {
    margin-left: 18%;
  }
}
@media (min-width: 1200px) {
  footer > div {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  footer > div.address-col {
    margin-left: 25%;
  }
  footer.registration-page-footer {
    justify-content: flex-start;
  }
  footer.registration-page-footer > div {
    padding: 0;
  }
  footer.registration-page-footer > div.address-col {
    margin-left: 28%;
  }
}
@media (min-width: 2560px) {
  footer.registration-page-footer {
    justify-content: flex-start;
    display: flex;
    width: 60%;
  }
}

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