div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}
/* --------------------MAP PAGE-------------------- */
.map-page {
    background: rgba(245, 245, 247, 1);
}
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    height: 100vh;
}
.map-left {
    padding-top: 100px;
    padding-bottom: 74px;
}
.map-left__container {
    margin-left: auto;
    max-width: 670px;
    width: 100%;
    height: 80vh;
    padding-left: 28px;
    position: relative;
    overflow-y: auto;
}

.second-step {
    display: block;
}

.map-right {
    position: relative;
    min-height: 500px;
}
.map-right .map {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.second-step__back {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.second-step__back button {
    border: none;
    font-size: 2rem;
    font-weight: 700;
}
.second-step__back button::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background: url(images/arrow-right-blue.svg) no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    margin-right: 0.5rem;
}

.second-step__dealers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 2rem;
}
.dealers__item {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
}
.dealers-item__title,
.dealers-item__phone {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.dealers-item__address {
    opacity: 0.6;
    margin-bottom: 0.5rem;
}
.dealers-item__email {
    color: var(--color-blue);
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .map-grid {
        grid-template-columns: 1fr;
        height: 100%;
    }
    .map-left {
        padding-bottom: 0;
    }
    .map-left__container {
        margin: 0;
        max-width: 100%;
        padding: 0 28px;
        height: 100%;
    }
}

#map {
    width: 100%;
    height: 100vh;
}