/* Mobile-first CSS */



/* Component Fonts */
.newsletter-violator-section h1,
.newsletter-violator-section h2,
.newsletter-violator-section h3,
.newsletter-violator-section h4,
.newsletter-violator-section h5,
.newsletter-violator-section h6,
.newsletter-violator-section p,
.newsletter-violator-section a,
.newsletter-violator-section input[type="text"],
.newsletter-violator-section button[type="submit"] {
	font-family: 'Benton Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-transform: none;
}



/* Component Colors */
.newsletter-violator-section a,
.newsletter-violator-section a:hover,
.newsletter-violator-section {
	color: #fff;
}

.newsletter-violator-section {
	background-color: #fff;
}

.newsletter-violator-content {
    background-color: #000;	
}

.newsletter-violator-section .fa {
	color: #000;
}



/* Arrow Icon */
.newsletter-violator-section .fa {
    font-size: 25px;
    padding-left: 10px;
    position: relative;
    top: 1px;
}



/* Close Icon - Specific styling to Component */
.newsletter-violator-content .violator-close-icon {
    cursor: pointer;
    display: inline-block;
    height: 30px;
    overflow: hidden;
    position: absolute;
    right: 25px;
    top: 15px;
    width: 30px;
}
 
.newsletter-violator-content .violator-close-icon::before, 
.newsletter-violator-content .violator-close-icon::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
}

.newsletter-violator-content .violator-close-icon::before {
   transform: rotate(45deg);
}

.newsletter-violator-content .violator-close-icon::after {
   transform: rotate(-45deg);
}

/* Generic Wrappers - DO NOT style except shown/hidden styling */
.violator-wrapper {
    display: none;
}

.violator-wrapper.active {
    display: block;
}




/* Component Wrapper */
.newsletter-violator-section {
    left: 5%;
    position: fixed;
    right: 5%;
    text-align: center;
    top: 25%;
    z-index: 999;
}


/* Content Wrapper */
.newsletter-violator-content {
    background-position: 85% 100%;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 10px;
    padding-top: 25px;
}


/* Content heading - BE THE FIRST TO KNOW ... */
.newsletter-violator-heading {
	font-size: 25px;
	margin: 0 auto;
	margin-bottom: 15px;
	max-width: 200px;
}

/* Content paragraph - Sign up to receive ... */
.newsletter-violator-paragraph {
    font-style: italic;
}


/* Content form container */
.newsletter-violator-form-container {
	margin: 10px;
}

/* All email inputs */
.newsletter-violator-content input[type="email"] {
	height: 46px;
	margin-bottom: 15px;
	padding-left: 15px;
	width: 100%;
}


/* SUBMIT button */
.newsletter-violator-content button[type="submit"] {
	background: #ff6112;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}


/* Tablet Media Queries - 767px */
@media only screen and (min-width: 767px) {
    
    /* Close icon - Specific styling to Component */
    .newsletter-violator-content .violator-close-icon {
        right: 25px;
        top: 20px;
    }

    /* Component Wrapper */
    .newsletter-violator-section {
    	left: 0;
    	margin: 0 auto;
    	max-width: 600px;
    	position: fixed;
    	right: 0;
    	width: 75%;
    }


    /* Content Wrapper */
    .newsletter-violator-content {
        background-position: 0 80%;
        padding: 80px 10px;
    }


    /* Content text container */
    .newsletter-violator-text-container {
    	margin: 0 auto;
    	max-width: 365px;
    }


    /* Content Heading - BE THE FIRST TO KNOW ... */
    .newsletter-violator-heading {
    	font-size: 30px;
    	max-width: inherit;
    }


    /* Form */
    .newsletter-violator-content form {
    	align-items: flex-start;
    	display: flex;
    	justify-content: center;
    	margin: 0 auto;
    	max-width: 500px;
    }

    /* All email inputs */
    .newsletter-violator-content input[type="email"] {
        width: 50%;
    }

    /* SUBMIT button */
    .newsletter-violator-content button[type="submit"] {
        margin-left: 15px;
        width: 130px;
    }
}






