.details {
    border: 1px solid #6CA6CC;
    border-radius: 4px;
    padding: 16px 24px;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .details {
        padding: 12px 18px;
    }
}

.details > summary {
    box-sizing: border-box;
}


.js-tabs__panel--hidden {
    display: none;
}

.component--compare-popup {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    bottom: 0;
    z-index: 99;
    pointer-events: none;
    user-select: none;
}

.component--compare-popup--top {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 2;
    transition: all 0.4s ease;
}

[data-popup-number="0"] .component--compare-popup--top {
    top: 0px;
}

[data-popup-number="1"] .component--compare-popup--top {
    top: -45px;
}

[data-popup-number="2"] .component--compare-popup--top {
    top: -45px;
}

[data-popup-number="3"] .component--compare-popup--top {
    top: -45px;
}


.component--compare-popup--top--inner {
    display: flex;
    justify-content: flex-end;
}

.component--compare-popup--button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    background-color: var(--wp--preset--color--sw-blue);
    color: var(--wp--preset--color--sw-white);
    font-weight: 400;
    border-radius: 10px 10px 0px 0px;
    min-width: 250px;
    pointer-events: auto;
    height: 46px;
    border-top: 0.25px solid var(--wp--preset--color--sw-sky);
    border-left: 0.25px solid var(--wp--preset--color--sw-sky);
    border-right: 0.25px solid var(--wp--preset--color--sw-sky);
    border-bottom: 0.25px solid var(--wp--preset--color--sw-blue);
}

.component--compare-popup--button > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.component--compare-popup--button > svg {
    transform: scaleY(-100%);
    transition: all 0.1s ease;
}

.component--compare-popup[data-popup-open="true"] .component--compare-popup--button > svg {
    transform: scaleY(100%)
}

.component--compare-popup  {
    transition: transform 0.5s ease;
}

.component--compare-popup[data-popup-open="false"]  {
    transform: translateY(100%);
}

.component--compare-popup[data-popup-open="true"]  {
    transform: translateY(0%);
}

.component--compare-popup--main {
    min-height: 100px;
    background-color: var(--wp--preset--color--sw-blue);
    border-top: 0.25px solid var(--wp--preset--color--sw-sky);
    border-radius: 20px 20px 0 0;
    padding: 24px 0;
    pointer-events: auto;
}

@media screen and (max-width: 640px) {
    .component--compare-popup--main {
        min-height: 100px;
        background-color: var(--wp--preset--color--sw-blue);
        border-top: 0.25px solid var(--wp--preset--color--sw-sky);
        border-radius: 0;
    }
}

.component--compare-popup--main--inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

@media screen and (max-width: 640px) {
    .component--compare-popup--main--inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
}

.still-need-help {
    display: flex;
    margin-top: clamp(16px, 0.775rem + 0.25vw, 24px);
    font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-decoration-line: underline;
    text-transform: uppercase;
    color: var(--wp--preset--color--sw-white);
    font-family: var(--wp--preset--font-family--ibm-plex-mono);
}

.component--compare-popup--main--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media screen and (max-width: 640px) {
    .component--compare-popup--main--right {
        flex-direction: column;
        align-items: flex-start;
    }
}

[data-compare-popup-list] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

[data-compare-popup-list] div {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #6CA6CC;
    padding: 8px;
    color: #E8E8E8;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 22.5px */
}

[data-compare-popup-list] [data-remove-from-compare] {
    cursor: pointer;
    appearance: none;
    background: transparent;
}

@media screen and (max-width: 640px) {

    [data-compare-popup-list] {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    [data-compare-popup-list] div {
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 4px;
        border: 1px solid #6CA6CC;
        padding: 6px;
        color: #E8E8E8;
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 150%; /* 22.5px */
    }

    [data-compare-popup-list] [data-remove-from-compare] {
        height: 16px;
        width: 16px;
    }

    [data-compare-popup-list] [data-remove-from-compare] svg {
        height: 16px;
        width: 16px;
    }
}

dialog[open] {
    width: 100%;
    position: fixed;
    height: 100%;
    margin: 0;
    padding: 0;
    inset: 0;
    bottom: 0;
    max-width: none;
    max-height: none;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
    overflow: auto;
}

dialog::backdrop {
    background-color: #01395C;
    mix-blend-mode: multiply;
}

.component--search-dialog[open] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

dialog[open] .component--search-dialog--form {
    position: relative;
    max-width: 640px;
    width: 100vw;
    min-height: 200px;
    padding: 24px;
    background-color: var(--wp--preset--color--sw-white);
    border-radius: 20px;
}

.component--search-dialog .search-bar {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.component--search-dialog--inner {
    padding: 0 var(--page-gutter, 24px)
}

.component--search-dialog .search-bar input {
    flex-grow: 1;
    padding: 8px 16px;
    background-color: var(--wp--preset--color--sw-white);
    border-bottom: 2px solid var(--wp--preset--color--sw-yellow);
    outline: none;
    font-family: inherit;
    font-size: inherit;
    color: var(--wp--preset--color--sw-blue);
}

.component--search-dialog--close {
    cursor: pointer;
    appearance: none;
    background-color: transparent;
    position: absolute;
    right: 24px;
    display: flex;
    height: 33px;
    width: 33px;
}

.component--search-dialog--close svg {
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.component--search-dialog button[type=submit] {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 4px;
    background-color: var(--wp--preset--color--sw-yellow, #F7CE46);
}

@media screen and (max-width: 768px) {
    dialog[open] .component--search-dialog--form {
        width: 92.5vw;
        min-height: 125px;
    }

    .component--search-dialog button {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .component--search-dialog--close {
        cursor: pointer;
        appearance: none;
        background-color: transparent;
        position: absolute;
        right: 20px;
        top: 16px;
        display: flex;
        height: 33px;
        width: 33px;
    }
    
}