html {
    font-family: "Raleway", sans-serif;
    font-size: 0.8em;
    margin: 0;
}

body {
    margin: 0;
}

#core {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.flex {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.hover:not(:hover) {
    opacity: 0.9;
}

.hover2 {
    font-weight: bold;
    border-bottom: 1px #ccc solid;
}

.hover2:not(:hover) {
    opacity: 0.8;
    border-bottom: none;
}

.toolbar {
    height: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    background-color: #003B65;
    color: #FFFFFF;
}

.toolpanel {
    margin: auto 0;

    cursor: default;
}

.toolboxButton {
    padding: 5px;
    cursor: default;
    user-select: none;
}

.toolboxButton:not(:hover) {
    background-color: #0202022e;
    border-radius: 5px;
}

.toolbar input {
    background: none;
    border: none;
    outline: none;
    color: #FFFFFF;
    padding-left: 20px;
}

.toolbar .findByText input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFFFFF;
    opacity: 0.6;
    /* Firefox */
    font-style: italic;
}

.toolpanel,
.toolboxButton {
    transition: all .2s ease;

}

.toolpanel:hover,
.toolboxButton:hover {
    background-color: var(--buttonBg);
    color: #ffffff;
}

.modalBack {
    background-color: #151515de;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
}

.modalContent {
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    z-index: 5;
}

.modal input {
    padding: 8px;
    outline: none;
    border: none;
    background-color: #f8f8f8;
}

.findBox {
    height: 0px;
    transition: .3s ease all;
}

.findBox input {
    margin-top: 5px;
    margin-bottom: 5px;
}

.findBox {
    animation: animate .1s linear forwards;

}

@keyframes animate {
    0% {
        min-height: 0px;
    }

    100% {
        min-height: 0px;
    }
}

.findBox .item {
    color: #000000;
    cursor: default;
    user-select: none;
}

.findBox .item:hover {
    color: #303030;
    background-color: #fafafa;

}

.filesPanel.dragover {
    background-color: #e9e6e6;
}

.documentView .rightPanel {
    width: 250px;
    transition: all .2s ease;
    overflow: hidden;
    padding: 10px;
}

.documentView .rightPanel.hidden {
    width: 0px;
    padding: 0;
}

.hideOnFocus:focus-within .hideItem {
    display: none;
}

:root {
    --borderColor: #00000015;
    --hoverBg: #cacaca1d;
    --buttonBg: #06233bd6;
    --buttonBgAt: #ef4400d6;
    --buttonBghover: #06233baf;
    --buttonBghoverAt: #ef4400b3;
    --buttonBgLight: #e4e8eb;

}

.borderTop {
    border-top: solid 1px var(--borderColor);
}

.borderBottom {
    border-bottom: solid 1px var(--borderColor);
}

.dirNav .item {
    transition: all .2s ease;
    padding: 5px;
}

.documentView .filesPanel .item {
    padding-top: 10px;
    height: 35px;
    border-bottom: solid 1px var(--borderColor);
    transition: all .2s ease;
}

.dirNav .item {
    user-select: none;
    cursor: default;
}

.dirNav .item.select {
    background-color: #b5d4f26d;
}

.documentView .item:hover,
.reportesView .item:hover {
    background-color: var(--hoverBg);
}

.documentView .item img {
    padding-top: 7px;

}

.card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /*border-radius: 8px;*/
}

#contextMenu .item {
    padding: 8px;
    cursor: default;
    user-select: none;
}

.view {
    width: 100%;
    margin: 0 auto;
    padding-left: calc(100vw - 100%);
}

.gallery {
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    color: inherit;
}

.thumb,
.thumb img {
    width: 192;
    height: 192;
    overflow: hidden;
    margin: 10px;
    background-color: var(--hoverBg);
    transition: all .2s ease;
}

.thumb img {
    object-fit: cover;
}

.thumb img:hover {
    opacity: 0.8;
}

.apears {
    opacity: 0;
    transition: all .4s ease;
}

.reportesView .item {
    padding: 10px;
}

.project_marker {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 3px;
}

.project_marker_containner {
    background-size: cover;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: #0000003d 0 0 11px;
}

.cursor {
    cursor: default;
}

.proyectosPage .item {
    border: 1px transparent solid;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.proyectosPage .item:hover {
    background-color: var(--hoverBg);
    border: 1px var(--borderColor) solid;
}

.button {
    background-color: var(--buttonBg);
    padding: 10px 20px;
    color: #ffffff;
    text-align: center;
    transition: all .2s ease;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    font-weight: 500;
}

.button.active {
    background-color: var(--buttonBgAt);
}

.button:hover {
    background-color: var(--buttonBghover);
}

.button.active:hover {
    background-color: var(--buttonBghoverAt);
}

.buttonLight {
    background-color: var(--buttonBgLight);
    padding: 10px;
    color: #222222;
    text-align: center;
    transition: all .2s ease;
    cursor: default;
}

.buttonLight:hover {
    background-color: var(--buttonBghover);
    color: #ffffff;
}

.header {
    font-size: 1.3em;
    padding: 15px;
    font-weight: 600;
}

.projectEditor .item {
    margin-bottom: 10px;
}

.planosToolbar {
    background-color: #181b21;
    color: #ffffff;
}

#core:has(.planosToolbar) {
    overflow: hidden;
}

.planosToolbar .selected {
    background: #282d37;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 32
}

.planosToolbar .item:hover {
    background: #3d4554;
}

.sideBar {
    width: 200px;
    background: #F1F1F3;
}

.panel {
    max-width: 1248px !important;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 0px) and (max-width:1024px) {
    .sideBar {
        display: none;

    }
}

@media (max-width:767px) {
    .proyectosPage {
        width: 100%;
        overflow: scroll;
    }

    .toolbar {

        flex-direction: row;
    }

    .view {
        max-width: 767px;
    }

    .toolpanel .item {
        flex: 1
    }

    .logoDescription,
    .hideOnMobile {
        display: none !important
    }

    .analiticasHeader {
        margin-left: 10px;
    }

}

@media (min-width:768px) {
    .proyectosPage {
        max-width: 1280px;
    }

    .Logo {
        width: 200px;
    }

    .toolpanel {
        width: 180px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .toolboxButton {
        width: 160px;
    }

    .analiticasHeader {
        margin-left: 110px;
    }
}