/**
 * Theme Name:  Buro
 */
.Regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.Bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.Medium {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.pointer:hover {
  cursor: pointer;
}
.pointer:hover * {
  cursor: pointer;
}
.overflow {
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.block {
  display: block;
  float: left;
}
.block100 {
  display: block;
  float: left;
  width: 100%;
}
.transition {
  transition: all 0.2s linear;
}
.search-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.search-section .wrap_float {
  height: 440px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.search-section .search-submit:before {
  background-image: url(../img/search-white.svg);
}
.search-section.search--open {
  z-index: 2;
}
.search-section.search--open .search-form {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.search-section.search--open .search-close {
  opacity: 1;
}
.search-form {
  width: auto;
  opacity: 0;
  transform: translate3d(0, 150px, 0);
  transition: opacity 1s, transform 1s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.search-input {
  width: 744px;
  height: 74px;
  background: #2b2b2b;
  display: block;
  float: left;
  border-radius: 8px;
  border: 0;
  padding: 0 30px;
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #fff;
  padding-right: 80px;
}
.search-submit {
  width: 74px;
  height: 74px;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
}
.search-submit:before {
  width: 22px;
  height: 22px;
  background: url(../img/search.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin-top: -11px;
  margin-left: -11px;
}
.search-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  position: absolute;
  top: 44px;
  right: 0;
  opacity: 0;
  transition: opacity 1s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.search-close:hover {
  cursor: pointer;
}
.search-close:hover * {
  cursor: pointer;
}
.search-close:before {
  width: 12px;
  height: 12px;
  background: url(../img/close.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dark .search-input {
  background: #cecece;
  color: #000;
}
.dark .search-section.search--open .search-close {
  background: #1d1d1d;
}
.dark .search-section .search-submit:before {
  background-image: url(../img/search.svg);
}
@media screen and (max-width: 1000px) {
  .search-input {
    width: 92vw;
  }
  .search-section .wrap_float {
    height: 360px;
  }
}
@media screen and (max-width: 590px) {
  .search-input {
    height: 60px;
    font-size: 20px;
    padding: 0 20px;
    padding-right: 65px;
  }
  .search-submit {
    width: 60px;
    height: 60px;
  }
  .search-close {
    top: 30px;
  }
}
