@keyframes rot {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.logo{
    width: 280px;
    height: 100px;
    background-image: url("logo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}
.contentholder
{
    color: #ffffff;
}
.table-info > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.table-info  {
    background: lightblue;
    padding: 20px;
    border-radius: 8px;
}

.table-info > div div:first-child {
    border-right: 1px solid #ffffff;
    margin-right: 5%;
}

.table-info > div div {
    color: #ffffff;
    width: 100%;
}
.btn{
    margin-top: 10px;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8bc541;
    color: #ffffff;
    border-radius: 60px;
}
.btn a{
    color: #ffffff;
    text-decoration: none;
}
.redirect-app .loader-app, .info-loader .loader-app {
    animation: 1s linear 0s normal none infinite running rot;
    -webkit-animation: 1s linear 0s normal none infinite running rot;
    width: 150px;
    height: 150px;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.redirect-app, .info-loader {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    background: #fff;
    bottom: 0;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 769px){
    .contentholder {
        margin:0 20%;
    }
    .text {
        font-size: 18px;
        line-height: 32px;
    }
}
