/*** NOTIFICATIONS LANDING PAGE AND POP UP CODE **/
.nt_form {
  margin: 0 auto;
  max-width:940px;
  width:100%;
  display:inherit;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nt_form:after, .nt_form:before {
    display: block;
    content: " ";
    clear: both;
}

.nt_form #nt_body{
  padding-left:10px;
  padding-right:10px;
  float:left;
}


.nt_form h1 {
  font-family: 'Alegreya Sans', sans-serif;
  font-weight: 300;
}
.nt_form .sign_in_form h2 {
  font-family: 'Alegreya Sans', sans-serif;
  font-weight: 300;
}
.nt_form .logo {
  height: 74px;
  float:left;
}
.nt_form .main_desc {
  margin-bottom: 10px;
  font-size: 1.1em;
}
.nt_form .main_help {
  font-size: 0.8em;
  background: #eee;
  color: #666;
  padding: 10px 15px;
  overflow: auto;
  display: inline-block;
}
.nt_form .main_help .help_right {
  /*float: left;*/
  margin-left: 15px;
}
.nt_form .main_help p {
  margin: 0;
  padding: 0;
}
.nt_form .main_help p:first-child  {
  font-style: italic;
}

.nt_form #notif_response {
  font-size: 0.8em;
  background: #7fe8e1;
  padding: 10px 15px;
  overflow: auto;
  display: table; /* allows inline-block-ish element on new line */
  opacity: 0;
  width: 96.2%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.nt_form #notif_response.warning {
  background: #f9c62c;
}

.nt_form #notif_response.error {
  background: #e06262;
}

.nt_form #notif_response.success {
  background: #70ef4c;
}

.nt_form img.nt_icon {
  height: 40px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  opacity: 0.2;
  float: left;
  padding-left: 15px;
}

.nt_form .nt_list {
  margin-left: 20px;
  display: none;
}

.nt_form .control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.nt_form .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.nt_form .control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.nt_form .control--radio .control__indicator {
  border-radius: 50%;
}
.nt_form .control:hover input ~ .control__indicator,
.nt_form .control input:focus ~ .control__indicator {
  background: #ccc;
}
.nt_form .control input:checked ~ .control__indicator {
  background: #D30015;
}
.nt_form .control:hover input:not([disabled]):checked ~ .control__indicator,
.nt_form .control input:checked:focus ~ .control__indicator {
  background: #a00007;
}
.nt_form .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.nt_form .control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.nt_form .control input:checked ~ .control__indicator:after {
  display: block;
}

.nt_form .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.nt_form .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.nt_form .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.nt_form .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.nt_form .select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.nt_form .select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.nt_form .select select::-ms-expand {
  display: none;
}

.nt_form .select select:hover,
.nt_form .select select:focus {
  color: #000;
  background: #ccc;
}

.nt_form .select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.nt_form .select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}

.nt_form .select select:hover ~ .select__arrow,
.nt_form .select select:focus ~ .select__arrow {
  border-top-color: #000;
}

.nt_form .select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

.nt_form .close_button {
  cursor: pointer;
  display: inline-block;
  padding: 20px;
  color: #fff;
  background: #999;
  margin-top: 20px;
}

.nt_form .close_button:hover {
  background: #bbb;
}

.nt_form .nt_list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  margin-left: 15px;
}

.nt_form .nt_list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nt_form .nt_list .description {
  display: inline;
  font-size: 0.8em;
  color: #666;
}

.nt_form .notif_preview{
  margin-top:20px;
}

/* NOTIFICATIONS WHILE SIGNING UP OVERLAY CSS*/
#notification_overlay{
  background-color: rgba(0, 0, 0, .7);
  width:100%; 
  height:100%; 
  z-index: 9999999;
  top:0; 
  left:0; 
  position:fixed;
}

#notification_overlay #overlay_wrapper{
  position: relative;
  max-width: 320px;
  width: 320px;
  background-color:white;
  margin: 0 auto;
  margin-top: 75px;
}

#notification_overlay #overlay_inner{
  margin: 0 auto;
  width:80%;
  padding:10px;
}





/*** NOTIFICATIONS SIGN UP POP ON ANY PAGE EXCEPT NOTIFICATIONS LANDING PAGE ***/
#overlay_notif_pop_up{
  background: rgba(0,0,0,.3) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999999999;
}

