﻿

.Mycontainer {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .Mycontainer .Mybox {
        /*width: 250px;*/
        height: 250px;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .Mycontainer .Mytitle {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        height: 150px;
        font-size: 150px;
    }
    .Mycontainer .Myblock {
        width: 0%;
        height: inherit;
        background: #ffb510;
        position: absolute;
        animation: mainBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
        display: flex;
    }

.Myh1 {
    /*font-family: 'Poppins';*/
    color: #009688;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
}
    .Myh1 .Myspan {
        width: 0px;
        height: 0px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: #ffb510;
        -webkit-animation: load 0.6s cubic-bezier(.74, .06, .4, .92) forwards;
        animation: popIn 0.8s cubic-bezier(.74, .06, .4, .92) forwards;
        animation-delay: 2s;
        margin-left: 5px;
        margin-top: -10px;
        position: absolute;
        bottom: 13px;
        right: -12px;
    }

.Myrole {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
    margin-top: -10px;
}
    .Myrole .Myblock {
        width: 0%;
        height: inherit;
        background: #e91e63;
        position: absolute;
        animation: secBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
        animation-delay: 2s;
        display: flex;
    }

.Myp {
    animation: secFadeIn 2s forwards;
    animation-delay: 3.2s;
    opacity: 0;
    font-weight: 400;
    font-family: 'Lato';
    /*color: #ffffff;*/
    font-size: 20px;
    /*text-transform: uppercase;*/
    letter-spacing: 3px;
}

.QR {
    height: 300px;
    width: 500px;
    margin: 10px auto;
    animation: secFadeIn 2s forwards;
    animation-delay: 4s;
    opacity: 0;
}

@keyframes mainBlock {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes secBlock {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes mainFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes popIn {
    0% {
        width: 0px;
        height: 0px;
        background: #009688;
        border: 0px solid #ddd;
        opacity: 0;
    }

    50% {
        width: 13px;
        height: 13px;
        background: #009688;
        opacity: 1;
        bottom: 50px;
    }

    65% {
        width: 10px;
        height: 10px;
        bottom: 30px;
        width: 15px
    }

    80% {
        width: 13px;
        height: 13px;
        bottom: 57px
    }

    100% {
        width: 10px;
        height: 10px;
        background: #009688;
        border: 0px solid #222;
        bottom: 50px;
    }
}

@keyframes secFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

