/* Grid container */
.grid-container {
	display: grid;
	grid-gap: 25px 40px; /* Space between grid items */
    grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
}

/* Styling for grid items */
.grid-item {
    background-color: #edf4fc;
    border-radius: 12px;
    font-size: 16px;
}
body {
	font-family: "Raleway", sans-serif;
	margin: 0;
	padding: 0px;
}
.logo {
    width: 100%;
    height: auto;
    max-width: 150px;
}
.title-wrapper{
	background: #1d34a4;
}
.footer-wrapper {
    background: #eef4fb;
    margin: 30px auto;
}
.footer-wrapper p {
    margin: 0px auto;
    max-width: 1000px;
}
.title-wrapper h1 {
    color: #fff;
    line-height: 1.2;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}
h1, h2, h3, h4 {
    margin: 0 auto 2px;
}
.boxwrapper {
  background: #EEF4FB url(../../Images/PNLALLImages/img/asta-logo2.svg) no-repeat left 10px bottom 10px;
  background-size: calc(50px + 1vw);
  padding: 10px;
  border-radius: 10px;
}
/* Styling for the sliding container */
.sliding-section-container {
	position: fixed;
	top: 0px; /* Adjust the vertical position as needed */
	left: -155px; /* Start hidden off-screen */
	width: 125px;
	background-color: #EEF4FB;
	border: 1px solid #EEF4FB;
	padding: 15px;
	height: 100%; /* Full height */<!-- 
	box-shadow: 2px 0 5px rgba(0,0,0,0.1); -->
	transition: left 0.4s ease;
    z-index: 99;
}

/* Arrow attached to the sliding container */
.arrow-container {
	background-color: #1d34a4;
	color: white;
	width: 25px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
}

/* Styling for the arrow */
.toggle-arrow {
	font-size: 16px;
	transition: transform 0.3s ease; /* Smooth rotation */
    transform: scaleY(1.5);
}
.arrow-down {
	transform: rotate(360deg); /* Rotate the arrow when open */
    transform: scaleY(1.5);
}
.reports *{
    color: #333;
}
.reports .row1 .row{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.comman {
    padding: 10px;
}
.title-wrapper {
  background: #1d34a4 url(../../Images/PNLALLImages/img/asta-logo.svg) no-repeat right 30px top 16px;
  background-size: 70px;
 margin-bottom:10px;
  padding: 15px;
}
.reports{
    padding: 0 50px;
}
.reports .row1 .row-3 .col.colm2 {
    width: 100%;
}
.reports .row1 .row-3 .col img {
    max-width: 80px;
    width: 100%;
    height: auto;
}
.reports .row1 .row-3 .col.colm3 img {
    max-width: 12px;
}
.location {
    display: flex;
    gap: 3px;
    width: max-content;
    font-style: italic;
    font-weight: 700;
}
.reports .row3 {
    display: flex;
    justify-content: flex-end;
}
.income {
    font-size: calc(3vw + 1vw);
    line-height: 1!important;
    font-weight: 700;
    color: #ED1C24;
    font-family: arial;
    margin: 15px 0 25px;
}
.income.plus {
    color: #10B062;
}
.rnl-link {
    display: flex;
    gap: 5px;
    align-items: center;
}
.boxinner .inner div {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}
body a {
    text-decoration: none;
}
.reports .rnl-link a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}
.reports h4 {
    color: #1d34a4;
}
.colfilters p {
    margin-bottom: 7px;
    font-weight: 700;
}
.colfilters *{
    font-weight: 600;
}
input[type="checkbox"]{
    margin-bottom: 15px;
    height: 14px;
    width: 14px;
	border: 1px solid #D9D9D9;
}
input[type="radio"]{
    height: 14px;
    width: 14px;
	border: 1px solid #D9D9D9;
}
@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        box-shadow: none
    }

    100% {
        opacity: 1
    }
}

