/** {
  box-sizing: border-box;
}
body {
  font-family: Roboto;
}
.nav {
  height: 60px;
  width: 100%;
  background: #999;
}*/
.newsletter_content {
    margin: 0 auto;
    position: relative;
    width: 90%;
    max-width: 1024px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter_thumb {
    background: rgba(0,0,0,0.08);
    width: 200px;
    height: 200px;
    margin: 0 1rem 2rem 1rem;
    border-radius: 3px;
    cursor: pointer;
}

.title {
    width: 100%;
    text-align: center;
    margin: 3rem;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1rem;
}

.popup {
    position: fixed;
    display: block;
    min-height: 0;
    background: #fff;
    border-radius: 4px;
    opacity: 0;
    color: rgba(0,0,0,0.4);
    bottom: 0;
    right: 0;
    /* user-select: none; */
    z-index: 100;
    /*transform: translate(-50%, -50%);*/
}

.popup_show {
    /*-webkit-animation-name: fadeInDown;*/
    /*-webkit-animation-duration: 0.7s;*/
    animation-name: fadeInDown;
    animation-duration: 0.9s;
    -webkit-animation-timing-function: cubic-bezier(0.66, 0.12, 0.49, 0.89);
    animation-timing-function: cubic-bezier(0.66, 0.12, 0.49, 0.89);
    /*animation-timing-function: cubic-bezier(.53,.01,.18,.68)*/
    /* animation-timing-function: cubic-bezier(.68,.12,.53,.9) */
    /*transition: 10s;*/
    opacity: 1;
    height: auto;
    right: 0;
}

.popup_content {
    padding: 3.5rem 5rem 4rem 5rem;
    position: relative;
}

.close {
    position: absolute;
    cursor: pointer;
    font-size: 1.7rem;
    font-weight: 300;
    top: -7px;
    color: #fff;
    right: 10px;
    padding: 0rem 0.8rem 0.3rem 0.8rem;
    border-radius: 5px;
    background: rgb(0 0 0);
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

    .close:hover {
        background: rgba(0,0,0,0.2);
    }

.suscribe_title {
    font-weight: 300;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.suscribe_form {
    text-align: center;
}

    .suscribe_form input {
        background: transparent;
        border: none;
        /* border-bottom: 1px solid white */
        padding: 0.9rem 0.7rem;
        margin-bottom: 1rem;
        outline: none;
        width: 100%;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.08rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
    }

        .suscribe_form input[type="submit"] {
            font-weight: bold;
            background: #444;
            border-radius: 3px;
            border: none;
            font-size: 0.8rem;
            width: 60%;
            margin: 0 auto;
        }

        .suscribe_form input[type="text"] {
            background: rgba(255,255,255,0.1);
            transition: background 0.4s ease-in-out;
        }

            .suscribe_form input[type="text"]:focus {
                background: rgba(255,255,255,0.2);
            }

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        height: auto;
        transform: translate(-50%, -60%);
    }

    100% {
        opacity: 1;
        height: auto;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        height: auto;
        transform: translate(50%, 60%);
    }

    100% {
        opacity: 1;
        height: auto;
        transform: translate(0%, 0%);
    }
}
