/* --Colores */

.transparent {
    background-color: #ffffff00;
}

.translucent {
    background-color: #99999955;
}

.white {
    background-color: #ffffff;
}

.blanco {
    background-color: #f1f1e5;
}

.beige {
    background-color: #736B67;
}


/* --Textos */

.helvetica {
    font-family: Arial, Helvetica, sans-serif;
}

.uiText {
    font-size: 2vmin;
    white-space: nowrap;
    font-weight: bold;
    padding: 0.5vmin;
}


/* --Formas */

.rounded {
    clip-path: inset(0px round 1vmin 1vmin 1vmin 1vmin);
}


/* --Display */

.hidden {
    display: none;
}

.centerContent {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* --Elementos */

.body {}

.overlay {
    z-index: 68;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000aa;
}

.overlayLine {}

.overlayLogo {
    width: 18vw;
    height: auto;
    padding-left: 5vmin;
    padding-right: 5vmin;
    min-width: 8vmin;
}

.overlayAction {
    display: flex;
    float: left;
    width: 6vw;
    padding-right: 5vmin;
    height: auto;
    min-width: 8vmin;
}

.overlayBtn {
    height: auto;
    min-height: 2vmin;
}

.overlayBtn:hover {}

.modelMenu {
    position: absolute;
    bottom: 0.5vmin;
    left: 1vmin;
    z-index: 2;
    height: 8vmin;
    max-height: calc(64px + 2vmin);
    padding-right: 0.5vmin;
}

.planMenu {
    position: absolute;
    top: 0.5vmin;
    left: 1vmin;
    z-index: 2;
    width: 30vmin;
    height: 30vmin;
    display: flex;
}

.planImage {
    width: 100%;
    height: auto;
}

.planMenu img {
    width: 100%;
}

.planDot {
    position: absolute;
    min-width: 2vmin;
    height: 2vmin;
    background-color: #ffcc0055;
    border-color: cadetblue;
    border-radius: 2px;
}

.planDot:hover {
    background-color: #fff;
}

.zoomMenu {
    position: absolute;
    bottom: 0.5vmin;
    right: 0.5vmin;
    z-index: 2;
    height: 8vmin;
    max-height: calc(64px + 2vmin);
    padding-right: 0.5vmin;
}

.menuColBtn {
    float: left;
    margin-left: 0.5vmin;
    margin-top: 0.5vmin;
    margin-bottom: 0.5vmin;
    height: 7vmin;
    width: 16vmin;
    display: flex;
}

.menuZoomBtn {
    z-index: 67;
    float: left;
    margin-left: 0.5vmin;
    margin-top: 0.5vmin;
    margin-bottom: 0.5vmin;
    height: 7vmin;
    width: 7vmin;
    display: flex;
}

.menuColBtn:hover {
    color: #ffffff;
}

.menuColBtn:active {
    border-color: aqua;
}

.menu3dBtn {
    float: right;
    display: flex;
    margin-right: 0.5vmin;
    margin-top: 0.5vmin;
    margin-bottom: 0.5vmin;
    height: 7vmin;
    line-height: 7vmin;
}

.menu3dBtn:hover {
    background-color: #aaa;
}

.menuColBtnage {
    z-index: 3;
}

.colImage:hover {
    opacity: 0%;
    transition: .3s ease;
}

.colText {
    position: absolute;
    z-index: 2;
}

.arImage {
    height: 4vmin;
    padding: 0.5vmin;
}

.imageContainer {
    height: 6vmin;
    text-align: center;
    line-height: 22vmin;
}


/* --Interaccion */

.nonselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}