.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.object-cover {
    object-fit: cover;
}

.h-96 {
    height: 24rem;
}

.h-32 {
    height: 8rem;
}

.validation_text {
    color: red;
    font-size: 12px;
}

.rounded-xl {
    border-radius: 15px;
}

.border-red-500 {
    border: 1px solid red !important;
}

.border-green-500 {
    border: 1px solid green !important;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.h-40 {
    height: 10rem;
}


/* ----------App style menu--------- */

.mobile_menu {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: #3b82d8;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mobile_menu p {
    color: white;
    font-size: 14px;
}

.icon_menu {
    font-size: 25px;
}

.links {
    display: inline;
    width: 20%;
}

.tile {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.search {
    background: #FF8C32;
    padding: 8px;
    border-radius: 50%;
    font-size: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}


/* -------search box------------ */

.search_bar {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.747);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.search_open {
    visibility: visible;
    opacity: 1;
}

.close_btn {
    font-size: 24px;
}

@media screen and (max-width: 920px) {
    .location-area {
        margin-top: -40px !important;
    }
}