::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #08458d; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #e4120e; }

:root, :root.light {
  --color-fg: #000000;
  --card-bg-color: #fff;
  --bg-color:#f5f8fa;
 --bx-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px
}
:root.dark {
  --color-fg: #fff;
  --card-bg-color: #000;
   --bg-color:#000;
   --bx-shadow:rgb(92 90 89) 0px 0px 16px !important;
}
.dark img{
    filter: invert(1) hue-rotate(180deg);
}
body {
  background: var(--bg-color) !important;
  color: var(--color-fg) !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 99999;
}

#status {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
}

.center-div {
    position: absolute;
    width: 20%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
}

#status img {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid red;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end) forwards;
    color: #fff;
    font-size: 50px;
}


/* The typing effect */

@keyframes typing {
    0% {
        width: 0
    }
    50% {
        width: 100%;
    }
    80% {
        border: inherit;
    }
    100% {
        border: inherit;
    }
}

@keyframes blink-caret {
    0% {
        border-color: orange
    }
    50% {
        border-color: orange;
    }
    80% {
        border-color: inherit;
    }
    100% {
        border-right: inherit;
    }
}

.center-div ul {
    /* position: absolute;

  top: 80%;

  left:50%;

  transform: translate(-80%,-50%);*/
    display: flex;
    margin: 0;
    padding: 0;
}

.center-div ul li {
    list-style: none;
    width: 25px;
    height: 25px;
    /*background: #fff;*/
    border-radius: 50%;
    margin-right: 5px;
    animation: ani 1.6s ease-in-out;
}

@keyframes ani {
    0% {
        transform: scale(0.6);
    }
    50% {
        transform: scale(0.2);
    }
    20% {
        transform: scale(0.6);
    }
}

.center-div ul li:nth-child(1) {
    animation-delay: -1.4s;
    /*background-color:#754490;*/
    box-shadow: 0 0 50px #ffff00;
}

.center-div ul li:nth-child(2) {
    animation-delay: -1.2s;
    /*background-color:#b7398b;*/
    box-shadow: 0 0 50px #76ff03;
}

.center-div ul li:nth-child(3) {
    animation-delay: -1s;
    /*background-color:#e41c3b;*/
    box-shadow: 0 0 50px #f06292;
}

.center-div ul li:nth-child(4) {
    animation-delay: -0.8s;
    /*background-color:#f7b022;*/
    box-shadow: 0 0 50px #4fc3f7;
}

.center-div ul li:nth-child(5) {
    animation-delay: -0.6s;
    /*background-color:#f7e86b;*/
    box-shadow: 0 0 50px #ba68c8;
}

.center-div ul li:nth-child(6) {
    animation-delay: -0.4s;
    /*background-color:#d0db69;*/
    box-shadow: 0 0 50px #f57c00;
}

.center-div ul li:nth-child(7) {
    animation-delay: -0.2s;
    /*background-color:#73b92d;*/
    box-shadow: 0 0 50px #673ab7;
}

.center-div ul li:nth-child(8) {
    animation-delay: -0.004s;
    /*background-color:#84cbf1;*/
    box-shadow: 0 0 50px #673ab7;
}

.center-div ul li:nth-child(9) {
    animation-delay: -0.012s;
    /*background-color:#1074bc;*/
    box-shadow: 0 0 50px #673ab7;
}


.header{
  background: var(--card-bg-color) !important;  

}
.card {
  background-color: var(--card-bg-color) !important;
  color: var(--color-fg) !important;
  box-shadow: var(--bx-shadow) !important;
}
.text-dark {
    color: var(--color-fg) !important;
}
.form-group label {
    color: var(--color-fg) !important;
}
.dataTables_wrapper .dataTable td {
    color: var(--color-fg) !important;
}




/*body {
    background: #f5f8fa !important;

}*/