#notifications_sign_up_pop_wrapper{
  position:relative;
  z-index: 999999999999;
}

#notifications_sign_up_pop_wrapper img#notifs_subscribe_pop_up_icon{
    max-width: 28px;
    vertical-align: bottom;
    padding-right: 10px;
}

#notifications_sign_up_pop_wrapper h3 {
    margin-bottom: 0px;
}

#notifications_sign_up_pop_wrapper .nt_form{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:white;
  /*border:2px solid #e70017;*/
	box-shadow: inset 0 0 0 2px #e70017, inset 0 0 0 5px rgba(103,103,103,0.2);
  padding:10px !important;
  max-width:480px;
}

@media only screen and ( max-width : 767px ){
  #notifications_sign_up_pop_wrapper .nt_form{
      max-width:93%;
  }
}

@media only screen and ( max-width : 320px ){
  #notifications_sign_up_pop_wrapper h3{
      font-size: 1.1em;
  }
}

#notifications_sign_up_pop_wrapper h3,
#notifications_sign_up_pop_wrapper p{
  padding-left:10px;
}

#notifications_sign_up_pop_wrapper h3#pop_up_success_title {
    border-bottom: solid 2px #dedede;
    padding-bottom: 7px;
}

#notifications_sign_up_pop_wrapper #close_notifications_pop_up{
  float:right;
  cursor:pointer;
  padding-right:10px;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  overflow: hidden;
  margin-top: -15px;
}

#notifications_sign_up_pop_wrapper #close_notifications_pop_up:before,
#notifications_sign_up_pop_wrapper #close_notifications_pop_up:after{
  height: 4px;
  margin-top: -2px;
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 56%;
  left: 0;
  margin-top: -1px;
  background: #000;
}

#notifications_sign_up_pop_wrapper #close_notifications_pop_up:before{
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#notifications_sign_up_pop_wrapper #close_notifications_pop_up:after{
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#notifications_sign_up_pop_wrapper #notif_response{
  width:93%;
}

#notifications_sign_up_pop_wrapper .nt_list{
  margin-right:5px;
  margin-left: 15px;
}


/*UNDER PAGE MESSAGE CSS*/
.warning-wrapper {
  transition: all 0.25s ease-out;
  background-color: #d30015;
  width: 100%;
  height: 10%;
  position: fixed;
  bottom: 0;
  z-index: 100000000;
  left: 0;
  padding-bottom: 10px;
}
 .notif-wrapper{
   background-color: #f2f2f2;
 }
 .notif-wrapper a.close{
   color: #d30015 !important;
   
 }
 .warning-wrapper .container{
   margin: 0 10% 0 10%;
	 top: 50%;
	 position: relative;
	 transform: translateY(-50%);
 }
 .warning-wrapper .image-wrapper {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
 .warning-wrapper .image-wrapper img{
  width:80%;
 }
 .warning-wrapper a.close {
  color: #fff;
  float: right;
  margin: 5px;
  border: 1px solid;
  border-radius: 15px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  height: 20px;
  padding: 2px;
}
.warning-wrapper a.close img {
    width: 20px;
}
 .warning-wrapper .message-wrapper .info-message {
  color: #fff;
  font-size: 14px;
  display: table-cell;
  vertical-align: middle;
  height: 44px;
}
.warning-wrapper .container{
   		margin: 0 10% 0 10%;
	}
.warning-wrapper .message-wrapper{
		margin-left:50px;
	}

/*COLORS */
.notif-wrapper{
	border-top: 2px solid #e70017;
 }

@media screen and (max-width:767px){
	.warning-wrapper .inline_sign_up_box {
		background-color: transparent;
	}
	.warning-wrapper #notifications_hover .inline_sign_up_left {
    	text-align: center;
		margin-top:-4px;
	}
	.warning-wrapper #notifications_hover .inline_sign_up_right {
	    margin-top: -7px;
	}
	.warning-wrapper .container{
   		margin: 0 30px 0 2%;
	}
}
@media screen and (max-width:400px){
	.warning-wrapper .inline_sign_up_left {
		font-size: 0.85em;
	    
	}
	.warning-wrapper .inline_sign_up_text{
		padding-left: 6px;
	}
	.warning-wrapper #notifications_hover .inline_sign_up_left {
     	text-align: left; 
  
	}
}
