.search-headerbox .search-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .search-headerbox .search-toggle { margin: 0 24px 0 11px; }
}

.search-headerbox .icon {
    width: 24px;
    height: 24px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.search-headerbox .icon.icon-search {
    background-image: url(/includes/public/assets/shared/svg/icon-search.svg);
}

.search-headerbox .icon.icon-search-yellow {
    background-image: url(/includes/public/assets/shared/svg/icon-search-48x48-gold.svg);
}

.search-headerbox .icon.icon-close {
    width: 27px;
    height: 27px;
    background-image: url(/includes/public/assets/shared/svg/close-X-60x60.svg);
    background-size: 180%;
}

.search-headerbox .search-pane {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.search-headerbox .search-pane.fade-ripple-enter-active,
.search-headerbox .search-pane.fade-ripple-leave-active {
    transition: opacity 300ms cubic-bezier(0,0,0.3,1);
}

.search-headerbox .search-pane .background {
    position: absolute;
	z-index: 1;
	top: -150vh;
	right: -150vh;
	border-radius: 50%;
	background-color: #111;
    transform-origin: center;
    opacity: 0.99;
}

.search-headerbox .search-pane.fade-ripple-enter-active .background,
.search-headerbox .search-pane.fade-ripple-leave-active .background {
    transition: transform 300ms cubic-bezier(0,0,0.3,1);
}

.search-headerbox .search-pane.fade-ripple-enter .background,
.search-headerbox .search-pane.fade-ripple-leave-to .background { transform: scale(0); }

.search-headerbox .search-pane .form-container {
    position: relative;
    z-index: 2;
    top: 81px;
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1024px;
}

.search-headerbox .search-pane form {
    display: block;
    margin-bottom: 32px;
}

.search-headerbox .search-pane.fade-ripple-enter-active .form-container {
    transition: opacity 200ms cubic-bezier(0,0,0.3,1) 100ms;
}

.search-headerbox .search-pane.fade-ripple-leave-active .form-container {
    transition: opacity 200ms cubic-bezier(0,0,0.3,1);
}

.search-headerbox .search-pane.fade-ripple-enter .form-container,
.search-headerbox .search-pane.fade-ripple-leave-to .form-container { opacity: 0; }

.search-headerbox .search-pane form .inner { position: relative; }

.search-headerbox .search-pane form label {
    display: block;
    width: 100%;
}

.search-headerbox .search-pane form input[type="search"] {
    display: block;
    padding: 16px 64px 16px 16px;
    width: 100%;
    height: 64px;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    border: 1px solid #fff;
    background-color: #000;
}

.search-headerbox .search-pane form input[type="search"]::placeholder { color: #fff; }

.search-headerbox .search-pane form .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
}
