* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -user-select: none
}

#root,
body,
html {
    height: 100%
}

body {
    margin: 0;
    font-family: lato;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, courier new, monospace
}

button:focus {
    outline: 0
}

#tick-mark {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em
}

#tick-mark:before {
    top: 50%;
    height: 50%;
    width: 2px
}

#tick-mark:after,
#tick-mark:before {
    position: relative;
    left: 0;
    background-color: #fff;
    content: "";
    transform: translate(10px) rotate(-45deg);
    transform-origin: left bottom
}

#tick-mark:after {
    bottom: 0;
    height: 2px;
    width: 100%
}

.data-ta {
    height: 0;
    opacity: 0;
    transition: opacity .25s linear .35s, height .25s linear .5s
}

.data-ta.open {
    opacity: 1;
    height: auto
}

.secondary-camera {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.rect-disabler {
    background-color: hsla(0, 0%, 48.2%, .16);
    height: 100%;
    position: fixed;
    z-index: 1000;
    width: 7vw
}

@font-face {
    font-family: museo sans;
    src: url(../../static/media/MuseoSans-100.f685618a.otf) format("truetype")
}

@font-face {
    font-family: museo sans;
    src: url(../../static/media/MuseoSans-700.2fa6a322.ttf) format("truetype")
}

@font-face {
    font-family: lato;
    src: url(../../static/media/Lato-Regular.3b9b9903.ttf) format("truetype")
}

.loading-page {
    background-image: linear-gradient(rgba(1, 1, 1, .35), rgba(1, 1, 1, .35)), url(../../static/media/bg_OrbitGeneral_0135.e56b4163.jpg);
    height: 100vh;
    background-size: cover;
    color: #fff;
    background-position-y: 11%
}

.swap-image {
    background-position-y: 69%;
    transition: background-position-y .5s
}

.ingreso-div {
    background-color: rgba(142, 116, 33, .82);
    width: 50vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center
}

.ingreso-div img {
    width: 33%
}

.ingreso-text {
    padding: 5em 7em;
    text-align: left;
    font-size: 12pt;
    line-height: 1.2em
}

.btn_ingreso {
    border: 1px solid #fff;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    margin: 1em;
    border-radius: 2px;
    padding: 1.2em 7em;
    text-align: center;
    z-index: 1
}

.loading-div {
    display: flex;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(86, 86, 86, .5);
    position: absolute;
    height: 100%
}

.loading-div span {
    margin: 20vh;
    font-size: 21px
}

.welcome-div {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(142, 116, 33, .84);
    position: absolute
}

.welcome-div #logos {
    height: 25%
}

.welcome-div span {
    margin-top: 6vh;
    font-size: 25px
}

.welcome-adorno {
    position: fixed;
    left: -12vw;
    height: 100vh
}

.ingreso-page {
    height: 100%;
    width: 100%;
    display: flex
}

.ingreso-empty {
    width: 50%
}

.fadeOut {
    opacity: 0;
    transition: opacity .5s
}

.fadeIn {
    opacity: 1;
    transition: opacity .3s
}

.loading-div div {
    display: flex;
    justify-content: center;
    align-items: center
}

.loading-div div img {
    position: absolute
}

.loader-circle {
    width: 275px;
    height: 275px;
    transform: rotate(-90deg);
    stroke-linecap: round;
    stroke-width: 2;
    fill: none
}

.loader-circle .internal-circle {
    stroke-dasharray: 187;
    -webkit-animation: internal 1s ease-in-out infinite;
    animation: internal 1s ease-in-out infinite;
    opacity: .8;
    stroke: #fff;
    stroke-dashoffset: 0;
    transform-origin: center
}

.loader-circle {
    width: 200px;
    height: 200px
}