.blink {
    animation: blink 1s infinite
}
.colfilters{
    background: #EEF4FB;
    border-radius: 10px;
    height: 96%;
}
.colfilters .colinner {
    margin: 0 0 10px;
}

        /* Style for the slider track */
        .slider-track {
            height: 5px;
            background-color: #83D5F7;
            position: relative;
            margin-top: 20px;
        }

        /* Style for the range between handles */
        .range {
            position: absolute;
            height: 100%;
            background-color: #1C97D4;
        }

        /* Style for the handles */
        input[type=range] {
            position: absolute;
            -webkit-appearance: none;
            width: 100%;
            pointer-events: none;
            background: none;
    margin-top: -7px;
        }

        input[type=range]::-webkit-slider-thumb {
            pointer-events: all;
            width: 20px;
            height: 20px;
            background: #ffffff;
			border: 2px solid #D9D9D9;
            border-radius: 50%;
            cursor: pointer;
            -webkit-appearance: none;
        }

        input[type=range]::-moz-range-thumb {
            pointer-events: all;
            width: 20px;
            height: 20px;
            background: #ffffff;
			border: 2px solid #D9D9D9;
            border-radius: 50%;
            cursor: pointer;
        }

        /* Display of selected range values */
        .value-display {
    margin-top: 20px;
    font-size: 18px;
    display: flex;
    gap: 10px;
}
		
.value-display .value {
    background: #ffffff url(../../Images/PNLALLImages/img/rupee.svg) no-repeat 5px;
    background-size: 10px;
    padding: 3px 3px 3px 18px;
    border-radius: 5px;
    font-family: arial;
    min-width: -webkit-fill-available;
    display: inline-block;
    text-align: left;
}
.btn-wrapper button {
    background: #1d34a4;
    color: #fff;
    padding: 12px 20px;
    box-shadow: none;
    border: none;
    border-radius: 100px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}
.btn-wrapper button:hover {
    background: #ffcc06	;
    color: #1d34a4;
}
.colinner1 br{
    display: none;
}


@media (min-width: 769px) {
.hide-d,	
.sliding-section-container {
	display: none; /* Hide the section on larger screens */
}
.reports .innerwrapper {
    display: flex;
	gap: 50px;
}
.reports .innerwrapper .sidebar{
    width: 20vw;
}
.reports .innerwrapper .main-content{
    width: 80vw;
}
.colfilters{
    padding: 20px;
}


}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reports .innerwrapper {
    gap: 20px;
}
.grid-container {
    grid-gap: 20px;
}

}



@media (max-width: 1000px) {
.title-wrapper {
    background: #1d34a4 url(../../Images/PNLALLImages/img/asta-logo.svg) no-repeat right 30px center;
    background-size: 70px;
}
.title-wrapper h1 {
    font-size: 30px;
}

}




@media (max-width: 1100px) {
body .value-display {
    display: grid!important;
}
.colinner1 br{
    display: block;
}


}




@media (max-width: 768px) {
.row-2 .col,
.row-3 .col,
.row-4 .col {
	flex: 1 1 100%;
}	
.reports .reporwrapper .row-3 .col {
    flex: 1 1 50%;
}
.sidebar{
	display: none;
}
.reports {
    padding: 0 20px;
}
.grid-container {
    grid-gap: 10px;
}
.income {
    font-size: 2.2em;
}
.reports * {
    position: relative;
}
.location {
    position: absolute!important;
    right: 0;
}
.reports .reporwrapper .row-3 .col {
    flex: unset;
}
.title-wrapper h1 {
    font-size: 22px;
}

}














/* Optional: Styling for smaller screens */
@media (max-width: 600px) {
	
.grid-item {
    font-size: 14px;
}	
.grid-container {
    grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
}
  .title-wrapper {
    background: #1d34a4 url(../../Images/PNLALLImages/img/asta-logo.svg) no-repeat right 30px center;
    background-size: 70px;
    text-align: left;
    padding-right: 100px;
  }
.reports {
    padding: 0 20px;
}
.income {
    font-size: 2em;
}
.footer-wrapper p {
    font-size: 12px;
}

}