

@media (min-width: 1025px) {
      .show-mobile {
        display: none;
      }
      .hide-mobile {
        display: block;
      }
    }

@media (min-width: 320px) and (max-width: 1024px) {
      .show-mobile {
        display: block;
      }
      .hide-mobile {
        display: none;
      }
    }	
	
html, body, .page {

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: all .6s cubic-bezier(.5, .2, .2, 1.1);
  -webkit-transition: all .6s cubic-bezier(.5, .2, .2, 1.1);
  -moz-transition: all .6s cubic-bezier(.5, .2, .2, 1.1);
  -o-transition: all .6s cubic-bezier(.5, .2, .2, 1.1);  
  color: #fff;
  overflow: hidden; 
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;  

}

.bg-image {
background: #4f189a;
	background-image: url("../imgs/storefront.jpg");
	filter: blur(2px);
	-webkit-filter: blur(2px);
	height: 200%; 
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;  
	position: absolute;
}

.bg_phone {
	/* Fallback (could use .jpg/.png alternatively) */
	background-color: #4F189A;

	/* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
	background-image:
    -webkit-gradient(linear, left top, right top, from(red), to(#4F189A));
  
	/* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
	background-image:
    -webkit-linear-gradient(bottom, #170630 70%, #4F189A 100%);

	/* Firefox 3.6 - 15 */
	background-image:
    -moz-linear-gradient(bottom, #170630, #4F189A);

	/* Opera 11.1 - 12 */
	background-image:
    -o-linear-gradient(bottom, #170630, #4F189A);

	/* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
	background-image:
    linear-gradient(bottom, #170630, #4F189A);
	
	height: 300%; 
	width: 100%;
	position: absolute;
}

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 70%; /* Should be removed. Only for demonstration */
}

.column-text {
	position: absolute;
	bottom: -10px;
	border-radius: 20px 20px 20px 20px;
	margin: 0px -11px 0px -10px;
	width: 100%;
	text-align: center;	
	background: rgb(76,76,76); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 12%,rgba(102,102,102,1) 25%,rgba(71,71,71,1) 39%,rgba(44,44,44,1) 50%,rgba(0,0,0,1) 51%,rgba(17,17,17,1) 60%,rgba(43,43,43,1) 76%,rgba(28,28,28,1) 91%,rgba(19,19,19,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 12%,rgba(102,102,102,1) 25%,rgba(71,71,71,1) 39%,rgba(44,44,44,1) 50%,rgba(0,0,0,1) 51%,rgba(17,17,17,1) 60%,rgba(43,43,43,1) 76%,rgba(28,28,28,1) 91%,rgba(19,19,19,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
}

.pkrow {
    width: 50%;
    padding: 10px;
}

.pkrow-text {
	position: absolute;
	bottom: -40px;	
	margin: 0px -11px 0px -10px;
	width: 100%;
	text-align: center;	
	background: rgb(76,76,76); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 12%,rgba(102,102,102,1) 25%,rgba(71,71,71,1) 39%,rgba(44,44,44,1) 50%,rgba(0,0,0,1) 51%,rgba(17,17,17,1) 60%,rgba(43,43,43,1) 76%,rgba(28,28,28,1) 91%,rgba(19,19,19,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 12%,rgba(102,102,102,1) 25%,rgba(71,71,71,1) 39%,rgba(44,44,44,1) 50%,rgba(0,0,0,1) 51%,rgba(17,17,17,1) 60%,rgba(43,43,43,1) 76%,rgba(28,28,28,1) 91%,rgba(19,19,19,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
	border-radius: 20px 20px 50px 50px;
	box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
}
 

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.titlebar {
	background-image: url("../imgs/tile.jpg");
	background-repeat: repeat;
	height: 14%;
	min-height: 95px;
	width: 80%;
	background-color: #3F434F;
	position: fixed;
	top: 0px;
	right:10%;
	z-index: 2;
	border-style: solid;
	border-width: 2px;
	border-color: black;
    border-radius: 0px 0px 50px 50px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.title {
	text-align: center; 
	font-size: 68px;
	font-size: calc(36px + 1.5vw);
	font-family: 'Lobster';
	-webkit-filter: blur(0px) drop-shadow(3px 3px 2px #DAA520	);
}

.glowhead {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1px;
	font-family: 'Lobster';
	color: rgba(218,165,32,1);
	text-decoration: normal;
	font-style: italic;  

}

#butik { background-image: url("../imgs/pkbutik.jpg");
	height: 50%;
	width: 37%;
	margin: 5px;
	background-size: cover; 
	border: 10px solid #404040;
	border-radius: 300px;}
#pkclub { background-image: url("../imgs/pkclub.jpg");
	height: 50%;
	width: 37%;
	margin: 5px;
	background-size: cover;
	border: 10px solid #404040;	  
	border-radius: 300px;}
#mbutik { background-image: url("../imgs/pkbutik3.jpg");
	height: 20%;
    width: 100%;	  
	background-size: cover; 
	border: 8px solid #404040;
	border-radius: 100px;} 
#mclub { background-image: url("../imgs/pkclub.jpg");
	height: 20%;
    width: 100%;	  
	background-size: cover;
	border: 8px solid #404040;	  
	border-radius: 100px;}
	  
	  
.lineup {
	margin-left: 18%;
	font-family: 'Arial';	
}
	
a:link {
	color: white;
	text-decoration: none;	
}

a:visited {
	color: white;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: none;
}

a:active {
	color: white;
	text-decoration: none;
} 	  
	  
.containerleft {
  position: relative;
  width: 32%;
}

.containercenter {
  position: relative;
  width: 32%;
}

.containerright {
  position: relative;
  width: 32%;
}

.containerleftm {
  position: relative;
  width: 50%;
}

.containerrightm {
  position: relative;
  width: 50%;
}

.container_top {
  position: relative;
  top: -10px;
  right: 11%;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
}

.container_middle {
  position: relative;
  top: 35px;
  right: 11%;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
}

.container_bottom {
  position: relative;
  top: 80px;
  right: 11%;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlayleft {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 10px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkbutik2.jpg");
  background-size: cover;  
  border-radius: 120px;
}

.overlaycenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 10px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkweb.jpg");
  background-size: cover;  
  border-radius: 120px;
}

.overlayright {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 10px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkclub2.jpg");
  background-size: cover;  
  border-radius: 120px;
}

.overlay_top {
  position: absolute;
  top: 5;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120%;
  width: 100%;
  opacity: 0;
  border: 5px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkbutik2.jpg");
  background-size: cover;  
  border-radius: 50px;
  z-index: 100;
}

.overlay_middle {
  position: absolute;
  top: 5;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120%;
  width: 100%;
  opacity: 0;
  border: 5px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkweb.jpg");
  background-size: cover;  
  border-radius: 50px;
  z-index: 100;  
}

.overlay_bottom {
  position: absolute;
  top: 5;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120%;
  width: 100%;
  opacity: 0;
  border: 5px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../imgs/pkclub3.jpg");
  background-size: cover;  
  border-radius: 50px;
  z-index: 100;  
}

.overlayleftm {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 10px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../images/left_mobile.jpg");
  background-size: cover;  
  border-radius: 320px;
}

.overlayrightm {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 10px solid #BA6E9B; 
  transition: .5s ease;
  background-color: #2E2F2F;
  background-image: url("../images/right_mobile.jpg");
  background-size: cover;  
  border-radius: 320px;
}

.containerleft:hover .overlayleft {
  opacity: 1;
}

.containercenter:hover .overlaycenter {
  opacity: 1;
}

.containerright:hover .overlayright {
  opacity: 1;
}

.containerleftm:hover .overlayleftm {
  opacity: 1;
}

.containerrightm:hover .overlayrightm {
  opacity: 1;
}

.container_top:hover .overlay_top {
  opacity: 1;
}

.container_middle:hover .overlay_middle {
  opacity: 1;
}

.container_bottom:hover .overlay_bottom {
  opacity: 1;
}

.text {
	font-size: 20px;
	color: white;
	text-align: center;	  
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.text2 {
	font-size: 26px;	
	color: white;
	text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
	background: rgb(125,126,125); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(125,126,125,1) 0%, rgba(14,14,14,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
	border: 2px solid #BA6E9B; 
	border-radius: 0px 80px 0px 100px;
	text-align: center;	  
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 25px;
	height: 200px;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.outline {
	text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
	background: rgb(125,126,125); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(125,126,125,1) 0%, rgba(14,14,14,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
}	

.text_full {
	font-size: 40px;
}

.text_mobile {
	font-size: 20px;
}

.titlem {
 text-align: center; 
 font-size: 42px;
 font-weight: bold;
 font-family: 'PT Serif';
  -webkit-filter: blur(1px) drop-shadow(-8px -8px 3px gray);
}

.menufooter {
	font-size: 14px;
	position:fixed;
	bottom: 0px;
	background-color: black;
	color: #ffffff;
	width: 100%;
	padding: 0px;		
	text-align: center;
	z-index: 1;
    filter:opacity(30%);
}

.menufooter_phone {
	font-size: 14px;
	position:fixed;
	bottom: 0px;
	background-color: black;
	color: #ffffff;
	width: 100%;
	padding: 0px;		
	text-align: center;
	z-index: 1;
    filter:opacity(90%);
}

a.emailfooter:link,
a.emailfooter:visited {	
	text-decoration: none;
	color: white;
}

a.emailfooter:hover {
	text-shadow: none;
	text-decoration: none;
	color: white;
}

a.emailfooter:active {
	text-decoration: none;	
	color: white;
} 

.choose {	
	font-size: 28px; 
	text-align: center;
    margin: auto;
    width: 60%;
    border: 0px;
    padding: 10px;	
}