.internal-circle.animated {
    stroke-dasharray: 360;
    -webkit-animation: ending-load 1s ease-in-out 1;
    animation: ending-load 1s ease-in-out 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.maqueta-page {
    height: 100vh;
    background-size: cover;
    color: #fff
}

.sidebar {
    z-index: 1000;
    position: fixed;
    left: 0;
    width: 7vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden
}

.header-logo {
    background-color: #8e7421;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.header-logo img {
    width: 90%
}

.hide-btn {
    display: none
}

.bar-and-hide {
    background-color: rgba(34, 34, 34, .8);
    width: 7vw;
    height: calc(100% - 10vh);
    display: flex
}

.btn-sidebar {
    height: 10vh;
    width: 7vw;
    cursor: pointer;
    border: none;
    font-family: museo sans;
    background-color: #222;
    color: #fff;
    font-size: .7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5em 1em 0;
    margin: 0
}

.btn-sidebar img {
    width: 40%;
    margin: .7em 0
}

hr {
    height: 0 !important;
    border: .1px solid #fff;
    width: 80%;
    opacity: .3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0
}

.mainHr {
    width: 100%;
    opacity: 1
}

.sidebar-content {
    height: 45vh;
    background-color: #222
}

.back-btn {
    background-color: #8e7421;
    bottom: 0;
    height: 8vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 7vw;
    border: 0;
    cursor: pointer;
    outline: 0;
    color: #fff
}

.back-btn svg {
    width: 45%
}

.back-btn svg path {
    fill: #fff
}

.recor-btn,
.renders-btn {
    background-color: #000;
    height: 8vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 7vw;
    border: 0;
    cursor: pointer;
    color: #fff;
    border-bottom: .5px solid #5a5d60
}

.recor-btn img,
.renders-btn img {
    width: 33%
}

.recor-btn,
.renders-btn {
    bottom: 8vmin
}

.btn-continue {
    position: fixed;
    background-color: #8e7421;
    height: auto;
    cursor: pointer;
    border: 0;
    padding: .5vmin;
    width: 4vmin;
    height: 4wmin;
    bottom: 10vh;
    left: 50%;
    transform: translate(-50%)
}

.btn-continue img {
    height: 100%;
    transform: rotate(180deg)
}

.btn-move-to {
    left: 40vw;
    z-index: 100
}

.canvas-content {
    width: 100%;
    height: 100%;
    position: relative;
    margin-right: 0;
    background-size: cover;
    background-position: 50%;
    overflow: hidden
}

.canvas-maps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/vias.539aa220.jpg);
    background: #3f4348;
    background-size: cover;
    height: 100vh;
    transition: background-image 2s linear
}

.canvas-3d {
    background-color: transparent;
    height: 100vh;
    background-size: cover
}

#logo_Umbra {
    position: fixed;
    left: 50%;
    z-index: 4;
    bottom: 0;
    height: 8vh;
    transform: translate(-50%);
    background-image: linear-gradient(0deg, #555, rgba(255, 0, 0, 0))
}

#logo_Umbra img {
    height: 100%
}

.canvas360 {
    opacity: 0;
    transition: all 1s ease-in-out
}

.canvas360.fadeIn {
    opacity: 1
}

.educacion-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/educacion.779ffe5a.jpg)
}

.educacion-map,
.parques-map {
    background-size: cover;
    height: 100vh;
    transition: background-image 2s linear
}

.parques-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/parques.edc3be97.jpg)
}

.rumba-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/zona-G.ecb43241.jpg)
}

.mercados-map,
.rumba-map {
    background-size: cover;
    height: 100vh;
    transition: background-image 2s linear
}

.mercados-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/supermercados.ea869d03.jpg)
}

.policia-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/EstacionPolicia.1af4adb4.jpg)
}

.policia-map,
.vias-map {
    background-size: cover;
    height: 100vh;
    transition: background-image 2s linear
}

.vias-map {
    background-image: linear-gradient(rgba(1, 1, 1, 0), rgba(1, 1, 1, 0)), url(../../static/media/vias.539aa220.jpg)
}

