/*.add-search {*/
/*    background-color: #edf0ea;*/
/*    padding:20px;*/
/*    border-radius: 5px;*/
/*    border: 1px #d4d9cd solid;*/
/*}*/

.add-search-result {
    margin-top: 20px;
    display: none;
}

.add-search-result ul {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.add-search-result ul li {
    padding: 10px;
    border-bottom: 1px #c1cead solid;
    color: var(--text-black);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add-search-result ul li .name {
    font-size: 1.1rem;
}

.add-search-result ul li .address {
    font-size: 1rem;
    color: #444;
    display: inline-block;
    margin-left: 10px;
}

.add-search-result ul li .add {
    display: inline-block;
    font-weight: 500;
    margin-left: auto;
}

.add-search-result ul li:hover {
    background: #e7ebe1;
}

.only-desktop {
    display: none;
    margin-top: 40px;
}

.seperation {
    border-bottom: 1px #ddd solid;
    margin-top: 80px;
}

.pitch-section {
    background-image: linear-gradient(to bottom, #edf0ea, transparent);
    background-repeat:no-repeat;
    background-size:100% 300px;
    padding-top: 80px
}

@media (max-width: 600px) {
    .only-desktop {
        display: block;
    }

    .add-desktop {
        display: none;
    }
}

