/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */
 /* ========================================================================
   Component: Main Search
 ========================================================================== */
/*
 * 1. Create position context for dropdowns
 * 2. Needed for `form` element
 */
.uk-search-main {
  display: inline-block;
  /* 1 */
  position: relative;
  /* 2 */
  margin: 0;
}
/*
 * Icon
 */
.uk-search-main:before {
  content: "\f002";
  position: absolute;
  top: 0;
  left: 25px;
  width: 30px;
  line-height: 72px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 26px;
  color: #DA0000;
}
/* Sub-object `uk-search-field`
 ========================================================================== */
/*
 * 1. Needed to reset iOS `input[type="search"]` appearance
 */
.uk-search-field-main {
  width: 650px;
  height: 70px;
  padding: 0 5px 0 75px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  color: #DA0000;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-radius: 8px;
  background-clip: padding-box;
  font-weight: 500;
  font-size: 22px;
  line-height: 70px;
}
 @media (max-width: 767px) {
  /* mobil kereses szelesseg */
.uk-search-field-main {
  width: 200px;
  font-size: 14px;

}
}
/*
 * Needed to reset iOS `input[type="search"]` appearance
 * Higher specificity to override appearance set by normalize.less
 */
input.uk-search-field-main {
  -webkit-appearance: none;
}
/* Placeholder */
.uk-search-field-main:-ms-input-placeholder {
  color: #999999;
}
.uk-search-field-main::-moz-placeholder {
  color: #999999;
}
.uk-search-field-main::-webkit-input-placeholder {
  color: #999999;
}
/* Removes cancel button in IE10 */
.uk-search-field-main::-ms-clear {
  display: none;
}
/* Focus */
.uk-search-field-main:focus {
  outline: 0;
  border-color: rgba(0, 0, 0, 0.12);
  background-clip: padding-box;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
/* Focus + active */
.uk-search-field-main:focus,
.uk-active .uk-search-field-main {
  width: 700px;
}

 @media (max-width: 767px) {
  /* mobil kereses szelesseg */
.uk-search-field-main:focus,
.uk-active .uk-search-field-main {
  width: 220px;
}
}

/* Sub-object `uk-search-close`
 ========================================================================== */
/*
 * 1. Required for `button` elements
 * 2. Needed for Sarari
 */
.uk-search-close-main {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
  /* 1. */
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  /* 2. */
  background: transparent;
}
.uk-loading > .uk-search-close-main,
.uk-active > .uk-search-close-main {
  display: block;
}
/*
 * Icon
 */
.uk-search-close-main:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}
/* Loading icon */
.uk-loading > .uk-search-close-main:after {
  content: "\f110";
  -webkit-animation: uk-spin 2s infinite linear;
  animation: uk-spin 2s infinite linear;
}

.WP_Widget_Main_Search {
text-align:center;
}