.fixed-search{
    display: none;
}
.fixed-search.show{
    position: fixed;
    background-color: #000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999999;
    display: block;
    overflow: auto;
}
.fixed-search-content{
    padding: 0 75px;
}

.fixed-search-head .close-cta{
    text-align: right;
    margin-top: 70px;
    margin-bottom: 72px;
}
.form-search{
    border-bottom: 1px solid #6f6f71;
    display: flex;
    align-items: center;
    margin-bottom: 30px;;
}

.form-search .search-entry {
    outline: none;
    border: none;
    background: none;
    color: #fff;
    width: 100%;
    font-family: "Plus Jakarta Sans";
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.no-result{
    font-family: 'Georgia';
    font-size: 20px;
    color: #fff;
}

.no-result p{
    margin-bottom: 20px;
}

.no-result ul li{
    margin-bottom: 10px;
}

.no-result ul li .reset-font {
    margin-right: 10px;
}

.no-result ul li .reset-font svg polygon {
    fill: #fff;
}

.has-results {
    padding-top: 30px;
    font-size: 28px;
}

.has-results .count {
    color: #fff;
    opacity: 0.5;
    margin-bottom: 35px;
}

.has-results .results-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px 0;
}

.has-results .results-wrapper .search-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px 0;
}

.search-item a {
    color: #fff;
}

#search-modal.loading::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
}

#search-modal.loading .lds-ring{
    display: inline-block;
}

.lds-ring {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

#search-modal{
    height: 0; 
}
#search-modal.show{
    animation: search-anim 1.2s;
    height: 100%; 
}
@keyframes search-anim {
    0% {
        height: 0; 
    }
    100% {
        height: 100%; 
    }
}

.submit-search-form{
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.submit-search-form img{
    height: 30px;
    width: 30px;
}

  