﻿@font-face {
    font-family: FrutigerBlackItalic;
    src: url(fonts/FrutigerNextLT-BlackItalic.otf);
}

#mapcontainer {
    width: 80%;
    height: 80%;
    overflow: hidden;
    min-width: 700px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.knobContainer {
    text-align: center;
    margin: 10px;
}

.knobContainer canvas {
    cursor: pointer;
}

.rightPanel {
    float: right;
    width: 223px;
    border-radius: 5px;
    margin-left: 5px;
}

/* Cualidades de cuadro de texto de datos */
.mapael .mapTooltip {
    position: absolute;
    moz-opacity: 0.80;
    opacity: 0.80;
    filter: alpha(opacity=80);
    border-radius: 4px;
    padding: 10px;
    z-index: 1000;
    max-width: 200px;
    display: none;
    color: #232323;
}

.mapael .map {
    overflow: hidden;
    position: relative;
    background-color: white;
    border-radius: 5px;
}

/* For all zoom buttons */
.mapael .zoomButton {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    position: absolute;
    top: 0;
    font-weight: bold;
    left: 10px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* Reset Zoom button first */
.mapael .zoomReset {
    top: 10px;
}

/* Then Zoom In button */
.mapael .zoomIn {
    top: 30px;
}

/* Then Zoom Out button */
.mapael .zoomOut {
    top: 50px;
}

#dummychart {
    position: absolute;
    display: none;
    width: 780px;
    z-index: 160000;
}

#chartsfrm {
    height: 505px;
    width: 775px;
    overflow: hidden;
}

/* Media query para pantallas móviles */
@media only screen and (max-width: 768px) {
    #mapcontainer {
        width: 100%;
        height: 100%;
        min-width: unset;
        max-width: unset;
        overflow: auto;
    }

    .mapael .map {
        overflow: auto;
    }

    .rightPanel {
        float: none;
        width: 100%;
        margin-left: 0;
    }
}