/* @font-face {
    font-family: "";
    src: url("../../fonts/") format('woff');
} */

body{
    padding: 0px;
    margin: 0px;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

#politics a{
    color: white;
}

#politics .main .wrapper{
    padding: 30px 0px;
    font-size: 12px;
}

.main{
    width: 100%;
}

.wrapper{
    width: 900px;
    margin: 0 auto;
}

.form-header{
    text-align: center;
    width: 550px;
    margin: 0 auto;
    padding: 50px 0px;
}

form{
    width: 500px;
    margin: 0 auto;
    text-align: left;
}

.input-form {
    width: 100%;
    background-color: white;
    margin: 5px 0px;
    border: none;
    padding: 10px 19px;
    box-sizing: border-box;
    transition: border-color .2s linear;
}

.input-form.has-error{
    border: 2px solid red;
}

.error:not(:empty) {
    /* font-size: 12px; */
    color: red;
    display: block;
    margin-top: 4px;
    padding: 0 10px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    font-weight: 700;
    transition: height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.form-group.has-error .error{
    height: 23px;
    opacity: 1;
    transform: opacity .2s linear;
    font-size: 18px;
}

.label-form {
    display: block;
    width: 100%;
    /* font-size: 15px; */
    margin: 10px 0px;
}

.div-check{
    margin: 20px 0px;
    font-size: 15px;
}

.div-btn{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#btn-submit{
    width: 80px;
    height: 45px;
    color: black;
    background-color: white;
    border: 1px solid white;
    font-size: 22px;
    cursor: pointer;
}

#btn-submit:hover{
    color: white;
    background-color: black;
    border: 1px solid white;
}

.alert {
    opacity: 0;
    text-align: center;
    display: none;
    width: 80%;
    max-width: 400px;
    padding: 30px;
    position: fixed;
    z-index: 50;
    background-color: white;
    color: black;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.alert.show{
    opacity: 1;
    transform: opacity .2s linear;
    display: block;
}

.alert .txt {
    text-align: center;
    color: black;
}
.alert .btn-alert {
    cursor: pointer;
    margin-top: 25px;
    width: 20%;
    margin: 25px auto;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    background-color: #009fe3;
    color: white;
    border: 1px solid white;
}

.alert .btn-alert:hover {
    background-color: white;
    color: #00205c;
    border: 1px solid #00205c;
}

.alert .close{
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 35px;
}

.alert .close span{
    cursor: pointer;
}

.overlay {
    position: fixed;
    z-index: 30;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #333333;
    opacity: 0.8;
    display: none;
}

footer{
    width: 100%;
    /* position: absolute;
    bottom: 0px; */
}

footer .wrapper{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-content: space-around;
    padding: 30px 0px;
}

footer .wrapper > div {
    width: 200px;
    text-align: center;
}

footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    color: white;
    text-decoration: underline;
}

#more{
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .wrapper{
        width: 500px;
        margin: 0 auto;
    }

    footer .wrapper{
        flex-direction: column;
    }

    footer .wrapper > div {
        margin-bottom: 30px;
    }

}

@media (max-width: 600px) {

    .wrapper {
        width: 350px;
    }

    form {
        width: 350px;
    }

    .form-header {
        width: 350px;
        padding: 50px 0px;
    }
    .form-header img{
        width: 300px;
    }

    .form-group.has-error .error {
        height: 23px;
    }
}

