.logo {
    margin: 0;
    font-weight: normal;
    text-align: center;
}
.logo-name {
    letter-spacing: -3px;
    font-size: 65px;
    text-decoration: none;
    color: #DE6262;
}
.logo-slogan {
    display: block;
    margin-top: -8px;
    font-size: 16px;
    color: #8B8B8B;
}
@media screen and (max-width: 414px) {
    .logo-name {
        font-size: 55px;
    }
}
.search {
  position: relative;
  max-width: 675px;
  margin: 0 auto;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
}
.search-input {
  width: 100%;
  padding: 30px 30px 30px 65px;
  font-size: 20px;
  color: #de6262;
  background-image: url("/static/images/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 30px center;
  border-radius: 8px;
  border: 1px #e5e5e5 solid;
}
.search-input::placeholder {
  color: #949494;
}
.search.search-active .search-input {
  border-radius: 8px 8px 0 0;
}
.search .search-results {
  display: none;
}
.search.search-active .search-results {
  display: block;
}
.search-results {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  max-height: 450px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 8px 8px;
  border: 1px #e5e5e5 solid;
  background-color: white;
}
.search-results-item {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  text-decoration: none;
  transition: 0.2s background-color;
}
.search-results-item:hover {
  background-color: #f4f4f4;
}
.search-results-item > img {
  width: 66px;
  height: 97px;
  margin-right: 15px;
  object-fit: cover;
  border-radius: 8px;
}
.search-results-item h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: normal;
  color: #000;
}
.search-results-item ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.search-results-item li {
  margin-right: 5px;
}
.search-results-item li:last-child {
  margin-right: 0;
}
.search-loader {
  padding: 15px 30px;
}

.search-loader > div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.search-loader > div > div:first-child {
  margin-right: 15px;
}

.search-loader > div > div:nth-child(2) span {
  display: inline-block !important;
}

.search-no-movies {
  padding: 40px 15px;
  color: #949494;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .search-input {
    padding: 20px 5px 20px 45px;
    background-position: 15px center;
  }
  .search-results {
    top: 65px;
  }
}

.badge {
    padding: 3px 7px;
    color: white;
    font-size: 12px;
    background-color: #DE6262;
    border-radius: 10px;
}
.header {
    display: flex;
    padding: 75px 0 60px;
    justify-content: space-between;
    align-items: center;
}
.header-no-search {
    justify-content: center;
}
.header-column-1 {
}
.header-column-2 {
    max-width: 675px;
    flex: 1;
}
@media screen and (max-width: 930px) {
    .header {
        display: block;
        padding-top: 25px;
    }
    .header-column-2 {
        margin: 40px auto 0;
    }
}
@media screen and (max-width: 414px) {
    .header {
        padding: 25px 0 30px;
    }
}
.footer {
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}
.footer a {
    display: inline-block;
    color: #de6262;
    font-size: 14px;
    text-decoration: none;
    transition: 0.4s transform;
}
.footer a:hover {
    transform: scale(1.1);
}
.footer p {
    margin: 0;
}
@media screen and (max-width: 414px) {
    .footer {
        padding-top: 20px;
    }
}
