.rv-plv-sections {
    margin: 18px 0;
    clear: both;
}

.rv-plv-section + .rv-plv-section {
    margin-top: 18px;
}

.rv-plv-heading {
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.6;
}

.rv-plv-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rv-plv-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 86px;
    padding: 7px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.rv-plv-choice:hover,
.rv-plv-choice:focus {
    border-color: #888;
    color: inherit;
    text-decoration: none;
    transform: translateY(-1px);
}

.rv-plv-choice.is-current {
    border-color: currentColor;
    box-shadow: 0 0 0 1px currentColor;
    cursor: default;
}

.rv-plv-image-wrap {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 7px;
    background: #f5f5f5;
}

.rv-plv-choice-image {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: cover;
    display: block;
}

.rv-plv-check {
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .18);
}

.rv-plv-choice-label {
    max-width: 110px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 480px) {
    .rv-plv-choice {
        min-width: 78px;
    }

    .rv-plv-image-wrap {
        width: 64px;
        height: 64px;
    }
}
