/********** Template CSS **********/
:root {
    --primary: #4b0c61;
    --light: #F8F8F8;
    --dark: #180121;
    --secondary: #8a7c12;
      --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);

     /* --primary: #4b0c61;
    --light: #F8F8F8;
    --dark: #120117; */
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*--------Global Wedzimbawe Backgrounds css -----*/
.bg-primary {
    background-color: var(--primary) !important
}

.bg-secondary {
    background-color: var(--secondary) !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-light {
    background-color: #f9f8f7 !important
}

.bg-dark {
    background-color: var(--dark) !important
}

.bg-body {
    background-color: #fff !important
}

/*----------Global Wedzimbawe Buttons Css--------*/
.btn-primary {
    color: var(--light);
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    color: var(--primary) !important;
    background-color: var(--secondary) !important;;
    border-color: var(--primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #000;
    background-color: #d5a252;
    border-color: var(--secondary) !important;;
    box-shadow: 0 0 0 .25rem rgba(175, 124, 43, .5)
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    color: #000;
    background-color: #d8a85c;
    border-color: #d39d47
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(175, 124, 43, .5)
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: #000;
    background-color: #ce9233;
    border-color: #ce9233
}

.btn-secondary {
    color: var(--primary);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: #676461;
    border-color: #615e5b;
    box-shadow: 0 0 0 .25rem rgba(141, 139, 135, .5)
}

.btn-check:checked+.btn-secondary,
.btn-check:active+.btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #615e5b;
    border-color: #5b5956
}

.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(141, 139, 135, .5)
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    color: #fff;
    background-color: #797672;
    border-color: #797672
}

/*------Global Wedzimbawe Text Css-----*/
.text-primary {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}


/*------Global Wedzimbawe Border Css------*/
.border-primary {
    border-color: var(--primary) !important
}

.border-secondary {
    border-color: var(--secondary) !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f9f8f7 !important
}



/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/technology.webp) center center no-repeat;
    background-size: cover;
}
.page-header:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;}
  .page-header .page-block {
    padding: 25px 30px; 
  }
  .page-header .page-block .breadcrumb-title {
    float: right; 
  }
  .page-header .page-block .breadcrumb-title a {
    font-size: 14px;
    color: #fff; 
  }
  .page-header .page-block .breadcrumb-title .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: FontAwesome;
    padding-right: 5px;
    font-size: 12px;
    color: #fff; 
  }
  @media only screen and (max-width: 768px) {
    .page-header .page-block .breadcrumb-title {
      float: left;
    } 
  }
  .page-header-title h5 {
    color: #fff; 
  }

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*Carousel hero section*/
/* Carousel full-screen setup */
.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.carousel-item img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Dark overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: 1;
}

