
@media screen and (min-width: 801px)
{
	.menu-search-small {
		display: none;
	}
}

.menu-search-small
{
	position: absolute;
    top: 35%;
    right: 80px;
    color: white;
}
.menu-search-small > a {
		color: white;
}


/* -------------------------------- 

Search Form

-------------------------------- */
.cd-main-search2 input[type="search"] {
  width: 100%;
  color: #999;
}
.cd-main-search2 input[type="search"]:focus {
  outline: none;
}
.cd-main-search2 input[type="search"]::-webkit-input-placeholder {
  color: #999;
}
.cd-main-search2 input[type="search"]::-moz-placeholder {
  color: #999;
}
.cd-main-search2 input[type="search"]:-moz-placeholder {
  color: #999;
}
.cd-main-search2 input[type="search"]:-ms-input-placeholder {
  color: #999;
}
@media only screen and (max-width: 1024px) {
  .cd-main-search2 {
    position: fixed; /*absolute;*/
    z-index: 201;
    top: 74px;
    height: 100px;
    width: 100%;
	background: transparent; /*rgba(0,0,0,0.5);*/
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -moz-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .cd-main-search2 form {
    position: relative;
    height: 100%;
    margin: 0;
  }
  .cd-main-search2 input[type="search"] {
    font-size: 2.4rem;
    height: 100%;
    background-color: transparent; /*rgba(0, 0, 0, 0.6);*/ /*black;*/
    padding-right: 170px;
  }

  .cd-main-search2 span {
    display: inline-block;
  }
  

	.x-close2 {
		display: inline-block;
		position: relative; /*absolute;*/
		height: 30px;
		width: 30px;
		opacity: 1;
		float: none!important;
	}
  
	.x-close2:hover {
	  opacity: 1;
	}

  .cd-main-search2.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .cd-search-trigger2 {
    display: inline-block;
    position: relative;
    z-index: 3;
    height: 19px;
    width: 19px;
    font-size: 20px;
    border-right: 1px solid white;
    padding-right: 38px;
  }
  

  .cd-cover-layer2 {
    display: block;
    position: fixed;
    z-index: 200;
    top: 74px;
    left: 0;
    height: 100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.86);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -moz-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .cd-cover-layer2.search-form-visible {
    opacity: 1;
    visibility: visible;
  }
}

