.tx-typo-mapael .mapWrapper {
    margin: 0 auto;
}

.tx-typo-mapael .map {
    position: relative;
    background-color: #ffffff;
    border: none;
    overflow: hidden;
    padding-left: 50px;
}

.tx-typo-mapael .map svg {
    margin-bottom: -5px;
}

.tx-typo-mapael path.active {
    fill:#e30045 !important;
    stroke: #ffffff !important;
}

.tx-typo-mapael path.continent.active {
    stroke: #e30045 !important;
}

.tx-typo-mapael .mapTooltip {
    position : absolute;
    background-color : #f1f1f1;
    -moz-opacity:0.9;
    opacity: 0.9;
    filter:alpha(opacity=90);
    border: 1px solid #ccc;
    border-radius:5px;
    padding : 10px;
    z-index: 1000;
    max-width: 200px;
    display:none;
    color:#333;
}


.tx-typo-mapael .zoomIn, .tx-typo-mapael .zoomOut, .tx-typo-mapael .zoomReset {
    background-color:#fff;
    border:1px solid #ccc;
    color:#000;
    width:15px;
    height:15px;
    line-height: 14px;
    text-align:center;
    border-radius:3px;
    cursor:pointer;
    position:absolute;
    top : 10px;
    font-weight:bold;
    left : 10px;

    -webkit-user-select: none; // For Webkit
    -khtml-user-select: none;
    -moz-user-select: none; // For Mozilla
    -o-user-select: none;
    user-select: none; // Default
}

.tx-typo-mapael .zoomOut {
    top:30px;
}

.tx-typo-mapael .zoomReset {
    top:50px;
}

.tx-typo-mapael .mapaelContentContainer {
    min-height: 250px;
}

.tx-typo-mapael .mapaelContentContainer .mapaelContent {
    margin: 0 auto;
}

.tx-typo-mapael .select-area {
    margin: 15px 0;
    padding:15px;
    background-color:#0072b8;
}

.tx-typo-mapael .spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
    display:none;
}

.tx-typo-mapael .loading .spinner {
    display: block;
}

.tx-typo-mapael .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #0072b8;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.tx-typo-mapael .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.tx-typo-mapael .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% {
          -webkit-transform: scale(1.0);
          transform: scale(1.0);
      }
}