/* The side navigation menu */
.sidenav {
 height: 100%; /* 100% Full-height */
 width: 0; /* 0 width - change this with JavaScript */
 position: fixed; /* Stay in place */
 z-index: 1; /* Stay on top */
 top: 0; /* Stay at the top */
 left: 0;
 background: #2196F3;  /* fallback for old browsers */
 background: -webkit-linear-gradient(to right, #00d2ff, #2196F3);  /* Chrome 10-25, Safari 5.1-6 */
 background: linear-gradient(to right, #00d2ff, #2196F3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 overflow-x: hidden; /* Disable horizontal scroll */
 padding-top: 60px; /* Place content 60px from the top */
 transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
 padding: 20px 8px 20px 32px;
 text-decoration: none;
 font-size: 25px;
 color: #fff;
 display: block;
 transition: 0.3s;
}

#boton-side {
 text-decoration: none;
 font-size: 25px;
 color: #fff;
 display: block;
 transition: 0.3s;
 min-width: 200px;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
 color: #f1f1f1;
 background-color: rgba(255, 255, 255, 0.25);
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
 position: absolute;
 top: 0;
 right: 25px;
 font-size: 36px;
 margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
 transition: transform .5s;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
 .sidenav {padding-top: 15px;}
 .sidenav a {font-size: 18px;}
}

/* Hide horizontal scroll */
body {
  overflow-x: hidden;
}

/* Large Screen */
#item-menu {
  transition: 0.3s;
  background: none;
}

#item-menu:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* DROPDOWN MENU 'MI CUENTA' DESKTOP */
.dropdown {
  /*position: relative;
  display: inline-block;*/
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  margin-top: 60px;
  margin-right: 25px;
  right: 0;
  min-width: 150px;
  transition: all 0.15s;
}

.dropdown:hover .dropdown-content {
  display: block;
}