.maps-prelaod {
    opacity: 0;
    position: fixed
}

.fade-in {
    -webkit-animation: fadeIn 1s ease;
    animation: fadeIn 1s ease
}

.minimap-button {
    position: absolute;
    width: 7vh;
    height: 7vh;
    right: 1vh;
    top: 1vh;
    z-index: 1;
    padding: 0
}

.minimap-button img {
    width: 100%;
    height: auto
}

.bar-etapas {
    z-index: 1000;
    left: 7vw;
    height: 100vh;
    margin-left: 0;
    transition: all .5s
}

.bar-etapas,
.bar-etapas>div:nth-child(2) {
    position: fixed;
    width: 15vw;
    background-color: rgba(32, 36, 43, .85)
}

.bar-etapas>div:nth-child(2) {
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 10vh)
}

.etapa-header {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700
}

.btn-etapas,
.etapa-header {
    height: 10vh;
    font-family: museo sans
}

.btn-etapas {
    min-height: 8vh;
    width: 20vw;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background-color: rgba(42, 47, 53, .75);
    color: #fff;
    margin: 0;
    width: 15vw
}

#btn-torres {
    width: 15vw;
    margin: 0;
    background-color: #50565e
}

.etapas-hr {
    opacity: .35;
    width: 100%;
    margin: 0 auto;
    position: relative
}

.info-btn {
    display: flex;
    justify-content: start;
    padding: 0
}

.info-btn img {
    height: 1em;
    width: auto
}

.info-btn span {
    padding-left: .5vw
}

.info-btn>.warning {
    margin: 0 auto;
    padding: 0;
    font-size: .8em;
    width: 50%
}

.expand-icon {
    transform: rotate(270deg);
    position: absolute;
    right: 1em
}

.contract-icon {
    transform: rotate(90deg);
    position: absolute;
    right: 1em
}

.info-btn button {
    font-size: 12px;
    cursor: pointer;
    border: none
}

.content-aptos-tipo hr {
    width: 100%;
    margin-bottom: 0
}

.btn-apto {
    min-height: 5vh;
    font-size: 12px;
    cursor: pointer;
    border: none;
    background-color: #50565e;
    font-family: museo sans;
    color: #fff;
    margin: 0;
    width: 15vw;
    width-opacity: .2;
    width-margin: 0;
    width-position: relative
}

.btn-apto span {
    padding-right: 11em
}

.data-tipo-apto {
    padding: 1em;
    font-size: 14px;
    font-family: museo sans;
    background-color: rgba(26, 28, 35, .8)
}

.add-cotizador-icon {
    background-color: transparent;
    position: absolute;
    right: 2em;
    font-size: 1.25em !important;
    line-height: .5em
}

.add-cotizador-icon:hover {
    opacity: 1 !important;
    color: #b9982d !important
}

.add-cotizador-icon.added {
    color: var(--color-proyecto)
}

.gizmos-dispon {
    color: #fff;
    position: fixed;
    font-size: 11px;
    top: 2vmin;
    right: 2vmin;
    font-family: museo sans
}

.gizmos-dispon div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 7vmin
}

.gizmos-dispon div img {
    height: 60%
}

.ZonasInteres-sidebar {
    background-color: #222;
    opacity: .9;
    position: absolute;
    width: 7vw;
    bottom: 0;
    height: 100vh;
    left: 7vw;
    z-index: 1
}

.ZonasInteres-sidebar div {
    background-color: #222
}

.ZonasInteres-sidebar div button {
    width: 7vw
}

.ZonasInteres-sidebar div button img {
    width: 30%
}

.ZonasInteres-sidebar div button span {
    font-size: .8em
}

.amenidades-sidebar {
    background-color: #222;
    opacity: .9;
    position: absolute;
    width: 7vw;
    bottom: 0;
    height: 100vh;
    left: 7vw;
    overflow-x: hidden;
    overflow-y: hidden
}

