.arnacom {
	width:100%; 
	border:0;
	height:1px;
}

.modalclose {
	padding-top: .7rem;
	padding-bottom: .7rem;
	border: 2px solid #616161 !important;
	background-color: transparent !important;
	color: #616161 !important;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	padding: .5rem 1.14rem;
	font-size: .81rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	margin: .375rem;
	border-radius: .125rem;
	text-transform: uppercase;
	white-space: normal;
	word-wrap: break-word;
	display: inline-block;
	text-align: center;
	line-height: 1.5;
	font-weight: 400;
	float: right;
}

#arnacomments {
	width:100%;
	border:0; 
}

#editform {
	width:100%;
	border:0; 
}

#registerform {
	width:100%;
	border:0;
	min-height: 300px;	
}

#subcomments { 
	width:100%;
	border:0;
	min-height: 300px;	
}
 /* The Modal (background) */
.amodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.amodal-content {
  min-height: 600px;
  background-color: #fefefe;
  margin: 0% auto; /* 0% from the top and centered */
  padding: 20px;
  overflow:hidden;
  border: 1px solid #888;
  width: 40%; /* Could be more or less, depending on screen size */
} 

.modal-large {
	width: 60%;
}

@media only screen and (max-width: 600px) {
  .amodal-content {
	   width: 100%; 
  }
}

#registermodal { 
	z-index: 999;
}

#subcommentsmodal {
	z-index: 995;
	
}



/* The Close Button */ 
.aclose, .saclose {
  color: #aaa !important;  
  float: right;

  font-weight: bold;
  cursor:pointer;
}

.aclose:hover,
.aclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

.loader {
  position: absolute; 
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}