font-face {
  font-family: 'helveticaregular';
  src: url('../fonts/helvetica-webfont.woff2') format('woff2'),
  url('../fonts/helvetica-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'helveticabold';
  src: url('../fonts/helvetica-bold-webfont.woff2') format('woff2'),
  url('../fonts/helvetica-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "helveticaregular";
  color: #3a3a3a;
}

a {
  color: #3a3a3a;
}

a:hover {
  color: #3a3a3a;
  border-bottom: 1px solid;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "helveticaregular";
}

#main {
  margin-top: 50px;
}

@media (max-width: 992px) {
  #main {
    margin-top: 30px;
  }
}

.form-control{
  border-radius: 0;
  height: 46px;
  line-height: 50px;
  font-size: 14px;
}
.form-control:hover, .form-control:focus{
  box-shadow: none;
  border:1px solid;
}

.btn-black{
  color: #FFFFFF;
  background: #c84210;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px;
  font-family: helveticabold;
  letter-spacing: 1px;
  border-radius: 5px;
}

.btn-yellow{
  color: #FFFFFF;
  background: #ffc439;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 5px 12px;
  font-family: helveticabold;
  letter-spacing: 1px;
  border-radius: 5px;
}
.btn-white{
  color: #3a3a3a;
  background: #FFFFFF;
  border: 1px solid;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px;
  font-family: helveticabold;
  letter-spacing: 1px;
}

.btn-black:hover, .btn-black:focus{
  color: #FFFFFF;
  box-shadow: none;
}

.btn-white:hover, .btn-white:focus{
  box-shadow: none;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  border-bottom: 1px solid #EBEAEB;
  z-index: 997;
  padding: 15px 50px;
  background: #FFFFFF;
}

#header .logo {
  font-size: 1.33333em;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: 'helveticabold';
  letter-spacing: none;
}

#header .logo a {
  color: #c84210;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.nav-menu > ul > li:first-child{
  padding: 10px 0 10px 0px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #888888;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'helveticaregular';
  font-weight: normal;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #222222;
  border-bottom: 1px solid;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #34b7a7;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #34b7a7;
}

.mobile-nav {
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #34b7a7;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}

.header-social-links .social-icon-grid{
  text-align: center;
}

.header-social-links a {
  color: #222222;
  padding-left: 14px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  font-size: 16px;
}

.header-social-links a:hover {
  color: #34b7a7;
  text-decoration: none;
  border: none;
}

@media (max-width: 992px) {
  .header-social-links {
    padding: 0 48px 0 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 400px;
  /* background: url("../img/home_background.jpg") 0 -240px; UNCOMMENT TO RESTORE BACKGROUND */
  background-size: cover;
  padding: 0;
  position: relative;
}
.overlay{
  background: rgba(104,88,88,0.4);
  position: absolute;
  width: 100%;
  height: 100%;
}

#hero .container {
  padding-top: 20px;
  position: relative;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin-bottom: 10px;
  font-size: 66px;
  font-weight: 700;
  line-height: 56px;
  font-family: 'helveticabold';
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

#hero h2 {
  color: #FFFFFF;
  margin: 10px 0 0 0;
  font-size: 24px;
  font-family: 'helveticabold';
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

#hero h3 {
  color: #000000;
  margin: 20px 0 0 0;
  font-size: 14px;
  font-family: 'helveticabold';
}

#hero .btn-about {
  font-family: 'helveticabold';
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 0;
  border-radius: 2px;
  transition: 0.5s;
  margin-top: 40px;
  color: #333333;
  text-shadow: 3px 2px 4px #E8643E;
  background: transparent;
}

#hero .btn-about-sec {
  font-family: 'helveticabold';
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 0;
  border-radius: 2px;
  transition: 0.5s;
  margin-top: 20px;
  color: #333333;
  text-shadow: 3px 2px 4px #E8643E;
  background: transparent;
}

#hero .btn-about:hover {
  background: transparent;
}


@media (max-width: 992px) {
  #hero{
    background-size: cover;
    background-position: 0;
  }
  #hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
#collections{
  padding: 0;
}