.amenidades-sidebar .sidebar-amenidades {
    overflow-y: auto;
    height: 100%
}

.amenidades-sidebar .sidebar-amenidades img {
    width: 30%
}

.amenidades-sidebar .sidebar-amenidades span {
    font-size: .8em
}

.amenidades-sidebar .sidebar-amenidades::-webkit-scrollbar {
    display: none
}

.slide {
    height: 75vh;
    background-color: #000;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -55%);
    min-height: 75vmin;
    min-width: 75vmin;
    z-index: 1000
}

.slide-image {
    height: 100%;
    width: auto;
    display: block;
    margin: 0 auto
}

.slide .loader-circle {
    -webkit-animation: internal 2s ease-out infinite;
    animation: internal 2s ease-out infinite
}

.slide-ui {
    z-index: 9999;
    position: absolute;
    top: 0
}

.slide-ui button img {
    width: 100%
}

.slide-close {
    position: fixed;
    background-color: #8e7421;
    height: auto;
    cursor: pointer;
    border: 0;
    padding: .5vmin;
    width: 4vmin;
    height: 4vmin;
    top: 0;
    right: 0
}

.slide-info {
    background-color: rgba(33, 33, 33, .85);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0 1.5em;
    transform: translateY(100%);
    text-align: center
}

.slide-info hr {
    width: 70%;
    text-align: center;
    margin: 1em auto
}

.slide-info h3 {
    font-weight: 100;
    -webkit-margin-after: 0;
    margin-block-end: 0
}

.slide-info div {
    display: inline-block;
    margin: auto 1em
}

.slide-next,
.slide-prev {
    position: fixed;
    background-color: #8e7421;
    height: auto;
    cursor: pointer;
    border: 0;
    padding: .5vmin;
    width: 4vmin;
    height: 4vmin;
    bottom: 0
}

.slide-next {
    right: 0
}

.slide-next img {
    transform: rotate(180deg)
}

.slide-prev {
    left: 0
}

.slide-loading {
    background-color: rgba(42, 47, 53, .75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0
}

.py-bg {
    background-color: #8e7421
}

.slide.slide-360 {
    z-index: 90;
    width: 75vw;
    height: 80vh
}

.slide.slide-360 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mail-btn {
    background-color: #8e7421;
    bottom: 0;
    right: 0;
    height: 8vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 6vw;
    border: 0;
    cursor: pointer;
    color: #fff;
    font-size: 16px
}

.mail-btn img {
    width: 15%
}

.div-cotiza {
    font-family: museo sans;
    background-color: rgba(142, 116, 33, .82);
    height: 100vh;
    width: 15vw;
    right: 0;
    top: 0;
    position: fixed;
    padding: 1em;
    overflow-y: scroll
}

.div-cotiza-header {
    display: flex;
    align-items: center;
    justify-content: center
}

.div-cotiza-header button {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    right: 0;
    top: 5vh;
    position: fixed;
    padding: .5vmin;
    height: 4vmin
}

.div-cotiza-header button img {
    height: 100%
}

.div-cotiza h2 {
    color: #000
}

.div-aptos-selected {
    padding: .5em;
    min-height: 20vh
}

.div-aptos-selected h2,
.div-cotiza-form h2 {
    color: #fff;
    font-size: 14px;
    margin: .5em 0
}

.btn-apto-selected {
    border: 1px solid #fff;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 1em;
    margin: 1em 0
}

.btn-apto-selected button {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 0;
    height: 4vmin
}

.btn-apto-selected img {
    height: 75%
}

.div-cotiza-form {
    padding: .5em
}

.btn-cotiza,
.div-cotiza-form button {
    border: 0;
    display: inline-block;
    cursor: pointer;
    background-color: #2a2f35;
    color: #fff;
    text-decoration: none;
    margin: 2em auto 1em;
    border-radius: 2px;
    padding: 1.2em 7em;
    text-align: center;
    z-index: 1;
    display: flex
}

.div-cotiza-form input {
    padding: 1em;
    background-color: #fff;
    color: #000;
    border: 0;
    width: -webkit-fill-available
}

.div-cotiza-form label {
    margin: 1em;
    display: inline-block;
    font-size: 14px
}

.div-politica-datos {
    font-size: 10px;
    margin: 1em 0
}

.div-politica-datos a {
    color: #fff
}

.label-n-cotizados {
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 50%;
    top: -1vmin;
    left: -1vmin;
    padding: .25vmin .5vmin;
    font-weight: 700
}

.aviso-sent {
    background-color: #8e7421;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    border: 1px solid #000;
    border-radius: 3px
}

.div-sent {
    text-align: center;
    margin: 30vh 2vw
}

.div-sent h2 {
    color: #fff
}

.add-cotizador-icon.added {
    color: #8e7421;
    opacity: 1;
    font-weight: 900
}

.div-frame {
    height: 38%;
    position: absolute;
    top: 0;
    left: 0
}

.div-frame img {
    height: 100%
}

.div-frame video {
    width: 100vw;
    overflow: hidden;
    position: absolute
}

.camera-frames img,
.div-video video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center
}

