﻿.register-page {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 576px) {
    .register-page {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

.register-page .card-body {
    min-height: 350px;
}

.register-page .btn {
    min-width: 150px;
}

.register-page .dropdown-toggle {
    min-width: auto;
}

/*.register-page .label-with-icon {
        display: inline-flex;
        align-items: center;
    }*/

.register-page .label-with-icon > label {
    /*margin-right: 0.4em;*/
    margin-top: 0;
}

/*.register-page .label-with-icon > i {
            margin-top: -0.5em;
        }*/

#pnlRegisterSummary label {
    font-size: 1.5625rem;
}

.register-title {
    line-height: 2.5rem;
}

.nav-progress {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0 1.5rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media (min-width: 576px) {
    .nav-progress {
        padding: 2rem 0;
    }
}

.nav-progress .nav-progress-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 79%;
    height: 2px;
    background: #ddd;
    margin-left: 40px;
}

@media (min-width: 576px) {
    .nav-progress .nav-progress-line {
        margin-left: 50px;
    }
}

@media (min-width: 768px) {
    .nav-progress .nav-progress-line {
        margin-left: 68px;
    }
}

@media (min-width: 992px) {
    .nav-progress .nav-progress-line {
        margin-left: 88px;
    }
}

@media (min-width: 1200px) {
    .nav-progress .nav-progress-line {
        margin-left: 108px;
    }
}

.nav-progress .nav-progress-line-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #e91e63;
    width: 0;
}

.nav-progress hr {
    border: none;
    border-top: 1px dotted #f00;
    color: #fff;
    background-color: #fff;
    height: 1px;
    width: 50%;
}

.nav-pills-circle .nav-item {
    width: 20%;
    /*width: 56px;*/
}

    /*@media (min-width: 576px) {
    .nav-pills-circle .nav-item {
        width: 93px;
    }
}

@media (min-width: 768px) {
    .nav-pills-circle .nav-item {
        width: 130px;
    }
}

@media (min-width: 992px) {
    .nav-pills-circle .nav-item {
        width: 168px;
    }
}

@media (min-width: 1200px) {
    .nav-pills-circle .nav-item {
        width: 210px;
    }
}*/

    .nav-pills-circle .nav-item:not(:last-child) {
        padding-right: 0;
    }

.nav-pills-circle:not(.flex-column) .nav-item + .nav-item:not(:first-child) {
    margin-left: 0;
}

.nav-pills-circle .nav-item .nav-link {
    color: #ffffff;
    background-color: #bbbbbb;
    border: 2px solid #bbbbbb;
    box-shadow: 0 5px 20px 0px rgb(0 0 0 / 20%), 0 13px 24px -11px rgb(144 143 144 / 60%);
    min-width: auto;
    width: 36px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 50%;
    cursor: default;
}

    .nav-pills-circle .nav-item .nav-link:hover {
        color: #ffffff;
        background-color: #bbbbbb;
        border: 2px solid #bbbbbb;
    }

    .nav-pills-circle .nav-item .nav-link.active,
    .nav-pills-circle .nav-item .nav-link.active:hover {
        color: #e91e63;
        background-color: #ffffff;
        border: 2px solid #e91e63;
        box-shadow: 0 5px 20px 0px rgb(0 0 0 / 20%), 0 13px 24px -11px rgb(156 39 176 / 60%);
    }

    .nav-pills-circle .nav-item .nav-link.done,
    .nav-pills-circle .nav-item .nav-link.done:hover {
        color: #ffffff;
        background-color: #e91e63;
        border: 2px solid #e91e63;
        box-shadow: 0 5px 20px 0px rgb(0 0 0 / 20%), 0 13px 24px -11px rgb(156 39 176 / 60%);
    }

.nav-pills-circle .nav-item i {
    font-size: 20px;
    padding: 4px;
    cursor: default;
}

.nav-pills-circle .nav-item .nav-title {
    font-size: 1rem;
    color: #444444;
    line-height: 1.3;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .nav-pills-circle .nav-item .nav-title {
        font-size: 1.25rem;
        line-height: 1.5;
    }
}

@media (min-width: 1200px) {
    .nav-pills-circle .nav-item .nav-title {
        font-size: 1.34375rem;
        line-height: 1.5;
    }
}

.page-result-icon .material-icons {
    font-size: 5rem;
}
/*//
// Rotating border
//
*/
@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/*.spinner-border {
    
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em;
}
.spinnerbody {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
}
*/
/*//
// Growing circle
//*/

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

