body{
    font-size: 0.8rem;
    overflow-x: hidden;
}

img{
    object-fit: cover;
}

.switcher-icon{
    display: none;
}

.fw-800{
    font-weight: 800;
}

.fs-19{
    font-size: 1.65rem;
}

.fs-15 {
    font-size: 1.0rem;
}

.card.custom-card .card-header .card-title{
    text-transform: none;
}

.text-shadow{
}

.landing-body .app-sidebar.custom-sticky {
background-color: rgba(255,255,255,1);
box-shadow: 0 0.25rem 1rem var(--black-1);
}
.landing-body .app-sidebar.custom-sticky .side-menu__item .side-menu__angle {
color: var(--menu-prime-color);
}
.landing-body .app-sidebar.custom-sticky .side-menu__item:hover .side-menu__angle {
color: var(--primary-color) !important;
}
.landing-body .app-sidebar.custom-sticky.app-sidebar .side-menu__label {
color: var(--custom-black);
}
.landing-body .app-sidebar.custom-sticky .landing-logo-container .horizontal-logo .desktop-white {
display: none;
}
.landing-body .app-sidebar.custom-sticky .landing-logo-container .horizontal-logo .desktop-logo {
display: block;
}
.landing-body .app-sidebar.custom-sticky.app-sidebar .side-menu__item:hover .side-menu__label {
color: var(--primary-color) !important;
}

.floating-btn{
    position: fixed;
    bottom: 100px;
    right:30px;
    width: 70px;
    z-index: 1000;
    text-align: right;
}


.blinking {
    -webkit-animation: 1s blink ease infinite;
    -moz-animation: 1s blink ease infinite;
    -ms-animation: 1s blink ease infinite;
    -o-animation: 1s blink ease infinite;
    animation: 1s blink ease infinite;
    
  }
  
  @keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-moz-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-ms-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-o-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

@media (max-width: 767px) {
    body{
        padding-bottom: 120px;
    }
    .mobile-footer {
        display: flex!important;
        justify-content: space-evenly;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: -3 .225rem .25rem rgba(0,0,0,.075)!important;
        position: fixed;
        text-align: center;
        width: 100%;
        bottom: 0;
        padding-top: 7px;
        left: 0;
        z-index: 1037
    }

    .mobile-footer .footer-icon i {
        font-size: 20px;
        margin-right: 2px;
        padding: 0;
        font-size: 22px;
        font-weight: 100
    }

    .mobile-footer .footer-icon span {
        font-size: .7rem;
        display: block;
        margin-top: -2px;
        margin-bottom: 10px
    }

    .mobile-footer a:focus {
        box-shadow: none!important;
        border: none!important
    }

    .mobile-footer a.active * {
        color: #f79501
    }

    .container-fluid{
        padding: 0;
    }

    .main-header-container{
        padding: 0 10px;
    }

    .page-title{
        text-align: center;
    }

    .page-header-breadcrumb{
        margin: 10px 0px 20px 0px !important;
    }

    .card.custom-card{
        border-radius: 5px;
    }
}


