<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Free Pillow Cross Sell styles */
.free-pillow {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-bottom: 16px;
}

.free-pillow-title {
    background-color: #fff3f3;
    border-radius: 5px 5px 0 0;
    color: red;
    font-size: 18px;
    font-weight: bold;
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-pillow-title img {
    margin-right: 5px;
    width: 20px;
}

.free-pillow-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 16px;
}

.free-pillow-body .pillow-selection {
    flex: 0 1 48%;
    text-align: center;
    padding: 16px 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.free-pillow-body .pillow-description {
    padding-left: 10px;
}

.pillow-selection .pillow-name {
    font-size: 14px;
}

.pillow-selection .pillow-image {
    max-width: 90%;
    margin: auto;
}

.pillow-sizes select.pillow-select {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    width: 90%;
    margin: auto;
    padding: 8px 25px 8px 8px;
    position: relative;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='angle-down' class='svg-inline--fa fa-angle-down fa-w-10' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='currentColor' d='M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center right 8px;
    background-size: 10px auto;
}

.pillow-selection.selected {
    border: 1px solid red;
    background: none;
    position: relative;
}

.pillow-selection.selected::before {
    content: 'SELECTED';
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    background: white;
    color: red;
    width: 70px;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 998px) {
    .free-pillow-body {
        flex-direction: row;
    }

    .pillow-selection {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 500px) {
    .free-pillow-body {
        flex-direction: column;
        padding: 0 16px 16px 16px;
        text-align: center;
    }
}

.pillow-selection.selected:lang(fr)::before {
    content: 'CHOISI';
}
</pre></body></html>