.section-bg {
  background-color: #e7f8f6;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #34b7a7;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.collection-box{
  padding-bottom: 94%;
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
  margin-bottom: 50px;
}

.collection-box::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #685858;
  opacity: 0.4;
}

.collection-title{
  font-size: 24px;
  line-height: 28px;
  font-family: helveticabold;
  color: #ffffff;
  position: absolute;
  top: 36%;
  text-align: center;
  width: 100%;
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.collection-box-link:hover .collection-box::before{
  opacity: 0.8;
}

.collection-header{
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: helveticabold;
  margin: 50px 0 50px 0;
}

.products-header{
  text-align: center;
  font-family: helveticabold;
  font-size: 34px;
  margin-bottom: 40px;
  width: 100%;
  display: inline-block;
}

.products-box{
  margin-bottom: 20px;
}

.products-box img{
  max-width: 100%;
}

.filter-option{
  border: none;
  margin-left: 15px;
  color: #3a3a3a;
  outline: none;
}

.filter-group{
  margin-right: 40px;
  font-size: 15px;
}

.filter-group label{
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
}

.products-digit{
  float: right;
  font-size: 15px;
  font-style: italic;
}
.products-listing{
  margin-top: 50px;
}

.product-title{
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 13px;
  font-size: 13px;
  font-family: helveticabold;
}

.product-price{
  margin-top: 5px;
  line-height: 16px;
  font-size: 15px;
  font-family: helveticabold;
  margin-bottom: 0;
}

.product-offer-price{
  color: #c84210;
  margin-top: 3px;
  line-height: 16px;
  font-size: 14px;
  font-family: helveticabold;
  margin-bottom: 0;
}

.sold-out-tag{
  font-size: 9px;
  color: #ff0000; 
  text-transform: uppercase;
  border: 1px solid;
  letter-spacing: 1px;
  padding: 3px 8px;
}

.buy-again-tag{
  font-size: 9px;  
  text-transform: uppercase;
  border: 1px solid;
  letter-spacing: 1px;
  padding: 3px 8px;
}

.pay-balance-tag{
  font-size: 9px;
  color: #ff0000; 
  text-transform: uppercase;
  border: 1px solid;
  letter-spacing: 1px;
  padding: 3px 8px;
}

.product-box-link:hover .product-title{
  text-decoration: underline;
}
.product-details h4{
  font-size: 24px;
  font-family: helveticabold;
}

.product-details-title{
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 22px;
  font-size: 22px;
  font-family: helveticabold;
}
.product-detail-price{
  margin-top: 3px;
  font-size: 16px;
  font-family: helveticabold;
  margin-bottom: 0px;
}

.product-detail-offer-price{
  margin-top: 3px;
  font-size: 16px;
  color: #c84210;
  font-family: helveticabold;
  margin-bottom: 5px;
}

.product-tax-line a {
  font-size: 14px;
  color: #c84210;
  margin-bottom: 30px;
}

.product-quantity .form-control{
  width: 70px;
}

.product-quantity label{
  font-size: 14px;
  margin-bottom: 5px;
}

#productDetails{
  padding: 0;
  margin-bottom: 50px;
}

.go-back, .go-ahead{
  border: 1px solid;
  padding: 8px 16px;
}

.go-back span{
  margin-left: 10px;
  font-family: helveticabold;
  font-size: 13px;
  text-transform: uppercase;
}

.go-back.disabled{
  opacity: 0.4;
}
.pagination{
  margin: 60px auto 0;
}
.page-digit{
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 8px;
}
.cart-count{
  font-size: 10px;
  position: relative;
  background: #c84210;
  color: #FFFFFF;
  z-index: 999;
  top: -8px;
  left: -12px;
  border-radius: 50%;
  padding: 2px 5px;
}

.margin-bottom-50{
  margin-bottom: 50px;
}


.product-details-content{
  margin-top: 30px;
  font-size: 15px;
  line-height: 24px;
}

