.location-finder-description {
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: var(--primary);
	margin:48px 0;
	text-align:center
}

.location-finder-search-input {
    /*margin-top: 24px;*/
}

.location-finder-search-input .input-group {
    border: 1px solid #D4D3D7;
    border-radius: 8px;
}

.location-finder-search-input .input-group-text {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: none;
}

.location-finder-search-input input {
    padding-left: 0;
    border: none;
    color: #91929D;
}

.location-finder-search-input input:focus {
    outline: none;
    box-shadow: none;
}

.location-finder-locations-list {
    overflow: scroll;
    max-height: 470px;
}

.location-item {
    margin-top: 24px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    background: #FBFAFC;
    border-radius: 8px;
}

.location-item-left {
    display: flex;
    width: 70%;
}

.location-item-info {
    margin-left: 15px;
}

.location-item-name {
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
}

.location-item-address {
    margin-top: 5px;
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--primary);
}

.location-item-phone {
    display: flex;
}

.location-item-phone a {
    color: var(--primary);
    text-decoration: none;
}

.location-item-phone-number {
    margin-left: 10px;
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: var(--primary);
}

.location-item-km {
    font-family: 'Larsseit';
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: right;
    color: var(--primary);
}

.location-item-get-direction {
    justify-content: flex-end;
    margin-top: 8px;
    display: flex;
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    text-decoration-line: underline;
    color: var(--primary);
}

.map {
    height: 590px;
}

.location-not-found {
    text-align: center;
    margin-top: 10px;
    color: #4c4c4c;
}

@media (max-width: 991px) {
    .location-finder-description {
        text-align: center;
    }

    .map {
        margin-top: 48px;
    }
}