/* Notification */
#notification{
    position: fixed;
    height: auto;
    width: 100vw;
    padding: 10px 0px;
    /* display: block; */
    display: none;
    /* background: red; */
    top: 0;
    z-index: 30;
}
#notification_text{
    position: relative;
    height: auto;
    background: white;
    color: green;
    text-align: center;
    padding: 10px 0px;
    box-shadow: 0px 0px 10px 0px blue;
    margin: auto;
    margin-top: 5vmin;
    width: 50vmin;
    min-width: 300px;
}


/* Modal */
#modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    min-height: 100vh;
    width: 100%;
    /* display: block; */
    display: none;
    justify-content: center;
    background: rgba(0,0,0,.1);
    background: rgba(0,0,0,.7);
    background: rgba(52, 74, 61, .9);
    z-index: 40;
}
#modal #re{
    position: relative;
    height: auto;
    /* min-height: auto; */
    max-height: 100vh;
    /* width: auto; */
    /* min-width: auto; */

    background: grey;
    /* height: 20vh;
    width: 20vh; */
    margin: auto;
    padding: 3vh 0px;
    overflow-y: auto;
    color: white;
}

/* Modal contents */
#modal #modal_close{
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    /* background: ; */
    border-radius: 50%;
    right: 25px;
    top: 10px;
    /* text-align: center; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
#modal #modal_close:hover{
    background: rgba(0,0,0,.2);
    color: white;
}
#modal #modal_content{
    position: relative;
    /* background: white; */
    /* border-radius: 10px; */
    height: auto;
    min-height: 20vh;
    width: 80vw;
    min-width:300px;
    overflow: hidden;
    margin: auto;
}

/* CONTENT WRAP */
.container_wrap {
    position: relative;
    width: 90%;
    height: auto;
    margin: auto;
}

#account_info{
    position: relative;
    height: auto;
    width: 100%;
    display: none;

    height: 70vh;
    background: ;
}



/* BODY STYLE */
#body_user{
    background-size: 100%;
    background-position: center 0;
    background-repeat: no-repeat;
}