#modal-search {
    position: fixed;
    z-index: 99999;
    width: 100px;
    height: 0;
    opacity: 0;
    background-color: rgba(3, 93, 114, .8);
    backdrop-filter: blur(4px);
    transform: translate(-50%, 100%);
    transition: all .5s ease-out allow-discrete;
    bottom: 0;
    left: 50%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;

    &[data-open="true"] {
        opacity: 1;
        transform: translate(-50%, 0);
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .modal-close {
        position: absolute;
        top: calc(var(--spacing) * 8);
        right: calc(var(--spacing) * 8);
    }

    .modal-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .modal-search-form {
        width: 48rem;
        padding: calc(var(--spacing) * 8);
    }
}
