#map{
    width: 100%; 
    height: 600px;
    box-shadow: 0 0 10pt .3pt #137CDF;
    border: 5px solid #137CDF;
    border-radius: 10px;
}

.modalState .modal-dialog{
    border: 0;
    box-shadow: 0 0 5pt 1pt #014c9278;
    border-radius: 5px;
    overflow: hidden;
}

.modalState .modal-content{
    border-radius: 5px;
    border-top: 0;
    box-shadow: none;
}

.modalState .modal-header{
    background-color: #137CDF;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    border-bottom: 4px solid #137CDF;
}

.modalState .modal-header .close{
    color: #fff;

}
.modalState .modal-body{
    border-left: 3px solid #137CDF;
    border-right: 3px solid #137CDF;
}

.modalState .modal-body ul{
    list-style: none;
}

.modalState .modal-body > ul > li > ul > li{
    margin-left: 1rem;
}

.modalState .modal-body > ul > li > ul > li span{
    color: #489ff0;
    margin-right: 5px;
}

.modalState .modal-body > ul > li{
    margin: 0;
    margin-bottom: 1rem;
    border: 1px solid #137cdf7a;
    padding: 10px;
}

.modalState .modal-body > ul > li .title{
    color: #137CDF;
    font-size: 19px;
    font-weight: 600;
}

.modalState .modal-footer{
    border-top: 4px solid #137CDF;
    background-color: #137cdf77;

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.modalState .modal-footer button{
    background-color: #fff;
    color: #137CDF;
    border: 1px solid #137CDF;

    text-transform: uppercase;
    font-weight: 600;

    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.modalState .modal-footer button:hover{
    background-color: #ebf6ff;

}