/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */

body {
    overflow: hidden;
    font-family: 'Open Sans';
}

.svg-turkiye-haritasi {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
}

.il-isimleri {
    position: absolute;
    z-index: 2;
}

.il-isimleri div {
    display: inline-block;
    background: #cc0033;
    color: #fff;
    padding: 8px 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#svg-turkiye-haritasi path {
    cursor: pointer;
    fill: #555;
}

#svg-turkiye-haritasi path:hover {
    fill: #cc0033;
}


/* Bayilik */

.bayilikler {
    float: right;
    max-width: 40%;
    overflow: hidden;
}

.bayi {
    background: #fff;
    width: 45%;
    position: absolute;
    top: 2.5%;
    left: 30%;
    margin: 20px;
    padding: 20px;
    border: 1px solid #f7f7f7;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
    overflow: hidden;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.bayilik-bilgisi,
.gorevli-bilgisi {
  
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}
.gorevli-bilgisi>img{  max-height: 180px !important;
    object-fit: contain;}
.bayilik-bilgisi>h4,
.gorevli-bilgisi>h4 {
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    padding: 0 0 5px 0;
    color: #cc0033;
    font-size: 16px;
    font-weight: normal;
}

.bayi-resmi {
    width: 30%;
    float: left;
}

.bayi-resmi img {
    width:100%;
}

.bayi-detay {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    width: 68%;
    float: right;
}

.bayi-detay h3 {
    margin: 0 0 10px 0;
    padding: 0;
}

.bayi-detay p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.bayi-detay a {
    padding: 10px 20px;
    background: #555;
    color: #fff;
    border-radius: 4px;
    float: left;
    text-align: center;
    text-decoration: none;
    margin: 10px 5px 0 0;
    font-size: 14px;
    transition: all 0.5s;
}

.bayi-detay a:hover {
    background: #222;
    transition: all 0.5s;
}

.bayi-detay p a {
    color: #555;
    padding: 0;
    background: none;
    border-radius: 0;
    float: none;
    text-align: none;
    text-decoration: underline;
    margin: 0 0;
}

.bayi-detay p a:hover {
    background: none;
    transition: none;
}

@media only screen and (max-width: 767px) {
    /* phones */
    .svg-turkiye-haritasi {
        max-width: 100%;
        float: none;
        display: block;
    }
    .bayilikler {
        float: none;
        max-width: 100%;
        display: block;
    }
    .bayi-detay {
        float: none;
        width: 100%;
    }
    .bayi-resmi {
        margin-right: 10px;
    }
    .bayi-detay p {
        font-size: 12px;
    }
    .bayi {
        width: 76.5%;
        top: 0%;
        left: 5%;
    }
    .bayilik-bilgisi,
    .gorevli-bilgisi {
        width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* portrait phones */
    .svg-turkiye-haritasi {
        max-width: 100%;
        float: none;
        display: block;
    }
    .bayilikler {
        float: none;
        max-width: 100%;
        display: block;
    }
}