html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    background: #292f44;
}

.footer-top {
    padding: 50px 0;
}

footer .footer-top p {
    font-size: 16px;
}

.footer-top img {
    width: auto;
    height: 37px;
    margin-bottom: 10px;
}

.header {
    background: #eeecea;
}

.header .row {
    height: 70px;
    align-items: center;
}

.box {
    margin: 0 auto;
    border-radius: 10px;
    color: #363636;
    padding-bottom: 200px;
}

.box .box-top {
    padding: 60px 0 20px;
}

.box .box-white-content {
    background: #fff;
    padding: 30px 0;
}

.box .container {
    width: 850px;
}

.box h1 {
    margin: 0;
    line-height: 1.3;
    margin-bottom: 20px;

    font-weight: bold !important;
    font-size: 40px;
    color: #333 !important;
}

.box h1 small {
    font-size: 75%;
    display: block;
}

.box p {
    font-size: 18px;
    margin-bottom: 0px;
}

.box .steps {
    font-size: 16px;
    color: #666666;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-around;
}

.box .steps li {
    padding: 6px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.box .steps li.middle {
    width: 40%;
}

.box .steps li .step {
    width: 50px;
    height: 50px;
    background: #488afb;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 32px;
    line-height: 50px;
}

.box .steps li strong {
    color: #488afb;
}

.box .btn.btn-primary {
    font-size: 40px;
    margin-bottom: 15px;
    width: 430px;
    background: #3c7ce6;
    padding: 20px 0;
    border: none;
    transition: all 0.3s;
}

.box .btn.btn-primary:hover {
    background-color: #3472d4;
    transform: scale(1.1);
}

.box p.disclaimer {
    width: 480px;
    margin: 0 auto;
    display: block;
    color: #000;
    font-size: 12px;
    line-height: 1.4;
}

.box p.disclaimer a {
    color: inherit;
    text-decoration: underline;
}

.container h2 {
    color: #fff;
    font-size: 34px;
}

.container p {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

footer {
    padding: 0;
    color: #fff;
    font-size: 14px;
}

footer li {
    padding: 0 4px;
}

footer a {
    display: block;
    color: #fff !important;
    text-decoration: none;
}

.footer-bottom {
    background: #161C2A;
    padding: 20px;
}

.confirm {
    position: fixed;
    width: 500px;
    height: 200px;
    background: #fff;
    z-index: 100000;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -250px;
    border: solid 2px #ccc;
    display: none;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
        'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
        'Noto Color Emoji';
}

.confirm p {
    font-size: 23px;
    color: #010101;
    font-weight: normal;
    line-height: 29px;
    margin: 20px 0 0 20px;
    text-align: left;
}

.confirm .actions {
    text-align: right;
    margin: 50px 20px 0 0;
}

.confirm .actions .btn {
    background: #f3f2f2;
    border: 1px solid #acacac !important;
    font-size: 24px;
    margin-left: 20px;
    color: #000 !important;
    font-weight: normal;
    border-radius: 5px;
    padding: 6px 35px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.confirm .actions .btn.blue {
    border: solid 1.7px rgba(24, 73, 198, 0.55) !important;
    background: #498cfe;
    color: #fff !important;
}

#install-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99998;
    background: black;
    position: fixed;
    opacity: 0.7;
    pointer-events: none;
    display: none;
}

#tb-progress {
    width: 500px;
    margin: 0px auto 15px;
    padding: 21px 0;
    display: none;
}

#tb-progress p {
    font-weight: bold;
    line-height: 28px;
    font-size: 20px;
    text-align: center;
    margin: 0 0 10px !important;
    color: #000 !important;
}

#tb-progress .tb-progress-bar {
    height: 20px;
    width: 400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.25);
    padding: 1px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

#tb-progress .tb-progress-bar .tb-progress-bar-in {
    height: 18px;
    border-radius: 4px;
    transition: 0.4s linear;
    transition-property: width, background-color;
    background-color: #51c0fc;
    width: 100%;
    background-image: linear-gradient(45deg,
            rgb(17, 176, 252) 25%,
            transparent 25%,
            transparent 50%,
            rgb(17, 176, 252) 50%,
            rgb(17, 176, 252) 75%,
            transparent 75%,
            transparent);
    background-size: 40px 40px;
    animation: progressAnimationStrike 7s;
}

@keyframes progressAnimationStrike {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.tb-popup-template {
    position: fixed;
    display: none;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.tb-popup-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fade 0.2s linear forwards;
}

.tb-popup {
    max-width: 772px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    text-align: center;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100px;
    margin: auto;
}

.tb-popup h2 {
    letter-spacing: 0.15px;
    color: #324148;
    font-weight: 700;
    font-size: 27px;
}

.tb-popup h2 .color-txt {
    color: #1a73e8;
}

.tb-popup div#wave {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 4px;
    background-color: #1a73e8;
    max-width: 401px;
    margin-top: 65px;
    padding: 40px;
}

.tb-popup div#wave .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 17px;
    background: #fff;
    animation: wave 1.3s linear infinite;
}

.tb-popup div#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}

.tb-popup div#wave .dot:nth-child(3) {
    animation-delay: -0.9s;
}

.tb-popup div#wave .dot:nth-child(4) {
    animation-delay: -0.5s;
}

.tb-popup div#wave .dot:nth-child(5) {
    animation-delay: -0.3s;
}

#tb-loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

#tb-loading .box {
    padding: 0;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 220px;
    background: #fff;
}

#tb-loading img {
    width: 200px;
}

#tb-loading p {
    margin: 0;
    font-size: 26px;
    margin-top: -25px;
}

#tb-loading p .color-txt {
    color: #3d7be6;
    font-weight: 500;
}

@keyframes wave {

    0%,
    100%,
    60% {
        transform: initial;
    }

    30% {
        transform: translateY(-15px);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}