#sect-map {
    position: relative;
    padding: 60px 0;
}

#sect-map #map-area {
    position: relative;
    height: 600px;
    background-color: #efeeee;
    border-radius: 4px;
    /* border: 4px solid transparent; */
    /* outline: 1px solid #0a3c9a8a; */
    outline: 4px solid #0a3c9a;
    box-shadow: 2pt 2pt 5pt 1pt #05183c64;
}

#sect-map .sect-title {
    font-size: 35px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 1pt #585858;
    width: 100%;
    margin-bottom: 40px;
}

#sect-map .modalState {
    z-index: 9999999;
    padding-right: 0px;
    padding: 0px 5px;
}

#sect-map .modalState .modal-header {
    position: relative;
    display: flex;
    border-bottom: 1px solid #d1070a79;
    overflow: hidden;
}

#sect-map .modalState .modal-header::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;

    width: 100px;
    background-color: #D1070A;
    height: 100%;
    transform: rotate(60deg) translateY(-30px);
    z-index: 1;
}

#sect-map .modalState .modal-header .close {
    position: relative;
    margin-left: auto;
    color: #ffffff;
    font-size: 26px;
    opacity: .6;
    z-index: 10;
}

#sect-map .modalState .modal-header .close:hover {
    opacity: 1;
}

#sect-map .modalState .modal-dialog {
	width: 100%;
	/*margin: 0px;*/
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#sect-map .modalState .modal-dialog .modal-content {
    max-width: 600px;
    width: 100%;
}

#sect-map .modalState .modal-body {
    padding: 30px 15px;
}

#sect-map .modalState .modal-body ul {
    list-style: none;
    padding: 5px;
}

#sect-map .modalState .modal-body ul li {
    position: relative;
    padding: 5px 10px;
    padding-right: 15px;
    box-shadow: 0 0 1pt 1pt #0A3D9A;
}

#sect-map .modalState .modal-body ul li .wsicon {
	position: absolute;
	top: calc(50% - 14px);
	right: -14px;
	height: 28px;
	width: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25D366;
	border-radius: 50%;
	border: 1px solid #0a3d9a;

    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

#sect-map .modalState .modal-body ul li .wsicon:hover {
	border: 1px solid #69ffa0;
}

#sect-map .modalState .modal-body ul li .wsicon i {
    color: #f4f4f4 !important;
    font-size: 18px;

    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

#sect-map .modalState .modal-body ul li .wsicon:hover i {
    color: #fff !important;
}

#sect-map .modalState .modal-body ul li:not(:last-child) {
    margin-bottom: 20px;
}

#sect-map .modalState .modal-body ul li .title {
    font-weight: 600;
    color: #D1070A;
}

#sect-map .modalState .modal-body ul li .sep {
    font-weight: 900;
    color: #0A3D9A;
}

#sect-map .cont-loaderMap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
}

#sect-map .cont-loaderMap #loaderMap {
    height: 0px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

#sect-map .cont-loaderMap #loaderMap.show {
    display: inline-block;
    overflow: visible;
    width: 80px;
    height: 80px;
}

#sect-map .cont-loaderMap #loaderMap.show:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #D1070A;
    border-color: #D1070A transparent #D1070A transparent;

    animation: rotate360 1.2s linear infinite;
    -webkit-animation: rotate360 1.2s linear infinite;
    -moz-animation: rotate360 1.2s linear infinite;
    -ms-animation: rotate360 1.2s linear infinite;
    -o-animation: rotate360 1.2s linear infinite;
}

@media (max-width: 600px) {
    #sect-map .sect-title {
        font-size: 25px;
    }
}

@media (min-width: 625px) {
    #sect-map .modalState .modal-dialog {
        width: 100%;
        /*margin: 0px;*/
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@-webkit-keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}