.carousel-caption {
    position: relative;
    z-index: 2; /* above overlay */
    bottom: auto;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        font-size: 1rem;
    }
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.service-text h3{
    color: var(--primary);
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.pull-right {
  float: right;
  right: 0;
  left: auto
}
.pull-left {
  float: left;
  left: 0;
  right: auto
}

/*----------Back End Css Begin----------*/
#be-body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #f5f5f5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*dashboard by*/
.fs-be-2 {
  font-size: 0.75rem !important;
}
 .left-sidebar {
    width: 270px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    height: 100%;
    z-index: 11;
    border-right: 1px solid rgb(229, 234, 239);
}

.left-sidebar .scroll-sidebar {
    overflow-y: auto;
    padding: 0 24px;
    height: calc(100vh - 80px);
    border-radius: 7px;
}

.left-sidebar .scroll-sidebar .simplebar-track.simplebar-horizontal {
    visibility: hidden !important;
}

.brand-logo {
    min-height: 70px;
    padding: 0 24px;
}

.unlimited-access {
    padding: 18px 22px 25px;
    margin: 0 -5px;
}

.unlimited-access .unlimited-access-img {
    margin: -35px -5px 0 -43px;
}

.nav-small-cap {
    margin-top: 24px;
    color: #2a3547;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    line-height: 26px;
    text-transform: uppercase;
}

.nav-small-cap .nav-small-cap-icon {
    display: none;
}

.sidebar-nav ul .sidebar-item .sidebar-link {
    color: #2a3547;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 25px;
    position: relative;
    margin: 0px 0px 2px;
    padding: 10px;
    border-radius: 7px;
    gap: 15px;
    font-weight: 400;
}

.sidebar-nav ul .sidebar-item .sidebar-link span:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-nav ul .sidebar-item .sidebar-link .ti {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sidebar-nav ul .sidebar-item .sidebar-link:hover {
    background-color: rgba(93, 135, 255, 0.1);
    color: #5d87ff;
}

.sidebar-nav ul .sidebar-item .sidebar-link:hover.has-arrow:after {
    border-color: #5d87ff;
}

.sidebar-nav ul .sidebar-item .sidebar-link.active:hover.has-arrow:after {
    border-color: #fff;
}

.sidebar-nav ul .sidebar-item .link-disabled {
    opacity: 0.38;
}

.sidebar-nav ul .sidebar-item.selected>.sidebar-link,
.sidebar-nav ul .sidebar-item.selected>.sidebar-link.active,
.sidebar-nav ul .sidebar-item>.sidebar-link.active {
    background-color: #5d87ff;
    color: #fff;
}

.sidebar-nav .sidebar-list .sidebar-list-item {
    padding: 8px 0;
}

.collapse.in {
    display: block;
}

.app-header {
    position: relative;
    z-index: 50;
    width: 100%;
    background: #fff;
}

.app-header .container-fluid,
.app-header .container-lg,
.app-header .container-md,
.app-header .container-sm,
.app-header .container-xl,
.app-header .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.app-header .navbar {
    max-height: 70px;
    padding: 0;
}

.app-header .navbar .navbar-nav .nav-item .nav-link {
    padding: 8px 16px;
    line-height: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 20px;
    z-index: 2;
}

.app-header .navbar .navbar-nav.quick-links .nav-item .nav-link {
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

.app-header .navbar .navbar-nav.quick-links .nav-item:hover .nav-link {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    color: #5d87ff !important;
}

.app-header .navbar .navbar-nav.quick-links .nav-item:hover .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 36px;
    width: 100%;
    border-radius: 7px;
    background: #ecf2ff;
    z-index: -1;
}

@media (max-width: 991.98px) {
    .app-header .navbar {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .app-header .navbar .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
        width: 100%;
    }
    .navbar-nav .nav-item.dropdown {
        position: static;
    }
}


.dropdown-menu-animate-up {
    -webkit-animation: animation-dropdown-menu-fade-in 0.5s ease 1, animation-dropdown-menu-move-up 0.5s ease-out 1;
    animation: animation-dropdown-menu-fade-in 0.5s ease 1, animation-dropdown-menu-move-up 0.5s ease-out 1;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .w-xs-100 {
        width: 100% !important;
    }
}

.page-wrapper {
    position: relative;
}

.body-wrapper {
    position: relative;
}

.body-wrapper>.container-fluid,
.body-wrapper>.container-lg,
.body-wrapper>.container-md,
.body-wrapper>.container-sm,
.body-wrapper>.container-xl,
.body-wrapper>.container-xxl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}

@media (max-width: 767.98px) {
    .body-wrapper>.container-fluid,
    .body-wrapper>.container-lg,
    .body-wrapper>.container-md,
    .body-wrapper>.container-sm,
    .body-wrapper>.container-xl,
    .body-wrapper>.container-xxl {
        padding: 30px 20px;
    }
}

.simplebar-scrollbar:before {
    background: rgba(0, 0, 0, 0.5) !important;
}

#main-wrapper[data-layout="vertical"][data-sidebar-position="fixed"] .left-sidebar {
    position: fixed;
    top: 0;
}

#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .app-header {
    position: fixed;
    z-index: 10;
}

#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-fluid,
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-lg,
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-md,
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-sm,
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-xl,
#main-wrapper[data-layout="vertical"][data-header-position="fixed"] .body-wrapper>.container-xxl {
    padding-top: calc(70px + 15px);
}

@media (min-width: 1200px) {
    #main-wrapper[data-layout="vertical"][data-header-position="fixed"][data-sidebartype="mini-sidebar"] .app-header {
        width: 100%;
    }
    #main-wrapper[data-layout="vertical"][data-header-position="fixed"] .app-header {
        width: calc(100% - 270px);
    }
    #main-wrapper[data-layout="vertical"][data-sidebartype="full"] .body-wrapper {
        margin-left: 270px;
    }
}

@media (max-width: 1199px) {
    #main-wrapper[data-layout="vertical"][data-sidebartype="full"] .left-sidebar,
    #main-wrapper[data-layout="vertical"][data-sidebartype="mini-sidebar"] .left-sidebar {
        left: -270px;
    }
    #main-wrapper[data-layout="vertical"][data-sidebartype="full"].show-sidebar .left-sidebar,
    #main-wrapper[data-layout="vertical"][data-sidebartype="mini-sidebar"].show-sidebar .left-sidebar {
        left: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

.app-header .navbar {
    box-shadow: var(--shadow);
}

/*Drag and drop Css*/
textarea{
  white-space: pre-line;    
  white-space: pre-wrap;
}
.pre-textarea{
  white-space: pre-line;    
  white-space: pre-wrap;
}
#upload-files{
  max-width: 100%; /*max to make it responsive*/
  height: auto;
  min-height: 150px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-items: center;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: lightgrey;
  border: 2px dashed seagreen;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.form__container {
  position: relative;
  width: 100%;
  height: 100px;
  border: 2px dashed silver;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: silver;
  margin-bottom: 5px;

}
.form__container.active {
  background-color: rgba(192, 192, 192, 0.2);
}
.form__file {

  cursor: pointer;
  opacity: 0;
}


.form__image-container:after {
  content: "✕";
  position: relative;
/*  line-height: 200px;*/
font-size: 30px;
margin: auto;
top: 0;
right: 0;
left: 0;
text-align: center;
font-weight: bold;
color: #fff;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
.form__image-container:hover:after {
  opacity: 1;
  cursor: pointer;
}


/*form image dropzone size*/
.form__image{
  width: 100px !important;
}
#files-list-container{
 display: flex;
}
.my-form-file > input{
  visibility:hidden;
  width:0;
  height:0;
}

