@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
}

.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.d-none {
  display: none !important;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.main .main-body {
  width: 650px;
}
.main .logo {
  margin: 0 auto 25px;
  display: block;
  text-align: center;
}
.main .logo img {
  width: 55%;
}
.main .lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.main .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #5692cb;
  border-color: #5692cb transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
  margin-top: -2px;
  margin-left: -3px;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main .search-block {
  position: relative;
}
.main form {
  display: flex;
  z-index: 3;
  height: 44px;
  background: #fff;
  border: 1px solid #dfe1e5;
  box-shadow: none;
  border-radius: 24px;
  margin: 0 auto;
  padding: 0 20px;
  transition: 0.3s linear;
}
.main form.active {
  border-radius: 24px 24px 0 0;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: rgba(223, 225, 229, 0);
}
.main form:hover {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: rgba(223, 225, 229, 0);
}
.main form .icon {
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.main form input {
  background-color: transparent;
  border: 0;
  color: black;
  font-size: 16px;
  flex: 1;
}
.main form input:focus {
  outline: none;
}
.main .auto-complete {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 6px rgba(32, 33, 36, 0.28);
  border: 0;
  overflow: hidden;
  transition: 0.3s linear;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.main .auto-complete.open {
  opacity: 1;
  visibility: visible;
}
.main .auto-complete ul {
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
}
.main .auto-complete ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.main .auto-complete ul::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  outline: none;
  border-radius: 8px;
}
.main .auto-complete ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
}
.main .auto-complete ul li p {
  flex: 1;
  margin-right: 20px;
}
.main .auto-complete ul li:hover {
  background: #eee;
}
.main .buttons {
  display: flex;
  justify-content: center;
}
.main .buttons .link {
  border: 0;
  background-color: transparent;
  color: #3477ba;
  cursor: pointer;
  margin-right: 10px;
  border-bottom: 1px solid currentColor;
  transition: 0.3s linear;
  text-decoration: none;
}
.main .buttons .link:hover {
  border-color: transparent;
}
.main .main-text {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
}
.main .main-text a {
  text-decoration: none;
  color: #3477ba;
  border-bottom: 1px solid transparent;
  transition: 0.3s linear;
}
.main .main-text a:hover {
  border-color: currentColor;
}
@media (max-width: 767px) {
  .main .main-body {
    width: auto;
  }
}

footer {
  text-align: center;
  padding: 20px 16px;
  color: #666;
  font-size: 0.7em;
}
footer a {
  text-decoration: none;
  transition: 0.3s linear;
  border-bottom: 1px solid transparent;
}
footer a:hover {
  border-color: currentColor;
}

/*# sourceMappingURL=style.css.map */
