﻿/* Hero */
.dlc-hero {
    color: #fff;
    background-size: cover;
    background-position: center;
    background-color: #0864AE;
    background-image: url(/Images/v3/hero-blue-background.svg);
}

.dlc-hero-title {
    margin: 0 0 16px;
    font: 700 48px/1.1 "Roboto", sans-serif;
}

.dlc-hero-copy {
    margin: 0;
    max-width: 1177px;
    font: 700 20px/28px "Roboto", sans-serif;
}

.select-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.select-input__label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #212121;
}

.select-input__field {
    height: 40px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px 8px 8px 12px;
    appearance: none;
}

    .select-input__field:has(option[value=""]:checked) {
        color: #9e9e9e;
    }

    .select-input__field option:not([value=""]) {
        color: #212121;
    }

.select-input__wrapper {
    position: relative;
    display: inline-block;
}

    .select-input__wrapper::after {
        content: url(/Images/v3/icon-select-caret.svg);
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: #9e9e9e;
        pointer-events: none;
        height: 16px;
    }
