         
         @font-face {
            font-family: 'Inter';
            src: url('Inter-Regular.otf') format('opentype');
            font-weight: 300; /* Adjust the font-weight as needed */
            font-style: normal;
        }

        body {
            font-family: 'Inter Light', sans-serif;
           
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction:column;

        }
.homepage-img {
    margin-top:20px;
    width: 63%;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 81%;
   
}

        .search-container {
            text-align: center;
            /* max-width: 600px; */
            /* margin-bottom: 165px; */
            width: 40%;
            margin-top: 99px;
        }


                .search-box {
            position: relative;
            width: 100%;
            padding: 5px 6px 5px 6px;
            border: 1px solid gray;
            border-radius: 18px;
            color: rgb(32, 41, 69);
            background: transparent;
            border-radius: 2rem;
            border: 1px solid rgb(222, 224, 247);
            transition: border 0.2s ease 0s;
            font-size: 16px;
            display: flex;
        }
        .search-field {
            outline: none;
            width: 100%;
            padding: 10px;
            border: none;
            border:none;
            font-size: 16px;
            color: #384778;
            background-color: transparent;
        }
.search-field:focus {
    outline: none; /* Adjust the color and width as needed */
    background-color:transparent;
    box-shadow: none; /* Optional: Add a subtle box shadow for better visibility */
}
        .btn {
            outline: none;
            padding: 0px 15px;
            font-size: 16px;
            border-radius: 2rem;
            border: none;
            background: rgb(242, 243, 255);
            color: #384778;
            font-family: 'Inter';
            text-decoration: none;
        }
    .btn:focus {
    outline: none; /* Adjust the color and width as needed */
    background-color:transparent;
    box-shadow: none; /* Optional: Add a subtle box shadow for better visibility */
}    

 *::selection {
    background-color: transparent; /* Set to whatever background color you want for selected text */
}

select {
  background-color: transparent;
}
select:focus {
  background-color: transparent;
}

.bar-left {
    position: relative;
    transition: width 50s;
    height: 38px;
    background: rgb(230 232 248);
    border-radius: 2rem 0 0 2rem;
    overflow: hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size: 14px;
    /* border: 3px solid white; */
}


        
.bar-left:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 39px 0;
    border-color: transparent #384778 transparent transparent;
    right: 0;
    top: 0;
    position: absolute;
}

.bg {
    z-index:-1;
    position: absolute !important;
    
     width: 0%; /* Set the initial width to 0% */
}


/* Make the .bg selector more specific to override .bar-left:after */
.bar-left.bg:after {
border-width: 0px;
}

.bar-left.bg.animate-width {
    width: 90%; /* Set the final width after animation */
}
.bar-right {
    position: relative;
    width: 30%;
    height: 39px;
    background: rgb(248 248 255);
    border-radius: 2rem;
    overflow: hidden;
    border-radius: 0 2rem 2rem 0;
}     

.bar-right:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 38px 12px 0 0;
    border-color: #384778 transparent transparent transparent;
    left: 0;
    top: 0;
    position: absolute;
}


.green-tik {
    background-image: url('/img/green-tik.svg');
    background-size: cover; /* Adjust as needed */
    background-position: center; /* Adjust as needed */
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
    
    
.red-tik {
    background-image: url('/img/red-tik.svg');
    background-size: cover; /* Adjust as needed */
    background-position: center; /* Adjust as needed */
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
    
.item {
    display:flex;
    align-items:center;
    margin-bottom:8px
}

.item span {
    color: #575151;
    font-size:14px;
}
.btn-sm {font-size: 14px;padding: 4px 11px 4px 11px;background-color: #E06666;color: white;width: fit-content;/* text-decoration: none; */}




@media only screen and (max-width: 600px) {
    /* Add your mobile-specific styles here */
    
            .search-container {
            text-align: center;
            /* max-width: 600px; */
            /* margin-bottom: 165px; */
            width: 82%;
            margin-top: 36px;
        }
        
        .homepage-img {
    margin-top: 182px;
    width: 139%;
    transform: rotate(300deg);
}

.bar-left {
    font-size:8px;
    font-weight:bold;
}
}