.box {
	background: white;
	display: block;
	border: 1px solid #DCDCDC;
	overflow: hidden;
	border-radius: 5px;
	min-width: 30vw;
	min-height: 30vh;
	color: #333;

	max-height: 90vh;
    overflow: auto;
}

.header {
	background: linear-gradient(#F5F5F5,#F4F4F4);
	border-bottom: 1px solid #DCDCDC;
	text-align: left;
	margin-bottom: 5px;
}

.header h1 {
	margin: 7px 10px;
	font-size: 1.5em;
	font-weight: bold;
	display: inline-block;
}

.header img {
	max-height: 2em;
	float: right;
	margin: 5px 10px;
}

.box p {
	padding-left: 10px;
	padding-right: 10px;
}


.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  padding: 0px;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}


/* Add to cart animation */
@keyframes cartAdd
{
	0%, 100%
	{
		width: 100%;
		text-align: center;
		padding: 10px;
		background: var(--primary-color);
		border: none;
		border-radius: 5px;
		font-size: 1.3em;
		color: white;
		cursor: pointer;
		text-decoration: none;
		display: block;
		box-sizing: border-box;
		margin: auto;
		outline: none;
	}
	5%,95%
	{
		color: transparent;
	}
	30%,60%
	{
		border-radius: 50px;
		width: 50px;
		height: calc(1em + 23px);
		display: block;
		margin: auto;
		background: url('/img/check.svg') #3aac5d;
		background-repeat: no-repeat;
		background-size: 50% 50%;
		background-position: center center;
	}
}



.lightbox
{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
}
.lightbox p
{
	color: white;
	display: block;
}

.pay-container {
	border: 1px solid #ccc;
	padding: 20px;
	margin: 20px;
}

iframe {
	border: none;
}



.alert {
	color: white;
    font-weight: bold;
    background: #ff9800;
    padding: 7px;
    margin-bottom: 7px;
}
.alert.success {
	background: #8BC34A;
}
.alert.error {
	background: #f44336;
}

a {
	color: #333;
}


.searchBar {
	width: calc(100% - 60px);
	margin: 0px 20px;
	padding: 5px 10px;
	border: 1px solid #ccc;
}
.searchBar input {
	border: none;
	font-size: 1em;
	background: transparent;
	display: inline-block;

}
.searchBar input[type=submit]{
	padding: 0px;
	width: 1.5em;
	cursor: pointer;
}
.searchBar input[type=text]{
	padding: 0px;
	width: 1.5em;
	display: inline-block;
	width: calc(100% - 1.5em - 5px);
}
.searchBar input:focus
{
	outline: none;
}

