a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: #ffffff;
	font-family: 'Montserrat', sans-serif;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	transition: .4s all ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading > div {
	width: 50px;
	height: 50px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	border-top: 2px solid transparent;
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	transition: .4s all ease-in-out;
}

body.loaded #wrapper {
	opacity: 1;
}

.header {
	position: absolute;
	width: 100%;
	z-index: 10;
	background-color: #ffffff;
	padding: 20px 10px;
	  
}

.header-right {
	width: 160px;
	float: right;
	margin-right: 15px;
	padding: 10px;
	text-align: right;
	color: rgb(64, 64, 64);
	font-size: 13px;
	line-height: 20px;
	margin-top: 8px;
  }
  
  .header-right a {
    color: rgb(64, 64, 64);
  }

  .logo {
	margin-left: 15px;
	padding: 10px;
	margin-top:13px;
	width: 220px;
  }

.material-symbols-outlined {
	margin-bottom: 0;
	font-size: 18px !important;
	line-height: 20px !important;
	float: left;
}

.slice {
	width: calc(100vw / 2);
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
}

.slice:first-child {
	left: 0;
}

.slice:last-child {
	right: 0;
}

.page {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: .4s all ease-in;
}

.page:hover,
.page:focus {
	transform: scale(0.98, 0.98);
}

.shop-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('../images/background2.png') no-repeat 0 50%;
	background-size: cover;
}

.shop-info-inside {
	text-align: center;
}
.container {
	position: relative;
	text-align: center;
	color: white;
	margin-top: 50px;
  }

.shop-info-name {
	font-size: 40px;
    color: 
	#352a86;
	text-shadow: 1px 1px #ffffff;
	line-height: 60px;
	letter-spacing: -3px;
	margin-bottom: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition:.4s all ease-in;
}

.button {
	font-family: "Raleway", cursive;
	font-size: 24px;
	color: white;
	letter-spacing: 0;
	margin-top: 50px;
	background-color: rgb(90, 90, 90);
	border-radius: 4px;
	border-style: none;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.5;
	max-width: 40%;
	outline: none;
	padding: 9px 20px 8px;
	position: relative;
	text-align: center;
	text-transform: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	width: 100%;
}

#disabled {
	background-color:  rgb(196, 196, 196);;
	cursor: default;
}

.shop-info-image img{
	object-fit: cover;
	opacity: 0.45;
	width: 100%;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}


/* Styles for tablets (between 768px and 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

	.header {
		width: 100%;
		height: 120px;
		background-color: #ffffff;
	}
	.header img {
		width: 180px;
	}
	.header-right {
		width: 150px;
		margin-right: 15px;
		padding: 10px;
		font-size: 12px;
		line-height: 15px;
	  }
	
	  .header-right div {
		margin-top: 0;
	}
	
	  .logo {
		margin-left: 15px;
		margin-top:10px;
	  }

	  .material-symbols-outlined {
		margin-bottom: 0;
		font-size: 18px !important;
		line-height: 20px !important;
		float: left;
	}

	  #wrapper {
		width: 100%;
		display: grid;
	  }

	  .page {
		width: 100%;
		height: 100%;
		display: grid;
        align-items: center;
    }
	.page:hover,
.page:focus {
	transform:none;
}

    .slice {
		width: 100%;
		height: auto;
    }

	.slice-1 {
		position: relative;
		margin-top: 120px;
		grid-row: 1;
		grid-column: 1;
		height: 100%;
		display: grid;
		align-items: center;
	}

	.slice-2 {
		position: relative;
		grid-row: 2;
		grid-column: 1;
		height: 100%;
		display: grid;
		align-items: center;
	}

	.shop-info {
		background: url('../images/background2.png');
		background-size: cover;
		height: 100%;
        display: grid;
        align-items: center;
	}

	.shop-info-inside {
		height: 100%;
		display: grid;
		align-items: center;
	}

	.shop-info-image {
		height: 100%;
		display: grid;
		align-items: stretch;
	}

	.container {
		position: relative;
		margin-top: 0px;
		height: 100%;
		display: grid;
		align-items: center;
	}

	.container a {
		position: absolute;
        width: 250px;
        height: 50px;
        top: 46%;
        z-index: 3;
        left: calc(50% - 125px);
	}

    .shop-info-name {
		top:40%;
    }

    .button {
		width: 100%;
		max-width: 100%;
		font-weight: bolder;
		margin-top: 0px;
    }
}

/* Styles for mobile devices (768px and below) */
@media (max-width: 768px) {
	.header {
		width: 100%;
		height: 80px;
		background-color: #ffffff;
		padding: 5px;
	}
	.header img {
		width: 120px;
	}
	.header-right {
		width: 90px;
		padding: 5px;
		font-size: 8px;
		line-height: 10px;
		margin-right: 3px;
		margin-top: 2px;
	  }
	
	  .header-right div {
		margin-top: 8px;
	}
	
	  .logo {
		margin-left: 6px;
		margin-top:10px;
		width: 160px;
	  }

	  .material-symbols-outlined {
		margin-bottom: 0;
		font-size: 10px !important;
		line-height: 10px !important;
		float: left;
	}

	  #wrapper {
		width: 100%;
		display: grid;
	  }

	  .page {
		width: 100%;
		height: 100%;
		display: grid;
        align-items: center;
    }

	.page:hover,
    .page:focus {
	transform: none;
    }

    .slice {
		width: 100%;
		height: auto;
    }

	.slice-1 {
		position: relative;
		margin-top: 80px;
		grid-row: 1;
		grid-column: 1;
	}

	.slice-2 {
		position: relative;
		grid-row: 2;
		grid-column: 1;
	}

	.shop-info {
		background: url('../images/background2.png');
		background-size: cover;
	}
	.shop-info-inside {
		height: 100%;
		display: grid;
		align-items: center;
	}


	.container {
		height: 100%;
		position: relative;
		margin: 0;
		display: grid;
		align-items: center;
	}

	.container a {
		position: absolute;
        width: 300px;
        height: 50px;
        top: 55%;
        z-index: 3;
        left: calc(50% - 150px);
	}

	.shop-info-image {
		height: 100%;
		display: grid;
		align-items: stretch;
	}

    .shop-info-name {
        width: 300px;
		top:48%;
		font-size: 26px;
		letter-spacing: -1px;
    }

    .button {
		width: 100%;
		max-width: 40%;
		font-size: 14px;
		font-weight: bolder;
		margin-top: 0;
		padding:6px 15px 6px;
    }
}
