@-webkit-keyframes loading {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.OFICINA_01 > .container-fluid {
    margin: 0;
    padding: 0;
}

.OFICINA_01__tools {
    height: 67px;
    position: relative;
}

    .OFICINA_01__tools .col {
        background-color: #CCC1BA;
    }

        .OFICINA_01__tools .col:nth-child(even) {
            background-color: #C4B7B0;
        }

.OFICINA_01__tools__item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.OFICINA_01__tools__icon > .icon {
    display: block;
}

.OFICINA_01__tools__main {
    gdisplay: none;
    display: block !important;
    height: auto !important;
    margin-left: 0.75rem;
}

.OFICINA_01__search {
    position: relative;
}

    .OFICINA_01__search .OFICINA_01__tools__main {
        position: absolute;
        top: 100%;
        left: 0;
        width: 300%;
        z-index: 2;
        background-color: #CCC1BA;
        padding: 1.5rem;
    }

        .OFICINA_01__search .OFICINA_01__tools__main > input {
            background-color: transparent;
            border: 0;
            outline: 0;
            font-size: 23px;
            width: 100%;
        }

.OFICINA_01__mapwrapper {
    position: relative;
    overflow: hidden;
}

    .OFICINA_01__mapwrapper.loading:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .OFICINA_01__mapwrapper.loading:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -20px;
        margin-left: -20px;
        z-index: 2;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border-top: 4px solid white;
        border-right: 4px solid white;
        border-bottom: 4px solid transparent;
        border-left: 4px solid transparent;
        -webkit-animation: loading 1s infinite linear;
        animation: loading 1s infinite linear;
    }

.OFICINA_01__officeslist {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: 5;
    background-color: #CCC1BA;
    padding: 1.5rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    list-style: none;
}

    .OFICINA_01__officeslist > li a {
        -webkit-transition: color 0.3s;
        transition: color 0.3s;
    }

        .OFICINA_01__officeslist > li a:hover, .OFICINA_01__officeslist > li a.active {
            color: white;
        }

    .OFICINA_01__officeslist > li + li {
        margin-top: 0.75rem;
    }

.OFICINA_01__officedetail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #DAD2CD;
    z-index: 4;
    font-size: 18px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

    .OFICINA_01__officedetail.open {
        -webkit-transform: none;
        transform: none;
    }

.OFICINA_01__officedetail__photo {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.OFICINA_01__officedetail__info {
    padding: 0.75rem;
}

.OFICINA_01__officedetail__title {
    font-size: 33px;
    font-weight: 600;
}

.OFICINA_01__officedetail__address {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.OFICINA_01__officedetail__phone, .OFICINA_01__officedetail__email {
    display: block;
}

.OFICINA_01__officedetail__email {
    text-decoration: underline;
    margin-bottom: 1.5rem;
}

.OFICINA_01__officedetail__people {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .OFICINA_01__officedetail__people > li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .OFICINA_01__officedetail__people > li > img {
            -ms-flex-negative: 0;
            flex-shrink: 0;
            border-radius: 100px;
            margin-right: 0.75rem;
        }

        .OFICINA_01__officedetail__people > li h5 {
            font-weight: 500;
        }

        .OFICINA_01__officedetail__people > li + li {
            margin-top: 0.75rem;
        }

.OFICINA_01__map {
    width: 100%;
    height: 580px;
}

@media (min-width: 48em) {
    .OFICINA_01__tools__item {
        font-size: 20px;
        padding: 0 1.5rem;
    }

    .OFICINA_01__tools__main {
        display: block !important;
        height: auto !important;
        margin-left: 0.75rem;
    }

    .OFICINA_01__search .OFICINA_01__tools__main {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        position: static;
        width: auto;
        background-color: transparent;
        padding: 0;
    }

        .OFICINA_01__search .OFICINA_01__tools__main > input {
            background-color: transparent;
            border: 0;
            outline: 0;
            font-size: 23px;
            width: 100%;
        }

    .OFICINA_01__offices .OFICINA_01__tools__main {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .OFICINA_01__officeslist {
        width: 33.333%;
    }

    /*.OFICINA_01__officedetail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .OFICINA_01__officedetail > * {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

    .OFICINA_01__officedetail__photo {
        height: auto;
    }
    */

    .OFICINA_01__officedetail__info {
        padding: 1.5rem;
    }

    .OFICINA_01__map {
        height: 890px;
    }
}

@media (min-width: 62em) {
    .OFICINA_01__tools__item {
        font-size: 23px;
    }

    .OFICINA_01__deskcolfixed {
        width: 280px;
    }

    .OFICINA_01__geo .OFICINA_01__tools__main, .OFICINA_01__offices .OFICINA_01__tools__main {
        min-width: 180px;
    }

    .OFICINA_01__officeslist {
        width: 280px;
        overflow-y: auto;
    }

    .OFICINA_01__officedetail {
        width: 550px;
        height: 100%;
        right: auto;
        left: 0;
        display: block;
    }

    .OFICINA_01__officedetail__photo {
        height: 240px;
    }

    .OFICINA_01__map {
        height: 675px;
    }
}
