/* html{
    filter: invert(1) hue-rotate(180deg);
} */
/* html[theme='dark-mode'] {
    filter: invert(1) hue-rotate(180deg);
} */
body{
    background-color: #e8e8e8;
}
/*----------------------------------------------------------------
Preloader start
----------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #af0000;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
/*---------------------------------------------------------
Preloader end
---------------------------------------------------------*/
.form-control{
    box-shadow: inset 0 0 0 1px #9d9fa2!important;
    padding: 14px;
    -webkit-box-shadow: inset 0 0 0 1px #9d9fa2!important;
    -webkit-appearance: none;
    border: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
}

.form-select{
    box-shadow: inset 0 0 0 1px #9d9fa2!important;
    padding: 14px;
    -webkit-box-shadow: inset 0 0 0 1px #9d9fa2!important;
    -webkit-appearance: none;
    border: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    color: #6c7074!important;
}

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
  
@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: #fff;
}

.sidebar .nav-link:hover .icon,
.sidebar .nav-link.active .icon {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

.sidebar-nav .nav-item .active{
    background-color: #B92025;
    border-radius: 0rem 50rem 50rem 0rem;
}

.popover {
    max-width: 400px;
}
.btn-theme{
    background-color: #af0000;
    color: #fff;
}
.btn-theme:hover{
    color: #fff;
}
.pricing li{
    padding: 0.8rem;
}
.card-radio {
    display: flex;
    flex-flow: column;
}

.card-radio > div {
    flex: 1;
     padding: 1rem; 
}

.radio-input input[type="radio"] {
    display: none;
}
.radio-input input[type="radio"]:not(:disabled) ~ label {
    cursor: pointer;
}
.radio-input input[type="radio"]:disabled ~ label {
    color: #bcc2bf;
    border-color: #bcc2bf;
    box-shadow: none;
}

.radio-input label {
    display: block;
    background: white;
    border: 1px solid #20df80;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
    position: relative;
    padding: 0.5rem;
}

.radio-input input[type="radio"]:checked + label {
    background: #20df80;
    color: white;
}
.radio-input input[type="radio"]:checked + label::after {
    color: #3d3f43;
    font-family: bootstrap-icons !important;
    border: 2px solid #1dc973;
    content: "\f633";
    font-size: 16px;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 425px) {
    section {
        flex-direction: column;
    }
}

.radio-toolbar input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-toolbar label {
    display: inline-block;
    background-color: #fff;
    padding: 4px 16px;
    font-size: 16px;
    border: 2px solid #afafaf;
    margin-right: 20px;
    border-radius: 10px;
}

.radio-toolbar label:hover {
    background-color: #af0000;
    color: #fff;
}

.radio-toolbar input[type="checkbox"]:focus + label {
    border: 2px solid #afafaf;
}

.radio-toolbar input[type="checkbox"]:checked + label {
    background-color: #af0000;
    border-color: #af0000;
    color: #fff;
}
.circle{
    position: fixed;
    /* bottom: -364px; */
    left: 15%;
    transform: translate(-50%, -4%);
    background-image: linear-gradient(-45deg, #ff5b5b 0%, #af0000 100%);
    clip-path: circle(60%);
    overflow: hidden;
    height: 100%;
    width: 700px;
    z-index: -1;
    top: 76px;
}
.regImg{
    bottom: 50px;
    position: absolute;
    right: 68px;
}

  
.social-links a {
    font-size: 28px;
    display: inline-block;
    background: #106eea;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
  
.social-links a:hover {
    background: #3b8af2;
    color: #fff;
    text-decoration: none;
}

.bg-img1{
    background: url('../images/svg/fly.svg');
    background-repeat: no-repeat;
    background-size: 800px 500px;
    background-position: bottom right;
}

.bg-img2{
    background: url('../images/svg/influencer.svg');
    background-repeat: no-repeat;
    background-size: 700px 400px;
    background-position: bottom right;
}

.bg-img3{
    background: url('../images/svg/client.svg');
    background-repeat: no-repeat;
    background-size: 700px 400px;
    background-position: bottom right;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #e8e8e8;
    border-radius: 0px;
    border-bottom: 4px solid green;
    color: #000;
}

.bg-color{
    background-image:linear-gradient(#FFE1B6, #FFE5BF);background-color:#FFF2E9;
    background-repeat:no-repeat;
    background-size:cover;
}

.heading-eleone{
    color:#000;
    font-size: 3.5rem;
    -webkit-text-stroke: 0.5px #fff;
    -webkit-text-fill-color: #000;
    font-weight:900;
}

.heading-eletwo{
    color:#000;
    -webkit-text-stroke: 0.5px #fff;
    -webkit-text-fill-color: #000;
    font-weight:900;
}