.add_next_of_kin{
  display: none;
}
/*  Single image drag and drop css*/
.image-upload{
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}
.image-upload input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.upload-field {
  display: block;
  background: #F4FAFE;
  padding: 12px;
  border-radius: 11px;

}

.upload-field .file-thumbnail {
  cursor: pointer;
  border: 1px dashed #BBD9EC;
  border-radius: 11px;
  text-align: center;
  padding: 20px;
}

.upload-field .file-thumbnail img {
  width: 50px;
}

.upload-field .file-thumbnail h3 {
  font-size: 12px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 4px;
}

.upload-field .file-thumbnail p {
  font-size: 12px;
  color: #9ABCD1;
  margin-bottom: 0;
}
.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
#valid{
  font-size:12px;
  height:15px
}
.valid{
  font-size:12px;
  height:15px
}
#valid-match{
  font-size:12px;
  color:#daa;
  height:15px
}
#rolestrong{
    display: none;
}

#rolevalid{
    display: none;
}
#valid-Rolematch{
    display: none;
}

#notStrong{
  display: none;
}
 .rechs-logo img{
        width: 80px;
      }
         .hm-r-index{
        width: 60px;
    }
          .hm-r-stats{
        width: 33px;
    }

/*-------End Back end Css-------*/

/*-----------Select 2 Css--------------*/
.select2-container--bootstrap4 .select2-selection--single {
height: calc(1.5em + 0.75rem + 2px) !important; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
color: #212529;
line-height: calc(1.5em + 0.75rem); }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
position: absolute;
top: 50%;
right: 3px;
width: 20px; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
top: 60%;
border-color: #343a40 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
width: 0;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
line-height: calc(1.5em + 0.75rem); }

.select2-search--dropdown .select2-search__field {
border: 1px solid #ced4da;
border-radius: 0.25rem;
background: #fff;
color: #212529; }

.select2-results__message {
color: #6c757d; }

.select2-container--bootstrap4 .select2-selection--multiple {
min-height: calc(1.5em + 0.75rem + 2px) !important;
padding-bottom: 5px;
text-overflow: ellipsis;
overflow: hidden; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
box-sizing: border-box;
list-style: none;
margin: 0;
width: 100%; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered .select2-search__field {
width: 100% !important;
background-color: #fff; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
color: #212529;
border: 1px solid #ced4da;
border-radius: 0.2rem;
padding: 0;
padding-right: 5px;
cursor: pointer;
float: left;
margin-top: 3px;
margin-left: 5px; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
color: #212529;
font-weight: 400;
margin-left: 3px;
margin-right: 1px;
padding-right: 3px;
padding-left: 3px;
float: left;
border: none;
background: #fff; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #343a40; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
float: none;
margin-right: 0;
position: absolute !important;
top: 0;
right: 0.7em; }

.select2-container--bootstrap4 .select2-search--inline {
float: left; }
.select2-container--bootstrap4 .select2-search--inline .select2-search__field {
width: 100% !important;
background: none;
color: #212529; }

.select2-container {
display: block; }
.select2-container *:focus {
outline: 0; }

.input-group .select2-container--bootstrap4 {
flex-grow: 1; }

.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection {
border-top-left-radius: 0;
border-bottom-left-radius: 0; }

.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection {
border-top-right-radius: 0;
border-bottom-right-radius: 0; }

.select2-container--bootstrap4 .select2-selection {
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
width: 100%; }
@media (prefers-reduced-motion: reduce) {
.select2-container--bootstrap4 .select2-selection {
transition: none; } }

.select2-container--bootstrap4.select2-container--focus .select2-selection {
border-color: #80bdff;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }

.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
background-color: #e9ecef;
cursor: not-allowed;
border-color: #ced4da;
box-shadow: none; }

.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field {
background-color: transparent; }

select.is-invalid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection {
border-color: #dc3545; }

select.is-valid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection {
border-color: #28a745; }

.select2-container--bootstrap4 .select2-dropdown {
border-color: #ced4da;
border-radius: 0;
background: #fff; }
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below {
border-top: none;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem; }
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
border-top: 1px solid #ced4da;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem; }
.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] {
background-color: #e9ecef; }

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
background-color: #007bff;
color: #fff; }

.select2-container--bootstrap4 .select2-results__option[role=group] {
padding: 0; }
.select2-container--bootstrap4 .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
padding-left: 1em; }

.select2-container--bootstrap4 .select2-results > .select2-results__options {
max-height: 15em;
overflow-y: auto; }

.select2-container--bootstrap4 .select2-results__group {
padding: 6px;
display: list-item; }

.select2-container--bootstrap4 .select2-selection__clear {
width: 0.9em;
height: 0.9em;
line-height: 0.75em;
padding-left: 0.15em;
margin-top: 0.7em;
border-radius: 100%;
background-color: #fff;
color: #f8f9fa;
float: right;
margin-right: 0.3em; }
.select2-container--bootstrap4 .select2-selection__clear:hover {
background-color: #e6e6e6; }
