:root {
  --white: #ffffff;
  --primary: #007c86;
  --bs-primary: #007c86 !important;
  --primaryLightColor: #23c1bc;
}

.f-8 {
  font-size: 8px;
}
.f-10 {
  font-size: 10px;
}
.f-12 {
  font-size: 12px;
}
.f-14 {
  font-size: 14px;
}
.f-16 {
  font-size: 16px;
}
.f-18 {
  font-size: 18px;
}
.f-20 {
  font-size: 20px;
}
.f-22 {
  font-size: 22px;
}
.f-24 {
  font-size: 24px;
}
.f-26 {
  font-size: 26px;
}
.f-28 {
  font-size: 28px;
}
.f-30 {
  font-size: 30px;
}
.f-32 {
  font-size: 32px;
}
.f-34 {
  font-size: 34px;
}
.f-36 {
  font-size: 36px;
}

/* Pre Loader */
#pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1399;
}

#pre-loader .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  z-index: 1399;
  background: #007c86;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#pre-loader .loader-section.section-left {
  left: 0;
}
#pre-loader .loader-section.section-right {
  right: 0;
}

#loader-logo {
  display: block;
  position: relative;
  left: calc(50% - 20em / 2);
  top: 15%;
  width: 20em;
  height: 9.375em;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('http://imgh.us/loading_4.svg');
  z-index: 1400;
}

#loader-circle {
  display: block;
  position: relative;
  left: 50%;
  top: 35%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1400;
}
#loader-circle:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader-circle:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loaded #pre-loader .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #pre-loader .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-logo,
.loaded #loader-circle {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #pre-loader {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.no-js #pre-loader {
  display: none;
}

/* Pre Loader */


/* Login Video controller */
video::-webkit-media-controls-fullscreen-button {
    display: none;
}
video::-webkit-media-controls-panel > :nth-child(3) {
    display: none;
}
video::-webkit-media-controls-enclosure {
  overflow: hidden;
}
video::-webkit-media-controls-panel > :nth-last-child(2) {
  display: none !important;
}
video::-webkit-media-controls-panel > :nth-last-child(3) {
  display: none !important;
}


