/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border: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:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

@blue: #007BFF;
@lightblue: #3498DB;
@white: #ffffff;

@transition: 0.4s;
@animation: 0.3s;
@swap: 1.0s;

@font-size-medium: 28px;
@font-size-small: 16px;

@octava: Octava;
@futura: Futura;

html, body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background: #f0f0f0;
}

.social-share {
	margin-top: 50px;
}

.container {
	height: 100%;
	width: 100%;
	position: absolute;
}

.button {
	cursor: pointer;
}

.round {
	-webkit-border-radius: 1000px; 
	-moz-border-radius: 1000px; 
	border-radius: 1000px;
}

.transition {
	-webkit-transition: all @transition ease;
	-moz-transition: all @transition ease;
	-ms-transition: all @transition ease;
	-o-transition: all @transition ease;
	transition: all @transition ease;
}

.animation {
	-webkit-transition: all @animation ease;
	-moz-transition: all @animation ease;
	-ms-transition: all @animation ease;
	-o-transition: all @animation ease;
	transition: all @animation ease;
}

.swap {
	-webkit-transition: all @swap ease;
	-moz-transition: all @swap ease;
	-ms-transition: all @swap ease;
	-o-transition: all @swap ease;
	transition: all @swap ease;
}

#page {
	height: 100%;
	width: 100%;

	#title {
		z-index: 50;
		background: @blue;

		#titles {
			width: 688px;
			height: 322px;
			position: absolute;
			z-index: 60;
			text-align: center;

			#startButton {
				margin-top: 255px;
				margin-left: 292px;
				font-size: @font-size-medium;
				position: absolute;
				width: 120px;
				height: 120px;
				line-height: 120px;
				background: @white;
				color: @lightblue;
				text-align: center;
				text-decoration: underline;
				font-family: @futura;
				text-transform: uppercase;

				@shadow-outer-size: 15px;
				@shadow-outer-size-hover: 30px;
				@shadow-inner-size: 0px;
				@shadow-inner-size-hover: 15px;

				-moz-box-shadow: 0px 0px 0px @shadow-inner-size @blue, 0px 0px 5px @shadow-outer-size @lightblue;
				-webkit-box-shadow: 0px 0px 0px @shadow-inner-size @blue, 0px 0px 5px @shadow-outer-size @lightblue;
				box-shadow: 0px 0px 0px @shadow-inner-size @blue, 0px 0px 5px @shadow-outer-size @lightblue;

				&:hover {
					-moz-box-shadow: 0px 0px 10px @shadow-inner-size-hover @blue, 0px 0px 5px @shadow-outer-size-hover @lightblue;
					-webkit-box-shadow: 0px 0px 10px @shadow-inner-size-hover @blue, 0px 0px 5px @shadow-outer-size-hover @lightblue;
					box-shadow: 0px 0px 10px @shadow-inner-size-hover @blue, 0px 0px 5px @shadow-outer-size-hover @lightblue;
				}
			}
		}
	}

	#medicine {
		z-index: 10;
		background: #f0f0f0;

		#medicines {
			position: absolute;
			z-index: 20;

			#pack {
				height: 565px;
				width: 748px;

				.optional {
					position: absolute;
					display: none;
				}

				#label {
					position: absolute;
					z-index: 25;
					text-align: center;
					font-size: @font-size-small;
					color: @lightblue;
					font-family: @futura;
					text-transform: uppercase;
					margin-top: 200px;
					margin-left: -50px;

					#refresh {
						margin: 15px 0px;
						cursor: pointer;

						@shadow-outer-size: 0px;
						@shadow-outer-size-hover: 10px;
						@shadow-inner-size: 0px;
						@shadow-inner-size-hover: 8px;

						-moz-box-shadow: 0px 0px 0px @shadow-inner-size #f0f0f0, 0px 0px 5px @shadow-outer-size @blue;
						-webkit-box-shadow: 0px 0px 0px @shadow-inner-size #f0f0f0, 0px 0px 5px @shadow-outer-size @blue;
						box-shadow: 0px 0px 0px @shadow-inner-size #f0f0f0, 0px 0px 5px @shadow-outer-size @blue;

						&:hover {
							-moz-box-shadow: 0px 0px 10px @shadow-inner-size-hover #f0f0f0, 0px 0px 5px @shadow-outer-size-hover @blue;
							-webkit-box-shadow: 0px 0px 10px @shadow-inner-size-hover #f0f0f0, 0px 0px 5px @shadow-outer-size-hover @blue;
							box-shadow: 0px 0px 10px @shadow-inner-size-hover#f0f0f0, 0px 0px 5px @shadow-outer-size-hover @blue;
						}
					}
				}
			}

			#share {
				width: 748px;
				position: absolute;
				z-index: 21;
				height: 43px;
				text-align: center;
				margin-top: -50px;

				img {
					cursor: pointer;
				}
			}
		}
	}
}