.continue-shopping{
  text-align: center;
  margin-bottom: 50px;
}
.continue-shopping a{
  border-bottom: 1px solid;
  font-size: 15px;
}
.cart-header{
  text-align: center;
  font-family: helveticabold;
  font-size: 34px;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
}
.order-submitted-thanks{
  text-align: center;
  font-family: helveticabold;
  font-size: 20px;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
}

.order-submitted-thanks-line-two{
  text-align: center;
  font-family: helveticabold;
  font-size: 18px;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
}

.order-submitted-thanks-text{
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.order-submitted-thanks-text a{
  border-bottom: 1px solid;
  color: #c84210;
}

.cart-item-title{
  font-size: 17px;
  font-family: helveticabold;
  margin: 0;
}
.cart-item-remove{
  font-size: 15px;
}
.cart-item-remove a{
  border-bottom: 1px solid;
}
.cart-table-label{
  font-size: 13px;
  text-transform: uppercase;
}
.cart-image{
  width: 70%;
}
.shipping-text-cart{
  text-align: right;
  font-size: 14px;
}
.action-buttons-cart{
  text-align: right;
  width: 100%;
}
#cart hr{
  margin: 30px 0;
}
.svgbtn{
  width: 100px;
  padding: 10px;
  margin-right: 6px;
}
.search-input{
  border: 1px solid #c8c8c8;
  height: 30px;
  margin-right: 5px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f6f6f6;
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}

#footer .footer-links, #footer .footer-icon-links{
  padding: 0;
  margin-top: 20px;
}
#footer .footer-links li{
  display: inline;
  list-style: none;
  margin-right: 15px;
}

#footer .footer-icon-links li{
  display: inline;
  list-style: none;
  margin-right: 2px;
}
#footer .footer-icon-links-right{
  float: right;
  margin-top: 15px;
}
#footer .footer-icon-links-right li{
  display: inline;
  list-style: none;
  margin-left: 20px;
}

.footer-title{
  font-size: 18px;
  letter-spacing: 1px;
  font-family: helveticabold;
  margin-bottom: 24px;
}
.underline{
  margin-top: 90px;
}

.copyright-text{
  text-align: right;
  margin-top: 15px;
  font-size: 12px;
}
#myCarousel .list-inline {
  white-space:nowrap;
  overflow-x:auto;
}

#myCarousel .carousel-item{
	text-align: center;
	margin-bottom: 10px;
}
/*#myCarousel .carousel-item img{
  width: 100%;
}*/

#myCarousel .carousel-item .img-fluid{
  height: 240px;
}
#myCarousel .list-inline-item .img-fluid{
	height: 80px;
}

#myCarousel .carousel-indicators {
  position: static;
  left: initial;
  width: initial;
  margin-left: initial;
}

#myCarousel .carousel-indicators a:hover, #myCarousel .carousel-indicators a:focus{
  border: none;
}

#myCarousel .carousel-indicators > li {
  width: initial;
  height: initial;
  text-indent: initial;
}

#myCarousel .carousel-indicators > li.active img {
  opacity: 1;
}

#checkout{
  padding: 0;
}
#checkout .zazi-logo{
  color: #c84210;
}
#checkout .col-sm-7:first-child{
  border-right: 1px solid #c8c8c8;
}
.checkout-form{
 /* padding: 50px 20px 50px; */ 
}
.breadcrumb{
  background: transparent;
  padding: 10px 0;
}
.breadcrumb ul{
  padding: 0;
  margin: 0;
}
.breadcrumb ul li{
  display: inline-block;
  font-size: 14px;
}
.breadcrumb ul li i{
  margin: 0 5px;
  font-size: 16px;
}
.express-checkout-action p{
  margin-bottom: 10px;
}
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin: 20px 0;
}
.separator::before, .separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #c8c8c8;
}
.separator::before {
  margin-right: .25em;
}
.separator::after {
  margin-left: .25em;
}
.checkout-form-content .keepme{
  font-size: 14px;
  margin: 10px 0;
}
.checkout-form-content .keepme input{
  top: 2px;
  position: relative;
}
.contact-block{
  margin-bottom: 30px;
}
.footer-checkout ul{
  padding: 0;
}
.footer-checkout ul li {
  display: inline-block;
  font-size: 13px;
  margin-right: 10px;
}
.checkout-details{
  padding: 50px 20px 0 20px;
}
.checkout-item-name, .checkout-item-price{
  font-size: 15px;
  margin-top: 20px;
}
.checkout-box{
  margin-bottom: 20px;
}
.checkout-totals table{
  width: 100%;
  font-size: 14px;
}
.checkout-totals-main table{
  width: 100%;
  font-size: 16px;
}
.checkout-totals table tr td{
  padding-top: 5px;
}
.checkout-totals table tr td strong{
  font-size: 15px;
}
/*###*/
.order-list table{
  width: 100%;
  font-size: 14px;  
}

