:root {
    --theme : #820024;
    --theme-dark : #003466;
}

@font-face {
    font-family: 'gilroyextrabold';
    src: url('../fonts/gilroy-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroylight';
    src: url('../fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.pointer {
    cursor: pointer;
}
.bg-theme {
    background: var(--theme);
}
html{
	height:100%;
}
body {
    font-family: 'gilroylight';
    position: relative;
    height:100%;
}
body.inner {
    padding-top: 56px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 7;
}
.inner header {
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
.bg-scroll {
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
a {
    text-decoration: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-light .navbar-toggler {
    border: none;
}
.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
}
#top {
    background: url('https://price.kerala.gov.in/price3_pmu/price_analytics/img/xbg.jpg.pagespeed.ic.BKdTfmV455.jpg') no-repeat fixed;
    -webkit-background-size: cover;
    background-size: cover;
    height: calc(100vh - 30px);
    overflow: hidden;
    position: relative;
}
.top {
    position: relative;
    z-index: 6;
}
#spotlight {
    padding-top: 80px;
    padding-bottom: 20px;
}
#spotlight h1, #spotlight h2 {
    font-family: 'gilroyextrabold';
    font-size: 40px;
    color: #030303;
    text-transform: uppercase;
}
a.button {
    display: inline-block;
    background: var(--theme);
    color: #fff;
    padding: 10px 50px;
    margin-top: 30px;
    font-size: 16px;
    border-radius: 25px;
}

.login-trigger {
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to bottom right, #820024, #ca5856);
  padding: 10px 30px;
  border-radius: 30px;
  position: relative; 
  top: 50%;
  margin-right: 10px;
}
.login-trigger:hover{
    color: #fff;
}
.container-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.screen {
    background: linear-gradient(90deg, #820024, #c82756);
    position: relative;
    height: 558px;
    width: 360px;
    box-shadow: 0px 0px 24px #242424;
}

.screen__content {
    z-index: 1; 
    position: relative;
    height: 100%;
}
.screen__content .logo-img{
   /*  padding: 13px 0 0 11px; */
   padding: 8px 0 0 8px;
    width: 155px;
    height: 50px;
}
.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 520px;
    width: 520px;
    background: #fff;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: #820024;
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(270deg, #820024, #894054);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: #820024;
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

.login {
    width: 320px;
    padding: 30px;
    padding-top: 40px !important;
}
.login__field {
    padding: 15px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 38px;
    left:10px;
    color: #820024;
}
.login-close {
    padding: 5px 10px;
    float: right
}
.login-close i{
    color:#fff;
    font-size: 30px;
}
.login__input {
    border: none;
    border-bottom: 2px solid #d1d1d4;
    background: none;
    padding: 15px;
    padding-left: 35px;
    font-weight: 700;
    width: 85%;
    transition: 0.2s;
    border-radius: 25px;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
    outline: none;
    border-bottom-color: #820024;
}
.login__submit {
    background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #d4d3e8;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 100%;
    color: #820024;
    box-shadow: 0px 2px 2px #242424;
    cursor: pointer;
    transition: 0.2s;
}
.login__submit:active,
.login__submit:focus,
.login__submit:hover {
    border-color: #820024;
    outline: none;
    color: #820024;
}

.button__icon {
    font-size: 24px;
    margin-left: auto;
    color: #820024;
}

.button__text_forgot{
    color: #fff !important;
    float: right;
    margin-top: 10px;
}
.button__text_forgot span{
    margin-right: 7px;
}
.captcha-input{
	padding-top:0px !important;
}

.login-captcha .reset-icon {
    position: absolute;
    top: 4px;
    right: 55px;
}

.mask {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    bottom: -2px;
}
.mask img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    float: left;
}
#dashboard{
    background: #EBEEFF;
    /* background-image: linear-gradient(#ffffff, #f1f1f1); */
    padding-top: 75px;
}
.inner #dashboard{
	
    height:100%;
}
#bill-dashboard{
    padding-top: 60px !important;
}
.pw-card {
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    border-radius: 8px;
}
.pw-card small {
    color: #AFAEB1;
    font-weight: 600;
}
.pw-card h6,.newcard h6 {
    color: var(--theme);
    font-family: 'gilroyextrabold';
}
.pw-card h3, .pw-card h5, .pw-card h4 {
    font-family: 'gilroyextrabold';
}
 .pw-new-card{
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto !imporatnt;
    margin: 0 auto;
}
.pw-new-card-box{
    background: #fff;
    box-shadow: 0px 10px 9px 5px rgb(0 0 0 / 28%);
    -webkit-box-shadow: 0px 10px 9px 5px rgb(0 0 0 / 28%);
    -moz-box-shadow:0px 10px 9px 5px rgb(0 0 0 / 28%);
    border-radius: 8px;
}
.pw-new-card .small-new{
    /* color: #212529; */
     font-weight: 600;
     color: var(--theme);
}
.rs{
    vertical-align: baseline;
    margin-right: 4px;
    width: 12px !important;}
    .rs1{
    vertical-align: middle;

    width: 25px !important;}

