html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::before{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}


/**ERROR LABEL**/
.error{
  font-size: 13px;
  border: 1px solid #ED5565;
  color: #ED5565;
  max-width: 250px;
  margin: 0 auto 30px auto;
  padding: 9px;
  border-radius: 10px;
  box-shadow: 2px 2px 2px #aaaaaa;
  text-align: center;
}



	.error{
		font-size: 13px;
		border: 1px solid #ED5565;
		color: #ED5565;
		max-width: 250px;
		margin: 0 auto 30px auto;
		padding: 9px;
		border-radius: 10px;
		box-shadow: 2px 2px 2px #aaaaaa;
		text-align: center;
	}

	@media screen and (min-width: 1304px){

	.error{
		box-shadow: none;
		position: absolute;
		background-color: #cb2c43 ;
		color: #ffffff;
		right: 93%;
		margin-right: 8px;
		width: 200px;
	}

	.error:before{
		position: absolute;
		content: "";
		border-width: 12px;
		border-style: solid;
		border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #cb2c43 ;
		left: 100%;
		margin-left: -4px;
		margin-top: 15px;
	}

}/*992px*/
