body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

.mainWrapper {
  font-size: 1rem;
  overflow: hidden;
}

html, body {
  font-size: 16px;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

.loginSection {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.loginSection .loginSection__formBox {
  width: 500px;
  box-sizing: border-box;
  padding-left: 3rem;
  padding-right: 3rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
@media (max-width: 1200px) {
  .loginSection .loginSection__formBox {
    max-width: 90%;
    padding: 2rem;
    border-radius: 12px;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    box-shadow: 8px 8px 24px 0px rgba(84, 84, 84, 0.4705882353);
  }
}
.loginSection .loginSection__formBox .loginSection__loginHeader {
  color: #11284b;
  border-bottom: 1px solid #1c375f;
  padding-bottom: 4px;
  margin: 0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .loginSection .loginSection__formBox .loginSection__loginHeader {
    text-align: center;
    border-bottom: none;
    margin-bottom: 1.5rem;
  }
}
.loginSection .loginSection__formBox .loginSection__forgotPassword {
  font-size: 0.8rem;
  text-align: right;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .loginSection .loginSection__formBox .loginSection__forgotPassword {
    text-align: center;
  }
}
.loginSection .loginSection__formBox .loginSection__forgotPassword a {
  color: rgb(110, 110, 110);
  text-decoration: none;
  font-weight: bold;
}
.loginSection .loginSection__formBox .loginSection__submitBtn {
  text-align: right;
}
@media (max-width: 1200px) {
  .loginSection .loginSection__formBox .loginSection__submitBtn {
    text-align: center;
    margin-top: 2rem;
  }
}
.loginSection .loginSection__formBox .loginSection__submitBtn input {
  background-color: #254370;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  color: white;
  font-weight: 700;
}
.loginSection .loginSection__formBox .loginSection__submitBtn input:hover {
  cursor: pointer;
  background-color: #103366;
}
.loginSection .loginSection_imageBox {
  position: absolute;
  top: 0;
  left: 500px;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #ddd;
}
@media (max-width: 1200px) {
  .loginSection .loginSection_imageBox {
    left: 0;
    border-left: none;
  }
}

.form__group {
  position: relative;
  padding: 15px 0 0;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9b9b9b;
  outline: 0;
  font-size: 0.8rem;
  color: #000;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .form__field {
    margin-bottom: 0;
  }
}
.form__field::-moz-placeholder {
  color: transparent;
}
.form__field::placeholder {
  color: transparent;
}
.form__field:-moz-placeholder ~ .form__label {
  font-size: 1rem;
  cursor: text;
  top: 20px;
}
.form__field:placeholder-shown ~ .form__label {
  font-size: 1rem;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 0.9rem;
  color: #9b9b9b;
}

.form__field:focus {
  font-weight: 700;
  border-width: 1px;
  -o-border-image: linear-gradient(to right, #1c375f, #1a77a1);
     border-image: linear-gradient(to right, #1c375f, #1a77a1);
  border-image-slice: 1;
}
.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: #1c375f;
  font-weight: 700;
}
@media (max-width: 600px) {
  .form__field:focus ~ .form__label {
    font-size: 0.9rem;
  }
}

.dashboardSection {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-height: 100vh;
  width: 100vw;
}
.dashboardSection .dashboardSection__menu {
  width: 300px;
  max-width: 100%;
  background-color: #1c375f;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(calc(-100% + 50px));
    transition: transform 0.25s ease-in-out;
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100vh;
    height: 100vw;
  }
}
.dashboardSection .dashboardSection__menu .dashboardSection__icon {
  position: absolute;
  bottom: -100px;
  right: -70px;
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__menu .dashboardSection__icon {
    display: none;
  }
}
.dashboardSection .dashboardSection__menu .dashboardSection__header {
  padding: 1.25rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}
.dashboardSection .dashboardSection__menu .dashboardSection__header a {
  color: #fff;
}
.dashboardSection .dashboardSection__menu .dashboardSection__header i {
  position: absolute;
  top: 1.25rem;
  right: 15px;
  font-size: 24px;
  display: none;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__menu .dashboardSection__header i {
    display: block;
  }
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__menu .dashboardSection__menuList {
    min-height: 80%;
  }
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .dashboardSection__menuElement a {
  padding: 1rem 2rem;
  display: block;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .dashboardSection__menuElement a:hover {
  background-color: #2f4e7c;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .dashboardSection__menuElement a i {
  margin-right: 8px;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags {
  padding: 0.5rem 2rem;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags a {
  padding: 0;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags a img {
  border: 1px solid rgb(59, 59, 59);
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags a:hover {
  background-color: transparent;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags a:hover img {
  border-color: #fff;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .menuElement__flags a .active {
  border-color: #fff;
}
.dashboardSection .dashboardSection__menu .dashboardSection__menuList .dashboardSection__menuElement--active {
  background-color: #2f4e7c;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__menu--active {
    transform: translateX(0);
  }
}
.dashboardSection .dashboardSection__panel {
  width: calc(100% - 300px);
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2rem;
}
@media (max-width: 1200px) {
  .dashboardSection .dashboardSection__panel {
    display: block;
    width: calc(100% - 50px);
    margin-left: 50px;
  }
}
@media (max-width: 600px) {
  .dashboardSection .dashboardSection__panel {
    padding: 1rem;
  }
}
.dashboardSection .dashboardSection__panel .dashboardSection_header {
  margin: 0;
  padding-bottom: 6px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #1c375f;
  border-bottom: 2px solid #1c375f;
  font-weight: normal;
}
@media (max-width: 600px) {
  .dashboardSection .dashboardSection__panel .dashboardSection_header {
    text-align: center;
    border-bottom: none;
    width: 100%;
    font-weight: bold;
  }
}
.dashboardSection .dashboardSection__panel .dashboardSection__addBtn {
  float: right;
  color: #fff;
  background-color: #1c375f;
  border-radius: 6px;
  font-size: 12px;
  padding: 7px 24px;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 600px) {
  .dashboardSection .dashboardSection__panel .dashboardSection__addBtn {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    width: 150px;
    margin-top: 1rem;
  }
}
.dashboardSection .dashboardSection__panel .dashboardSection__addBtn:hover {
  background-color: #2f4e7c;
}
.dashboardSection .dashboardSection__panel .dashboardSection__addBtn::after {
  content: "";
  display: table;
  clear: both;
}

.card {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .card {
    padding: 1rem;
  }
}
.card .card__header {
  font-size: 1.1rem;
  margin: 0;
  font-weight: normal;
  padding-bottom: 6px;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgb(235, 235, 235);
}
.card .card__noResult {
  padding: 2rem;
  text-align: center;
}
.card .card__noResult i {
  display: block;
  margin-bottom: 1rem;
  font-size: 4rem;
  color: #1c375f;
}
@media (max-width: 1200px) {
  .card .card__listBox {
    overflow-x: auto;
    touch-action: auto;
  }
}
.card .card__list {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
  border: 1px solid #1c375f;
}
@media (max-width: 1200px) {
  .card .card__list {
    display: table;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }
}
.card .card__list i {
  opacity: 1;
}
.card .card__list i:hover {
  opacity: 0.8;
  cursor: pointer;
}
.card .card__list thead {
  background: #1c375f !important;
  color: #fff;
}
.card .card__list thead:hover tr {
  background: #1c375f !important;
}
.card .card__list tr p {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-weight: normal !important;
}
.card .card__list tr:hover {
  background: #dfe7f3 !important;
}
.card .card__list td, .card .card__list th {
  text-align: left;
  padding: 12px;
}
.card .card__list tr:nth-child(even) {
  background-color: #fbfbfb;
}
.card .card__list .list__actions {
  text-align: right;
}
.card .card__list .list__actions a {
  margin-left: 6px;
}
.card .field {
  margin-bottom: 1.5rem;
}

.col--half {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 49%;
  margin-right: 1.6%;
  margin-bottom: 1rem;
}
.col--half:nth-of-type(2n) {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .col--half {
    width: 100%;
    margin-right: 0;
  }
}

.col--third {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 30%;
  margin-right: 2%;
  margin-bottom: 1rem;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
}

.standard__label {
  font-size: 15px;
  display: block;
  margin-bottom: 1rem;
  color: #9b9b9b;
}
@media (max-width: 1200px) {
  .standard__label {
    margin-bottom: 0;
  }
}

.submitBtn {
  text-align: right;
  margin-top: 1rem;
}
.submitBtn input {
  color: #fff;
  background-color: #1c375f;
  border: 1px solid #1c375f;
  box-shadow: none;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 32px;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 600px) {
  .submitBtn input {
    box-sizing: border-box;
    font-size: 0.9rem;
  }
}
.submitBtn input:hover {
  background-color: #2f4e7c;
  cursor: pointer;
}

.alert {
  padding: 20px;
  color: white;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.alert--error {
  background-color: #f44336;
}

.alert--success {
  background-color: #04AA6D;
}

.alert--warning {
  background-color: #ff9800;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn::after {
  content: "";
  display: table;
  clear: both;
}

.closebtn:hover {
  color: black;
}

.configCalendar .configCalendar__card {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 330px;
  margin-right: 2rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  border: 1px solid #dadada;
  padding: 1rem;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 1200px) {
  .configCalendar .configCalendar__card {
    width: 250px;
    max-width: 100%;
    margin-right: 1rem;
  }
}
@media (max-width: 800px) {
  .configCalendar .configCalendar__card {
    width: 100%;
    margin-right: 0;
    padding: 0.75rem;
  }
}
.configCalendar .configCalendar__card .configCalendar__card__header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .configCalendar .configCalendar__card .configCalendar__card__header {
    font-size: 0.8rem;
  }
}
.configCalendar .configCalendar__card .input-row {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.input-row {
  /* -- DISABLED -- */
  /* -- FOCUS -- */
}
.input-row .toggle {
  position: relative;
  width: 60px;
  height: 24px;
  display: inline-block;
}
.input-row .toggle .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border-radius: 24px;
}
.input-row .toggle .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}
.input-row .toggle .slider {
  background-color: #e3eefa;
}
.input-row .toggle.on .slider {
  background-color: #4287f5;
}
.input-row .toggle.on .slider:before {
  transform: translateX(36px);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}
.input-row .toggle .label {
  position: absolute;
  left: 70px;
  top: 4px;
  vertical-align: middle;
}
.input-row .checkbox .label, .input-row .radio .label {
  position: absolute;
  left: 50px;
  top: 4px;
  vertical-align: middle;
}
.input-row input {
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  z-index: 100;
  cursor: pointer;
  vertical-align: middle;
}
.input-row .toggle.disabled .slider {
  background-color: #ededed;
}
.input-row .toggle.disabled .slider::before {
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}
.input-row .checkbox.disabled .check, .input-row .radio.disabled .rad {
  background-color: #ededed;
}
.input-row .toggle.focus .slider, .input-row .checkbox.focus .check, .input-row .radio.focus .rad {
  box-shadow: 0px 0px 0px 2px #bababa;
  transition: all 0.4s;
}
.input-row .focus .label {
  text-shadow: 0px 0px 3px #bababa;
  transition: all 0.4s;
}

@media (max-width: 1200px) {
  .radioGroup {
    margin-top: 1rem;
  }
}
.radioGroup .option {
  background: #fff;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 12px;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid #dadada;
  align-items: center;
  transition: all 0.3s ease;
}
.radioGroup .option .dot {
  height: 18px;
  width: 18px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
  margin-right: 1rem;
}
.radioGroup .option .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #4287f5;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.radioGroup input[type=radio] {
  display: none;
}
.radioGroup .activeOptionBox .option {
  border-color: #4287f5;
  background: #4287f5;
}
.radioGroup .activeOptionBox .option .dot {
  background: #fff;
}
.radioGroup .activeOptionBox .option .dot::before {
  opacity: 1;
  transform: scale(1);
}
.radioGroup .option span {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  .radioGroup .option span {
    font-size: 13px;
  }
}
.radioGroup .activeOptionBox .option span {
  color: #fff;
}

.paginationLinks {
  margin-top: 2rem;
}
.paginationLinks nav {
  float: right;
}
.paginationLinks nav::after {
  content: "";
  display: table;
  clear: both;
}
.paginationLinks nav .page-item.active .page-link {
  background-color: #1c375f;
  border-color: #1c375f;
}
.paginationLinks nav .page-link, .paginationLinks nav .page-link:hover {
  color: #1c375f;
}

.customToggle {
  margin-top: 1rem;
}

.imageBox {
  width: 200px;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #dadada;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .imageBox {
    width: 150px;
    height: 150px;
  }
}
.imageBox .imageBoxDeleteOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(105, 105, 105);
  background-color: rgba(105, 105, 105, 0.459);
  color: #fff;
  font-size: 3rem;
  opacity: 0;
}
.imageBox .imageBoxDeleteOverlay:hover {
  opacity: 1;
  cursor: pointer;
}
.imageBox .imageBoxDeleteOverlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

small {
  font-size: 12px;
}

.card__photos ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.card__photos ul li {
  width: 200px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  text-align: center;
  margin-right: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .card__photos ul li {
    margin-right: 1rem;
    margin-bottom: 1rem;
    width: 150px;
  }
}
.card__photos ul li h3 {
  font-size: 14px;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-top: 6px;
}
.card__photos ul li label .card__photo {
  width: 200px;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  border: 1px solid #dadada;
}
@media (max-width: 1200px) {
  .card__photos ul li label .card__photo {
    width: 150px;
    height: 150px;
  }
}
.card__photos input[type=radio]:checked ~ .card__photo, .card__photos input[type=checkbox]:checked ~ .card__photo {
  border: 4px solid #1c375f;
}

.clients-buttons {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow-x: auto;
}
.clients-buttons a {
  background-color: #254370;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
  border-radius: 8px;
  display: inline-block;
}
.clients-buttons a:last-of-type {
  margin-right: 0;
}
.clients-buttons a:hover {
  cursor: pointer;
  background-color: #103366;
}

.messages-section {
  max-height: 1800px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 997px) {
  .messages-section {
    max-height: none;
  }
}
.messages-section p {
  margin: 0;
  padding: 0;
}
.messages-section .message {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: end;
  margin-bottom: 36px;
}
@media (max-width: 997px) {
  .messages-section .message {
    display: block;
  }
}
.messages-section .message .message-title {
  font-weight: 500;
  color: #3767cd;
  margin-top: 12px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 997px) {
  .messages-section .message .message-title {
    margin: 0;
    font-weight: normal;
    margin-bottom: 12px;
  }
}
.messages-section .message .message-content {
  margin-left: 24px;
  margin-right: 24px;
  padding: 24px;
  background-color: #efeeee;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 997px) {
  .messages-section .message .message-content {
    width: 100%;
    margin: 0;
    font-size: 14px;
  }
}
.messages-section .message .message-content::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 15px;
  left: -8px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #efeeee;
}
@media (max-width: 997px) {
  .messages-section .message .message-content::before {
    display: none;
  }
}
.messages-section .message .message-content .message-date {
  text-align: right;
  font-size: 12px;
  margin-top: 12px;
}
.messages-section .message-attachments-box .message-attachments-title {
  margin-top: 24px;
  font-weight: bold;
}
@media (max-width: 997px) {
  .messages-section .message-attachments-box .message-attachments-title {
    font-size: 14px;
  }
}
.messages-section .message-attachments-box .message-attachements .message-attachement a {
  margin-top: 16px;
  display: block;
  text-decoration: underline;
  color: #000000;
  font-size: 14px;
}
@media (max-width: 997px) {
  .messages-section .message-attachments-box .message-attachements .message-attachement a {
    font-size: 12px;
  }
}
.messages-section .message-attachments-box .message-attachements .message-attachement a img {
  height: 24px;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
@media (max-width: 997px) {
  .messages-section .message-attachments-box .message-attachements .message-attachement a img {
    display: none;
  }
}
.messages-section .admin-message .message-content {
  background-color: #3767cd;
  color: #fff;
}
.messages-section .admin-message .message-content::before {
  border-right-color: #3767cd;
}
.messages-section .admin-message .message-attachments-box .message-attachements .message-attachement a {
  color: #ffffff;
}

.normal-textarea {
  margin-top: 1rem;
}

.attachements-list {
  margin-top: 2rem;
}
.attachements-list .attachement {
  padding: 12px 1rem;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #e3eefa;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.attachements-list .attachement:last-of-type {
  margin-bottom: 0;
}
.attachements-list .attachement .attachement-title {
  max-width: 70%;
}
@media (max-width: 800px) {
  .attachements-list .attachement .attachement-title {
    font-size: 0.9rem;
  }
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
@media (max-width: 600px) {
  .link-cards {
    display: block;
  }
}
.link-cards .link-card {
  text-align: center;
  padding: 32px;
  background-color: #fff;
  color: #252525;
  border-radius: 24px;
  transform: scale(1);
  transition: transform 0.15s ease-in-out;
  max-width: 100%;
}
@media (max-width: 600px) {
  .link-cards .link-card {
    width: 100%;
    margin-bottom: 1rem;
    display: block;
  }
}
.link-cards .link-card:hover {
  transform: scale(0.9);
}
.link-cards .link-card i {
  font-size: 84px;
}
@media (max-width: 600px) {
  .link-cards .link-card i {
    font-size: 64px;
  }
}
.link-cards .link-card .link-card-title {
  margin: 0;
  font-size: 1.5rem;
  margin-top: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 600px) {
  .link-cards .link-card .link-card-title {
    font-size: 1.25rem;
  }
}

.fixed-bottom-bar {
  position: fixed;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 1rem;
  text-align: right;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #ffffff;
}
.fixed-bottom-bar .submitBtn {
  margin: 0;
}
.fixed-bottom-bar .submitBtn input {
  padding: 6px 24px;
}

@media (max-width: 1200px) {
  .dashboardSection__menu .dashboardSection__menuElement {
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
  }
  .dashboardSection__menu--active .dashboardSection__menuElement {
    opacity: 1;
  }
}
.checkbox-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 1200px) {
  .checkbox-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 997px) {
  .checkbox-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .checkbox-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .checkbox-list {
    grid-template-columns: 1fr;
  }
}

.search-section {
  text-align: right;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .search-section {
    margin-bottom: 1rem;
  }
}
.search-section select {
  width: auto;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 11px 24px;
  padding-right: 64px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 8px 8px 13px -4px rgba(228, 228, 228, 0.84);
  max-width: 100%;
}
@media (max-width: 1200px) {
  .search-section select {
    padding: 8px 16px;
  }
}
@media (max-width: 800px) {
  .search-section select {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.search-section .searchInputBox {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
  margin-left: 1rem;
}
@media (max-width: 800px) {
  .search-section .searchInputBox {
    width: 100%;
    margin: 0;
  }
}
.search-section .searchInputBox .searchInput {
  width: 384px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 11px 24px;
  padding-right: 64px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 8px 8px 13px -4px rgba(228, 228, 228, 0.84);
  max-width: 100%;
}
@media (max-width: 1200px) {
  .search-section .searchInputBox .searchInput {
    padding: 8px 16px;
    padding-right: 46px;
  }
}
@media (max-width: 800px) {
  .search-section .searchInputBox .searchInput {
    width: 100%;
  }
}
.search-section .searchInputBox input {
  padding-right: 46px;
  margin-bottom: 0;
}
.search-section .searchInputBox .searchIcon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.search-section .searchInputBox .searchIcon:hover {
  cursor: pointer;
}
.search-section .searchInputBox .searchIcon i {
  max-width: 100%;
  color: #000000;
}
.search-section .searchInputBox .searchIcon i:hover {
  opacity: 0.9;
  cursor: pointer;
}/*# sourceMappingURL=admin.css.map */