.h3-size{
font-size: 1.3rem;
}
.inner-head {
    font-family: 'gilroyextrabold';
    text-align: center;
}

footer.home-footer,footer {
    background: #1D2531 ;
    height: 30px;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 7;
}
footer p {
    font-size: 12px;
}


/*=================Filter Sidebar Modal==================*/
.pt-filter .modal .modal-dialog-aside{
    width: 350px;
    max-width:80%; height: 100%; margin:0;
    transform: translate(0); transition: transform .2s;
}
.pt-filter .modal .modal-dialog-aside .modal-content{  height: inherit; border:0; border-radius: 0;}
.pt-filter .modal .modal-dialog-aside .modal-content .modal-body{ overflow-y: auto }
.pt-filter .modal.fixed-left .modal-dialog-aside{ margin-left:auto;  transform: translateX(100%); }
.pt-filter .modal.fixed-right .modal-dialog-aside{ margin-right:auto; transform: translateX(-100%); }
.pt-filter .modal.show .modal-dialog-aside{ transform: translateX(0);  }
/*=================Filter Sidebar Modal ends==================*/

.tabnavs {
    padding-left: 0;
}
.tabnavs li {
    list-style: none;
    padding: 0;
}
.tabnavs li a {
    display: block;
    padding: 5px 15px;
    margin-bottom: 2px;
    background: #f1f1f1;
    color: #212529;
    text-decoration: none;
}
.tabnavs li a:hover {
    font-weight: bold;
}
.tabnavs li a.active {
    background: var(--theme);
    color: #fff;
    font-weight: bold;
}
.breadcrumb-item {
    font-size: 14px;
}
.breadcrumb-item a {
    color: #212522;
}

/* the slides */
 .slick-slide {
   margin-left:27px;
 }
 /* the parent */
 .slick-list {
   margin-left:-27px;
 }
 .info {
     display: -webkit-flex;
     display: -ms-flex;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 15px;
     height: 15px;
     border: 1px solid #009688;
     border-radius: 50%;
     margin-left: auto;

 }
 info img {
     display: block;
     width: 100%;
 }

 .pw-card .dropdown-menu {
     width: 318px;
     height: 100px;
     overflow: auto;
     font-size: 12px;
     background: #212529;
 }
  .pw-card .dropdown-menu .dropdown-item {
      font-size: 12px;
  }

