*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
    border: none;
    outline: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}
html,body{
    font-size: 1rem;
}
body{
    height: 85vh;
}
#wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
    height: calc(88vh - 10vh);
    margin: 2% 0%;
}
#test_content{  
    display: flex;
    column-gap: 3%;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 95%;
    max-width: 1000px;
    padding:5% 5%;
    box-shadow: rgb a(124, 116, 116, 0.4) 0px 7px 29px 0px;
    overflow: hidden;
}
.back_image {
    box-shadow: rgba(124, 116, 116, 0.2) 0px 7px 29px 0px;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: -1;
    background-size: cover;
    background-position: 100%;
}

/* Gender */
#gender{
    display: flex;
    flex-direction: column;
    row-gap: 5%;
    height: 100%;
    width: 100%;
}
#gender h1{
    text-shadow: 2px 2px #e5e5e5;
}
#gender_container{
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2%;
}
.gender{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1%;
    height: 100%;
    width: 49%;
    max-width: 400px;
    padding: 3% 0%;
    border-radius: .7rem;
}
#female.gender{
    border: 1px solid rgba(43, 0, 33, 0.3);
    background: rgba(240, 63, 201, 0.3);
    box-shadow: rgba(172, 71, 240, 0.2) 0px 7px 29px 0px;
}
#male.gender{
    border: 1px solid rgba(6, 63, 90, 0.3);
    background: rgba(95, 183, 255, 0.932);
    box-shadow: rgba(1, 5, 196, 0.2) 0px 7px 29px 0px;
}
#female.gender img{
    
    margin-left: -3%;
}
.gender img{
    width: auto;
    height: 100%;
    max-height: 40vh;
    
}
.gender button{
    cursor: pointer;
    border-radius: .7rem;
    padding: 0.6rem;
    color:white;
    font-size: 1.2rem;
    font-weight: 500;
    width: 70%;
    height: auto;
}
#female.gender button{
    background-color: blueviolet;
}
#male.gender button{
    background-color: rgb(4, 77, 233);
}
#female.gender button:hover{
    background-color: rgb(98, 8, 184);
}
#male.gender button:hover{
    background-color: rgb(2, 50, 155);
}

/* Questions */
#questions{
    height: 100%;
    width: 100%;
}
#question{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}
#question_text{
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
    width: 100%;
    height: auto;
    padding: 5%;
    border-radius: 20px;
    box-shadow: rgba(124, 116, 116, 0.8) 0px 7px 29px 0px;
    font-size: 80%;
}
#options{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 75%;
    max-height: 293px;
    width: 100%;
    row-gap: 1rem;
}
.option{
    width: auto;
    min-width: 75%;
    max-width: 75%;
    padding: 5% 4%;
    height:auto;
    max-height: 20vh;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: rgba(124, 116, 116, 0.2) 0px 7px 29px 0px;
    font-weight:bold ;
    z-index: 3;
    background-color: white;
    border-radius: 20px;
}
.option:hover{
    cursor: pointer;
    background-color: rgb(245, 245, 245);
}

@media only screen and (min-width: 600px) {
    /* For desktop only */
    #question_text{
        display: flex;
        align-items: center;
        justify-content: center;
        align-items: center;
        background-color: aliceblue;
        width: 100%;
        height: auto;
        padding: 5%;
        border-radius: 20px;
        box-shadow: rgba(124, 116, 116, 0.8) 0px 7px 29px 0px;
        font-size: 100%;
    }
    .option{
        height:auto;
        width: auto;
        min-width: 75%;
        max-width: 75%;
        max-height: 20vh;
        padding: 2% 4%;
    }
}

/* Status Bar */
#status{
    height: 100%;
    max-width: 5%;
}
#status_bar{
    height: 90%;
    width: 100%;
    border-radius: 10px;
    margin: 10px 0px;
    box-shadow: rgba(124, 116, 116, 0.2) 0px 7px 29px 0px;
    
}
.status_line_start{
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(223, 35, 35);
}
.status_line_finish{
    border-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgb(223, 35, 35);
}
.status_line_no_radius{
    border-radius: 0px;
    background-color: rgb(223, 35, 35);
}
.arrow{
    cursor: pointer;
    color:rgb(99, 99, 99);
}
.arrow:hover{
    cursor: pointer;
    color:rgb(0, 0, 0);
}
.disable{
    color: rgb(243, 243, 243) !important;
    pointer-events:none;
}

/* Result */
#result{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0%;
    row-gap: 1.5rem;
}
.result_image{
    width: auto;
    height: 80%;
    max-width: 371px;

}
#whatsapp_button img{
    height: auto;
    max-height: 50%;
    max-width: 90%;
}

/* FOR MOBILE */


@media only screen and (max-width: 600px) {

    /* Containers */
    #wrapper{
        height: 85vh;
    }
    #test_content{  
        padding:15% 5%;
    }

    /* Question */
    #question_text{
        font-size: 1.3rem;
        box-shadow: rgb(124 116 116 / 50%) 0px 7px 29px 0px;
    }
    .option{
        font-size: 1.1rem;
        min-width: 85%;
        max-width: 85%;
        padding: 7% 4%;
        font-size: 1.18rem;
        box-shadow: rgb(124 116 116 / 50%) 0px 7px 29px 0px;
    }

    /* Gender */
    #gender {
        row-gap: 3%;
    }
    #gender h1{
        font-size: 1.4rem;
    }
    #gender_container{
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 7%;
    }
    .gender{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 50%;
        width: 80%;
        max-width: 400px;
        padding: 1% 0%;
        border-radius: .7rem;
    }
    .gender img{    
        width: auto;
        height: 100%;
        max-height: 25vh;
    }
    .gender button {
        position: absolute;
        bottom: 1%;
    }

    /* Result */
    .result_image{
        height:200px;
        max-width: 100%;
    }
}
