/* =========================================================
WRAPPER
========================================================= */

.support-program-search-wrapper{
    width:100%;
}
#support-program-results{
    display:none;
}

.not-finding-section{
    display:none;
}

.loading {
    text-align: center;
}

/* =========================================================
FORM
========================================================= */

#support-program-search-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}



/* =========================================================
FIELD
========================================================= */

#support-program-search-form .search-field{
    position:relative;
}



/* =========================================================
LABEL
========================================================= */

.support-search-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #16211D;
    font-family: 'DM Sans';
    line-height: 100%;
}


.support-search-label span{
    color:#56B380;
}



/* =========================================================
SELECT
========================================================= */

#support-program-search-form select{
    background-color: #FFFEFA;
    color: #101E13;
    font-size: 15px;
    font-family: inherit;
    font-weight: normal;
    line-height: 21px;
    border: 1px dotted rgba(16, 30, 19, 0.20);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    padding: 12px 20px;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:all .25s ease;

    cursor:pointer;
    width: 100%;
}



/* =========================================================
CUSTOM ARROW
========================================================= */

#support-program-search-form .search-field::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #101E13;
    border-bottom: 2px solid #101E13;
    transform: rotate(45deg);
    pointer-events: none;
}



/* =========================================================
FOCUS
========================================================= */

#support-program-search-form select:focus{
    border: 1px solid #56B380;
}



/* =========================================================
BUTTON
========================================================= */

#support-program-search-form button{
    border: none;
    padding: 16px 25px 16px 47px;
    border-radius: 40px;
    transition-duration: 0.3s;
    background: #78D0A0;
    color: #101E13;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans';
    line-height: 8px;
    outline: none !important;
    text-transform: lowercase;
    cursor: pointer;
}



/* =========================================================
BUTTON HOVER
========================================================= */

#support-program-search-form button:hover{
    background-color: #101E13;
    color: #78d0a0;
}



/* =========================================================
RESULT GRID
========================================================= */
.support-program-result-heading {
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.72px;
    text-transform: lowercase;
}

.support-results-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    row-gap: 50px;
    margin-top: 50px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(16,30,19,0.2);
}
.support-results-grid .b-card {
    min-width: 0;
}

/* =========================================================
SUBMIT WRAP
========================================================= */

.search-submit-wrap{
    display:flex;
    align-items:center;
    gap:16px;

    margin-top:8px;
}



/* =========================================================
BUTTON LOADING
========================================================= */

.support-submit-btn.is-loading{
    opacity:.6;

    pointer-events:none;
}



/* =========================================================
PLEASE WAIT
========================================================= */

.support-loading-text {
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    font-size: 15px;
    color: #101E13;
}

/* active */
.support-loading-text.active{
    opacity:1;
    visibility:visible;
}


/*Card*/
.support-learn-more {
    font-family: 'DM Sans';
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: lowercase;
    margin-top: 17px;
    transition-duration: 0.3s;
}
.support-learn-more:hover {
    color: #56B380;
    text-decoration: underline;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px){

    .support-results-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px){

    .support-results-grid{
        grid-template-columns:1fr;
    }

}