.main-panel {
    background-color: #fff;
}

.navbar {
    margin-bottom: 0;
    border-top: 10px solid #dfcda2;
    padding-top: 30px;
}

.heds {
    background: #c4161c;
    color: #fff;
    text-align: center;
    font-weight: 600;
    letter-spacing: .1px;
    font-size: 17px;
    margin: 0;
}

.lines {
    border: 2px solid #c4161c;
    margin: 0;
}

.lines .card-body {
    padding: 30px 15px;
}

.lines h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
}

.lines h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}

.lines .form-control {
    border: 1px solid #dfcda2;
    margin-bottom: 10px;
    padding: 8px 10px;
    height: auto;
}

.lines .form-control:focus {
    border: 1px solid #c4161c;
}

.lines label {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 2px;
}

.custom-control-label::before {
    background-color: #ffffff;
    border: 2px solid #dfcda2;
    box-shadow: none;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #c4161c;
    border: 2px solid #c4161c;
}

.custom-control {
    margin-bottom: 5px;
}

.lines a {
    color: #000;
    text-decoration: underline;
}

ul {
    padding-left: 15px;
}

li {
    font-weight: 500;
    font-size: 14px;
}

.btn {
    color: #fff;
    background-color: #c4161c;
    border-color: #c4161c;
    box-shadow: none;
    padding: 8px 20px;
    font-weight: 600;
}

.btn:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
    box-shadow: none;
    outline: none;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #d4d4d4;
}

::-webkit-scrollbar-thumb {
    background: #c4161c;
}

::-webkit-scrollbar-thumb:hover {
    background: #c4161c;
}

.loader {
    border: 4px solid #cecece;
    /* Light grey */
    border-top: 4px solid #c4161c;
    /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading {
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


/* Transparent Overlay */

.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}


/* :not(:required) hides these rules from IE9 and below */

.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}


/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.navbar.bg-dark {
    color: #fff;
    background-color: #c4161c !important;
    box-shadow: rgb(32 32 36 / 85%) 0px 1px 6px 0px;
    border-radius: 0;
}

.dropdown-menu {
    top: 48px;
    width: auto;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    font-weight: 600;
    color: #fff;
    background: #8e1014;
    border-radius: 0;
}

.navbar.bg-dark .dropdown-item:hover {
    box-shadow: none;
    background-color: #fff;
    color: #c4161c;
}

.navbar.bg-dark .dropdown-item:focus {
    box-shadow: none;
    background-color: #fff;
    color: #c4161c;
}

.dropdown-menu {
    padding: 0;
}

.dropdown-menu .dropdown-item {
    margin: 0;
    font-weight: 600;
    padding: 11px 10px;
    border-bottom: 1px solid #fff;
    background-color: #dfcda2;
}

.navbar .navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
    border-right: 1px solid #8e2220;
}

.contents {
    margin-top: -60px;
    padding: 27px 0;
    min-height: calc(100vh - 123px);
}

.parsley-errors-list {
    padding: 0px;
}

.parsley-errors-list li {
    margin-top: -8px;
    list-style: none;
    font-size: 12px;
    color: #c4161c;
}

.li-head{
    display: flex;
}
.li-head span{
    min-width: 22px;
}
.inpButton{
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    color: #c4161c;
    padding: 4px 10px;
    outline: none;
}
.inpButton:hover{
    cursor: pointer;
    color: #000;
    outline: none;
}
.inpButton:focus{
    outline: none;
}

.steps{
    font-size: 18px;
    font-weight: 600;
    padding: 4px 0px;
    margin-top: 25px;
    border-bottom: 2px solid #dfcda2;
}
.bolder{
    font-weight: 600;
}
.border-sec .custom-control {
    display: inline-block;
    margin-right: 15px;
}
.border-sec .form-control {
    margin-bottom: 10px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.qstSec .btn {
    text-transform: capitalize;
    font-weight: 500;
}
.btnScnd {
    background: #dfcda2;
    color: #222;
}
.btnScnd:hover {
    background: #000!important;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
}
.upload-btn-wrapper input{
    cursor: pointer;
}
.sbmt{
    padding: 8px 25px;
    font-size: 18px;
    font-weight: 600;
}