/* MARK: KasperskySans custom font */

@font-face {
    font-family: 'KasperskySans';
    src: url("../font/KasperskySans-Bold.ttf") format('truetype');
}

/* MARK: Page Layout */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

.main-container {
    min-height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-flow: column nowrap;

    margin-left: 24px;
    margin-right: 24px;
}

.body-container {
    width: 100%;
}

/* Elements padding*/

.page-body {
    margin: 0 auto;
    max-width: 420px;
}

.progress-padding {
    padding-top: 16px;
    padding-bottom: 16px;
}

.page-subtitle {
    margin-top: 8px;
    margin-bottom: -19px;
}

ol {
    padding-left: 18px;
    padding-right: 18px;
}

ul {
    list-style-type: none; /* Remove bullets */
    padding-left: 18px;
    padding-right: 18px;
}

li {
    padding-top: 1px;
}

/* MARK: Body titles text */

.body-title-text-kaspersky {
    font-family: "KasperskySans";
    font-size: 28px;
    line-height: 1.3;
    color: #000000;
    opacity: 0.89;
}

/* MARK: Body subtitle text */

.body-subtitle-text {
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    opacity: 0.6;
}

/* MARK: Body small description text after title */

.body-small-description-text {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
    opacity: 0.89;
}

/* MARK: Body description text */

.body-description-text {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
    opacity: 0.89;
}

/* MARK: Images layout */

.st_api_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

/* MARK: Progress with green and gray rectangles*/

table.progress {
    width: 100%;
    border-spacing: 0px;
}

table.progress tr {
    height: 4px;
}

table.progress td {
    border-radius: 2px;
    padding: 0px;
}

.green-cell {
    background-color: #23D1AE;
}

.gray-cell {
    background-color: #CCCCCC;
}

.spacer-cell {
    width: 8px;
}

/* MARK: Hint baloon with text and link*/

table.hint {
    width: 100%;
    background-color: #F6F6F6;
    border-radius: 16px;
    border-spacing: 16px;
}

table.hint td {
    vertical-align: top;
    padding: 0px;
}

table.hint td.short-text {
    vertical-align: middle;
}

/* MARK: Hint baloon image*/

.hint_image {
    display: block;
    width: 24px;
    height: 24px;
}

/* MARK: Hint text */

.hint-text {
    margin: 0px;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    color: #000000;
    opacity: 0.6;
}

.center-text {
    text-align: center;
}

.subscript {
    margin-top: 15px;
    margin-bottom: 30px;
}

.subscript2 {
    margin-top: 15px;
    margin-bottom: 20px;
}

/* MARK: Hint links */

.hint-link {
    margin-top: -4px;
    margin-bottom: 11px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: #1E856F;
    opacity: 1;
    text-decoration: none;
}

/* MARK: Button layout*/

.page-footer {
    margin-top: 40px;
    margin-bottom: 50px;
}

.green-button {
    display: block;
    background-color: #1E856F;
    color: #FFFFFF;
    width: 100%;
    border-radius: 8px;
}

.white-button {
    display: none;
    background-color: #FFFFFF;
    color: #000000;
    opacity: 0.89;
    width: 100%;
}

/* MARK: Button text style*/

.button-text {
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

.button-text-default {
    padding: 16px;
    text-align: center;
}

/* MARK: Button image style*/

.button-container {
    align-items: center;
    justify-content: center;
}

.button-text-image {
    padding-left: 8px;
    padding-right: 16px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
}

.button-image {
    width: 16px;
    height: 12px;
}