.dont-show { display: none !important }

#fsHider {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: Black;
    transition: opacity 1s ease-in-out;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    filter:alpha(opacity=0);
}

#fsHider.none {visibility: hidden;}

#fsHider.disable {
    visibility: visible;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    filter:alpha(opacity=10);
}

input[type='number'] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Loading spinner */
.wait-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    background-color: rgb(0, 0, 0);
    opacity: 0.6;
}

.wait-loading.loading { display: block }

.wait-loading .loader  {
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #3498db;
  border-bottom: 10px solid #3498db;  
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  -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); }
}

.modal-background 
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1200;
	background-color: rgba(180,180,180,.9);
}

/* Ekko lightbox close button */
.ekko-lightbox.modal .modal-header .close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
    background-color: #eee;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    filter: alpha(opacity=30);
	opacity: .3;
	line-height: 40px;
}

.ekko-lightbox.modal .modal-header .close:hover 
{
	filter: alpha(opacity=50);
	opacity: .5;
}

.ekko-lightbox.modal .modal-header .close span  
{
	font-size: 30px;
	text-shadow: none;
}

.ekko-lightbox.modal .modal-header 
{
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.ekko-lightbox.modal .modal-title 
{
	display: none;
}

