/*
.storm_in_progress {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 100000;
	text-align: center;
}

.storm_in_progress_inner {
	margin-top: 200px;
	padding: 20px;
}
*/

@media screen and (max-width: 768px) {
  .storm_modal {
	  padding: 0px 0px 0px 0px !important;
  }
  .storm_modal_inner {
	  margin: 0px !important;
	  padding: 50px 10px 50px 10px !important;
	  border: 1px solid #888;
	  width: 90% !important;
  }
}

.storm_modal {
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
}

.storm_modal_inner {
	position: absolute;
	top: 50%; left: 50%;
  	transform: translate(-50%,-50%);
	background-color: #fefefe;
	margin: auto;
	padding: 50px;
	border: 1px solid #888;
	width: 600px;
	min-height: 200px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
/*
.storm_modal_inner {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 50px;
	border: 1px solid #888;
	width: 600px;
	min-height: 200px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}
*/
.storm_modal_inner h1 {
	text-align: center;
	color: var(--fastbit-blue) !important;
	text-transform: uppercase;
}

.storm_modal_buttons {
	margin-top: 40px;
	padding: 10px 0px 0px 0px;
	border-top: 1px solid #eee;
	text-align: center;
}

.storm_modal_buttons > .button_accept {
    width: 250px;
    background: green;
	margin: 10px 20px 0px 20px;
    color: white;
}

.storm_modal_buttons > .button_deny {
    width: 250px;
    background: blue;
	margin: 10px 20px 0px 20px;
    color: white;
}

.storm_modal_buttons > .button_read_more {
    width: 250px;
    background: #ff8c00;
	margin: 10px 20px 0px 20px;
    color: white;
}