/**
Find Course/Training Form
 */
.find-course-form .custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    font-family: HCo Ideal Sans SSm;
}

.find-course-form .custom-col-7 {
    flex: 0 0 71%;
}

.find-course-form .custom-col-5 {
    flex: 0 0 27%;
}

.find-course-form .custom-col-6 {
    flex: 0 0 100%;
    text-align: right;
}

.find-course-form .custom-col-6 select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%2353605F' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    padding: 11px 24px !important;
    font-weight: 400 !important;
    font-style: italic;    
}

.find-course-form .custom-col-12 {
    flex: 0 0 100%;
}

.find-course-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: left;
    color: #000;
    font-size: 18px;
}

.find-course-form label span {
    color: #EA5E29;
    margin-left: 3px;
    position: relative;
}

.find-course-form input[type="text"],
.find-course-form select {
    width: 100%;
    padding: 11px 12px !important;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #1A1919 !important;
}

.find-course-form input[type="text"]::placeholder {
    color: #1A1919 !important;
}

.find-course-form .btn-course {
    padding: 14px 20px;
    margin-top: 26px;
    background: #007cba;
    color: white;
    background: var(--mhfa-dark-blue-secondary);
    border: 2px solid var(--mhfa-dark-blue-secondary);
    font-weight: bold !important;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

.find-course-form .btn-course:hover {
    background: #005a87;
}

.find-course-form .custom-inner-hide {
    display: block;
}

.find-course-form .custom-front-hide {
    display: none;
}

@media (max-width: 768px) {
    .find-course-form .custom-col-5,
    .find-course-form .custom-col-6,
    .find-course-form .custom-col-7 {
        flex: 0 0 100%;
    }
    .find-course-form .custom-inner-hide {
        display: none;
    }
    .find-course-form .custom-front-hide {
        display: block;
    }
    .find-course-form .btn-course {
        margin-top: 15px;
    }
}