/* TeeGee Public Styles */
.radius-search {
    background-color: #fff;
    padding: 20px 20px 10px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px -1px #0000001A;
}

.breakdance .teegee-search-wrapper img {
    max-width: unset;
    height: inherit
}

.radius-search #teegee-search-input,
.radius-search #teegee-geo-btn,
.radius-search .teegee-search-input-wrapper {
    background: #F3F3F5;
    border-width: 0;
}

#teegee-practitioner-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}



.teegee-search-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    background-color: white;
    flex-grow: 1;
}

#teegee-search-input {
    flex: 1;
    min-width: 200px;
    padding: 20px 10px;
    border: 1px solid #fff;
    border-radius: 0px;
    font-size: 18px;
}

#teegee-radius-select {
    appearance: none;
    padding: 20px 10px 20px 20px;
    border: 1px solid #fff;
    border-radius: 0px;
    font-size: 18px;
    border-width: 0;
    background: #F3F3F5;

    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6L8 10L12 6" stroke="%23FF6174" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;

    color: #757586;
    min-width: 190px;
}

#teegee-radius-select:focus {
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10L8 6L4 10" stroke="%23FF6174" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


select:invalid {
    color: gray;
}

#teegee-geo-btn {
    background: white;
    border: white;
    cursor: pointer;
    font-size: 18px;
    padding: 20px;
    border-radius: 0px;
}

#teegee-submit-btn {
    background: #ff6174;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 18px;
    padding: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 10px;
    align-items: center;

}

#teegee-submit-btn svg {
    height: 26px;
    width: 26px;
    background: #AF4356;
}

#teegee-submit-btn:disabled {
    background: #ccc;
}

.teegee-message {
    width: 100%;
    font-size: 0.9em;
    color: #fff;
}

.teegee-results-wrapper ul.teegee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.teegee-item {
    background: white;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.teegee-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.teegee-address {
    margin-bottom: 10px;
    color: #555;
}

.teegee-distance {
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 10px;
}


@media (max-width: 767px) {

    #teegee-radius-select,
    #teegee-submit-btn,
    #teegee-search-input {
        font-size: 14px;
        padding: 10px;
    }

    #teegee-geo-btn,
    #teegee-submit-btn {
        padding: 10px;
    }

}