﻿.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;
}

/* Cart conflict modal (currency/service mixing) */
.cart-conflict-modal.modal.in {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cart-conflict-modal .modal-dialog {
    margin: 0;
    width: 560px;
    max-width: 100%;
}

.cart-conflict-modal .modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.cart-conflict-modal .modal-header {
    border-bottom: none;
    padding: 20px 24px 0;
}

.cart-conflict-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
}

.cart-conflict-modal .modal-header .close {
    font-size: 24px;
    opacity: 0.6;
}

.cart-conflict-modal .modal-header .close:hover {
    opacity: 0.8;
}

.cart-conflict-modal .modal-body {
    padding: 12px 24px 8px;
    color: #4a4a4a;
}

.cart-conflict-modal .modal-footer {
    border-top: none;
    padding: 8px 24px 20px;
    text-align: right;
}

.cart-conflict-modal .modal-footer .btn + .btn {
    margin-left: 8px;
}

.cart-conflict-modal .modal-footer .btn-default {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #333;
}

.cart-conflict-modal .modal-footer .btn-default:hover,
.cart-conflict-modal .modal-footer .btn-default:focus {
    background: #f5f5f5;
    color: #333;
}

.cart-conflict-modal .modal-footer .btn-link {
    color: #555;
    text-decoration: none;
}

/* Login page */
.login-page {
    min-height: calc(100vh - 330px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    padding: 48px 48px 32px;
    width: 320px;
    max-width: 92vw;
    position: relative;
}

.login-card .login-form {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.login-card .login-form .form-group {
    margin-bottom: 12px;
}

.login-card .login-form .form-error {
    width: 100%;
}

.login-card .login-form .form-control {
    width: 100%;
}

.login-card .login-form .btn-login {
    border: none;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
}

.login-card .login-form .btn-login:hover,
.login-card .login-form .btn-login:focus {
    opacity: 0.92;
}

.login-card .login-form .close {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #a5a5a5;
    opacity: 0.7;
}

.login-card .login-form .close:hover {
    opacity: 0.9;
}

