﻿/*
* Pure CSS Components - http://www.felipefialho.com/css-components/
* Author: Luiz Felipe Tartarotti Fialho
* hi@felipefialho.com
* http://www.felipefialho.com/
*/
.btn-dropdown {
cursor: pointer; z-index: 2;
}
.dropdown {
  display: inline-block;
}
.dropdown-overlay {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
}
.dropdown-inner {max-height: 255px; 
text-align: center; background: #000001; color: white; width: 96%; position: absolute;  left: 0px; margin-top: 36px; padding: 0px 2%; opacity: 0; -webkit-transition: opacity 0.2s; -o-transition: opacity 0.2s; transition: opacity 0.2s; visibility: hidden; z-index: 999 !important;
}
.dropdown-hover:hover .dropdown-inner,
.dropdown-open:checked ~ .dropdown-inner {
  opacity: 100;
  visibility: visible;
}
.dropdown-hover:hover .dropdown-overlay,
.dropdown-open:checked ~ .dropdown-overlay {
  display: block;
}


#topmenu_links .dropdown {padding: 32px 14px 28px 14px; border-bottom: 8px solid #a71212;} #topmenu_links .dropdown:hover {border-bottom: 8px solid #730D0D; background: #ED5454; color: white;}



#dropmenu-item {
  width: 186px;
  height: 255px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-color: #666;
  position: relative;
  overflow: hidden;
  margin: 0px 1px;
  position: relative;
}

#dropmenu-item p {
  position: absolute;
  bottom: -12px;
  left: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: Open Sans;
  font-size: 26px;
  text-align: left;
}

a #dropmenu-item, a:hover dropmenu-item {
  color: white;
  text-decoration: none;
  text-shadow: 5px 4px 6px black;
}

#dropmenu-item:hover {
-moz-box-shadow: inset 0 22px 42px #131313;
-webkit-box-shadow: inset 0 22px 42px #131313;
box-shadow: inset 0 22px 42px #131313;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-kthtml-transition: all 0.2s linear;
transition: all 0.2s linear;
}

#dropmenu-toplink {
  position: absolute;
  width: 100%;
  text-align: right;
  left: 0px;
  top: 22px;
}

#dropmenu-toplink_txt {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

#dropmenu-toplink a {
  background: white;
  border-radius: 3px;
  padding: 5px 14px;
  color: #a71212;
  font-family: 'Open Sans';
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

#dropmenu-toplink a:hover {
  color: #131313 !important;
  text-decoration: none !important;
}