﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

* {
    margin: 0;
    padding: 0
}

html {
    height: 100%
}

body {
    font-family: Helvetica,Arial,sans-serif;
    /*background-image: url(../resources/bg.jpg);*/
    background-color: rgba(0,0,0,0.8);
    position: relative;
    height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    overflow: hidden;
    color: white;
    clip-path: none;
}

.tabHead {
    background: #00cdBB;
    font-weight: bolder;
    color: white;
    padding: 5px;
    border-radius: 10px;
}

ul {
    list-style-type: disc !important;
    padding-left: 1em !important;
}

ol {
    padding-left: 1em !important;
}

h2 {
    color: #2F8D46;
    font-size: 1.7rem;
}

#mainForm {
    padding: 7px;
    position: relative;
    width: 690px;
}

    #mainForm fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative;
    }

.finish {
    text-align: center
}

#mainForm fieldset:not(:first-of-type) {
    display: none
}

#mainForm .previous-step, .next-step {
    width: 90px;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 5px 5px;
    margin: 10px 10px 10px 0px;
    float: right;
    background-color: #00CDBB !important;
}

.disabledBtn {
    color: black;
    background-color: grey;
}


.text {
    color: #2F8D46;
    font-weight: normal
}

#progressbar {
    overflow: hidden;
    color: lightgrey
}

    #progressbar .active {
        color: #00CDBB !important;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400
    }

    #progressbar #step1:before {
        content: "1"
    }

    #progressbar #step2:before {
        content: "2"
    }

    #progressbar #step3:before {
        content: "3"
    }

    #progressbar #step4:before {
        content: "4"
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #00CDBB !important;
    }

.progress {
    height: 20px
}

.progress-bar {
    background-color: #00CDBB !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #00CDBB !important;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 5px solid transparent;
        border-top-color: #FF00FF;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 5px solid transparent;
        border-top-color: #FFFFFF;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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



.animated-check {
    height: 10em;
    width: 10em;
}

    .animated-check path {
        fill: none;
        stroke: #7ac142;
        stroke-width: 4;
        stroke-dasharray: 23;
        stroke-dashoffset: 23;
        animation: draw 1s linear forwards;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}





#cap2 {
    border-radius: 20px;
    height: 100px;
    width: 130px;
    border: 2px solid #00CDBB !important
}

#cap3 {
    border-radius: 20px;
    height: 100px;
    width: 130px;
    border: 2px solid #00CDBB !important;
    margin-top: 5px;
}

#cap4 {
    border-radius: 20px;
    height: 100px;
    width: 130px;
    border: 2px solid #00CDBB !important;
    margin-top: 5px;
}

@media screen and (max-width: 600px) {
    #mainForm {
        position: relative;
        width: auto;
        /*opacity: 0.9;*/
    }

    #canvasVideo {
        width: 100px;
    }

    #cap2 {
        border-radius: 2px;
        height: 75px;
        width: 75px;
        margin-left: 15px;
        border: 2px solid black;
        margin-top: 5px;
    }

    #cap3 {
        border-radius: 2px;
        height: 75px;
        width: 75px;
        margin-left: 15px;
        border: 2px solid black;
        margin-top: 5px;
    }

    #cap4 {
        border-radius: 2px;
        height: 75px;
        width: 75px;
        margin-left: 15px;
        border: 2px solid black;
        margin-top: 5px;
    }
}


.placeClass {
    font-size: 0.8rem !important;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.card-link:hover {
    color: #6c6d6e !important;
}

.err {
    color: #ea5624 !important;
    display: none;
    font-size: 10px;
    float: left;
}

.form-control {
    height: calc(2.25rem + 2px) !important;
}

.form-control-position {
    top: -1px !important;
}

.btn-primary:hover {
    border-color: #6c6d6e !important;
    background-color: #8b9095 !important;
    color: #FFF !important;
}

.form-control:focus {
    color: #4e5154;
    background-color: #fff;
    border-color: #F44336;
    outline: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1.5rem !important;
}

.btn {
    height: 3rem !important;
    background: #00CDBB !important;
}

.btn-primary {
    background: #6c6d6e !important;
    border: gray !important;
}

    .btn-primary:focus, .btn-primary:active {
        background-color: #5d5e60 !important;
    }

.required input {
    border: 1px solid #F44336 !important;
}

.required .val-icon {
    color: #F44336 !important;
}

input:focus {
    outline: none !important;
    border: 2px solid #00cdBB;
}

.mandatory {
    float: right;
    color: red;
    font-weight: bolder
}

input {
    border: 1px solid #00CDBB;
}


/* Sweet Alert Customized */

.swal-title {
    text-align: left;
    margin-top: -10px;
}

.swal2-popup {
    width: 30em !important;
    height: 25em !important;
    max-height: 100% !important;
    max-width: 100% !important;
    padding: -0.75em !important;
    font-size: 0.7rem !important;
}

@@media (max-width: 768px) {
    .swal2-popup {
        height: 30em !important;
        width: 30em !important;
        max-height: 100% !important;
        max-width: 100% !important;
        padding: -0.75em !important;
        font-size: 0.7rem !important;
    }
}

.swal2-container.swal2-shown {
    background-color: rgba(0,0,0,75%);
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #FF7531 !important;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-content {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.btn-block::after {
    color: #00CDBB;
    border-color: #00CDBB;
    border: 2px solid #00CDBB;
}

.btn, .btn-primary, .btn-primary:hover, .btn-primary:focus {
    background-color: #00CDBB !important;
    border: #00CDBB !important;
    height: 2rem !important;
}

.thumb {
    max-height: 10rem;
    max-width: 12rem;
    min-height: 11rem;
    min-width: 13rem;
    border-radius: 15px;
    /* border: 2px solid #00CDBB !important;*/
}

.card-shadow {
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
    border: 1px solid #cbcccd;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 7px 13px -4px #00000054;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
}


body {
    margin-bottom: 0px !important;
}


.nav.nav-tabs.nav-underline .nav-item a.nav-link.active {
    color: #00CDBB !important;
}

.nav.nav-tabs.nav-underline .nav-item a.nav-link {
    color: #c7c7c7 !important;
}

.nav.nav-tabs.nav-underline .nav-item a.nav-link:before {
    height: 5px;
    background: #00CDBB !important;
}

.form-control-position {
    position: absolute;
    top: 4px;
    right: 0;
    z-index: 2;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
}

.capture-image-btn {
    border-radius: 5px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    color: white;
    border: 2px solid #00CDBB;
    font-weight: bold;
    background-color: #00CDBB !important;
    font-size: 16px;
}

.exam-head {
    border-bottom: 0.15rem solid #3bbf84;
    padding-bottom: 0.5rem;
    margin-bottom: 2.25rem;
    font-weight: 500;
    width: 7rem;
    color: white;
}

.exam-card {
    border-radius: 3px !important;
    margin-bottom: 1.75rem;
    border-radius: 0.45rem !important;
}

.on-going-exam {
    text-align: left;
    max-width: 15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: -0.8rem;
    left: 0.8rem;
    padding: 0.275rem .75rem;
    font-weight: 600;
    background-color: #3bbf84;
}

.up-coming-exam {
    text-align: left;
    max-width: 15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fafafa;
    position: absolute;
    top: -0.8rem;
    left: 0.8rem;
    padding: 0.275rem .75rem;
    font-weight: 600;
    background-color: orange;
}