html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 23.8px;
}

h3 {
    font-size: 18.2px;
}

.exam-summary-right {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: white;
    width: 260px;
    height: 100vh;
    overflow: auto;
    padding: 80px 10px 10px 10px;
    -webkit-box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
    box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
}

.exam-summary-right h5 {
    margin-bottom: 10px;
    font-size: 12px;
    font-family: sans-serif;
}

.exam-summary-right table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.exam-summary-right table tr td {
    border: 1px solid black;
    background-color: yellow;
    text-align: center;
    font-size: 10px;
}

.exam-summary-right table tr td a:hover {
    color: black;
}

    .exam-summary-right table tr td.attempted {
        background-color: #6767e8;
        color: white;
        text-align: center;
    }

.exam-summary-right table tr td.attempted a {
    color: white;
}

header {
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: white;
    padding: 2px 5px;
    -webkit-box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
}

header .logos {
    width: 100%;
}

header .right-header {
    padding-top: 15px;
}

header .logos img {
    max-height: 50px;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -otransition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-primary {
    background: #fb8200;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #1754d1;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -obox-shadow: none;
    box-shadow: none;
}

.btn-default {
    background: #666666;
    color: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    width: 100%;
    display: block;
    padding: 12px 15px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.mar-b-0 {
    margin-bottom: 0 !important;
}

a {
    color: #1754d1;
}

a:hover {
    color: #fb8200;
}

html {
    overflow-x: hidden;
}

body {
    /* background: url(https://www.noupe.com/wp-content/uploads/2009/10/pattern-13.jpg); */
    background-color: #00000008;
    font-family: sans-serif;
    font-weight: 300;
    font-size: 14px;
    /* letter-spacing: 1px; */
}

.form-wizard {
    position: relative;
    /* display: table;
margin: 0 auto; */
    width: calc(100vw - 260px);
    padding-top: 50px;
}

.steps {
    display: none;
    margin: 30px 0 15px 0;
    overflow: hidden;
}

.steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps ul li {
    float: left;
    /* color: #fff; */
    color: #989595;
    font-weight: 600;
    padding: 0 18px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -otransition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
}

.steps ul li:hover,
.steps ul li.active {
    color: #fb8200;
    /* color: #007bff; */
}

.steps ul li:hover span,
.steps ul li.active span {
    background: #fb8200;
    /* background: #007bff; */
    color: #fff;
}

.steps ul li:hover::after,
.steps ul li.active::after {
    background: #fb8200;
    /* background: #007bff; */
    width: 100%;
}

.steps ul li::before,
.steps ul li::after {
    content: "";
    position: absolute;
    left: -50%;
    top: 22px;
    width: 100%;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -otransition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -otransform: translateY(-50%);
    transform: translateY(-50%);
}

.steps ul li::after {
    width: 0;
}

.steps ul li span {
    display: block;
    margin: 0 auto 15px;
    width: 35px;
    height: 35px;
    text-align: center;
    background: #fff;
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    color: #000;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -otransition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -oborder-radius: 2px;
    border-radius: 2px;
}

.steps ul li:first-child::before,
.steps ul li:first-child::after {
    display: none;
}

.form-container {
    clear: both;
    display: none;
    left: 100%;
    background: #fff;
    padding: 30px 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -oborder-radius: 4px;
    border-radius: 4px;
    /* -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
-moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
-ms-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
-obox-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.9); */
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
}

.form-container.active {
    display: inline-block;
    height: calc(100vh);
    width: calc(100vw - 285px);
    overflow: auto;
}

.form-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}

.form-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 2px;
    background: #fb8200;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -otransform: translateX(-50%);
    transform: translateX(-50%);
}


/*  */

.question-single {
    margin-bottom: 20px;
}

.question-single h4 {
    font-size: 18px;
}

.card {
    max-width: 80vw;
    display: block;
    margin: 10vh auto;
}

.login-logo-table {
    border-collapse: collapse;
}

.login-logo-table tr td img {
    max-height: 150px;
}

.login-logo-table tr td {
    padding: 10px;
}

.login-logo-table tr td:first-child {
    border-right: 1px solid black;
}

.login-card {
    margin: 2vh auto;
}

.powered-by {
    font-size: 20px;
    text-align: center;
}

.powered-by img {
    max-height: 60px;
}

