  @import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

  body {
      font-family: 'Almarai', sans-serif;
  }
  .min-container {
    min-height: 751px;
}

  .login-page {
      position: relative;
  }

  .login-page::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: auto;
      display: block;
      width: 100vw;
      height: 100vh;
      background-image: url('../img/login-bg.png');
      background-repeat: no-repeat;
      background-position: center;
      z-index: -1;
  }

  .login-form {
      position: absolute;
      top: 50vh;
      left: 0;
      right: 0;
      bottom: auto;
      margin: 0 auto;
      width: 480px;
      height: 530px;
      transform: translateY(-50%);
      background-color: #ffffffcc;
      border: 2px solid #FFFFFF;
      border-radius: 8px;
      padding: 30px 60px;
  }

  .login-form img {
      display: block;
      margin: 0 auto;
  }

  .login-form button.btn.btn-primary {
      width: 100%;
      color: #E1D198;
      background-color: #156B68;
      border-color: #156B68;
      transition: 600ms;
  }

  .btn-primary,
  .btn-check:focus+.btn-primary,
  .btn-primary:focus {
      background-color: #156B68;
      border-color: #156B68;
      box-shadow: none;
  }

  .btn-primary:hover,
  .login-form button.btn.btn-primary:hover {
      background-color: #156B68;
      opacity: 0.85;
  }

  .login-form .form-control {
      color: #4A4A4A;
      border-color: #D6D6D6;
  }

  a.link {
      color: #2B78A4;
      transition: 600ms;
  }

  a.link:hover {
      color: #E1D198;
  }

  header {
      padding: 15px 0;
      border-bottom: 2px solid #AB8E48;
      box-shadow: 2px 2px 10px #00000029;
      margin-bottom: 35px;
      position: relative;
  }

  header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: auto;
      display: block;
      width: 100%;
      height: 100%;
      background-image: url('../img/Header-BG.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      z-index: -1;
  }

  header ul {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  header ul li {
      margin-left: 15px;
  }

  header ul li:last-child {
      margin-left: 0;
  }

  header ul li a {
      font-size: 0;
      display: block;
      position: relative;
      width: 30px;
      height: 30px;
  }

  header ul li a::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 100%;
      height: 100%;
      background-image: url('../img/logout.svg');
      background-repeat: no-repeat;
      background-position: center;
  }

  header ul li:last-child a::before {
      background-image: url('../img/home.svg');
  }

  .sessions-page .nav-tabs {
      border-bottom: 0;
      padding: 0;
      margin: 0;
  }


  .sessions-page .nav-tabs li {
      flex: 0 0 auto;
      width: 31%;
      display: flex;
      padding: 24px 53px;
      box-shadow: 2px 2px 10px #156B681A;
      border: 1px solid #156B68;
      border-radius: 5px;
      margin: 0 15px
  }

  .sessions-page .nav-tabs li:hover,
  .sessions-page .nav-tabs li:has(.active) {
      background-color: #156B68;
  }

  .sessions-page .nav-tabs li:hover .nav-link,
  .sessions-page .nav-tabs li:has(.active) .nav-link.active {
      color: #FCF8EC;
  }

  .sessions-page .nav-tabs li:hover img,
  .sessions-page .nav-tabs li:has(.active) img {
      -webkit-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1);
  }

  .sessions-page .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
      color: #FCF8EC;
      background-color: transparent;
      border: none;
  }

  .sessions-page .nav-tabs li img {
      flex: auto;
      width: 50px;
      height: auto;
  }

  .sessions-page .nav-tabs li button {
      width: 90%;
      text-align: center;
      flex: 0 0 auto;
      font-weight: bold;
      font-size: 20px;
      color: #156B68;
      position: relative;
  }

  .sessions-page .nav-tabs li button:before {
      content: "";
      width: 1px;
      height: 100%;
      background-color: #CECECE;
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
  }

  .nav-tabs .nav-link:focus,
  .nav-tabs .nav-link:hover {
      border-color: transparent;
      isolation: isolate;
  }

  .box-white {
      background: #FFFFFF;
      box-shadow: 2px 2px 10px #00000029;
      border-radius: 25px;
      padding: 35px 30px;
  }

  .box-white h3 {
      font-size: 20px;
      font-weight: bold;
      color: #156B68;

  }

  .box-white hr {
      color: #AB8E48;
      opacity: 1;
      margin: 1rem 0;
  }

  .table.custom {
      color: #454546;
      font-size: 16px;
  }

  .table-striped>tbody>tr:nth-of-type(odd) {
      --bs-table-accent-bg: #ffffff;
      color: #454546;
      background-color: #FFFFFF;
  }

  .table-striped>tbody>tr:nth-of-type(even) {
      background-color: #FFFCF3;
      color: #454546;
  }

  .table.custom thead {
      background-color: #156B68;
      color: #FFFFFF;
  }

  .table.custom tr th:first-child,
  .table.custom tr td:first-child {
      text-align: center;
  }

  .table.custom tr th,
  .table.custom tr td {
      padding: 12px 15px;
  }

  .table.custom a {
      font-weight: bold;
      color: #156B68;
  }

  ul.operations-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
  }

  ul.operations-list li {
      flex: 0 0 auto;
      width: 22%;
  }

  ul.operations-list li a.icon-message,
  ul.operations-list li a.icon-delete,
  ul.operations-list li a.icon-edit {
      position: relative;
      font-size: 0;
      display: block;
  }

  ul.operations-list li a.icon-message:before,
  ul.operations-list li a.icon-delete:before,
  ul.operations-list li a.icon-edit::before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      background-image: url("../img/edit.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
  }

  ul.operations-list li a.icon-delete::before {
      background-image: url("../img/delete.svg");
  }

  ul.operations-list li a.icon-message::before {
      background-image: url("../img/message.svg");
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
      color: transparent;
      background-image: url("../img/icon-date.svg");
      z-index: 1;
  }

  .form-select {
      background-image: url(../img/select.svg);
      background-position: left .75rem center;
      padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  }

  select,
  input[type="date"].form-control {
      color: #212529;
      border-color: #D6D6D6;
  }

  .form-control::placeholder {
      color: #212529;
      opacity: 1;
      /* Firefox */
  }

  .form-control:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #212529;
  }

  .form-control::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #212529;
  }

  .box-white button.search-btn {
      background-color: #FCF1D0;
      color: #156B68;
      font-size: 16px;
      font-weight: bold;
      border: none;
      padding: 7px 40px;
  }

  .back_to_list,
  .send_message,
  .add_new_session {
      display: flex;
      align-items: center;
      background-color: transparent;
      border-color: #156B68;
      color: #156B68;
      position: relative;
      padding-right: 60px;
      margin-left: 15px;
  }

  .back_to_list:hover,
  .send_message:hover,
  .add_new_session:hover {
      background-color: #156B68;
  }

  .back_to_list:before,
  .send_message::before,
  .add_new_session::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 15px;
      left: auto;
      bottom: auto;
      transform: translateY(-50%);
      width: 35px;
      height: 25px;
      display: inline-block;
      font-weight: bold;
      padding-left: 15px;
      border-left: 1px solid #156B68;
      background-image: url(../img/plus.svg);
      background-repeat: no-repeat;
      background-position: center right;
  }

  .send_message::before {
      background-image: url(../img/message.svg);
  }

  .back_to_list:before {
      background-image: url(../img/back-icon.svg);
      background-size: contain;
  }

  .back_to_list:hover:before {
      -webkit-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1);
  }

  .modal-content {
      padding: 0 15px;
  }

  .modal-header .modal-title {
      color: #156B68;
      font-size: 18px;
      font-weight: bold;
  }

  .modal-header {
      border-bottom: 1px solid #AB8E48;
      padding: 20px 0;
  }

  .modal-dialog {
      max-width: 600px;
  }

  .modal-body {
      padding: 2.5rem 0;
  }

  .modal-body h5 {
      font-size: 16px;
      color: #000000;
      margin-bottom: 1rem;
  }

  .modal-header .btn-close {
      margin: 0;
      background-size: 50%;
      padding: 3px;
      border: 1px solid #000000;
  }

  .modal-header img {
      width: 40px;
      height: auto;
  }

  .modal-footer {
      justify-content: unset;
      border-top: none;
      padding: 0.75rem 0;
  }

  .result-box h5 {
      color: #156B68;
      font-size: 18px;
      font-weight: bold;
      display: flex;
      align-items: center;
  }

  .result-box h5::before {
      content: "";
      width: 35px;
      height: 35px;
      background-image: url(../img/logo.svg);
      background-size: contain;
      background-repeat: no-repeat;
      margin-left: 15px;
  }
  .votes-number {
    position: relative;
  }
  .votes-number p {
    background-color: #FCF1D0;
    padding: 12px 10px;
    color: #156B68;
    font-size: 16px;
    font-weight: bold;
  }

  .votes-number span {
    background-color: #156B68;
    padding: 18px;
    color: #FCF1D0;
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    top: -12px;
    left: 0;
  }
  .result-box a.btn-link {
    background-color: transparent;
    color: #156B68;
    display: block;
    text-align: center;
    padding: 8px 0;
    box-shadow: 2px 2px 10px #156b681a;
    border: 1px solid #156B68;
    border-radius: 5px;
    text-decoration: none;
    transition: 600ms;
  }
  .result-box a.btn-link:hover {
    background-color: #156B68;
    color: #ffffff;
  }
  .vote-form img {
      width: 100%;
      height: auto;
  }

  .vote-form button.btn.btn-primary {
      width: fit-content;
      width: -moz-fit-content;
      margin: 0 auto;
      display: block;
      color: #ffffff;
  }

  .vote-form {
      background: #FFFFFF;
      box-shadow: 2px 2px 10px #00000029;
      border-radius: 25px;
      height: auto;
      width: 480px;
      padding: 30px 60px;
      margin: 0 auto;
  }

  .vote-form h5 {
      color: #156B68;
      font-size: 18px;
      font-weight: bold;
  }
  footer {
    background-color: #156B68;
    text-align: center;
    padding: 8px 0;
}

footer p {
    margin: 0;
    color: #F5EDD1;
}

.email-template .box-content {
    background: transparent linear-gradient(180deg, #DED1A18A 0%, #FFFFFF63 100%) 0% 0% no-repeat padding-box;
    border-radius: 8px;
    border: 1px solid #DED1A18A;
    max-width: 1000px;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-40%);
    padding: 20px 30px 40px 30px;
  }
  .email-template .box-content img {
    width: 120px;
    height: auto;
  }
  .email-template .box-content h3 {
    font-size: 25px;
    font-weight: bold;
    color: #156B68;
  }
  .email-template .box-content .line-border {
    width: 100%;
    height: 1px;
    background-color: #DED1A18A;
  }
  .email-template .box-content a {
    color: #4583E1;
  }
  .email-template .box-content .links-wrapper {
    position: relative;
  }
  .email-template .box-content .links-wrapper a.btn-link {
    color: #E1D198;
    background-color: #156B68;
    padding: 8px 30px;
    border-radius: 3px;
    text-decoration: none;
  }
  .email-template .box-content .links-wrapper a.btn-link:hover {
    opacity: 0.85;
  }
  .email-template .box-content .links-wrapper a.link {
    color: #2B78A4;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }