.rsl-store-locator .rsl-form{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}
.rsl-store-locator .rsl-form input, .rsl-store-locator .rsl-form select{
    padding:5px;
}
.rsl-store-locator .rsl-results{
    display:flex;
    gap:10px;
}
#rsl-map{
    width:100%;
	border: 1px solid #ddd;
    padding: 10px;
}
#rsl-list-view {
    padding: 10px;
    border: 1px solid #ddd;
    max-height: 500px;
    overflow-y: auto;
    width: 50%;
    border-radius: 10px;
    background-color: #fff;
}
.rsl-store-item{
    padding:10px;
    border-bottom:1px solid #eee;
}

.rsl-store-list {
    list-style: none;
    padding: 0;
}
.rsl-store-list li{
    padding:10px;
    border-bottom:1px solid #eee;
}
.rsl-store-list li h4{
    margin:0 0 5px 0;
}
.rsl-store-list li p, .rsl-store-list li small{
    margin:0;
    font-size: 14px;
}


.store-item {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.store-item:hover {
    background: #e9e9e9;
}

#rsl-submission-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0px;
    margin: 40px 10px;
}

#rsl-submission-form {
    width: 50%;
    padding: 30px 20px;
    background: #34ada5;
    border-radius: 8px;
    box-shadow: 1px 1px 6px #93294f;
}

.wd-content-layout #rsl-submission-wrapper #rsl-submission-form h3 {
	margin-bottom: 20px;
	text-align: center;
    color: #fff !important;
    font-size: 30px !important;
}
#rsl-submission-form label {
    color: #fff;
}

#rsl-submission-form input, #rsl-submission-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #9d395d;
    background: #f3f3f3;
    height: 50px;
    border-radius: 10px;
}

#rsl-submission-form button {
    border-radius: 10px;
    width: 30%;
    background: #903153;
    color: #fff;
    padding: 15px;
    font-size: 15px;
}

#rsl-submission-loader {
    background: #903153;
    color: #fff;
    padding: 7px 50px;
    border-radius: 50px;
}

@media screen and (max-width: 768px) {
    form#rsl-submission-form {
        width: 100%;
    }
}