@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');


  
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Nunito Sans", sans-serif;
    /* font-weight: 400; */
    overflow-x: hidden;
    overflow-y: auto;
    /* font-size: 12px */
}

.login-background{
	background-image: url('../img/login-bg.jpeg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.login-background:after{
	content: '';
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgb(0 0 0 / 0%);
	z-index: -1;
}



/*Count style QR */

:root{ --main-color : #3755AE; }
.qr-counter{
    color: var(--main-color);
    font-family: 'Alegreya Sans', sans-serif;
    text-align: center;
    padding: 20px 15px 15px;
    position: relative;
    z-index: 1;
}
.qr-counter:before,
.qr-counter:after{
    content: "";
    background: var(--main-color);
    border-radius: 14px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.qr-counter:after{ 
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    top: 85px;
    left: 5px;
    right: 5px;
    bottom: 5px;
}
.qr-counter .qr-counter-icon{
    color: #fff;
    background-color: var(--main-color);
    font-size: 35px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 0 0 5px #fff;
    transform: rotate(45deg);
}
.qr-counter .qr-counter-icon span{
    transform: rotate(-45deg);
    display: block;
}
.qr-counter .qr-counter-value{
    font-size: 38px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 15px;
    display: block;
}
.qr-counter h3{
    color: #555;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.qr-counter.orange{ --main-color: #fa871c; }
.qr-counter.darkblue{ --main-color: #3755AE; }
.qr-counter.red{ --main-color: #DD4655; }
.qr-counter.blue{ --main-color: #1cb1c2; }
@media screen and (max-width:990px){
    .qr-counter{ margin-bottom: 40px; }
}   
.tdstyle{
    font-size: 18px;
}
.img-center{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}
.mandratory{
    font-size: 14px;
    color: red;
}
.btn-group-xs > .btn, .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}


.floating-label {
    position: absolute;
    left: 50px;  /* Adjust this value according to your layout */
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.3s, font-size 0.3s, opacity 0.3s; /* This line is key */
    opacity: 0.5;
    z-index: 2;  /* Make sure the label is above the input */
    pointer-events: none;  /* Allow clicks to pass through the label */
    background-color: #fff;  /* Set background to white */
    padding: 0 4px;  /* Add a little padding */
}

.floating-label-other {
    position: absolute;
    left: 12px;  /* Adjust this value according to your layout */
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.3s, font-size 0.3s, opacity 0.3s; /* This line is key */
    opacity: 0.5;
    z-index: 2;  /* Make sure the label is above the input */
    pointer-events: none;  /* Allow clicks to pass through the label */
    background-color: #fff;  /* Set background to white */
    padding: 0 4px;  /* Add a little padding */
}



.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label,
.form-control:valid + .floating-label {
    top: 0;
    font-size: 12px;
    opacity: 1;
    z-index: 3;
}

.form-control:focus + .floating-label-other,
.form-control:not(:placeholder-shown) + .floating-label-other,
.form-control:valid + .floating-label-other {
    top: 0;
    font-size: 12px;
    opacity: 1;
    z-index: 3;
}
.input-group-prepend {
    margin-right: -1px;
    background-color: white;
    border-radius: 5px;
}

.card-title {
    font-size: 1.1rem !important;
    font-weight: 600;
}


.nav-link{
    display: flex;
    align-items: baseline;
}
.nav-icon{
    margin-right: 10px !important;
}