/*General*/
:root{
  /*Main Colors*/
  --black-medium: #202020;
  --black-light: #454545;
  --gray-light: #505050;
  --gray-pearl: #e5e5e5;
  --gray-oxford: #141516;
  --gray-50: #ccc;
  --sky-blue: #0099CC;
  --white-100: #fafafa;
  --white-85: #aaa;
  /*Shadows*/
  --light-shadow: rgba(0,0,0,0.1);
}

@font-face{
	font-family: 'Oxigen-Regular';
	src: url(fonts/Oxygen-Regular.ttf);
}

@font-face{
	font-family: 'Oxigen-Bold';
	src: url(fonts/Oxygen-Bold.ttf);
}

*,html,body{
  font-size: 14px;
}

body{
	width: 100%;
  color: var(--black-medium);
}

/*Cabecera de Acceso*/
.top-header{
	position: relative;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background-color: var(--black-medium);
  color: var(--white-100);
	z-index: 10;
}

/*Menu*/
.navigation{
  position: sticky;
  top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	background-color: #fff;
	box-shadow: 0px 3px 3px 0px var(--light-shadow);
  z-index: 200;
}

.navigation .logo{
	display: flex;
  align-items: center;
  justify-content: center;
	height: 80%;
	width: 10%;
}

.navigation .logo img{
	display: block;
	height: 100%;
}

.menu {
  display: flex;
	background: #fff;
  width: 80%;
	height: 100%;
  margin-right: 20px;
  text-transform: capitalize;
}

.menu > ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
	width: 70%;
  height: 100%;
}

.menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 5);
  height: 100%;
  cursor: pointer;
}

.menu a {
	display: block;
	line-height: 40px;
	text-decoration: none;
  text-align: center;
	color: var(--black-medium);
  font-family: 'Oxigen-Bold';
	font-size: 1rem;
}

.menu li:hover a {
	color: #0099CC;
}

.menu ul.sub-menus{
  position: absolute;
  display: none;
}
.menu ul.sub-menus li {
	display: block;
	width: 100%;
}
.menu ul.sub-menus a {
  text-align: left;
	color: #444444;
	font-size: 1rem;
}
.menu li:hover ul.sub-menus {
  position: absolute;
  top: 80px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  box-shadow: 5px 5px 5px 0 var(--light-shadow);
  display: block;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  z-index: 99;
}

.menu ul.sub-menus a:hover{
	color: #0099CC;
}

.search{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 15%;
}

.search input{
  display: block;
  height: 30px;
  width: calc(100% - 30px);
  border-right: 0;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-radius: 1px;
}

.search button{
  display: block;
  background-color: #fff;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  border-left: 0;
  border-bottom: 1px solid #eee;
  width: 30px;
  height: 30px;
}

.userControls{
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 100%;
  width: 15%;
	overflow: hidden;
}

.userControls .btnUserControls{
	cursor: pointer;
}

@media screen and (max-width: 800px){
	.menu {position:relative}
	.menu ul {background:#111;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none}
	.menu ul.sub-menus {width:100%;position:static;}
	.menu ul.sub-menus a {padding-left:30px;}
	.menu li {display:block;float:none;width:auto;}
	.menu input, .menu label {position:absolute;top:0;left:0;display:block}
	.menu input {z-index:4}
	.menu input:checked + label {color:white}
	.menu input:checked + label:before {content:"\00d7"}
	.menu input:checked ~ ul {display:block}
}


.quickSearch
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 40px;
}

.quickSearch input
{
	width: 220px;
	height: 30px;
	padding-left: 5px;
	border: 0;
	border-bottom: 1px solid #454545;
	background-color: transparent;
	transition: background-color 0.5s ease-in-out, border-bottom 0.2s linear;
}

.quickSearch input:focus
{
	background-color: rgba(255,255,255,0.5);
	border-bottom: 2px solid #454545;
	transition: background-color 0.5s ease-in-out, border-bottom 0.2s linear;
}

.quickSearch button
{
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	right: 30px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

/*Footer*/
footer
{
	display: block;
	width: 100%;
	background-color: var(--gray-oxford);
	color: var(--gray-light);
}

footer .title{
  font-size: 0.95rem;
}

footer .copy{
  font-size: 0.95rem;
}

footer .links{
  font-size: 0.9rem;
}

footer ul{
  width: auto;
  font-size: 0.95rem;
  list-style-position: inside;
  list-style-type: none;
  padding: 0;
}

footer a{
  text-decoration: none;
  color: var(--gray-light);
  transition: color 0.25s ease-in-out;
}

footer a:hover{
  color: var(--sky-blue);
  transition: color 0.25s ease-in-out;
}

/*General*/
.bg-pearl{
  background-color: var(--gray-pearl) !important;
}

.text-gray-light{
  color: var(--gray-light) !important;
}

.text-gray-oxford{
  color: var(--gray-oxford) !important;
}

.text-black-light{
  color: var(--gray-black-light) !important;
}

.text-justify{
  text-align: justify !important;
}

.text-regular{
  font-family: 'Oxigen-Regular';
}

.text-bold{
  font-family: 'Oxigen-Bold';
}

.btn-type-1{
	width: 100%;
	height: 50px;
  border: 0;
  border-radius: 5px;
	color: var(--white-100);
	background-color: var(--black-medium);
	cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.btn-type-1:hover{
  color: var(--white-100);
  background-color: var(--black-light);
  transition: background-color 0.25s ease-in-out;
}

.btn-type-2{
	width: 100%;
	height: 30px;
  background-color: var(--black-medium);
  border: 0;
  border-radius: 5px;
	color: var(--white-100);
	cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.25s ease-in-out;
}

.btn-type-2:hover{
  color: var(--white-100);
  background-color: var(--black-light);
  transition: background-color 0.25s ease-in-out;
}