html {
  font-size: 10px;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

@-webkit-keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

h1 {
  /*font-family: 'Roboto', sans-serif;*/
  font-size: 3.2rem;
  font-weight: 400;
}

a {
  color: #000; 
  font-family: inherit;
}

a:hover, a:focus, a:active {
  color: inherit; 
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

.genesis-skip-link li {
  height: 0;
  width: 0;
}

.screen-reader-shortcut, .screen-reader-text, .screen-reader-text span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.author-box::before, .clearfix::before, .entry::before, .entry-content::before, .footer-widgets::before, .nav-primary::before, .nav-secondary::before, .pagination::before, .site-container::before, .site-footer::before, .site-header::before, .site-inner::before, .widget::before, .wrap::before {
  content: " ";
  display: table;
}

.author-box::after, .clearfix::after, .entry::after, .entry-content::after, .footer-widgets::after, .nav-primary::after, .nav-secondary::after, .pagination::after, .site-container::after, .site-footer::after, .site-header::after, .site-inner::after, .widget::after, .wrap::after {
  clear: both;
  content: " ";
  display: table;
}

.footer-widgets .wrap:before, .footer-widgets .wrap:after {
  display: none;
}

a, button, input:focus, input[type="button"], input[type="reset"], input[type="submit"], textarea:focus, .button, .gallery img {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: none;
  cursor: pointer;
}

input {
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0; 
  background: none;
  border: 1px solid #ccc; 
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

::-webkit-input-placeholder {
  color: #aaa;
}
:-moz-placeholder {
  color: #aaa;
}
::-moz-placeholder {
  color: #aaa;
}
:-ms-input-placeholder {
  color: #aaa;
}

caption {
  color: inherit; 
}

img {
  max-width: 100%;
  height: auto;
}

img[src*=".svg"] {
  width: 100%; 
}

.search-wrap {
  position: relative;
}

.search-wrap .fa-search {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  color: #333;
  z-index: 1;
}

.search-wrap input[type="search"] {
  width: 100%; 
  font-size: 14px;
  padding: 8px 45px 8px 10px;
} 

.select-wrap {
  position: relative;
}

.widget .select-wrap:after {
  content: "\25BA";
  position: absolute;
  top: 16px; 
  right: 10px;
  font-size: 10px;
  color: #8a8a8a;
  -ms-transform: rotate(90deg); /* IE 9 */
  -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
  transform: rotate(90deg);
  pointer-events: none; 
}

.select-wrap select {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0; 
  height: 45px;
  line-height: 26px;
  padding-left: 14px;
  width: 100%;
  font-size: 1.5rem;
  border-color: #ccc;
  background: none;
} 

/*For IE10+*/
.select-wrap select::-ms-expand { 
  display: none;
}