.div-video {
    opacity: 0
}

.canvas-loading .loader-circle,
.div-video .loader-circle {
    -webkit-animation: internal 1.5s ease-out infinite;
    animation: internal 1.5s ease-out infinite
}

.div-video.loaded {
    opacity: 1
}

.video-canvas-loading {
    z-index: -1
}

.canvas-loading,
.video-canvas-loading {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    position: fixed
}

.canvas-loading {
    z-index: 20000
}

.video-gallery {
    position: absolute;
    width: 93vw;
    height: 100%;
    left: 7vw;
    background: rgba(34, 34, 34, .8);
    z-index: 999
}

.gallery {
    position: absolute;
    width: 100%;
    height: 90%;
    top: 10vh;
    overflow-y: auto
}

.gallery-img {
    cursor: pointer;
    margin: 1%;
    max-width: 18%;
    min-width: 18%;
    max-height: 20%;
    object-fit: cover
}

.full-gallery {
    top: 0;
    background-color: #000;
    position: absolute;
    width: 93vw;
    height: 100%;
    left: 7vw;
    z-index: 1000
}

.iframe-videos {
    left: 50%;
    max-width: 90%;
    max-height: 90%;
    transform: translate(-50%, -50%)
}

.iframe-videos,
.next-img {
    border: none;
    position: absolute;
    top: 50%
}

.next-img {
    visibility: visible;
    background-color: #8e7421;
    cursor: pointer;
    width: 4em;
    height: 4em;
    right: .5%;
    margin: 0;
    padding: 0;
    transform: translateY(-50%)
}

.next-img img {
    width: 3em;
    transform: rotate(180deg)
}

.prev-img {
    visibility: visible;
    background-color: #8e7421;
    border: none;
    cursor: pointer;
    position: absolute;
    width: 4em;
    height: 4em;
    left: .5%;
    top: 50%;
    margin: 0;
    padding: 0;
    transform: translateY(-50%)
}

.prev-img img {
    width: 3em
}

.first-video,
.last-video {
    visibility: hidden
}

.close-img {
    cursor: pointer;
    background-color: #8e7421;
    border: none;
    position: absolute;
    width: 3.5em;
    height: 3.5em;
    right: .5%;
    top: 1%;
    margin: 0;
    padding: 0
}

.close-img img {
    width: 2.5em
}

::-webkit-scrollbar,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
    width: 3px;
    border: none
}

::-webkit-resizer,
::-webkit-scrollbar-button,
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track-piece {
    display: none
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #fff
}

@-webkit-keyframes internal {
    0% {
        stroke-dashoffset: 187
    }
    25% {
        stroke-dashoffset: 80
    }
    to {
        stroke-dashoffset: 187;
        transform: rotate(1turn)
    }
}

