#page-title {
    text-align: center;
}

/* EXECUTIVE SUMMARY */
#executive_summary{
    margin: 2em 0;
}
#executive_summary h4 {
    text-transform: uppercase;
}
.summary_button{
    width: 150px;

}
/* MAP */
#map_view {
    text-align: center;
}

#country_select {
    font-size: 22px;
    padding: 0.25em;
    border-radius: 0.25em;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}

.text-center h3 {
    color: #C93784;
    font-size: 2rem;    
}

.map_description_item {
    text-align: left;
    margin-left: 15px;  
}

#purple-square {
    width: 3rem;
    height: 1.5rem;
    background-color: #C93784;
}

#grey-square {
    width: 3rem;
    height: 1.5rem;
    background-color: #D3D3D3;
}

.map_description {
    display: flex;
    align-items: left;
}

#map {
    margin: 1em;
    height: 50vw;
}

#map_xs {
    flex-direction: column;
    cursor: pointer;
}
#map_xs .zoom_btn {
    display: inline-block;
    border-radius: 3px;
    background: #292929;
    padding: 3px;
    color: white;
    line-height: 10px;
    width: 10px;
    height: 10px;
    text-align: center;
    box-sizing: content-box;
    margin-top: 1em;
}
#map_xs .glyphicon-zoom-in {
    font-size: 72px;
    margin-bottom: 0.25em;
}
#map_xs .info {
    font-size: 1.2em;
}

@media screen and (min-width: 576px) {
    #country_select {
        width: 90%;
    }

    #map {
        height: 350px;
    }

}

/* xs < 768 */
@media screen and (max-width: 767px) {
    #country_select {
        width: 80%;
    }

    #map_wrapper{
        height: 375px;
        position: relative;
    }
    #map {
        height: 375px;
    }

    #map_xs{
        width: 100%;
        height: 100%;
        top: 0px;
        padding: 20px;
        background: rgb(220,220,220); /* for IE */
        background: rgba(220,220,220,0.70);
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glyphicon-zoom-in{
        font-size: 150px;
    }
}

@media screen and (min-width: 768px) {
    #country_select {
        width: 80%;
    }

    #map {
        height: 375px;
    }

    #map_xs {
        display: none;
    }

}

@media screen and  (min-width: 992px) {
    #country_select {
        width: 60%;
    }

    #map {
        height: 485px;
    }

    #map_xs {
        display: none;
    }
}

@media screen and  (min-width: 1200px) {
    #country_select {
        width: 40%;
    }

    #map {
        height: 570px;
    }

    #map_xs {
        display: none;
    }
}

/* FLAGS */
#flags_view {
    text-align: center;       
}

#flags_view a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    width: 72px;    
    vertical-align: top;
    font-size: 12px;
}

#flags_view a img {
    height: 48px;
    width: 70px;
    //border: 1px solid #c7c7c7;
    border-radius: 30%;
    box-shadow: 1px 1px 1px #888888; 
    margin-bottom: 1rem;
}

#flags_view a img:hover {
    border-radius: 5px;
    transition: border-radius 0.2s linear 0s;
}

#country-name-tag-under-flag {
	height: 4rem;
    margin-bottom: 2rem;
}


/* BUTTON */
.button_pdf{
    background-color: #C93784;
    color: white;
    border: none;
}

.button_pdf:hover{
    background-color: rgba(201, 55, 132, 0.5);
    /*color: white;*/
}

.button_doc{
    background-color: #177CA6;
    color: white;
    border: none;
}

.button_doc:hover{
    background-color: #86a8b5;
    /*color: white;*/
}


.close{
    width: 150px;
}