/* CSS Document */


#map_canvas {
    width: 100%;
    height: 500px;
}

#wrapper { position: relative; width: 100%; height: 100%; overflow: hidden; }
#cal_menu {float: left; }
#tabla_cal {position: absolute; top: 61%; right: 0; width: 85%;}
#over_map { position: absolute; top: 10px; left: 10px; z-index: 99;}
#btnacciones {position: fixed; float: right; left: 50%;  top: 5px; z-index: 100;}
#alerta {
    opacity:0.9;
    background-color:#ccc;
    position:fixed;
    width:100%;
    height:100%;
    top:50px;
    left:5px;
    align-content: center;
    z-index:1000;
}

#infopredio {
    opacity:0.7;
    background-color:#ccc;
    width: 200px;
    height: 300px;
    border-style: dotted;
}
/* CSS Document */
@media print {
    #Header, #Footer { display: none !important; }
}

.switchopc {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
}

.switchopc input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 8px;
}

.slider.round:before {
    border-radius: 50%;
}