:root {
    --text-color: #293845;
    --background-color: #eaeaea;
    --primary-color: #8278f6;
    --gold: #c9b037;
    --silver: #b4b4b4;
    --bronze: #ad8a56;
}

html, body {
    height: 100%;
}
body {
    color: var(--text-color);
}

.fa.gold {
    color: var(--gold);
}
.fa.silver {
    color: var(--silver);
}
.fa.bronze {
    color: var(--bronze);
}
.form-control.is-invalid {
    background-image: none;
}
.table td, .table th {
    border: 1px solid #dee2e6;
}
.table .percentage-bar {
    height: 24px;
    background: #bbb5ff;
    border: 1px solid var(--primary-color);
}
.table .percentage-bar.selected {
    background: #fbe192;
    border: 1px solid #f7c630;
}
.tabs {
    display: flex;
}
.tabs .tab-item {
    color: var(--text-color);
    margin-right: 20px;
    background: none;
    border: none;
    padding: 0px 0px 5px 0px;
}
.tabs .tab-item.active {
    /* #8278f6 */
    color: #6558f5;
    border-bottom: 3px solid #6558f5;
    padding-top: 3px;
}
.tabs .tab-item:focus, .tabs .tab-item:focus-visible {
    outline: none;
}
.btn {    
    background: #788896;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
.btn-link {
    text-decoration: underline;
    color: var(--primary-color);
}

.header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-color);
    border-bottom: 1px solid #acb0bd;
    z-index: 1000;
}
.header .logo {
    width: 120px;
    height: 120px;
}
.header .page-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--text-color);
}
.header .timer {
    position: relative;
    width: 100px;
    height: 100px;
    font-size: 18px;
    line-height: 24px;
    margin-right: 20px;
    background: white;
    color: #5c5c5c;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .timer img {
    position: absolute;
    width: 100%;
    height: 100%;
}
.header .timer span {
    z-index: 100;
}

.page-content {
    min-height: 100%;
    padding: 150px 80px 80px 80px;
}
.page-content .page-descriptive {
    max-width:650px;
    margin: auto;
    text-align: center;
}
.page-content .page-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: var(--body-text);
}

.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border-top: 1px solid #acb0bd;
}
.footer .btn-next-page {
    background: #788896;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
}
@media (max-width: 991px) {
    .header {
        height: 100px;
    }
    .header .logo {
        width: 100px;
        height: 100px;
    }
    .header .timer {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .page-content {
        padding: 130px 20px 80px 20px;
    }
}
