.pos__location {
    position: fixed;
    z-index: 9999;
    width: 40%;
    left: 30%;
    top: 15px;
    background: white;
    color: var(--main);
    padding: 3vw 6vw;
    border-radius: 25px;
}

.content__location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content_input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.content_title h4 {
    font-size: 2.5rem;
    font-family: 'Luxia';
    margin-bottom: 20px;
}

.content_input input {
    width: 100%;
}

button#save_address {
    background: var(--main);
    color: white;
    padding: 15px 50px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}


@media(max-width: 525px){
    .pos__location {    
        width: 90%;
        left: 5%;        
        border-radius: 15px;
    }

    .content__location {   
        height: 85vh;
    }

    .content_title h4 {
    font-size: 2rem;
   
    }
}