@media (min-device-width: 800px) and (max-device-width: 1340px) {
    .exam-summary-right {
        position: fixed;
        right: 0;
        bottom: 0;
        background-color: white;
        width: 260px;
        height: 100vh;
        overflow: auto;
        padding: 80px 10px 10px 10px;
        -webkit-box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
        box-shadow: -2px 0px 8px -3px rgba(0, 0, 0, 0.75);
    }
    .exam-summary-right h5 {
        margin-bottom: 10px;
        font-size: 12px;
        font-family: sans-serif;
    }
    .exam-summary-right table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 15px;
    }
    .exam-summary-right table tr td {
        border: 1px solid black;
        background-color: yellow;
        text-align: center;
        font-size: 10px;
    }
    .exam-summary-right table tr td a:hover {
        color: black;
    }
    .exam-summary-right table tr td.attempted {
        background-color: rgb(25, 118, 4);
        color: white;
        text-align: center;
    }
    .exam-summary-right table tr td.attempted a {
        color: white;
    }
    header {
        position: fixed;
        z-index: 100;
        width: 100%;
        background-color: white;
        padding: 2px 5px;
        -webkit-box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.75);
    }
    header .logos {
        width: 100%;
    }
    header .right-header {
        padding-top: 15px;
    }
    header .logos img {
        max-height: 50px;
        margin-right: 10px;
    }
    .btn {
        display: inline-block;
        padding: 10px 20px;
        border: 0;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 1px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -otransition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }
    .btn-primary {
        background: #fb8200;
        color: #fff;
    }
    .btn-primary:hover,
    .btn-primary:focus {
        background: #1754d1;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -obox-shadow: none;
        box-shadow: none;
    }
    .btn-default {
        background: #666666;
        color: #fff;
    }
    input[type=text],
    input[type=email],
    input[type=tel],
    input[type=password],
    textarea,
    select {
        width: 100%;
        display: block;
        padding: 12px 15px;
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
    .mar-b-0 {
        margin-bottom: 0 !important;
    }
    a {
        color: #1754d1;
    }
    a:hover {
        color: #fb8200;
    }
    html {
        overflow-x: hidden;
    }
    body {
        /* background: url(https://www.noupe.com/wp-content/uploads/2009/10/pattern-13.jpg); */
        background-color: #00000008;
        font-family: sans-serif;
        font-weight: 300;
        font-size: 14px;
        /* letter-spacing: 1px; */
    }
    .form-wizard {
        position: relative;
        /* display: table;
    margin: 0 auto; */
        width: calc(100vw - 260px);
        padding-top: 50px;
    }
    .steps {
        display: none;
        margin: 30px 0 15px 0;
        overflow: hidden;
    }
    .steps ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .steps ul li {
        float: left;
        /* color: #fff; */
        color: #989595;
        font-weight: 600;
        padding: 0 18px;
        position: relative;
        cursor: pointer;
        -webkit-transition: all 0.4s ease-in-out 0;
        -moz-transition: all 0.4s ease-in-out 0;
        -ms-transition: all 0.4s ease-in-out 0;
        -otransition: all 0.4s ease-in-out 0;
        transition: all 0.4s ease-in-out 0;
    }
    .steps ul li:hover,
    .steps ul li.active {
        color: #fb8200;
        /* color: #007bff; */
    }
    .steps ul li:hover span,
    .steps ul li.active span {
        background: #fb8200;
        /* background: #007bff; */
        color: #fff;
    }
    .steps ul li:hover::after,
    .steps ul li.active::after {
        background: #fb8200;
        /* background: #007bff; */
        width: 100%;
    }
    .steps ul li::before,
    .steps ul li::after {
        content: "";
        position: absolute;
        left: -50%;
        top: 22px;
        width: 100%;
        height: 3px;
        background: #fff;
        -webkit-transition: all 0.4s ease-in-out 0;
        -moz-transition: all 0.4s ease-in-out 0;
        -ms-transition: all 0.4s ease-in-out 0;
        -otransition: all 0.4s ease-in-out 0;
        transition: all 0.4s ease-in-out 0;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -otransform: translateY(-50%);
        transform: translateY(-50%);
    }
    .steps ul li::after {
        width: 0;
    }
    .steps ul li span {
        display: block;
        margin: 0 auto 15px;
        width: 35px;
        height: 35px;
        text-align: center;
        background: #fff;
        font-size: 18px;
        line-height: 35px;
        font-weight: 300;
        color: #000;
        position: relative;
        z-index: 1;
        -webkit-transition: all 0.4s ease-in-out 0;
        -moz-transition: all 0.4s ease-in-out 0;
        -ms-transition: all 0.4s ease-in-out 0;
        -otransition: all 0.4s ease-in-out 0;
        transition: all 0.4s ease-in-out 0;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -oborder-radius: 2px;
        border-radius: 2px;
    }
    .steps ul li:first-child::before,
    .steps ul li:first-child::after {
        display: none;
    }
    .form-container {
        clear: both;
        display: none;
        left: 100%;
        background: #fff;
        padding: 30px 15px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -oborder-radius: 4px;
        border-radius: 4px;
        /* -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    -ms-box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    -obox-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9); */
        -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.75);
    }
    .form-container.active {
        display: inline-block;
        height: calc(100vh);
        width: calc(100vw - 285px);
        overflow: auto;
    }
    .form-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        text-align: center;
    }
    .form-title::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 80px;
        height: 2px;
        background: #fb8200;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -otransform: translateX(-50%);
        transform: translateX(-50%);
    }
    /*  */
    .question-single {
        margin-bottom: 20px;
    }
    .question-single h4 {
        font-size: 18px;
    }
    .card {
        max-width: 80vw;
        display: block;
        margin: 10vh auto;
    }
    .login-logo-table {
        border-collapse: collapse;
    }
    .login-logo-table tr td img {
        max-height: 150px;
    }
    .login-logo-table tr td {
        padding: 10px;
    }
    .login-logo-table tr td:first-child {
        border-right: 1px solid black;
    }
    .login-card {
        margin: 2vh auto;
    }
    .login-heading {
        font-size: 28px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
    }
    .powered-by {
        font-size: 20px;
        text-align: center;
    }
    .powered-by img {
        max-height: 60px;
    }
}