@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400&display=swap");
* {
    box-sizing: border-box;
}

#loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: white;
    z-index: 1000;
    /* esto deberia ser display block */
    display: flex;
    align-items: center;
    justify-content: center;
}

#containermenu {
    position: absolute;
    left: 50%;
    top: 45%;
    margin-left: -200px;
    transform: scale(0.725);
}

.divider {
    position: absolute;
    z-index: 2;
    top: 65px;
    left: 200px;
    width: 50px;
    height: 15px;
    background: transparent;
}

.loading-text {
    position: relative;
    font-size: 3.75rem;
    font-weight: 300;
    margin: 0;
    white-space: nowrap;
}

.loading-text::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 40px;
    left: 135px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    -webkit-animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
    animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.loading-text .letter {
    display: inline-block;
    position: relative;
    color: #000;
    letter-spacing: 8px;
}

.loading-text .letter:nth-child(1) {
    transform-origin: 100% 70%;
    transform: scale(1, 1.275);
}

.loading-text .letter:nth-child(1)::before {
    position: absolute;
    content: "";
    top: 22px;
    left: 0;
    width: 14px;
    height: 36px;
    background: #fff;
    transform-origin: 100% 0;
    -webkit-animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
    animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.loading-text .letter:nth-child(5) {
    transform-origin: 100% 70%;
    -webkit-animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
    animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
}

.loading-text .letter:nth-child(5)::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 2px;
    width: 9px;
    height: 15px;
    background: #fff;
}

.menulogoloader {
    width: 50px;
    height: 50px;
    background-image: url('../images/cesar-grey-max-radius-sn.png');
    background-size: cover;
    border-radius: 400px;
    margin: auto;
    animation: rotatingloader 5s infinite;
}

@keyframes rotatingloader {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3600deg);
    }
}

@-webkit-keyframes dotMove {
    0%,
    100% {
        transform: rotate(180deg) translate(-110px, -10px) rotate(-180deg);
    }
    50% {
        transform: rotate(0deg) translate(-111px, 10px) rotate(0deg);
    }
}

@keyframes dotMove {
    0%,
    100% {
        transform: rotate(180deg) translate(-110px, -10px) rotate(-180deg);
    }
    50% {
        transform: rotate(0deg) translate(-111px, 10px) rotate(0deg);
    }
}

@-webkit-keyframes letterStretch {
    0%,
    100% {
        transform: scale(1, 0.35);
        transform-origin: 100% 75%;
    }
    8%,
    28% {
        transform: scale(1, 2.125);
        transform-origin: 100% 67%;
    }
    37% {
        transform: scale(1, 0.875);
        transform-origin: 100% 75%;
    }
    46% {
        transform: scale(1, 1.03);
        transform-origin: 100% 75%;
    }
    50%,
    97% {
        transform: scale(1);
        transform-origin: 100% 75%;
    }
}

@keyframes letterStretch {
    0%,
    100% {
        transform: scale(1, 0.35);
        transform-origin: 100% 75%;
    }
    8%,
    28% {
        transform: scale(1, 2.125);
        transform-origin: 100% 67%;
    }
    37% {
        transform: scale(1, 0.875);
        transform-origin: 100% 75%;
    }
    46% {
        transform: scale(1, 1.03);
        transform-origin: 100% 75%;
    }
    50%,
    97% {
        transform: scale(1);
        transform-origin: 100% 75%;
    }
}

@-webkit-keyframes lineStretch {
    0%,
    45%,
    70%,
    100% {
        transform: scaleY(0.125);
    }
    49% {
        transform: scaleY(0.75);
    }
    50% {
        transform: scaleY(0.875);
    }
    53% {
        transform: scaleY(0.5);
    }
    60% {
        transform: scaleY(0);
    }
    68% {
        transform: scaleY(0.18);
    }
}

@keyframes lineStretch {
    0%,
    45%,
    70%,
    100% {
        transform: scaleY(0.125);
    }
    49% {
        transform: scaleY(0.75);
    }
    50% {
        transform: scaleY(0.875);
    }
    53% {
        transform: scaleY(0.5);
    }
    60% {
        transform: scaleY(0);
    }
    68% {
        transform: scaleY(0.18);
    }
}

@media (min-width: 48rem) {
    #containermenu {
        transform: scale(0.725rem);
    }
}

@media (min-width: 62rem) {
    #containermenu {
        transform: scale(0.85);
    }
}

#test1 {
    width: 100%;
    height: 5px;
    text-align: center;
    line-height: 7.5vw;
    top: 60%;
    position: absolute;
    margin-top: 100px;
    background-color: black;
    opacity: 0;
    border-radius: 15px;
}

.loader_img {
    width: 45px;
    height: 45px;
}

@keyframes stretchRight {
    0% {
        width: 0%;
    }
    20% {
        width: 15%;
    }
    30% {
        width: 20%;
    }
    70% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap");
.dots {
    display: inline-flex;
}

.dots--animate .dot.z {
    -webkit-animation: scale 0.8s 0.2s forwards;
    animation: scale 0.8s 0.2s forwards;
}

.dots--animate .dot.f,
.dots--animate .dot.s {
    -webkit-animation: right 0.5s forwards;
    animation: right 0.5s forwards;
}

.dots--animate .dot.l {
    -webkit-animation: rightDown 0.4s 0.1s forwards linear, drop 2s 0.4s forwards linear;
    animation: rightDown 0.4s 0.1s forwards linear, drop 2s 0.4s forwards linear;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #212121;
    border-radius: 10px;
    position: relative;
    margin-left: 6px;
}

.dot.z {
    position: absolute;
    transform: scale(0);
}

@-webkit-keyframes scale {
    100% {
        transform: scale(1);
    }
}

@keyframes scale {
    100% {
        transform: scale(1);
    }
}

.dot.f,
.dot.s {
    transform: translateX(0px);
}

@-webkit-keyframes right {
    100% {
        transform: translateX(16px);
    }
}

@keyframes right {
    100% {
        transform: translateX(16px);
    }
}

.dot.t {
    background: transparent;
}

.dot .l {
    margin-left: 0;
    position: absolute;
    top: 0;
    left: 0;
}

@-webkit-keyframes rightDown {
    50% {
        top: 4px;
        left: 16px;
    }
    100% {
        top: 12px;
        left: 24px;
    }
}

@keyframes rightDown {
    50% {
        top: 4px;
        left: 16px;
    }
    100% {
        top: 12px;
        left: 24px;
    }
}

@-webkit-keyframes drop {
    100% {
        transform: translate(70px, calc(35px + (100vh/2)));
    }
}

@keyframes drop {
    100% {
        transform: translate(70px, calc(35px + (100vh/2)));
    }
}

.abs-twitter {
    position: fixed;
    right: calc(24px + .6vw);
    top: calc(22px + .6vw);
    transform: translate(-8px, 4px);
    opacity: 0;
    transition: 0.3s ease-in;
}

.abs-twitter--show {
    transform: translate(0, 0);
    opacity: 1;
    -webkit-animation: birdie 1s 0.8s linear infinite;
    animation: birdie 1s 0.8s linear infinite;
}

@-webkit-keyframes birdie {
    13% {
        transform: rotate(14deg);
    }
    26% {
        transform: rotate(28deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes birdie {
    13% {
        transform: rotate(14deg);
    }
    26% {
        transform: rotate(28deg);
    }
    100% {
        transform: rotate(0deg);
    }
}