@keyframes internal {
    0% {
        stroke-dashoffset: 187
    }
    25% {
        stroke-dashoffset: 80
    }
    to {
        stroke-dashoffset: 187;
        transform: rotate(1turn)
    }
}

@-webkit-keyframes ending-load {
    0% {
        stroke-dashoffset: 360
    }
    55% {
        stroke-dashoffset: 205
    }
    96% {
        stroke-dashoffset: 45;
        stroke: #fff;
        opacity: 1
    }
    to {
        opacity: 1
    }
}

@keyframes ending-load {
    0% {
        stroke-dashoffset: 360
    }
    55% {
        stroke-dashoffset: 205
    }
    96% {
        stroke-dashoffset: 45;
        stroke: #fff;
        opacity: 1
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@media(max-width:415px) and (orientation:portrait) {
    #root>div>div,
    body,
    html {
        position: fixed;
        overflow: hidden;
        height: 100vh;
        width: 100vw
    }
    .maqueta-page {
        overflow: hidden;
        height: 100% !important;
        width: 100% !important
    }
    .ingreso-div {
        position: fixed;
        left: 0;
        width: 100%;
        height: 100%
    }
    .ingreso-div div {
        margin-bottom: auto;
        margin-top: auto;
        position: absolute;
        width: 80%
    }
    .ingreso-div img {
        top: 7%;
        position: absolute;
        transform: scale(2)
    }
    .ingreso-div a {
        position: absolute;
        bottom: 7%
    }
    #logos {
        transform: scale(.7)
    }
    .sidebar {
        z-index: 9999;
        position: fixed;
        overflow: hidden;
        bottom: 0;
        width: 100vw;
        height: 10vh;
        display: flex;
        flex-direction: row
    }
    .sidebar .header-logo {
        width: 18vw;
        height: 10vh
    }
    .sidebar .header-logo img {
        width: 105%
    }
    .sidebar .bar-and-hide {
        height: 10vh;
        width: 82vw
    }
    .sidebar .bar-and-hide .sidebar-content {
        width: 100%;
        height: 10vh
    }
    .sidebar .bar-and-hide .sidebar-content div {
        display: flex
    }
    .sidebar .bar-and-hide .sidebar-content div button {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        min-width: 16vw
    }
    .sidebar .bar-and-hide .sidebar-content div button img {
        height: 60%;
        width: 60%;
        margin: 0
    }
    .sidebar .bar-and-hide .sidebar-content div button span {
        width: 120%;
        font-size: 2.3vw
    }
    .sidebar .bar-and-hide .sidebar-content div hr {
        margin-top: auto !important;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: auto;
        opacity: .2;
        height: 8vh !important;
        width: 0 !important
    }
    .sidebar .bar-and-hide .sidebar-content div .mainHr {
        height: 10vh !important;
        opacity: 1;
        border: 1px solid #fff !important
    }
    .canvas-content,
    .canvas-maps {
        position: absolute;
        height: 100vh
    }
    .canvas-maps {
        top: 0;
        left: 0
    }
    .canvas-maps div {
        top: 5% !important;
        top: 0;
        left: 0;
        position: fixed;
        height: 75% !important;
        width: 100%
    }
    .canvas-maps>.vias-map {
        height: 85% !important
    }
    .containerBar {
        z-index: 999 !important;
        position: absolute;
        background-color: #000;
        opacity: .85;
        width: 100%;
        height: 5vh;
        top: 0
    }
    #logo_Umbra {
        top: 0;
        position: fixed;
        left: 90%;
        top: -.5%;
        height: 6vh;
        background: 0 0;
        z-index: 999
    }
    .back-btn {
        z-index: 1000;
        left: 0;
        top: 0;
        width: 10vw;
        height: 5vh;
        display: flex;
        justify-content: center;
        align-items: center
    }
    .back-btn svg {
        transform: scale(1.8)
    }
    .renders-btn {
        z-index: 1000;
        left: 10vw;
        top: 0;
        width: 11vw;
        height: 5vh;
        border-bottom: none;
        display: flex;
        justify-content: center;
        align-items: center
    }
    .renders-btn img {
        transform: scale(1.8)
    }
    .amenidades-sidebar {
        width: 100%;
        left: 0;
        height: 10vh;
        position: fixed;
        bottom: 10vh;
        overflow-x: hidden;
        overflow-y: hidden
    }
    .amenidades-sidebar .sidebar-amenidades {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        height: 10vh
    }
    .amenidades-sidebar .sidebar-amenidades button {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 28vw;
        padding: 0 3em
    }
    .amenidades-sidebar .sidebar-amenidades button img {
        transform: scale(1.6);
        margin-bottom: 0;
        margin-top: 0;
        padding-bottom: 1em;
        width: 40%;
        height: 40%
    }
    .amenidades-sidebar .sidebar-amenidades button span {
        bottom: 11%;
        font-size: 10px;
        width: 250%
    }
    .amenidades-sidebar .sidebar-amenidades hr {
        margin-top: auto;
        margin-bottom: auto;
        opacity: .2;
        height: 80% !important
    }
    .ZonasInteres-sidebar {
        width: 100%;
        left: 0;
        height: 10vh;
        position: fixed;
        bottom: 10vh;
        overflow-x: hidden;
        overflow-y: hidden
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres {
        height: 10vh;
        display: flex;
        overflow-x: hidden;
        overflow-y: hidden;
        width: 100vw
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres hr {
        height: 70px !important;
        width: 0;
        margin-top: auto;
        margin-bottom: auto;
        opacity: .2
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres button {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 20vw
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres button img {
        width: 50%
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres button span {
        font-size: 8px
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres::-webkit-scrollbar {
        display: none
    }
    .bar-etapas {
        top: 5vh;
        left: 0;
        width: 35vw;
        height: 85vh
    }
    .bar-etapas>div:nth-child(2) {
        width: 35%;
        height: 65vh
    }
    #btn-torres,
    .btn-apto,
    .btn-etapas {
        width: 35vw
    }
    .contract-icon,
    .expand-icon {
        display: none
    }
    .warning {
        font-size: .6em !important;
        width: 50% !important
    }
    .gizmos-dispon {
        top: 6%
    }
    .slide {
        z-index: 9999;
        display: grid;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        transform: translate(0)
    }
    .slide .slide-image {
        max-height: 28vh;
        margin: 70% auto 30%
    }
    .slide-ui {
        z-index: 9999;
        width: 100vw
    }
    .slide-ui .slide-close {
        width: 5vmin;
        height: 5vmin
    }
    .slide-ui .slide-next,
    .slide-ui .slide-prev {
        width: 5vmin;
        height: 5vmin;
        bottom: 0
    }
    .slide.slide-360 {
        z-index: 9999;
        width: 100vw;
        height: 100vh
    }
    .slide-loading {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%
    }
    .slide-loading img {
        position: fixed;
        top: 37.5vh
    }
    .mail-btn {
        z-index: 9998;
        position: fixed;
        top: 0;
        display: block;
        left: 21vw;
        width: 30vw;
        height: 5vh;
        background-color: transparent
    }
    .label-n-cotizados {
        position: fixed;
        left: 48vw;
        top: 1.5vh;
        width: 3.5vmin;
        height: 4vmin;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #8e7421;
        color: #fff
    }
    .div-cotiza {
        top: 5vh;
        width: 100%;
        z-index: 9999;
        left: 0;
        height: 95%
    }
    .div-cotiza .div-cotiza-header {
        width: 90%
    }
    .div-cotiza .div-cotiza-header button {
        position: fixed;
        top: 6%;
        right: 1%
    }
    .div-cotiza .div-cotiza-header button img {
        transform: scale(2)
    }
    .div-cotiza .div-aptos-selected {
        width: 75%
    }
    .div-cotiza .div-cotiza-form form {
        width: 90%
    }
    .div-cotiza hr {
        height: 0% !important;
        width: 90% !important
    }
    .video-gallery {
        width: 100%;
        left: 0;
        height: 85%;
        top: 5vh
    }
    .gallery-img {
        max-width: 42%;
        min-width: 42%;
        margin: 1.6% 4%
    }
    .full-gallery {
        height: 85%;
        width: 100%;
        left: 0;
        top: 5%
    }
    .iframe-videos {
        max-width: 100%;
        max-height: 40%
    }
    .prev-img {
        top: 96%;
        left: 0;
        width: 3em;
        height: 3em
    }
    .prev-img img {
        width: 1.5em
    }
    .next-img {
        top: 96%;
        right: 0;
        width: 3em;
        height: 3em
    }
    .next-img img {
        width: 1.5em
    }
    .close-img {
        width: 2.5em;
        height: 2.5em
    }
    .close-img img {
        width: 1.25em
    }
}

@media(max-width:900px) and (orientation:landscape) and (min-width:630px) {
    #root>div>div {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        margin: 0
    }
    .back-btn {
        width: 10vw
    }
    .renders-btn {
        right: 0;
        width: 10vmin;
        height: 10vmin
    }
    .renders-btn img {
        width: 60%
    }
    .ingreso-page,
    .ingreso-page .ingreso-div {
        width: 100vw
    }
    .ingreso-page .ingreso-div img {
        position: fixed;
        top: -7%
    }
    .ingreso-page .ingreso-empty {
        width: 0
    }
    .ingreso-text {
        position: fixed;
        width: 80%;
        margin: auto
    }
    .btn_ingreso {
        position: fixed;
        bottom: 1%
    }
    .sidebar {
        width: 10vw
    }
    .sidebar .header-logo {
        width: 100%;
        height: 15vh
    }
    .sidebar .bar-and-hide {
        width: 100%;
        height: 85vh
    }
    .sidebar .bar-and-hide .sidebar-content {
        width: -webkit-fill-available;
        height: 60vh
    }
    .sidebar .bar-and-hide .sidebar-content div .btn-sidebar {
        width: 100%;
        height: 15vh
    }
    .amenidades-sidebar {
        position: fixed;
        left: 10vw;
        width: 10vw
    }
    .amenidades-sidebar .sidebar-amenidades .btn-sidebar {
        width: 100%;
        height: 15vh
    }
    .amenidades-sidebar .sidebar-amenidades .btn-sidebar span {
        width: 160%;
        font-size: .9em
    }
    .mail-btn {
        width: 15%
    }
    .div-cotiza {
        z-index: 9999;
        width: 90%;
        left: 10%
    }
    .div-cotiza .div-cotiza-form form {
        width: 90%
    }
    .ZonasInteres-sidebar {
        position: absolute;
        left: 10vw;
        width: 10vw
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres .btn-sidebar {
        width: 100%;
        height: 15vh
    }
    .ZonasInteres-sidebar .sidebar-ZonasInteres .btn-sidebar span {
        font-size: .7em
    }
    .bar-etapas {
        left: 10vw;
        width: 20vw
    }
    .bar-etapas>div:nth-child(2) {
        width: 20vw
    }
    .btn-etapas {
        height: 15vh
    }
    #btn-torres {
        width: 20vw
    }
    .contract-icon,
    .expand-icon {
        display: none
    }
    .etapa-header {
        height: 15vh
    }
    .warning {
        font-size: .6em !important;
        width: 50% !important
    }
    .slide {
        z-index: 9999;
        transform: translate(0);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0
    }
    .slide-360 {
        z-index: 9999 !important;
        height: 100vh !important;
        width: 100vw !important
    }
}