.maincheck {
    margin: 15px 0 0 0;
    display: inline-block;
    width: 100%;
    text-align: left;
}

    .maincheck label {
        display: inline-block;
        margin: 0 6px;
    }

        .maincheck label input {
            margin-right: 4px;
            vertical-align: text-bottom;
        }





.newsSection .container {
    background-color: #9191E9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.newsSection .goButton {
    padding-left: 0;
    background: #2db300;
    font-size: 20px;
    letter-spacing: 2px;
    padding-right: 0;
    /* border-radius: 0px; */
    border: 0;
    text-transform: uppercase;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), 0 2px 3px rgba(0, 0, 0, 0.12);
    padding: 1rem 2rem 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 300ms ease-out 0s;
}

.newsSection .button {
    text-decoration: none;
    font-size: .875rem;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 1.5rem;
    background-color: #fff;
    color: #9191E9;
    padding: 1rem 2rem;
}

.newsSection .popup__text input {
    padding: 15px;
    border-radius: 5px;
    box-shadow: rgba(204, 204, 204, 0.5) 6px 5px 26px;
}

.newsSection .popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999999;
    visibility: hidden;
    opacity: 0;
    overflow: hiden;
    transition: .64s ease-in-out;
}

.newsSection .popup-inner {
    position: relative;
    bottom: -100vw;
    right: -100vh;
    display: flex;
    align-items: center;
    max-width: 800px;
    max-height: 600px;
    width: 60%;
    /*height: 80%;*/
    background-color: #fff;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
    transition: .64s ease-in-out;
}

.newsSection .popup__photo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 47%;
    height: 100%;
    min-height: 485px;
    background-size: cover;
    overflow: hidden;
}

    .newsSection .popup__photo img {
        width: auto;
        height: 100%;
    }

.newsSection .popup__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: 100%;
    padding: 2rem;
}

    .newsSection .popup__text h2 {
        font-size: 2rem;
        font-weight: 600;
        line-height:normal;
        margin-bottom: 2rem;
        text-transform: uppercase;
        color: #0A0A0A;
    }

    .newsSection .popup__text p {
        font-size: .875rem;
        color: #686868;
        line-height: 1.5;
    }

.newsSection .showoverlay {
    visibility: visible;
    opacity: 1;
}

.newsSection .showpopup {
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.newsSection .popup__close:hover, .newsSection .goButton:hover {
    background: #259400;
}

.newsSection .popup__close {
    position: absolute;
    transition: all 0.3s ease-in-out 0s;
    right: -1rem;
    top: -1rem;
    border: #fff solid 2px;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    font-weight: 300;
    border-radius: 100%;
    background-color: #0A0A0A;
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}


@media only screen and (max-width: 991px) and (min-width:768px) {
    .newsSection .showoverlay {
        overflow: auto;
    }

    .newsSection .popup__text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .maincheck label {
        margin: 5px 6px 2px 6px;
    }

    .newsSection .popup__text p {
        padding-bottom: 0;
    }

    .newsSection .popup-inner {
        width: 86%;
    }
}

@media only screen and (max-height: 500px) and (min-height:320px) {
    .newsSection .goButton {
        padding: 0.7rem 2rem 0.7rem;
    }

    .newsSection .popup__photo {
        min-height: 370px;
    }

    .newsSection .popup__text {
        padding: 1rem;
    }

        .newsSection .popup__text h2 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
}


@media only screen and (min-width:481px) and (max-width:767px) {
    .newsSection .popup__text {
        padding: 1rem 2rem;
    }
    /*.newsSection .popup__text {
        padding: 4rem 1rem;
    }*/
    .newsSection .popup__photo {
        min-height: 442px;
    }

    .newsSection .popup__text h2 {
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    .maincheck label {
        margin: 0 1px;
        font-size: 12px;
    }

    .newsSection .goButton {
        padding: 0.7rem 0;
        width: 100%;
    }

    .newsSection .popup__text p {
        padding-bottom: 0;
    }
}


@media screen and (max-width:767px) {
    .newsSection .showpopup {
        max-width: 98%;
        width: 98%;
    }

    .newsSection .popup__close {
        right: -4px;
        line-height: 2rem;
        width: 2rem;
        height: 2rem;
    }
}


@media only screen and (min-width: 320px) and (max-width:568px) {
    .newsletForm > input.mce-EMAIL {
        width: 68%;
    }

    .footerCover.newsSection {
        padding: 20px 0;
        position: relative;
    }

        .footerCover.newsSection .maincheck label {
            margin: 0;
            font-size: 12px;
        }

    .maincheck label input {
        margin-right: 0;
    }

    /*.maincheck {
        margin: 0;
    }*/

    .newsletterCover > h4 {
        font-size: 22px;
        font-weight: bold;
        margin-right: 0;
    }

    .newsletForm {
        margin-top: 6px;
    }

    .newsletterCover.submit-form .close_top {
        background: #fff;
        display: block !important;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        display: inline-block;
        font-size: 15px;
        float: right;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }
}









@media screen and (max-width:480px) {
    .newsSection .goButton {
        width: 100% !important;
        padding: 1rem 0;
    }

    .newsSection .popup__text h2 {
        text-align: center;
        font-size: 1.5rem;
        line-height:normal;
        margin-bottom: 1rem;
    }

    .newsSection .popup__text p {
        text-align: center;
        padding-bottom: 0;
    }

    .maincheck label {
        margin: 6px 6px;
    }

    .newsSection .popup__text {
        width: 100%;
    }

    .newsSection .popup__photo {
        display: none;
    }
}
