.side-app{
    position: relative;
}
#overlay,#overlay-popup{
    position: fixed; 
    /* display: none; */
    width: calc(100% - 250px); 
    height: 100%; 
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2; 
    /* cursor: pointer;  */
}
.google-search-modal{
    position: relative;
    z-index: 2;
    width: 45%;
    height: fit-content;
    background: #fff;
    /* padding: 50px 20px; */
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-family: "Poppins", sans-serif;
}

.login-with-google{
    background-color: #0d6efd;
    display: block;
    /* margin: 30px auto 0 auto; */
    border: 2px solid #0d6efd;
    width: fit-content;
}
.google-search-modal p{
    font-size: 18px;
    font-weight: 600;
}
.login-with-google:hover{
    background-color: #fff !important;
}
.close-google-modal{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}
.ellipsis-p{
    width: 290px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
@media screen and (max-width: 770px) {
	#overlay,#overlay-popup{
        position: fixed; 
        width: 100%; 
    }
    .google-search-modal{
        width: 70%;
        transform: translate(-50%, -30%);
    }
}
@media screen and (max-width: 550px) {
    .google-search-modal{
        width: 95%;
    }
}