@import url(https://fonts.googleapis.com/css?family=Roboto:500,400italic,700,400,300);
/******************** PULSE ********************/
.pbm-cubic-pulse > div {
    animation: pbm-cubic-pulse cubic-bezier(0.2, 0.8, 0.2, 0.8) 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: pbm-cubic-pulse cubic-bezier(0.2, 0.8, 0.2, 0.8) 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: pbm-cubic-pulse cubic-bezier(0.2, 0.8, 0.2, 0.8) 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: pbm-cubic-pulse cubic-bezier(0.2, 0.8, 0.2, 0.8) 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: pbm-cubic-pulse cubic-bezier(0.2, 0.8, 0.2, 0.8) 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes pbm-cubic-pulse{
    0% {
        transform:  scaleX(1.20) scaleY(1.20) ;
    }
    100% {
        transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-moz-keyframes pbm-cubic-pulse{
    0% {
        -moz-transform:  scaleX(1.20) scaleY(1.20) ;
    }
    100% {
        -moz-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-webkit-keyframes pbm-cubic-pulse {
    0% {
        -webkit-transform:  scaleX(1.20) scaleY(1.20) ;
    }
    100% {
        -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-o-keyframes pbm-cubic-pulse {
    0% {
        -o-transform:  scaleX(1.20) scaleY(1.20) ;
    }
    100% {
        -o-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-ms-keyframes pbm-cubic-pulse {
    0% {
        -ms-transform:  scaleX(1.20) scaleY(1.20) ;
    }
    100% {
        -ms-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

.pbm-cubic-pulse > div:nth-of-type(1) {
    top: 10px;
    left: 10px;
    background: #2A2C32;
    -ms-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

.pbm-cubic-pulse > div:nth-of-type(2) {
    top: 10px;
    left: 102px;
    background: #2A2C32;
    -ms-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.pbm-cubic-pulse > div:nth-of-type(4) {
    top: 102px;
    left: 102px;
    background: #8EC56B;
    -ms-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.pbm-cubic-pulse > div:nth-of-type(3) {
    top: 102px;
    left: 10px;
    background: #5B5E64;
    -ms-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

/******************** COMPLETE ********************/
.pbm-cubic-complete{
    animation: pbm-cubic-complete ease 0.3s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: pbm-cubic-complete ease 0.3s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: pbm-cubic-complete ease 0.3s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -o-animation: pbm-cubic-complete ease 0.3s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -ms-animation: pbm-cubic-complete ease 0.3s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
}

@keyframes pbm-cubic-complete{
    0% {
        transform:  scaleX(1.00) scaleY(1.00) ;
    }
    50% {
        transform:  scaleX(0.80) scaleY(0.80) ;
    }
    100% {
        transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-moz-keyframes pbm-cubic-complete{
    0% {
        -moz-transform:  scaleX(1.00) scaleY(1.00) ;
    }
    50% {
        -moz-transform:  scaleX(0.80) scaleY(0.80) ;
    }
    100% {
        -moz-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-webkit-keyframes pbm-cubic-complete {
    0% {
        -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
    }
    50% {
        -webkit-transform:  scaleX(0.80) scaleY(0.80) ;
    }
    100% {
        -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-o-keyframes pbm-cubic-complete {
    0% {
        -o-transform:  scaleX(1.00) scaleY(1.00) ;
    }
    50% {
        -o-transform:  scaleX(0.80) scaleY(0.80) ;
    }
    100% {
        -o-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

@-ms-keyframes pbm-cubic-complete {
    0% {
        -ms-transform:  scaleX(1.00) scaleY(1.00) ;
    }
    50% {
        -ms-transform:  scaleX(0.80) scaleY(0.80) ;
    }
    100% {
        -ms-transform:  scaleX(1.00) scaleY(1.00) ;
    }
}

.pbm-cubic-complete > div:nth-of-type(1) {
    top: 16px;
    left: 16px;
    background: #2A2C32;
}

.pbm-cubic-complete > div:nth-of-type(2) {
    top: 16px;
    left: 95px;
    background: #2A2C32;
}

.pbm-cubic-complete > div:nth-of-type(4) {
    top: 95px;
    left: 95px;
    background: #8EC56B;
}

.pbm-cubic-complete > div:nth-of-type(3) {
    top: 95px;
    left: 16px;
    background: #5B5E64;
}

/********************** GENERAL **********************/
.pbm-cubic-pulse > div, .pbm-cubic-complete > div {
    position: absolute;
    width: 80px;
    height: 80px;
}

.pbm-cubic-pulse, .pbm-cubic-complete {
    background: none;
    position: relative;
    width: 191px;
    height: 200px;
    margin: 0 auto;
}

#pbm-auth-request {
    display: none;
    width: 320px;
    margin: auto;
    padding: 8% 0 0;
}
#backtologin {
    padding: 0 24px;
    margin: 16px 0;
}
#backtologin a {
    text-decoration: none;
    color: #555d66;
}
#backtologin a:hover,
#backtologin a:active,
#backtologin a:focus
{
    color: #00a0d2;
}

.cube {
    color: #ffffff;
    font-size: 2.6em;
}

.align {
    font-weight: 300;
    position: absolute;
}
.bracket {
    font-weight: 100;
}
.right {
    right: 5px;
}

.left {
    left: 5px;
}

.top {
    top: 10px;
}

.bottom {
    bottom: 10px;
}

.wrapper {
    margin: 0 auto;
}

.pbm-form-text {
    text-align: center;
}

.tr-id, h3 {
    margin-bottom: 10px !important;
}
body {
    font-family: Roboto, sans-serif;
}