#myTab{
    position: relative;
    height: 38px;
    overflow: hidden;
}
.nav-tabs{
    border-bottom: 3px solid #222d3b;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}

#myTab .nav-link.active,#v-pills-tab .nav-link.active {
    color: #ffffff;
    background: #222d3b;
}
#myTab .nav-link.active,#v-pills-tab .nav-link.active {
    font-weight: bold;
}
#myTab .nav-link {
    border-color: #e9ecef #e9ecef #dee2e6;
}
#myTab .nav-link,#v-pills-tab .nav-link{
    color: #000;
}
#v-pills-tab{
	width:20%;
}
#v-pills-tabContent{
	width:100%;
}
#v-pills-tab .nav-link{
    background: #fff;
    margin-bottom:  2px;
    border-radius:8px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
 .dropdown-menu .dropdown-item:hover,.dropdown-menu .dropdown-item:focus{
          color:#000 !important;
        }
        .pt-bg-1{
           background: #ddd;
        }
        
.wrap-text {
	white-space: normal; /* or 'wrap' */
	text-align: left; /* or 'justify' */
}        
/* custom new dashboad style */
div.logo.inner{
    padding-right: 1%;
}
/*.sidebar .sidebar-header{
    margin-bottom: 1.5rem !important;
    margin-top: 1.2rem !important;
}*/
.custom-loader{
    	position: fixed;
	    width: 100%;
	    height: 100%;
		background-color:rgba(240,240,240,0.5);
	    z-index: 999;
	    overflow: hidden !important;
    	right: 0px;
	}
	.ml-loader {
		position:absolute;
		top: 250px;
	    left: 50%;
	    transform: translate(-50%,-50%);
	}
	.ml-loader div {
  -webkit-transform-origin: 32px 32px;
  -ms-transform-origin: 32px 32px;
  transform-origin: 32px 32px;
  -webkit-animation: 1.2s opaque ease-in-out infinite both;
  animation: 1.2s opaque ease-in-out infinite both;
}

.ml-loader div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  width: 5px;
  height: 18px;
  border-radius: 10px;
  background-color: #820024;
}

.ml-loader div:nth-child(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.ml-loader div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ml-loader div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ml-loader div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ml-loader div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ml-loader div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.ml-loader div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.ml-loader div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.ml-loader div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.ml-loader div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.ml-loader div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.ml-loader div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.ml-loader div:nth-child(13) {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@keyframes opaque {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.1;
  }
}
@media all  and (max-width: 2560){
 #dashboard-button{
    right: 30% !important;
    bottom: 31% !important;
 }
}
@media all  and (max-width: 1452px){
 #dashboard-button{
    right: 10% !important;
 }
}
@media only screen and (max-width: 1399px) {
    .h3-size{
        font-size: 1.1rem;
    }
    #dashboard-button .pulse-button {
      width: 85px !important;
    height: 85px !important;
  }

}
@media all  and (max-width: 1240px){
  #dashboard-button {
    right: 8% !important;
}
}
@media all  and (max-width: 1173px){
   #dashboard-button {
    right: 13% !important;
}
@media all  and (max-width: 1147px){
   #dashboard-button {
    right: 11% !important;
}
}
@media all  and (max-width: 1106px){
 
}

@media all  and (max-width: 1010px){

}

@media all  and (max-width: 992px){
  

}
@media all  and (max-width: 900px) {
   #dashboard-button {
    bottom: 28% !important;
}

}
@media all  and (max-width: 767px){
   #top {
        height: auto !important;
    }
    #dashboard-button {
    right: 0% !important;
    bottom: 30% !important;
}
    #dashboard-button .pulse-button {
       width: 60px !important;
       height: 60px !important;
      top: 50%;
      left: 50%;
      font-size: 1.3em;
    }
}
@media all  and (max-width: 640px) {
   
}
@media all  and (max-width: 575px){
  
}

@media all  and (max-width: 540px){

   #dashboard-button .pulse-button {
    width: 45px !important;
    height: 45px !important;
    top: 60%;
    left: 50%;
    margin-left: -23px;
    margin-top: -43px;
    }
}
@media all  and (max-width: 460px){
    #dashboard-button {
    bottom: 30% !important;
}
}

@media all  and (max-width: 390px){
    #dashboard-button {
    bottom: 45% !important;
}

}
