@font-face {
    font-family: "Montserrat";
    src: url('../../fonts/Montserrat/Montserrat-Regular.ttf');
}

* {

    font-family: 'Montserrat';
}

html,
body {
    margin: 0px auto;
    font-family: 'Montserrat';
    color: white;
    background-color: #000000;
}

.contenedor-principal {
    width: 100%;
    height: 100vh;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

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

.contenedor-menu {
    width: calc(100% - 20px);
    height: 90px;
    padding: 10px;
}

.contenedor-cuerpo {
    width: calc(100% - 20px);
    height: calc(100% - 110px);
    padding: 0px 10px;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}
.position-fixed {
    position: fixed;
}
.span-break {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
    list-style-type: none;
}

.padding-48px-40px-36px {
    padding: 48px 40px 36px;
}

.boton-flex-glow {
    flex-grow: 0;
    flex-shrink: 0;
}

.cursor-default {
    cursor: default;
}
.cursor-pointer
{
    cursor: pointer;
}

.overflow-text {
    max-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}