
.form-label {
    font-family: 'Roboto Mono' !important;
    font-size: 0.875rem !important;
    color: #3f4942 !important;
    text-transform: uppercase;
}

.form-control {
    padding: 0.313rem 0.5rem !important;
}

.form-select {
    padding: 0.313rem 3.05rem 0.313rem 0.5rem !important;
    text-overflow: ellipsis;
}

.form-control, .form-select {
    font-family: 'Rubik' !important;
    font-size: 1rem !important;
    color: #555555 !important;
    border: 1px solid #d3d3d3 !important;
    transition: border 0.25s ease;
    border-radius: 0 !important;
}

.form-control:focus, .form-select:focus {
    border: 1px solid #00B1EF !important;
    outline: none;
    box-shadow: none;
}

.form-select-wrapper {
    position: relative;
    width: 100%;
}

.form-select-wrapper::after {
    content: "";
    position: absolute;
    top: 1px;
    right: 1px;
    width: 2.55rem;
    height: calc(100% - 2px);
    border-left: 1px solid #d3d3d3;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23555555' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    margin-left: -5.1rem;
    z-index: 1;
    pointer-events: none;
    transition: border 0.25s ease, background-color 0.25s ease;
}

.form-select-wrapper:focus-within::after {
    border-left: 1px solid #00B1EF;
    background-color: #00B1EF;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-group {
    margin-bottom: 1rem;
}

.form-check-input:checked {
    background-color: #000000 !important;
    background-image: none !important;
    border: 2px solid white;
    outline: 1px solid #000000;
}

.form-check-input:focus {
    box-shadow: none;
}
.form-check-input:focus:not(:checked) {
    border-color: #555555;
    background-color: transparent;
}

.form-required {
    color: #ff0000 !important;
}

.form-submit {
    background-color: #000000;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed';
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 900;
    border: 0;
    transition: padding 0.25s ease, background-color 0.25s ease;
}
.form-submit:hover {
    padding: 1rem 2.2rem 1rem 1.8rem;
    background-color: #323334;
}
.form-submit::after {
    position: relative;
    content: '>';
    font-family: 'Roboto Condensed';
    font-weight: 900;
    opacity: 0;
    right: -1.55rem;
    margin-left: -0.55rem;
    transition: opacity 0.25s ease, right 0.25s ease;
}
.form-submit:hover::after {
    opacity: 1;
    right: -1.05rem;
}

textarea.no-resize {
    resize: none;
}