/* header area css */
.tv-area {
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
}

.sticky {
  left: 0;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
}

.header-area {
  border-bottom: 1px rgba(0, 0, 0, 0.16) solid;
}

.header-logo a {
  display: block;
  margin: auto;
  max-width: 120px;
}

.header-top-area {
  background-color: #222;
  font-size: 15px;
  padding: 10px 0;
}

.header-top-area a,
.header-top-area {
  color: #fff;
}

.header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 40px;
}

.header-top-area i {
  color: #f7be49;
}



/* sub menu */
.main-menu nav > ul > li > .sub-menu > li > .sub-menu {
  background: #ffffff none repeat scroll 0 0;
  border-top: 3px solid #ff60a3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 100%;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 220px;
  z-index: 9;
}

.main-menu nav > ul > li > .sub-menu > li:hover .sub-menu {
  top: 0 !important;
  opacity: 1;
  top: 100%;
  visibility: visible;
}

ol.sub-menu {
  padding-left: 0px;
}

ol.login-menu {
  padding-left: 0px;
}

.dropdown-toggle::before {
  display: none;
}

.dropdown-toggle::after {
  display: none;
}

.navbar-top-collapse > .nav > li > a {
  background: none;
  border: 0;
  clear: both;
  color: #5A5A5A;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: .25rem 1.5rem;
  text-align: inherit;
  white-space: nowrap;
  width: 100%;
}

.header-top-btn {
  margin-left: 20px;
  margin-right: 20px;
  display: inline-block;
}

.header-top-btn a {
  color: #1d1d1f;
}

.header-top-btn a:hover {
  color: #ffb939;
}

/* search form area css */

ul.header-search {
  display: inline-block;
  margin: 5px 0px 0px 25px;
}

ul.header-search li a {
  color: #111111;
}

ul.header-search li a:hover {
  color: #ffb939;
}

#search-overlay {
  display: none;
}

.search-form-area {
  background-image: -moz-linear-gradient(
    178deg,
    rgb(249, 103, 133) 0%,
    rgb(254, 115, 51) 100%
  );
  background-image: -webkit-linear-gradient(
    178deg,
    rgba(249, 103, 133, 0.9) 0%,
    rgba(254, 115, 51, 0.9) 100%
  );
  background-image: -ms-linear-gradient(
    178deg,
    rgb(249, 103, 133) 0%,
    rgb(254, 115, 51) 100%
  );
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  border: #a0a0a0 solid 1px;
  margin: 0;
  z-index: 99999;
}

.search-form-area:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}

.search-form-centered {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 10px 15px;
  color: #fff;
  border: none;
  background: transparent;
}

#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}

.search-form input.form-control {
  box-shadow: none;
  color: #777777;
  height: 80px;
  background: #f8f8f8;
  border: none;
  border-radius: 30px;
  padding: 20px 30px;
}

.search-form button {
  background: #fab939;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  border-radius: 30px;
  cursor: pointer;
  padding: 9px 50px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

#close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
}

#close-btn:hover {
  cursor: pointer;
}
