nav{
    font-size: 14px;
    line-height: 1.5;
}

.dropdown-arrow {
    width: 10px;
    float: right;
    padding: 1px 0px 0 5px;
}

.c-nav li:hover .sub-menu {
    opacity: 1;
    top: 50%;
    -webkit-animation: fadein 1s;
    -moz-animation: fadein 1s;
    animation: fadein 1s;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.c-nav li {
    position: relative;
}

.c-nav .sub-menu {
    position: absolute;
    background-color: #ffffff;
    background-image: none;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.04);
    top: -10000000000000px;
    opacity: 0;
    width: 150px;
}

.c-nav .sub-menu li {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-width: 0px;
    border-top-style: none;
    border-right-width: 0px;
    border-right-style: none;
    border-bottom-width: 1px;
    border-bottom-color: rgba(128, 128, 128, .2);
    border-bottom-style: solid;
    border-left-width: 0px;
    border-left-style: none;
    background-color: rgb(255, 255, 255);
    background-image: none;
}

.c-nav .sub-menu li a {
    color: #000000 !important;
}

#colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul {
    background-color: #ffffff;
    background-image: none;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.04);
}

#colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul li {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-width: 0px;
    border-top-style: none;
    border-right-width: 0px;
    border-right-style: none;
    border-bottom-width: 1px;
    border-bottom-color: rgba(128, 128, 128, .2);
    border-bottom-style: solid;
    border-left-width: 0px;
    border-left-style: none;
    background-color: rgb(255, 255, 255);
    background-image: none;
}

#colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul>li.hover {
    background-color: rgb(173, 148, 105);
}

#colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul>li:hover, #colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul>li.hover {
    background-color: rgb(173, 148, 105);
}

#colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul li.current_page_item, #colibri .style-237>div>.colibri-menu-container>ul.colibri-menu li>ul>li.current_page_item:hover {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-width: 0px;
    border-top-style: none;
    border-right-width: 0px;
    border-right-style: none;
    border-bottom-width: 1px;
    border-bottom-color: rgba(128, 128, 128, .2);
    border-bottom-style: solid;
    border-left-width: 0px;
    border-left-style: none;
    background-color: rgb(173, 148, 105);
    background-image: none;
}

#menuToggle
{
  display: block;
  position: relative;
  /* top: 50px;
  left: 50px; */

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle > input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle {
    display: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle > input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle > input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
 #menuToggle > input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100vw;
  margin: -20px 0 0 -80vw;
  /* padding: 50px; */
  top: 0px;
  padding-top: 20px;
  min-height: 100vh;

  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-200vw, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 20px;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle > input:checked ~ ul
{
  transform: none;
}

#menuToggle > ul > li > label{
  color: #232323;
}

#menuToggle > ul > li > input[type="radio"]:checked ~ label{
  border-bottom: 1px #232323 solid;
}

#menuToggle > ul > li > input[type="radio"]{
  position: absolute;
  left: -9999px;
}

#menuToggle > ul > li > ul > li {
  padding-left: 0px;
  padding-right: 0px;
}

#menuToggle > ul > li > ul > li:first-child{
  margin-top: 10px;
}

#menuToggle > ul > li > input[type="radio"] ~ ul{
  height: 0;
  transform: scaleY(0);
}

#menuToggle > ul > li > input[type="radio"]:checked ~ ul{
  height: 100%;
  transform-origin: top;
  transition: transform .2s ease-out;
  transform: scaleY(1);
}


@media (max-width:680px) {
	.hide-mobile,
    nav{
        display: none;
    }

    #menuToggle{
        display: block;
    }
}
