.vsvalcolour_option {
    float: right;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 52rem;
    margin-top: 5rem;
}

@media(min-width: 992px) {
    .vsvalcolour_option {
        margin-top: 0;
    }
}

.vsvalcolour_option_label span {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #031926;
}

@media(min-width: 992px) {
    .vsvalcolour_option_label span {
        font-size: 2rem;
        line-height: 1;
    }
}

.vsvalcolour_option_select {
    width: 100%;
    height: 6.2rem;
    padding: 2.2rem 2rem;
    border: 0;
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}

@media(min-width: 992px) {
    .vsvalcolour_option_select {
        height: 7rem;
        font-size: 2rem;
        padding: 2.5rem 2rem;
    }
}

.vsvalcolour_option_select_wrapper {
    position: relative;
    background-color: white;
}

.vsvalcolour_option_select_wrapper:after {
    content: "\f078";
    position: absolute;
    top: calc(50% - 2rem);
    right: 2rem;
    font-size: 2rem;
    color: #031926;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    height: 2rem;
    width: 2rem;
    z-index: 1;
}

.vsvalcolour_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(43, 43, 43, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
}

.vsvalcolour_modal-active {
    display: flex;
}

.vsvalcolour_modal_container {
    background-color: white;
    padding: 2rem;
    margin: 0 2rem;
    width: 100%;
    max-width: 100%;
    position: relative;
}

@media(min-width: 992px) {
    .vsvalcolour_modal_container {
        max-width: 60%;
        margin: 0 auto;
        padding: 5rem;
    }
}

.vsvalcolour_modal_close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    cursor: pointer;
    font-size: 4rem;
    line-height: 1;
    color: #303030;
}

.vsvalcolour_modal_title {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 2rem;
    color: #303030;
    font-weight: 500;
}

@media(min-width: 992px) {
    .vsvalcolour_modal_title {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
}

.vsvalcolour_modal_content {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 2rem;
    color: #585858;
    font-weight: 500;
}

@media(min-width: 992px) {
    .vsvalcolour_modal_content {
        margin-bottom: 4.5rem;
    }
}

.vsvalcolour_modal_colours {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.1rem;
    margin-right: -1.1rem;
    height: 44rem;
    overflow-y: auto;
    padding-top: 1.1rem;
    position: relative;
}

@media(min-width: 992px) {
    .vsvalcolour_modal_colours {
        height: 47.7rem;
    }
}

.vsvalcolour_modal_colours_bottom {
    height: 16.4rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    display: none;
}

.vsvalcolour_modal_colours_bottom-active {
    display: block;
}

.vsvalcolour_modal_colour {
    width: calc(calc(100% / 2) - 2.2rem);
    padding: calc(1rem - 0.4rem);
    background-color: #ECECEC;
    margin-left: 1.1rem;
    margin-right: 1.1rem;
    margin-bottom: 2.2rem;
    border: 0.4rem solid #ECECEC;
    position: relative;
}

@media(min-width: 992px) {
    .vsvalcolour_modal_colour {
        width: calc(calc(100% / 7) - 2.2rem);
    }
}

.vsvalcolour_modal_colour-active {
    border: 4px solid #0053D9;
}

.vsvalcolour_modal_colour-active::after {
    position: absolute;
    width: 3.0rem;
    height: 3.0rem;
    background-color: #0053D9;
    border-radius: 50%;
    content: "\f00c";
    right: -1.5rem;
    top: -1.5rem;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-weight: 300;
    text-align: center;
}

.vsvalcolour_modal_colour_fill {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin-bottom: 1.1rem;
}

.vsvalcolour_modal_colour_content {
    text-align: center;
    font-size: 1.7rem;
    line-height: 2;
    color: #585858;
}

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

.vsvalcolour_modal_colours_button_btn {
    background-color: #0053D9;
    height: 7rem;
    line-height: 7.0rem;
    width: 24.5rem;
    text-align: center;
    color: #fff;
    font-size: var(--font-size-base);
    display: inline-block;
    cursor: pointer;
}