/*NAV*/
div.req {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    color: white;
    background-color: white;
    pointer-events: none;
    -webkit-transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    overflow: hidden;
    padding:20px;
}
div.req-hidden {
    transform: translate(0, -100%);
}
div.req-active {
    pointer-events: initial;
}
/*CLOSER*/
a.req-closer {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 2003;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    width: 23px; 
    -webkit-transition: all .2s;
    transition: all .2s;
}
a.req-closer-hidden {
    display: none;
}

a.req-closer .menu-icon-line {
    display: block;
    height: 2px;
    width: 100%;
    /*background-color: red;*/
    margin-bottom: 4px;
    border-radius: 2px;
    -webkit-transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
    transform: translateZ(0);
}

a.req-closer:hover > .menu-icon-line {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

a.req-closer-active > .menu-icon-line-1, a.req-closer-active:hover > .menu-icon-line-1 {
    -webkit-transform: translateY(6px) rotateZ(-135deg);
    transform: translateY(6px) rotateZ(-135deg);
    background-color: black;
}

a.req-closer-active > .menu-icon-line-2, a.req-closer-active:hover > .menu-icon-line-2 {
    opacity: 0;
    background-color: black;
}

a.req-closer-active > .menu-icon-line-3, a.req-closer-active:hover > .menu-icon-line-3 {
    -webkit-transform: translateY(-6px) rotateZ(135deg);
    transform: translateY(-6px) rotateZ(135deg);
    background-color: black;
}





div.req div.request-container {
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
} 
div.req div.request-container.hidden {
    display: none;
} 
div.req div.request-container div.form.hidden {
    display: none;
} 

div.req div.request-container h2 {
    color: black;
    padding-bottom: 5px;
    margin:0;
}
div.req div.request-container h1 {
    color: black;
    padding-bottom: 40px;
    margin:0;
}
div.req label {
    color: black;
}
div.req div.request-message {
    opacity: 1;
}
div.req div.request-message.hidden {
    display: none;
}
div.req div.request-message h1 {
    font-size: 30px;
}
div.req div.request-message h2 {
    font-size: 18px;
}


