/*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-family: 'Oxigen-Regular';
  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;
	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;
  width: 70px;
  height: 70px;
  margin-left: 10px;
}

.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: start;
  list-style: none;
	width: 100%;
  height: 100%;
}

.menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  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;
}

.mobile-menu{
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  text-transform: uppercase;
  position: fixed;
  z-index: 999;
}

.mobile-menu a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #202020;
  width: 100%;
  height: 40px;
  font-family: 'Oxigen-Bold';
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #000;
}

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

.userControls .btnUserControls{
  color: var(--gray-oxford) !important;
	cursor: pointer;
}

@media screen and (max-width: 1100px){

  .navigation{
    justify-content: space-around;
  }

  .userControls{
    width: 60%;
  }

  .menu {
    display: none;
  }

}

/*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;
}

/*Cart And Checkout*/
.productImageResume
{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
	border: 1px solid #ccc;
  border-radius: 5px;
	background-color: #fff;
  margin-right: 10px;
	overflow: hidden;
}

.productImageResume img
{
  position: absolute;
  object-fit: cover;
	display: block;
  width: 100%;
	height: 100%;
}

.title2{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 30px;
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
}

#summary{
	color: #000;
}

#summary .subtotal{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
}

#summary .shippingMethods{
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

#summary .shippingMethods div:nth-child(1){
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
}

#summary .shippingMethods select{
	display: block;
	align-items: center;
	justify-content: center;
	margin: 5px auto 5px auto;
	width: 90%;
	height: 30px;
}

#summary .discountCode{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	height: 30px;
	margin: 0px auto 10px auto;
}

#summary .discountCode input{
	width: 70%;
	height: 100%;
	border: 1px solid #0f0f0f;
}

#summary .discountCode button{
	width: 30%;
	height: 100%;
	border: 1px solid #0040aa;
	color: #0040aa;
	background-color: #fff;
	cursor: pointer;
}

#summary .total{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
}

#btnCheckout{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a6ce38;
	color: #fff;
	height: 40px;
	margin-top: 10px;
	cursor: pointer;
}

#btnContinueShopping{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ed1c24;
	color: #fff;
	height: 40px;
	margin-top: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}

/*Extras*/
.container-fluid{
  min-height: calc(100vh - 347px);
}

.hide{
  display: none;
}

.show{
  display: block;
}