.order-list-main table{
  width: 100%;
  font-size: 16px;
}
.order-list table tr td{
  padding-top: 10px;
}
.order-list table tr td strong{
  font-size: 15px;
}
/*###*/

.checkout-totals-main table tr td strong{
  font-size: 18px;
}
.checkout-product-digit{
  position: absolute;
  background: rgba(114,114,114,0.9);
  font-size: 11px;
  color: #ffffff;
  height: 20px;
  width: 20px;
  text-align: center;
  border-radius: 50%;
  padding-top: 3px;
  right: 8px;
  top: -5px;
}
.welcome-text{
  font-size: 12px !important;
}
@media (max-width: 960px) {
  .checkout-details{
    padding: 0;
  }
}
.continue-shopping{
  font-size: 12px;
  margin-top: 5px;
}
.continue-shopping i{
  font-size: 12px;
}
@media (max-width: 768px) {
  .filter-group{
    margin-right: 15px;
    font-size: 14px;
  }
  .filter-group label{
    font-size: 11px;
  }
  .products-digit{
    font-size: 14px;
  }
  #header{
    padding: 15px 10px;
  }
  .cart-image{
    width: 100%;
  }
}

@media (max-width: 540px) {
  .products-box{
    text-align: center;
  }
	.products-box img{
      width: 360px;
      height: 240px;
}
  .products-digit{
    width: 100%;
    display: inline-block;
    text-align: left;
    float: none;
    margin-top: 8px;
  }
  .cart-item-price{
    margin-top: 0px;
    margin-bottom: 0;
  }
  .cart-item-input{
    margin-top: 5px;
  }
  .cart-item-total{
    display: none;
  }
  .action-buttons-cart{
    margin: 0 15px;
  }
  .cart-item-title{
    font-size: 13px;
  }
  .cart-item-remove{
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .mobile-nav-toggle{
    right: 5px;
  }
  #hero{
    height: 300px;
    background-size: cover;
    background-position: 0;
  }
  #hero .container{
    padding-top: 20px;
  }
  #hero h1{
    margin-bottom: 0;
  }
  #hero .btn-about{
    margin-top: 20px;
  }
  #footer .footer-links li{
    font-size: 12px;
    margin-right: 10px;
  }
  .footer-title{
    margin-bottom: 5px;
  }
  #footer .footer-icon-links li{
    margin-right: 1px;
  }
  #footer .footer-icon-links-right{
    float: none;
    text-align: center;
    padding: 0;
  }
  .copyright-text{
    text-align: center;
  }
  .filter-group{
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .header-social-links{
    padding: 0 40px 0 0;
  }
}
@media (max-width: 380px) {
  .header-social-links a{
    padding-left: 2px;
  }
  .header-social-links{
    padding: 0 25px 0 0;
  }
}


.mk-search-trigger {
  position: absolute;
  top: 45%;
  left: 45%;
}


/* Search Overlay */

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform input[type=submit] {
  position: absolute;
  width: 100px;
  height: 100%;
  background-color: transparent;
  border: 0;
  right: 0;
  top: 0;
}
#mk-fullscreen-searchform:focus{
  outline: none;
  border: none;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform .fullscreen-search-icon {
  font-size: 25px;
  position: absolute;
  right: 15px;
  width: 25px;
  top: 30px;
  color: #fff;
  color: rgba(255, 255, 255, .2);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}
