.mask {
  position:fixed;
  left:0;
  top:0;
  min-width: 100%;
  min-height: 100%;
  z-index:9000;
  background-color:#000;
  display:none;
}
#mask_cookies
{
 display:block;
 background-color: rgba(0, 0, 0, 0.5);
}
.window {
	background: #EDEDED;
    position:absolute;
    left: 50%; top: 50%;
    transform: translateX(-50%) translateY(-50%);  
    display:none;
    z-index:9001;
	margin: 0;
	box-shadow: 2px 4px 10px 0px  rgba(0,0,0, 0.7);
	border-radius: 5px;
	border: 3px solid #fff;  
	padding:20px;
	text-align: center;
}

.type {
	border: 1px solid #e1e1e1;
	height: 32px;
	margin:0 auto 8px auto;
	width: 260px;
	padding: 0 0 0 15px;
	background: #fff;
}
.check {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	height: 18px;
	margin:0 0px 0 0px;
	width: 18px;
	padding: 0;
}
.window label {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin:0 5px 0 0px;
	font: 10pt Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	cursor: pointer;
}
.window .submit_btn {
	display: block;
	width: 260px;	
	margin: 25px auto 0;
	padding: 5px 10px;
}
.window p {
margin-top: 8px;
}
.window a {
	background: #C5203E;
	text-decoration: none;
	box-shadow:0px 3px 3px 0px rgba(0,0,0, 0.7); 
	transition: all .3s;
	color: white;
	font: 11pt oswald;
	margin-top: 5px;
	padding: 1px 10px;
}
.window a:hover {
	background: #800017;
	text-decoration: none;
	box-shadow:0px 1px 2px 0px rgba(0,0,0, 0.5); 
	transition: all .3s;
}
.window #signupbutton{
	background: #763F40;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/*#refresh_button {
	padding: 5px 15px;
	border: 1px solid #666666;
	background: #BFBFBF;
	box-shadow: 2px 4px 10px 0px  rgba(0,0,0, 0.7);
}*/
.modal_uploading {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9000;
}

.modal-content {
  background-color: #fefefe;
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
	padding: 20px;
  border: 1px solid #888;
  width: 200px;
  text-align: center;
}

/* Loading Spinner Styles */
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}