body.dark {background-color: #292c35;} /* #9b59b6 */

body.dark h1, body.dark .support a {color: #fff;}

.mycheckbox {
  opacity: 0;
  position: absolute;
}

.mycheckbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {color: #f1c40f;}

.fa-sun {color: #f39c12;}

.mycheckbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.mycheckbox:checked + .mycheckbox-label .ball {
  transform: translateX(24px);
}









/*  Support me if you like it */
.support {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.support a {
  color: #292c35;
  font-size: 32px;
  backface-visibility: hidden;
  display: inline-block;
  transition: transform 0.2s ease;
}

.support a:hover{
  transform: scale(1.1);
}
.card.card-custom.gutter-b.card-stretch {
    background-position: right top;
    background-size: 30% auto;
    background-repeat: no-repeat;
    background-image: url(../media/svg/shapes/abstract-4.svg);
/*    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
html[data-theme='dark'] {
    background: #000;
    filter: invert(1) hue-rotate(180deg);
}
.lbl-heading {
    font-weight: 600;
}
.svg-icon.svg-icon-dark-75 svg g [fill] {
    transition: fill 0.3s ease;
    fill: #06b0ef !important;
}
.radio.radio-success > input:checked ~ span {
    background-color: #f26722;
}
.radio > input:checked ~ span {
    background-color: #00aaef;
}
.radio.radio-primary > input:checked ~ span {
    background-color: #f26722;
}
.btn.btn-hover-primary:hover:not(.btn-text):not(:disabled):not(.disabled), .btn.btn-hover-primary:focus:not(.btn-text), .btn.btn-hover-primary.focus:not(.btn-text) {
    color: #FFFFFF !important;
    background-color: #e4120e !important;
    border-color: #e4120e !important;
}
span.d-block.font-weight-bold.font-size-h6.mt-2 {
    font-size: 13px !important;
}
.nav.nav-pills .show > .nav-link, .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background-color: #01b1f3;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.confetti {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}
.confetti-piece:nth-child(1) {
    left: 7%;
    -webkit-transform: rotate(-40deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 182ms;
    -webkit-animation-duration: 1116ms;
}
.confetti-piece:nth-child(2) {
    left: 14%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 161ms;
    -webkit-animation-duration: 1076ms;
}
.confetti-piece:nth-child(3) {
    left: 21%;
    -webkit-transform: rotate(-51deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 481ms;
    -webkit-animation-duration: 1103ms;
}
.confetti-piece:nth-child(4) {
    left: 28%;
    -webkit-transform: rotate(61deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 334ms;
    -webkit-animation-duration: 708ms;
}
.confetti-piece:nth-child(5) {
    left: 35%;
    -webkit-transform: rotate(-52deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 302ms;
    -webkit-animation-duration: 776ms;
}
.confetti-piece:nth-child(6) {
    left: 42%;
    -webkit-transform: rotate(38deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 180ms;
    -webkit-animation-duration: 1168ms;
}
.confetti-piece:nth-child(7) {
    left: 49%;
    -webkit-transform: rotate(11deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 395ms;
    -webkit-animation-duration: 1200ms;
}
.confetti-piece:nth-child(8) {
    left: 56%;
    -webkit-transform: rotate(49deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 14ms;
    -webkit-animation-duration: 887ms;
}
.confetti-piece:nth-child(9) {
    left: 63%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 149ms;
    -webkit-animation-duration: 805ms;
}
.confetti-piece:nth-child(10) {
    left: 70%;
    -webkit-transform: rotate(10deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 351ms;
    -webkit-animation-duration: 1059ms;
}
.confetti-piece:nth-child(11) {
    left: 77%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 307ms;
    -webkit-animation-duration: 1132ms;
}
.confetti-piece:nth-child(12) {
    left: 84%;
    -webkit-transform: rotate(42deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 464ms;
    -webkit-animation-duration: 776ms;
}
.confetti-piece:nth-child(13) {
    left: 91%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 429ms;
    -webkit-animation-duration: 818ms;
}
.confetti-piece:nth-child(odd) {
    background: #7431e8;
}
.confetti-piece:nth-child(even) {
    z-index: 1;
}
.confetti-piece:nth-child(4n) {
    width: 5px;
    height: 12px;
    -webkit-animation-duration: 2000ms;
}
.confetti-piece:nth-child(3n) {
    width: 3px;
    height: 10px;
    -webkit-animation-duration: 2500ms;
    -webkit-animation-delay: 1000ms;
}
.confetti-piece:nth-child(4n-7) {
  background: red;
}
@-webkit-keyframes makeItRain {
    from {opacity: 0;}
    50% {opacity: 1;}
    to {-webkit-transform: translateY(350px);}
}

.svg-icon.svg-icon-info svg g [fill] {
    transition: fill 0.3s ease;
    fill: #f26722 !important;
}
.svg-icon.svg-icon-primary svg g [fill] {
    transition: fill 0.3s ease;
    fill: #3a5997 !important;
}
.btn.btn-clean .svg-icon svg g [fill] {
    transition: fill 0.3s ease;
    fill: #3a5997;
}

a.text-dark.font-size-h6:hover {
    color: #913c00 !important;
}
.btn {
    border-radius: 0;
}
input.form-control {
    border-radius: 0;
}
select.form-control {
    border-radius: 0;
    height: 41px;
    border-radius: 5px;
}
textarea.form-control {
    border-radius: 0;
    border-radius: 5px;
}
label.custom-file-label {
   border-radius: 0;
    height: 41px;
    border-radius: 5px;
}
.btn{
    border-radius: 5px !important;
}
.text-primary {
    color: #e4120e !important;
}
.inner-sider-rec-cnt h6 {
    color: #000;
}
button.btn.btn-primary:hover {
    background: #e4120e !important;
    border: 1px solid #e4120e !important;
}
span.select2-selection.select2-selection--single {
   border-radius: 0;
    height: 41px;
    border-radius: 5px;
}
span.select2-selection.select2-selection--multiple {
   border-radius: 0;
    height: 41px;
    border-radius: 5px;
}
label.d-lable22-new {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000000 !important;
}
.down-cnts-points {
    border-radius: 12px;
    padding: 27px;
    background: ghostwhite;
    /* box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%); */
    border: 1px solid #d7d2d2;
}
.down-cnts-points-new.mb-3 {
    border-radius: 12px;
    padding: 11px;
    background: #f8ffd7;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
/*.inner_down_forms_jobroles.mt-5 {
    padding: 20px;
    border-radius: 16px;
    background: ghostwhite;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}*/
.inner_down_forms_jobroles.mt-5 {
    padding: 20px;
    border-radius: 16px;
    background: ghostwhite;
    /* box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%); */
    border: 1px solid #d7d2d2;
}
.bg_gray {
    background: #eee;
}
.bg_gray2 {
    background: #fff;
    border-radius: 0 !important;
    border-radius: 24px;
    box-shadow: rgb(17 17 26 / 5%) 0px 1px 0px, rgb(17 17 26 / 10%) 0px 0px 8px;
}
.card {
    border-radius: 5px;
}
a.text-hover-primary:hover, .text-hover-primary:hover {
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    color: #00adf0 !important;
}
.btn.btn-primary {
    color: #FFFFFF;
    background-color: #08458d;
    border-color: #08458d;
}
.btn.btn-default {
    color: #B5B5C3;
    background-color: transparent;
    border-color: snow;
}
input.form-control {
    border-radius: 0;
    border: 1px solid #e1e3ea;
    height: 41px;
    border-radius: 5px;
}
a.btn.btn-sm.btn-clean.btn-icon.mr-2 {
    background: #eee;
}
label.lbl-heading {
    font-weight: 600;
}
.loaders {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../media/files/loader.png) 50% 50% no-repeat #fff;
    opacity: 1
}
.bg_recomd {
    background-color: #fff;
    background-position: left bottom;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-image: url(../media/svg/humans/custom-2.svg);
}
.card.card-custom.gutter-b.card-stretch {
    background-position: right top;
    background-size: 30% auto;
    background-repeat: no-repeat;
    background-image: url(../media/svg/shapes/abstract-4.svg);
}
.inner-full-book-appoint h2 {
    color: #d55a34;
    font-weight: bold;
}
.inner-full-book-appoint img {
    height: 217px;
    margin-bottom: 15px;
}
img.img-fluid.pro-img-logo {
    border-radius: 50%;
}
.cstm-submenu {
    display: block !important;
}
.btn.btn-blue {
    background: #03b0e9;
}
.drcart-button {
    position: relative;
    outline: 0;
    background-color: blue;
    color: #fff;
    border: none;
    height: 44px;
    width: 153px;
    padding: 10px;
    border-radius: 10px;
    line-height: 0px;
    overflow: hidden;
    cursor: pointer
}

.drcart-button:focus {
    outline: none !important
}

.drcart-button .fa-shopping-cart {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -20%;
    font-size: 1.8em;
    transform: translate(-50%, -50%)
}

.drcart-button .fa-square {
    position: absolute;
    z-index: 1;
    top: -20%;
    left: 53%;
    font-size: 0.8em;
    transform: translate(-50%, -50%)
}

.drcart-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    transform: translate(-50%, -50%)
}
.drcart-button.clicked {
    background: #f64e60;
}
.drcart-button span.added {
    opacity: 0
}

.drcart-button.clicked .fa-shopping-cart {
    animation: cart 2s ease-in forwards;
    color: #fff;
}

.drcart-button.clicked .fa-square {
    animation: box 2s ease-in forwards;
    color: #fff;
}

.drcart-button.clicked span.add-to-cart {
    animation: addcart 2s ease-in forwards
}

.drcart-button.clicked span.added {
    animation: added 2s ease-in forwards
}

@keyframes cart {
    0% {
        left: -10%
    }

    40%,
    60% {
        left: 50%
    }

    100% {
        left: 110%
    }
}

@keyframes box {

    0%,
    40% {
        top: -20%
    }

    60% {
        top: 36%;
        left: 53%
    }

    100% {
        top: 40%;
        left: 112%
    }
}

@keyframes addcart {

    0%,
    30% {
        opacity: 1
    }

    30%,
    100% {
        opacity: 0
    }
}

@keyframes added {

    0%,
    80% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.add-to-cart-screen {
    background: #fff;
    height: 60px;
    width: 60px;
    position: fixed;
    color: #fff;
    right: 48px;
    z-index: 9999;
    box-shadow: 0 4px 22px -5px rgb(0 0 0 / 20%);
    bottom: 5%;
    border-radius: 50px;
}
span.badge.badge-pill.badge-danger.d-sng-budge {
    background: #ff6600;
    color: #fff;
    position: absolute;
    top: -10px;
    right: -10px;
    height: 30px;
    width: 30px;
    font-size: 15px;
    padding: 7px;
}
.add-to-cart-screen i {
    font-size: 25px;
    padding: 15px;
}
span.badge.badge-pill.badge-danger.d-sng-budgetop.cart-count {
    position: absolute;
    right: 73px;
    margin-top: 6px;
    height: 20px !important;
    width: 20px !important;
    background: #000;
}
.inner-full-book-appoint img {
    height: 126px;
}
.card.card-custom.bg_trans {
    box-shadow: none;
    background: #e0e9ed;
}
.table_hdr_txt h4 {
    color: #e51a4b;
    font-size: 20px;
    margin-top: 5px;
    text-shadow: 3px 4px #eee;
}
td.dash_td_font {
    font-size: 25px;
}
th.dash_th_font {
    font-size: 18px !important;
}
img.img-fluid.ccg_imgs {
    height: 40px;
    width: 40px;
    border-radius: 10px;
}
table.table.custom_tbls {
    background: #fff;
    box-shadow: 0 1px 15px 0 rgb(0 0 0 / 7%) !important;
}

span.my_abs_arr {
    height: 20px;
    width: 20px;
    background: #000;
    position: absolute;
    text-align: center;
    padding: 0px 7px;
    left: 11px;
    margin-top: -3px;
    border-radius: 50%;
}
span.my_abs_arr i {
    color: #fff;
    font-size: 12px;
}
.mb20 { margin-bottom: 20px !important; }