
/* Header -> Full page search form */

.full-page-search {
  position: relative;
  padding: 0;
  margin-left: 10px;
  margin-right: 20px;
}

.search-icon,
.mobile-menu {
  position: relative;
  margin: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid var(--theme-color-one);
}

.search-icon i,
.mobile-menu i {
  line-height: 32px;
}

.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--content-bg);
  z-index: 50;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.search-box.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.search-box-content {
  position: relative;
  z-index: 60;
  text-align: center;
}

.search-box-content .block {
  width: 100%;
  margin: 0 auto;
}

.search-box-content .block-title {
  color: var(--dark-text-color);
  text-transform: uppercase;
  font-size: 28px;
  font-family: sans-serif;
  font-weight: 900;
}

.search-box-content form label {
  display: none;
}

.search-box-content input[type="search"] {
  width: 90%;
  margin: 2em 0;
  padding: 0 26px 6px 0;
  font-size: 18px;
  background: url("../images/search.svg") top right no-repeat;
  background-size: 24px;
  border: 0;
  border-bottom: 2px solid var(--content-border-color);
  border-radius: 0;
  outline: 0;
}

.search-box-content input[type="search"]:focus {
  border: 0;
  border-bottom: 2px solid var(--content-border-color);
}

.search-box-content input[type="submit"] {
  display: inline-block;
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  color: var(--theme-color-one);
  background: transparent;
  border: 2px solid var(--theme-color-one);
  border-radius: 50px;
  padding: 8px 22px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;  
}

.search-box-content input[type="submit"]:hover {
  background: var(--theme-color-one);
  color: white;
}

.search-box-close {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 60;
  cursor: crosshair;
}

.search-results a:hover {
	color: var(--theme-color-three);
}

.search-box-close .close {
	float: right;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    z-index: 100;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

