* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

body {
    background-color: #e4e4e4;
}

.header {
    width: 100%;
    height: 65px;
    background-color: #6BA652;
    display: flex;
    position: relative;
    z-index: 10;
}

.logo {
    width: 12rem;
    height: 50px;
    margin-left: 2rem;
    margin-top: 15px;
    background-color: none;
    color:#f9f9f9;
}

.wrapper {
    height: 100vh;
    width: 100%;
}

.mainContainer {
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
}

.loading {
    background-color: rgba(0, 0, 0, 0.753);
    color: #f9f9f9;
    height: 100vh;
    width: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.loading h1 {
    display: flex;
    justify-content: center;
    padding-top: 10%;

}

.spinner {
    height: 65px;
    width: 65px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20%;
}
.current{
    width: 250px;
}
.name{
    text-align: center !important;
    padding-bottom: 10px;
}
.choises{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin:10px;
}
.choise{
    width: 180px;
    height: 180px;
    margin:10px;
}
.choisesT{
    text-align: center;
    width: 50px;
    height: 50px;
}
.optionsT{
    text-align: center;
    display: flex;
    justify-content: space-around;
}
.optionsT td,tr{
    padding: 5px;
}
.option{
    width: 70px;
    padding-top: 20px;
}
.option_btn{
    background: none !important;
    color: inherit;
    border: none !important;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: none;
}
.panel{
    background-color: #fffbfb !important;
    padding: 10px;
    border-radius: 15px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}
.gps-btn{
    box-shadow: inset 0px 1px 0px 0px #9acc85;
    background: linear-gradient(to bottom, #74ad5a 5%, #68a54b 100%);
    background-color: #6BA652;
    border: 1px solid #3b6e22;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 12px;
    text-decoration: none;
    margin-top: 0;
}

.selector{
    border: none !important;
    background: none;
    cursor: pointer;
}
.selector:hover {
    border: none;
}
.location{
    padding-top: 15px;
    text-align: center;
}

/* A media query. It is used to apply styles to the page when the page is viewed on a device with a
screen width of 500px or less. */
@media all and (max-width: 500px) {
    .mainContainer{
    margin-top: 2vh;
    max-height: 100vh;
    }
   
    .buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-self: center;
    }

    .btn {
        width: 70%;
        justify-content: center;
        align-content: center;
        padding-bottom: 20px;
    }
    .current{
        width: 150px;
    }
    .choise{
        width: 80px;
        height: 80px;
    }
    .choises{
        padding-bottom: 10px;
    }
    .options{
        position: relative;
        bottom: 15px;
        width: 100vw;
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
        background:none;
        border: none;
    }
    .gps-btn{
        padding-bottom: 10px;
    }
    .option{
        width:50px;
    }
    .panel{
        height: 90vh;
    }
}

/* A media query. It is used to apply styles to the page when the page is viewed on a device with a
screen width of 380px or less. */
@media all and(max-width: 380px){
    .mainContainer {
            margin-top: 1px;
            max-height: 100vh;
        }

        .panel{
            height: 90vh;
        }
}