﻿.t2p-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    align-content: space-around;
    flex-direction: column;
}

.material-icons-outlined.md-80 {
    font-size: 80px;
}

#t2p-hexagon, 
#t2p-dots {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#t2p-dots {
 /*
    top: -14px;
    left: 16px;
 */
    top: -29px;
    left: 0px;
    z-index: 10;
    font-size: 64px;
    font-weight: 600;
}

#t2p-logo {
    color: #ffd400;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    font-size: 80px;
    transform-origin: center center;
    position: relative;
    text-align:center;
    vertical-align:middle;
}

.ellipsis-anim span {
    opacity: 0;
    -webkit-animation: ellipsis-dot 1s infinite;
    animation: ellipsis-dot 1s infinite;
}

    .ellipsis-anim span:nth-child(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .ellipsis-anim span:nth-child(2) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .ellipsis-anim span:nth-child(3) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

@-webkit-keyframes ellipsis-dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes ellipsis-dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