.fullscreen-search-icon:hover,
.fullscreen-search-icon:focus{
  border: none;
  outline: none;
  color: #fff !important;
  -webkit-transition: transform ease-out .2s;
  -moz-transition: transform ease-out .2s;
  -ms-transition: transform ease-out .2s;
  -o-transition: transform ease-out .2s;
  transition: transform ease-out .2s;
  transform: rotate(180deg);
}

#mk-fullscreen-searchform {
  position: relative;
  verticle-align: middle;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input {
  width: 100%;
  background-color: transparent;
  -webkit-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
  -moz-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, .1);
  border: 0;
  border-bottom: 2px solid;
  text-align: center;
  font-size: 35px;
  padding: 20px;
  color: #2c2c2c;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input:focus{
  boder: none;
  outline: none;
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show, .mk-fullscreen-about-overlay.mk-fullscreen-search-overlay-show, .mk-fullscreen-faq-overlay.mk-fullscreen-search-overlay-show, .mk-fullscreen-install-overlay.mk-fullscreen-search-overlay-show {
  visibility: visible;
  opacity: 1;
}
.mk-fullscreen-about-overlay, .mk-fullscreen-faq-overlay, .mk-fullscreen-install-overlay{
  padding: 75px 24px 20px 24px;
}
.mk-fullscreen-about-overlay h2, .mk-fullscreen-faq-overlay h2, .mk-fullscreen-install-overlay h2{
  margin-bottom: 20px;
  text-align: center;
}
.mk-fullscreen-about-overlay p, .mk-fullscreen-faq-overlay p, .mk-fullscreen-install-overlay p, .mk-fullscreen-install-overlay ol li, .mk-fullscreen-install-overlay div{
  text-align: left;
}

.mk-fullscreen-search-overlay, .mk-fullscreen-about-overlay, .mk-fullscreen-faq-overlay, .mk-fullscreen-install-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #f1f1f1;
  text-align: center;
  -webkit-transition: all ease-in-out .25s;
  -moz-transition: all ease-in-out .25s;
  -ms-transition: all ease-in-out .25s;
  -o-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  overflow: auto;
  z-index: 999;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close:link,
.mk-fullscreen-search-overlay .mk-fullscreen-close:visited,
.mk-fullscreen-about-overlay .mk-fullscreen-close:link,
.mk-fullscreen-about-overlay .mk-fullscreen-close:visited,
.mk-fullscreen-faq-overlay .mk-fullscreen-close:link,
.mk-fullscreen-faq-overlay .mk-fullscreen-close:visited,
.mk-fullscreen-install-overlay .mk-fullscreen-close:link,
.mk-fullscreen-install-overlay .mk-fullscreen-close:visited{
  color: #2c2c2c;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close, .mk-fullscreen-about-overlay .mk-fullscreen-close, .mk-fullscreen-faq-overlay .mk-fullscreen-close, .mk-fullscreen-install-overlay .mk-fullscreen-close {
  position: absolute;
  right: 50px;
  top: 70px;
  font-size: 26px;
  -webkit-transition: transform ease-out .2s;
  -moz-transition: transform ease-out .2s;
  -ms-transition: transform ease-out .2s;
  -o-transition: transform ease-out .2s;
  transition: transform ease-out .2s;
  transform: rotate(0deg);
  z-index: 99;
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper, .mk-fullscreen-about-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper, .mk-fullscreen-faq-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper, .mk-fullscreen-install-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  ms-transform: scale(1);
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper, .mk-fullscreen-about-overlay #mk-fullscreen-search-wrapper, .mk-fullscreen-faq-overlay #mk-fullscreen-search-wrapper, .mk-fullscreen-install-overlay #mk-fullscreen-search-wrapper {
  display: inline-block;
  max-width: 1000px;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  ms-transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}
.install-button a{
  font-weight: bold;
  color: #333333;
  border-bottom: 1px solid;
}
/* Search Button */

#search-button i{
  color: white !important;
  font-size: 20px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#mk-fullscreen-search-input:focus{
  box-shadow: 0px 3px 0px 0px rgba(0,86,210,0.54) !important;
}
