.simple-live-search-results {
    transition: all 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.simple-live-search-form-modal-container.active {
    animation-name: move-in;
    animation-duration: .4s;
    animation-fill-mode: both;
}

.simple-live-search-results .result-item {
    animation-name: slide-in;
    animation-duration: .6s;
    animation-fill-mode: both;
}

@keyframes move-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -60px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.simple-live-search-container {
    position: relative;
    width: fit-content;
}

.search-icon-container {
    padding: 0;
    line-height: 0;
}

/*
input:-webkit-autofill,
input:-webkit-autofill:focus,
*/
.clear-input-button,
input.simple-live-search-input[type=text],
input.simple-live-search-input[type=text]:focus,
.show-more-button,
.show-more-button:hover,
.search-icon-container,
.search-icon-container:hover {
    background-color: transparent;
    transition: background-color 600000s 0s, color 600000s 0s;
}

.live-search-form-container {
    display: flex;
    min-width: calc(300px + (600 - 300) * ((100vw - 300px) / (1680 - 300)));
    padding: 0 22px;
    align-items: center;
    justify-content: space-between;
}

.search-modal-icon-container .search-icon,
.search-icon-container .search-icon {
    fill: currentColor;
	color: inherit;
	width: 1.2em;
    height: auto;
    aspect-ratio: 1 / 1;
	filter: drop-shadow(0px 0px 0px currentColor);
}

.search-icon-container .search-icon {
    width: calc(17.5px + (18.5 - 17.5) * ((100vw - 300px) / (1680 - 300)));
    height: calc(17.5px + (18.5 - 17.5) * ((100vw - 300px) / (1680 - 300)));
}

input.simple-live-search-input[type=text] {
    border-radius: 0;
    padding: 10px 20px;
    line-height: 1.2;
    width: 100%;
    border: 0;
    padding-left: 0;
    font-size: calc(19px + (24 - 19) * ((100vw - 300px) / (1680 - 300)));
}

input.simple-live-search-input[type=text]:focus,
input.simple-live-search-input[type=text]:hover,
input.simple-live-search-input[type=text]:visited {
    border:0;
    box-shadow:none;
    outline: 0;
    background-color: transparent;
}

.simple-live-search-form .result-item {
    display: flex;
    align-items: center;
    gap: 0.85em;
}

.simple-live-search-results {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 14px;
    margin-top: 18px;
}

.simple-live-search-form .result-thumbnail {
    width: calc(60px + (82 - 60) * ((100vw - 300px) / (1680 - 300)));
    height: calc(60px + (82 - 60) * ((100vw - 300px) / (1680 - 300)));
    object-fit: cover;
}

#simple-live-search-form-modal-container .simple-live-search-form .result-title {
    padding: 0;
    max-width: 250px;
    line-height: 1.15;
    font-weight: bold;
	text-align: left
}

.clear-input-button {
    font-size: calc(13.5px + (15 - 13.5) * ((100vw - 300px) / (1680 - 300)));
    opacity: .7;
    line-height: 1.5;
    padding: 0 2px;
    margin: 0 6px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-position: under;
}

.show-more-button,
.simple-live-search-form .result-title {
    font-size: calc(15.5px + (17 - 15.5) * ((100vw - 300px) / (1680 - 300)));
    font-size: .75em;
}

.search-modal-content {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding-bottom: 1.5em;
}


.search-modal-close {
    position: absolute;
    top: 0.25em;
    right: 0.5em;
    font-size: larger;
    cursor: pointer;
    padding: 0.5em;
}


/* new */

html.overflow-hidden {
    overflow: hidden;
}


.simple-live-search-form-modal-container.active {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    transform: translate3d(0,0,0);
    content-visibility: visible;
    visibility: visible;
    opacity: 1;
    position: fixed;
    background: rgb(255, 255, 255, .97);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}


.clear-input-button,
#simple-live-search-form-modal .show-more-button {
    color: #fff;
    mix-blend-mode: difference;
}

#simple-live-search-form-modal .show-more-button {
    margin: auto;
    margin-top: 1.5em;
    border-radius: 30px;
    box-shadow: 0 0 1px 0px rgb(212 212 212);
    padding: 14px;
    width: fit-content;
    line-height: 1.5;
}

#simple-live-search-form-modal .show-more-button:hover {
    opacity: 0.6;
}


@media (min-width: 690px) {
    .simple-live-search-results {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-modal-content {
        align-items: center;
    }
    
    .live-search-form-container {
        border-bottom: 1px solid;
    }
}

@media (max-width: 689.9px) {
    
    .simple-live-search-form {
        display: flex;
        flex-direction: column;
        align-self: center;
    }
    
    .simple-live-search-form.active {
        align-self: flex-start;
        gap: 10px;
        height: 100%;
        top: 12vw;
        position: relative;
    }
    
    .simple-live-search-results {
        overflow: scroll;
    }
    
    .live-search-form-container {
        border-bottom: 1px solid #dadada;
        border-radius: 28px;
    }
}