
textarea{
    min-height: 200px;
}

li {
    list-style: none;
}

h1{
    font-size: 1.5em;
}

h2{
    font-size: 1.2em;
}

h3,h4,h5{
    text-transform: capitalize;
    font-size: 1em;
}

label{
    text-transform: capitalize;
}

img {
    width: 100%
}

#login,
.section{
    border: 1px solid #e0e0e1;
    background: #f5f5f5;
    margin: 50px 0;
    padding: 20px;
    border-radius: 5px;
}

#login{
    max-width: 550px;
    margin: 50px auto;
}

#results{
    max-width: 85%;
    margin: 50px auto;
}

.lang-container{
    border: 1px solid #e0e0e1;
    padding: 20px;
    border-radius: 5px;
    margin: 50px 0;
}
.section:empty{
    display: none;
}

.content{
    height: 0;
    position: relative;
    overflow: hidden;
}

.alert{
    height: 100px;
    width: 70%;
    display: block;
    position: fixed;
    left: 15%;
    right: auto;
    margin: 0 auto;
    top: 0;
    z-index: 9;
    line-height: 100px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: arial;
    font-size: 16px;
}

.alert.error{
    border: 1px solid #db2828;
    background-color: #ffe5e5;
    color: #db2828;
}


.alert.success{
    border: 1px solid #75d48b;
    background-color: #eaffef;
    color: #75d48b;
}

.lang-content-wrapper,
.page-wrapper{
    height: 100px;
    position: relative;
    overflow: hidden;
}

.lang-content-wrapper > h2,
.page-wrapper > h3{
    width: 100%;
    padding: 20px;
    cursor: pointer;
    background: #f5f5f5;
    position: relative;
    border: 1px solid #e0e0e1;
}
.lang-content-wrapper > h2:after,
.page-wrapper > h3:after{
    position: absolute;
    right: 40px;
    top: 30px;
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}

.lang-content-wrapper.open > h2:after,
.page-wrapper.open > h3:after{
    transform: rotate(180deg);
}
.lang-content-wrapper.open,
.page-wrapper.open{
    height: auto;
    transition: all ease .5s;
}

#results .submit-btn{
    position: fixed;
    right: 100px;
    top: 0;
    z-index: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #28a745;
    background-image: linear-gradient(-180deg, #34d058 0%, #28a745 90%);
    border: 1px solid rgba(27,31,35,0.2);
}

#results .btn:hover{
    background-color: #269f42;
    background-image: linear-gradient(-180deg, #2fcb53 0%, #269f42 90%);
    background-position: -.5em;
    border-color: rgba(27,31,35,0.5);
}

h4{
    width: auto;
    display: inline-block;
    margin-right: 25px;
    position: relative;
}
h4 + h4:before{
    content: '~';
    position: absolute;
    left: -17px;
    top: 0;
}

.header {
    z-index: 1;
    padding-top: 12px;
    padding-bottom: 12px;
    color: rgba(255,255,255,0.75);
    background-color: #24292e;
    height: 80px;
    position: relative;
}

.header span{
    font-size: 1.5em;
    position: absolute;
    top: 15px;
    left: 20%;
    color: rgba(255,255,255,0.75);
}