*{margin:0; padding: 0; box-sizing:border-box;}
		html,body{background: #000; height: 100%; text-align: center;}
		
		*[class*="rain"]{
			position: absolute;
			top: 0;
			left:0;
			width: 100%;
			height: 100%;
			background-image: url('tk/rain.png');
			background-size: cover;
			background-position: top;
			z-index: 100;
			opacity: 0.1;
		}
		.rain{
			animation: raining linear infinite 0.2s;
		}
		.rain2{
			animation: raining linear infinite 2s;
		}
		@keyframes raining {
		    from {background-position: bottom;}
		    to {background-position: top;}
		}

		span#shadow{
			position: absolute;
			border-radius: 10000px;
			height: 10000px;
			width: 10000px;
			background-attachment: fixed;
			background-size: 200% 200%;
			background-position: -50% -50%;
			box-shadow: 0 0 5000px 4500px #000 inset, 0 0 5000px 5000px #000;
			margin-top:-5000px;
			margin-left:-5000px;
			z-index: 1000;
			animation: shadow 1s 1 ;
		}
		@keyframes shadow {
		    from {box-shadow: 0 0 5000px 6000px #000 inset, 0 0 5000px 5000px #000;}
		    to {box-shadow: 0 0 5000px 4500px #000 inset, 0 0 5000px 5000px #000;}
		}
		span#thunder{
			position: absolute;
			background: #fff;
			height: 100%;
			width: 100%;
			z-index: 1500;
			opacity: 0;
			top:0;
			left:0;
			animation: thunder 10s infinite;
		}
		@keyframes thunder {
		    1% {opacity: 0;}
		    49% {opacity: 0;}
		    50% {opacity: 0.5;}
		    51% {opacity: 0;}
		    52% {opacity: 0.5;}
		    53% {opacity: 0;}
		    54% {opacity: 0.5;}
		    55% {opacity: 0;}
		    100% {opacity: 0}
		}
		div.footer{
			width: 100%;
			position: fixed;
			bottom: 0;
			z-index: 2000;
			color:#ccc;
		}
		div.footer *{
			color:#ccc;
			text-decoration: none;
		}

		@media (max-width: 767px) {

			*[class*="rain"]{
				display: none;
			}
			.rain{
				display: none;
			}
			.rain2{
				display: none;
			}
			span#shadow{
				display: none;
			}
			span#thunder{
				display: none;
			}



		}

		/* Portrait and Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (-webkit-min-device-pixel-ratio: 1) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}



/* Portrait */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: portrait) 
and (-webkit-min-device-pixel-ratio: 1) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 1) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* ----------- iPad 3, 4 and Pro 9.7" ----------- */

/* Portrait and Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* Portrait */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: portrait) 
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* ----------- iPad Pro 10.5" ----------- */

/* Portrait and Landscape */
@media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1112px)
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
and (min-device-width: 834px) 
and (max-device-width: 834px) 
and (orientation: portrait) 
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen 
and (min-device-width: 1112px) 
and (max-device-width: 1112px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 2) {

	*[class*="rain"]{
		display: none;
	}
	.rain{
		display: none;
	}
	.rain2{
		display: none;
	}
	span#shadow{
		display: none;
	}
	span#thunder{
		display: none;
	}

}

* {
	box-sizing: border-box;
  }
  
  .input-number {
	width: 80px;
	padding: 0 12px;
	vertical-align: top;
	text-align: center;
	outline: none;
  }
  
  .input-number,
  .input-number-decrement,
  .input-number-increment {
	border: 1px solid #f1f1f1;
	height: 40px;
	user-select: none;
	border-radius: 0px;
  }
  
  .input-number-decrement,
  .input-number-increment {
	display: inline-block;
	width: 30px;
	line-height: 38px;
	background: #f1f1f1;
	color: #444;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
  }
  .input-number-decrement:active,
  .input-number-increment:active {
	background: #ddd;
  }
  
  .input-number-decrement {
	border-right: none;
	border-radius: 4px 0 0 4px;
  }
  
  .input-number-increment {
	border-left: none;
	border-radius: 0 4px 4px 0;
  }












  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 20%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

	
}

.modal2 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 20%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

	
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #bd0d0d;
    margin: auto;
    padding: 0;
    
    width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 12px 16px;
    background-color: #bd0d0d;
    color: white;
	border-bottom: none;
}

.modal-body {padding: 2px 26px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #fefefe;
    color: white;
}

.ml25{
	margin-left:25px;
}

.ml15{
	margin-left:-15px;
}

