.header {
    gap: 2vw;
    padding-left: 5vw;
    box-sizing: border-box;
    height: 80px;
    /* height: 10vh; */
    background-color: #000D44;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: bolder;
    font-size: large;
}

.header_img {
    height: 35px;
    width: 155px
}

.header_img_mobile {
    display: none;
}

.header_option {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
}

.header_option_right {
    width: 20vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    display: none;
}

.header_option p {
    text-align: center;
}

.header_option_div {
    height: 80px;
    width: 150px;
}

.methods {
    box-sizing: border-box;
    cursor: pointer;
    height: 80px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.methods_mobile {
    position: absolute;
    top: 80px;
    right: 0;
    height: auto;
    width: 150px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.tooltip {
    z-index: 1000;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border: solid 1px rgb(77, 77, 77);
    border-radius: 8px;
    color: rgb(77, 77, 77);
    font-size: small;
    background-color: white;
}

.tooltip.hidden  {
    display: none;
}

.tooltip.activate {
    display: flex;
}

/* Media query half desktop */
@media (min-width: 660px) and (max-width: 1100px) {
    .header_option {
        width: 65%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2vw;
    }
}

@media (max-width: 660px) {
    .header {
        gap: 2vw;
        height: 80px;
        /* width: 88vw; */
        padding: 0vw 0vw 0vw 5vw;
        background-color: #000D44;
        color: white;
        display: flex;
        flex-direction: row;
        font-weight: bolder;
        font-size: large;
        justify-content: space-between;
    }

    .header_img {
        display: none;
    }
    
    .header_img_mobile {
        display: block;
        width: 6vw;
        height: auto;
    }

    .loaded_file {
        display: none;
    }

    .header_option {
        width: 70%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    .header_option p{
        /* margin-left: 5vw; */
    }
    
    .methods {
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .methods_mobile {
        position: absolute;
        top: 80px;
        right: 0;
        height: auto;
        width: 100px;
        display: flex;
        flex-direction: column;
        z-index: 1;
    }

    .header_option_div {
        height: 80px;
        width: 100px;
    }
}
