/* BotBlocker Template Styles */
html,body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

body {
    display: flex;
    flex-direction: column;
}

h1 {
    color:#bd2426;
}

h2 {
    text-align: center;
}

.header {
    height: 85px;
    background-color: #f0f5f7;
    box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 65px;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.footer {
    height: 50px;
    background-color: #f0f5f7;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    font-size: 13px;
}

.footer small a {
    text-decoration: none;
    color: #2f2f2f;
    margin: 0 10px;
}

.info {
    display: flex;
    text-align: center;
    font-size: 20px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* Button Styles Fallback */
.botblocker-btn-success {
    border: 1px solid transparent;
    background: #7785ef;
    color: #ffffff;
    font-size: 16px;
    line-height: 15px;
    padding: 10px 15px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 5px;
    box-shadow: none;
    transition: 0.25s;
    display: block;
    margin: 0 auto;
    font-weight: 600;
}

.botblocker-btn-success:hover {
    background-color: #bfc7ff;
}

.botblocker-btn-color {
    cursor: pointer;
    padding: 14px 14px;
    text-decoration: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 80px;
}

.botblocker-btn-color:hover {
    width: 16px;
    height: 16px;
}
/* Button Styles Fallback */

.block1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.block2 {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.user-data {
    display: flex;
    padding-top: 14px;
    font-size: 10px;
    font-weight: 600;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.con-center {
    text-align: center;
    padding-top: 3px;
} 

.info-block {
    font-size: 26px;
    margin: 0;
}

.block-string {
    font-weight: normal !important;
}

/* Loading Spinner Style */
.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}

.lds-dual-ring {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #333;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
    transform: rotate(0deg);
    }

    100% {
    transform: rotate(360deg);
    }
}