@media (max-width: 767px) {
	.modal-content {
		position: relative;
		background-color: #bd0d0d;
		margin: auto;
		padding: 0;
		
		width: 340px;
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
		-webkit-animation-name: animatetop;
		-webkit-animation-duration: 0.4s;
		animation-name: animatetop;
		animation-duration: 0.4s
	}

	.ml25{
		margin-left:10px;
	}

	.ml15{
		margin-left:0px;
	}
	

}


.five, .four, .three, .two, .one {
	border: none;
	border-radius: 4px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.48);
	overflow: hidden;
	padding: 20px 50px 20px 70px;
	margin-bottom: 20px;
	font-size: 20px;
	position: relative;
	color: white;
	outline: none;
	cursor: pointer;
	width: 100%;
	transition: background-position 0.7s, box-shadow 0.4s;
	background-size: 110%;
	font-family: "pixel", sans-serif;
  }
  .five:hover, .four:hover, .three:hover, .two:hover, .one:hover {
	background-position: 0% 30%;
  }
  .five:hover:after, .four:hover:after, .three:hover:after, .two:hover:after, .one:hover:after {
	right: -40px;
	transition: right 0.4s, transform 30s 0.2s linear;
  }
  .five:before, .four:before, .three:before, .two:before, .one:before, .five:after, .four:after, .three:after, .two:after, .one:after {
	font-family: FontAwesome;
	display: block;
	position: absolute;
  }
  .five:before, .four:before, .three:before, .two:before, .one:before {
	transition: all 1s;
	font-size: 30px;
	left: 25px;
	top: 19px;
  }
  .five:after, .four:after, .three:after, .two:after, .one:after {
	transition: right 0.4s, transform 0.2s;
	font-size: 100px;
	opacity: 0.3;
	right: -120px;
	top: -17px;
  }
  
  
  .five {
	box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.16) inset, 0px 0px 10px 0px #000000;
	background-image: linear-gradient(to bottom, #b9003087, rgba(154, 40, 87, 0.24)), url("tk/mint-bg.jpg");
	width: 250px; 
	font-family: pixel;
  }
  .five:hover {
	box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.16) inset, 0px 0px 30px 0px #ea1212;
  }
  .five:hover:after {
	transform: scale(1);
  }
  .five:hover:before {
	transform: scale(1.2);
  }
  
  .five b {
	color: #F764FF;
	font-weight: 700;
  }






  
  .four {
	box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.16) inset, 0px 0px 10px 0px #000000;
	background-image: linear-gradient(to bottom, #b9003087, rgba(154, 40, 87, 0.24)), url("tk/claim.jpg");
	width: 250px; 
	font-family: pixel;
  }
  .four:hover {
	box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.16) inset, 0px 0px 30px 0px #ea1212;
  }
  .four:hover:after {
	transform: scale(1);
  }
  .four:hover:before {
	transform: scale(1.2);
  }
  
  .four b {
	color: #F764FF;
	font-weight: 700;
  }




/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
	transition:         
		opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}


 /* Click the image one by one to see the different layout */

/* Owl Carousel */

.owl-prev {
	background: url('tk/arrow-left.png') left center no-repeat;
	height: 54px;
	position: absolute;
	top: 50%;
	width: 75px;
	z-index: 1000;
	left: 2%;
	cursor: pointer;
	color: transparent;
	margin-top: -27px;
  }
  
  .owl-next {
	background: url('tk/arrow-right.png') right center no-repeat;
	height: 54px;
	position: absolute;
	top: 50%;
	width: 75px;
	z-index: 1000;
	right: 2%;
	cursor: pointer;
	color: transparent;
	margin-top: -27px;
  }
  
  .owl-prev:hover,
  .owl-next:hover {
	opacity: 0.5;
  }
  
  
  /* Owl Carousel */
  
  
  /* Popup Text */
  
  .white-popup-block {
	background: #FFF;
	padding: 20px 30px;
	text-align: left;
	max-width: 650px;
	margin: 40px auto;
	position: relative;
  }
  
  .popuptext {
	display: table;
  }
  .popuptext p {
	margin-bottom: 10px;
  }
  .popuptext span {
	font-weight: bold;
	float: right;
  }
  /* Popup Text */
  
  /* Icon CSS */
  .item {
	position: relative;
  }
  .item i {
	display: none;
	font-size: 4rem;
	color: #FFF;
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
  }
  .item a {
	display: block;
	width: 100%;
  }
  .item a:hover:before {
	content: "";
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0%;
	z-index: 1;
	
  }
  .item a:hover i {
	display: block;
	z-index: 2;
  } 