/* Login */
.login-video,
.login-video video {
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.login-logos {
  min-width: 100px;
  max-width: 100px;
  max-height: 100px;
  min-height: 100px;
  /* padding: 10px; */
}

.login-logos img {
  width: calc(100% - 10px);
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center center;
  -o-object-position: center center;
}

.login-form {
  border-left: 1px solid #e0e0e0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: var(--primary) !important;
}

/* Forum */
.forum-comments-body p,
.forum-reply-comments-body p {
  margin-bottom: 0;
}

.forum-comments-body p img,
.forum-reply-comments-body p img,
.forum-comments-body p video,
.forum-reply-comments-body p video,
.forum-comments-body p iframe,
.forum-reply-comments-body p iframe {
  max-width: 50% !important;
  margin: 0 10px 10px 0;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center center;
  -o-object-position: center center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.forum-reply-comments-body .card {
  margin-top: -10px;
  border-left: 3px solid var(--primaryLightColor);
  background-color: #fafafa;
}

.forum-reply-comments-body .card .card-footer {
  background-color: #fafafa !important;
}

.comments-section {
  max-height: calc(100vh - 320px);
  overflow-x: hidden;
  overflow-y: auto;
}
/* Forum */

/* Summer Note */
.note-dropdown-menu li a p,
.note-dropdown-menu li a blockquote,
.note-dropdown-menu li a pre {
  color: var(--primary);
  font-size: 14px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h1 {
  color: var(--primary);
  font-size: 26px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h2 {
  color: var(--primary);
  font-size: 24px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h3 {
  color: var(--primary);
  font-size: 22px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h4 {
  color: var(--primary);
  font-size: 20px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h5 {
  color: var(--primary);
  font-size: 18px;
  padding: 0 10px !important;
}
.note-dropdown-menu li a h6 {
  color: var(--primary);
  font-size: 16px;
  padding: 0 10px !important;
}

/* .note-btn:hover,
.note-btn:active,
.note-btn:focus,
.note-btn.active,
.note-btn[aria-expanded="true"] {
  color: var(--white) !important;
  background-color: var(--primary) !important;
}*/

.note-btn[data-bs-toggle="dropdown"] {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.note-btn::after {
  content: none !important;
}

.note-btn-group .note-btn {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.note-btn-group {
  box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
}

.note-dropdown-menu .note-btn-group {
  box-shadow: none !important;
}

/* Summer Note Modal */
.note-modal .modal-header,
.note-modal .modal-body,
.note-modal .modal-footer {
  padding: 10px;
}

.note-modal .modal-header button {
  display: none;
}

.note-modal .modal-header .modal-title {
  font-size: 16px;
}

.note-modal .modal-body .note-form-group {
  margin-bottom: 5px;
}

.note-modal .modal-body .note-form-group label,
.note-modal .modal-body .note-group-image-url label,
.note-modal .modal-body .checkbox label {
  font-size: 14px;
}

.note-modal .modal-body .checkbox label,
.note-modal .modal-body .note-group-select-from-files {
  cursor: pointer;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  gap: 5px;
}

.note-modal .modal-footer .btn {
  font-size: 14px;
  margin: 0 !important;
  border: 1px solid var(--primaryColor);
  background-color: var(--primaryColor);
}

.note-modal .help-list-item label,
.note-modal label kbd {
  font-size: 14px;
}

.note-modal label kbd {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-color: var(--primaryColor) !important;
}

.note-group-select-from-files {
  cursor: default !important;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}

.note-group-select-from-files label {
  cursor: pointer !important;
}

.note-group-select-from-files .note-image-input {
  color: transparent;
    max-width: 110px;
}

.note-group-select-from-files .note-image-input::file-selector-button,
.note-group-select-from-files .note-image-input::-webkit-file-upload-button {
  cursor: pointer !important;
  color: #ffffff !important;
  font-size: 14px !important;
  padding: 6px 12px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: none !important;
  background-color: #007c86 !important;
  background-color: #007c86 !important;
}

.note-group-select-from-files .note-image-input::file-selector-button:hover,
.note-group-select-from-files .note-image-input::file-selector-button:active,
.note-group-select-from-files .note-image-input::file-selector-button:focus,
.note-group-select-from-files .note-image-input::-webkit-file-upload-button:hover,
.note-group-select-from-files .note-image-input::-webkit-file-upload-button:active,
.note-group-select-from-files .note-image-input::-webkit-file-upload-button:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Summer Note */

/* Media Queries */
@media (max-width: 576px) {
  .login-logos {
    min-width: 90px;
    max-width: 90px;
    max-height: 90px;
    min-height: 90px;
  }
}

@media (min-width: 576px) {
  .f-sm-8 {
    font-size: 8px;
  }
  .f-sm-10 {
    font-size: 10px;
  }
  .f-sm-12 {
    font-size: 12px;
  }
  .f-sm-14 {
    font-size: 14px;
  }
  .f-sm-16 {
    font-size: 16px;
  }
  .f-sm-18 {
    font-size: 18px;
  }
  .f-sm-20 {
    font-size: 20px;
  }
  .f-sm-22 {
    font-size: 22px;
  }
  .f-sm-24 {
    font-size: 24px;
  }
  .f-sm-26 {
    font-size: 26px;
  }
  .f-sm-28 {
    font-size: 28px;
  }
  .f-sm-30 {
    font-size: 30px;
  }
  .f-sm-32 {
    font-size: 32px;
  }
  .f-sm-34 {
    font-size: 34px;
  }
  .f-sm-36 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
    max-width: 75% !important;
  }

  .f-md-8 {
    font-size: 8px;
  }
  .f-md-10 {
    font-size: 10px;
  }
  .f-md-12 {
    font-size: 12px;
  }
  .f-md-14 {
    font-size: 14px;
  }
  .f-md-16 {
    font-size: 16px;
  }
  .f-md-18 {
    font-size: 18px;
  }
  .f-md-20 {
    font-size: 20px;
  }
  .f-md-22 {
    font-size: 22px;
  }
  .f-md-24 {
    font-size: 24px;
  }
  .f-md-26 {
    font-size: 26px;
  }
  .f-md-28 {
    font-size: 28px;
  }
  .f-md-30 {
    font-size: 30px;
  }
  .f-md-32 {
    font-size: 32px;
  }
  .f-md-34 {
    font-size: 34px;
  }
  .f-md-36 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .login-form {
    border-top: 1px solid #e0e0e0;
    border-left: none;
  }
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .f-lg-8 {
    font-size: 8px;
  }
  .f-lg-10 {
    font-size: 10px;
  }
  .f-lg-12 {
    font-size: 12px;
  }
  .f-lg-14 {
    font-size: 14px;
  }
  .f-lg-15 {
    font-size: 15px;
  }
  .f-lg-16 {
    font-size: 16px;
  }
  .f-lg-18 {
    font-size: 18px;
  }
  .f-lg-20 {
    font-size: 20px;
  }
  .f-lg-22 {
    font-size: 22px;
  }
  .f-lg-24 {
    font-size: 24px;
  }
  .f-lg-26 {
    font-size: 26px;
  }
  .f-lg-28 {
    font-size: 28px;
  }
  .f-lg-30 {
    font-size: 30px;
  }
  .f-lg-32 {
    font-size: 32px;
  }
  .f-lg-34 {
    font-size: 34px;
  }
  .f-lg-36 {
    font-size: 36px;
  }

  .login-logos {
    min-width: 120px;
    max-width: 120px;
    max-height: 120px;
    min-height: 120px;
  }

  .login-logos img {
    width: calc(100% - 15px);
  }

  .login-content-1 {
    border-right: 1px solid #e3e3e3;
  }
}

@media (min-width: 1200px) {
  .w-xl-75 {
    width: 75% !important;
    max-width: 75% !important;
  }
}
