:root{
    --poppins-font:"Poppins",'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-cl: #06065d;
}
*{
    margin: 0px;
    box-sizing: border-box;
}
body{
    font-family: var(--poppins-font); 
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #87ceeb, #f0f4f8);
    height: 100vh;
}

.title h1{
    font-size: 28px;
    padding: 8px 0px;
    text-align: center;
    margin-top: 8px;
    z-index: 1;
    font-weight: 700;
}

.search-box{
    padding: 16px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    z-index: 1;
}
.search-Btn{
    height: 50px;
}
.search-Btn img {
    padding: 8px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .1);
}

    .search-box input{
        min-height: 50px;
        font-size: 16px;
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .1);
    padding: 10px 20px;
    /* border-radius: 30px; */
    width: 250px;
    height: 40px;
    border: none;
    outline: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: #fff;
    
}
.search-box input::placeholder{
    padding: 8px 8px;
    font-size: 14px;
    z-index: -1;
}
.suggestions {
    position: relative;
}
#suggestions:first-child{
    padding-top: 30px;
}
#suggestions {
    background-color: #fff;
    position:absolute;
    top: -5px;
    right:50%;
    width: 300px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .1);
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 0;
    list-style: none;
    z-index: -1;
    display: block;
}
#suggestions li {
    padding: 8px 25px;
}
#suggestions li:hover {
    cursor: pointer;
    background-color: #ddd;
}

#suggestions li.active{
    background-color: #ddd;
}

@keyframes fadeUpse {
    0%{
        opacity: 0.1;
        transform: translateY(180px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeUp {
    0%{
        opacity: 0;
        transform: translateY(5px);
    }
    50%{
        opacity: 0.2;
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.card-box{
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .3);
    border-radius: 4px;
    opacity: 0;
    animation: fadeUp 1.5s ease-in forwards;
    
}
.city{
    font-size: 24px;
    padding: 16px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    flex-wrap: wrap;
    color: var(--font-cl);
}
.city img {
    filter: invert(7%) sepia(93%) saturate(7499%) hue-rotate(242deg) brightness(48%) contrast(101%);
}
.status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.status img {
    width: 200px;
    height: 200px;
}
.status p {
    font-size: 24px;
    font-family: var(--poppins-font);
}
.status-text {
    color:var(--font-cl);
    font-weight: 600;
}
.degree {
    font-weight: 500;
}
.icon{
    width: 24px;
    height: 24px;
}
.others {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.others div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0px;
    font-size: 18px;
    font-family: var(--poppins-font);
    font-weight: 500;
}