/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 0.5;
  background-color: hsl(var(--black) / 0.5);
  border-color: hsl(var(--black) / 0.01);
}

.h-45 {
  height: 50px;
}

.h-none {
  height: 37px !important;
}

.input-group-text {
  color: #747474;
  background-color: #fff;
  border-color: hsl(var(--black) / 0.08);
  transition: all linear .15s;
}

.account-form .input-group-text {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-left: 0;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-right: 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {
  .hover-input-popup .input-popup {
    left: 70% !important;
  }
}

.input-group-text.removeFile {
  border-color: hsl(var(--black) / 0.1) !important;
  border-style: dashed;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
  background-color: hsl(var(--base)) !important;
}
:root {
    /* UAE Green (base) */
    --base-h: 150;
    --base-s: 100%;
    --base-l: 25%;

    /* Near-black (base-two) */
    --base-two-h: 150;
    --base-two-s: 15%;
    --base-two-l: 10%;
}
.banner-slide,
.slide-wrap {
    position: relative;
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}
.section-heading__subtitle::before {
    display: none;
}
/* Bigger logo across main site header */
.navbar-brand.logo img {
    max-width: 260px;
    max-height: 60px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 200px;
        max-height: 50px;
    }
}

/* Bigger logo in the user dashboard sidebar */
.sidebar-logo img {
    max-width: 180px;
    max-height: 55px;
}
/* ===== Dark Mode ===== */
body.dark-mode {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
}

body.dark-mode .dashboard,
body.dark-mode .dashboard__right,
body.dark-mode .dashboard-body,
body.dark-mode .card,
body.dark-mode .custom--card,
body.dark-mode .modal-content,
body.dark-mode .form--control,
body.dark-mode .form-control,
body.dark-mode .table,
body.dark-mode .sidenav,
body.dark-mode .dashboard-header {
    background-color: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode .card-title,
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4, 
body.dark-mode h5, 
body.dark-mode h6,
body.dark-mode label,
body.dark-mode p,
body.dark-mode span {
    color: #e6edf3 !important;
}

body.dark-mode .form--control,
body.dark-mode .form-control,
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode .btn--base,
body.dark-mode .btn-primary {
    background-color: #238636 !important;
    border-color: #238636 !important;
}

body.dark-mode .table th,
body.dark-mode .table td {
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode .preloader {
    background-color: #0d1117 !important;
}
/* ===== Dark Mode - Strong Version ===== */

body.dark-mode {
    background-color: #0d1117 !important;
    background-image: none !important;
    color: #e6edf3 !important;
}

body.dark-mode,
body.dark-mode html {
    background: #0d1117 !important;
}

/* Force all main containers */
body.dark-mode .account-section,
body.dark-mode .login-section,
body.dark-mode .auth-wrapper,
body.dark-mode .login-area,
body.dark-mode .account-form,
body.dark-mode section,
body.dark-mode .container-fluid,
body.dark-mode .container,
body.dark-mode .row,
body.dark-mode .dashboard,
body.dark-mode .dashboard__right,
body.dark-mode .dashboard-body,
body.dark-mode .sidenav,
body.dark-mode .dashboard-header {
    background-color: #0d1117 !important;
    background-image: none !important;
    color: #e6edf3 !important;
}

/* Cards & Form boxes */
body.dark-mode .card,
body.dark-mode .custom--card,
body.dark-mode .form-box,
body.dark-mode .modal-content {
    background-color: #161b22 !important;
    border-color: #30363d !important;
    color: #e6edf3 !important;
}

/* Text */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode label,
body.dark-mode a,
body.dark-mode .card-title,
body.dark-mode .welcome-text {
    color: #e6edf3 !important;
}

/* Inputs */
body.dark-mode .form--control,
body.dark-mode .form-control,
body.dark-mode input[type="text"],
body.dark-mode input[type="password"],
body.dark-mode input[type="email"],
body.dark-mode input[type="number"],
body.dark-mode select,
body.dark-mode textarea {
    background-color: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode input::placeholder {
    color: #8b949e !important;
}

/* Buttons */
body.dark-mode .btn--base,
body.dark-mode .btn-primary,
body.dark-mode .btn--success {
    background-color: #238636 !important;
    border-color: #238636 !important;
    color: #fff !important;
}

/* Tables */
body.dark-mode .table,
body.dark-mode .table th,
body.dark-mode .table td {
    background-color: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

/* Preloader */
body.dark-mode .preloader {
    background-color: #0d1117 !important;
}
/* ===== Dark Mode for Login Page ===== */

body.dark-mode {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
}

/* Main account section */
body.dark-mode .account,
body.dark-mode .account__right,
body.dark-mode .account__form,
body.dark-mode .account-form {
    background-color: #0d1117 !important;
    background-image: none !important;
    color: #e6edf3 !important;
}

/* Headings and text */
body.dark-mode .section-heading__subtitle,
body.dark-mode .section-heading__title,
body.dark-mode .form-label,
body.dark-mode .have-account__text,
body.dark-mode .have-account__link,
body.dark-mode label,
body.dark-mode p,
body.dark-mode span,
body.dark-mode a {
    color: #e6edf3 !important;
}

/* Input fields */
body.dark-mode .form--control,
body.dark-mode .form-control,
body.dark-mode input {
    background-color: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode input::placeholder {
    color: #8b949e !important;
}

/* Sign In button */
body.dark-mode .btn--base {
    background-color: #238636 !important;
    border-color: #238636 !important;
    color: #fff !important;
}
/* FORCE DARK MODE - LOGIN PAGE */
body.dark-mode,
body.dark-mode .account,
body.dark-mode .account__right,
body.dark-mode .account__form,
body.dark-mode .account-form,
body.dark-mode .account__right *,
body.dark-mode section.account {
    background-color: #0d1117 !important;
    background: #0d1117 !important;
    background-image: none !important;
    color: #e6edf3 !important;
}

body.dark-mode .form--control,
body.dark-mode input {
    background-color: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}

body.dark-mode .section-heading__title,
body.dark-mode .section-heading__subtitle,
body.dark-mode .form-label,
body.dark-mode label,
body.dark-mode a,
body.dark-mode p {
    color: #e6edf3 !important;
}