#search-dialog::backdrop {
    background-color: RGBA(0, 0, 0, 0.5);
}
#search-dialog {
    position: relative;
    width: clamp(10rem, 80%, 50rem);
    background-color: #fefefe;
    border: none;
    padding: 32px 24px 32px 32px;
}
#search-dialog-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#search-dialog-close-btn svg {
    height: 32px;
    width: 32px;
    display: block;
}
#search-dialog-label {
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
}
#search-dialog-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: 4px 10px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: 1px solid #dedede;
    border-radius: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .12);
    box-sizing: border-box;
    font-size: 1.2em;
    height: 44px;
    margin: 0;
    max-width: 420px;
    padding: 0 8px;
    width: clamp(5rem, 64%, 30rem);
}
#search-dialog-search-bar,
#search-dialog-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
#search-dialog-search-btn {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-left: 0 solid;
    border-radius: 0;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    height: 44px;
    font-size: 1em;
    margin-top: 0;
    padding: 0 16px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .12);
    box-sizing: border-box;
}

#search-dialog-results {
    display: grid;
}

.dcf-progress-spinner{
    -webkit-animation: rotation 1.333333333s linear infinite;
    animation: rotation 1.333333333s linear infinite;
    border: .2em solid;
    border-radius: 50%;
    border-right: .2em solid transparent;
    height: 1em;
    width: 1em;
    will-change: transform;
    justify-self: center;
    align-self: center;
}
@-webkit-keyframes rotation{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes rotation{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}