﻿@use postcss-nested;
@use postcss-cssnext;

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');



.wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-header {
    margin-bottom: 40px;
}

.site-header--title {
    text-align: center;
    background: #eee;
    padding: 15px;
    border-radius: 4px;
    color: #9c9c9c;
    font-size: 28px;
}

.site-header--title--light {
    font-weight: 300;
    color: #adadad;
}


.map-container {
    position: relative;
}

.city {
    fill: #fef3f4;
    fill-opacity: 1;
    stroke: #44403f;
    stroke-opacity: 1;
    stroke-width: 0.5;
    transition: all .3s ease-out;
    cursor: pointer;
}

    .city:hover {
        fill: #ed1c24;
    }

.show-city-name {
    background-color: black;
    border-radius: 10px;
    color: #fff;
    position: absolute;
    padding: 15px 25px;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
}

.show-city-name--active {
    opacity: 1;
    visibility: visible
}

.site-footer {
    text-align: center;
    font-size: 12px;
    margin-top: 40px;
    color: #ababab;
    &__link

{
    color: #3498db;
    font-weight: 700;
}
}
