@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "SolaimanLipi", "Roboto Condensed", sans-serif; */
    /* font-family: "Roboto Condensed","SolaimanLipi",sans-serif; */
    font-family: "Roboto Condensed", "SolaimanLipi", sans-serif;
}

a:hover {
    text-decoration: none;
}

.asset-title:hover {
    text-decoration: none;
}

.catagory-card .card {
    min-height: 190px;
}

.catagory-card .card-title {
    margin-top: 7px;
}

.login-main-bg {
    /*background: url(../img/background/captain9.png) !important;*/
    background: url(../img/background/login_background.jpg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 85vh;
}

.reg-main-bg {
    min-height: 60vh !important;
    background: url(../img/background/undraw_remotely_2j6y.png) !important;
}

.login-main-box {
    width: 60%;
    height: auto;
    margin: auto;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden;
}

.reg-main {
    width: 60%;
    height: auto;
    margin: auto;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

.candid-login .login-main-box::before {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    background: #60cb8b;
    left: -40px;
    bottom: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.candid-login .login-main-box::after {
    position: absolute;
    content: "";
    height: 150px;
    width: 150px;
    top: -35px;
    right: -35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #60cb8b;
}

.login-content-box {
    /* padding: 100px; */
    text-align: center;
    padding: 40px;
}

.login-content-box .login-title-box {
    border-bottom: 1px solid #dbdbdb;
}

.login-content-box .candidate-login {
    padding: 20px 0px;
    text-align: left;
    width: 70%;
    margin: auto;
    padding-bottom: 0;
}

.login-content-box .candidate-login .form-control {
    font-size: 16px;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #656565;
    padding-left: 35px;
}

.login-content-box .candidate-login i {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 16px;
    color: #d9d9d9;
}

.login-content-box .candidate-login .form-control:focus {
    box-shadow: none;
    outline: none;
    background: #fff;
}

.login-content-box .candidate-login .form-control::placeholder {
    text-transform: capitalize;
}

.login-content-box .candidate-login .form-footer {
    text-align: center;
}

.login-content-box .candidate-login .form-footer .btn-primary {
    background: #60cb8b;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 100%;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: 11;
}

.login-content-box .candidate-login .form-footer .btn-primary:hover {
    color: #fff;
    border-color: #d81a60;
}

.login-content-box .candidate-login .form-footer .btn-primary::before,
.login-content-box .candidate-login .form-footer .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #d81a60;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.login-content-box .candidate-login .form-footer .btn-primary:hover::before,
.login-content-box .candidate-login .form-footer .btn-primary:hover::after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    color: #fff;
}

.login-content-box .candidate-login .form-footer .btn-primary:focus {
    box-shadow: none;
    outline: none;
    border-color: #60cb8b;
}

.login-content-box .candidate-login .form-label-description {
    text-align: right;
    text-transform: capitalize;
}

.login-content-box .candidate-login .form-check-label {
    font-size: 16px;
}

.login-content-box .candidate-login .register-link {
    font-size: 16px;
}

.technical-partner a {
    font-size: 16px;
    text-transform: capitalize;
}

.login-content-box .login-title-box h3 {
    font-size: 31.28px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #60cb8b;
    text-transform: uppercase;
}

.login-content-box .login-title-box h5 {
    font-size: 27.11px;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    text-transform: capitalize;
    color: #3f3f3f;
}

.login-content-box .login-title-box h5 span {
    color: #d81a60;
}

.login-content-box .bsc-logobox img {
    width: 150px;
    margin-bottom: 5px;
}

.login-image-box {
    padding: 40px;
    text-align: center;
    /*background: url(../img/background/ship-clip.jpg);*/
    background: linear-gradient(to right, #4facfe, #00f2fe);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 470px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    /* position: relative; */
}

.candidate-login-image-box {
    padding: 40px;
    text-align: center;
    /*background: url(../img/background/ship-clip.jpg);*/
    background: linear-gradient(to right, #4facfe, #00f2fe);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 470px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    /* position: relative; */
}

/* .login-image-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    } */

.logo-set-box {
    text-align: center;
}

.logo-set-box p {
    margin: 20px 0px;
    font-size: 24px;
    text-transform: capitalize;
    color: #000;
    position: relative;
}

.login-image-box p::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff47;
}

.no-padd {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* .logo-set-box img{
  width: 50px;
  } */

.login-form-box {
    background: #5886c5;
    height: 425px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 40px;
}

.candidate-login-form-box {
    background: #5886c5;
    height: 470px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 40px;
}

.log-reg-tab .nav-item {
    width: 50%;
}

.log-reg-tab .nav-tabs .nav-link {
    width: 100%;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 0;
    border-color: #fff;
    text-align: center;
    display: block;
}

.log-reg-tab .nav-tabs .nav-link.active {
    color: #5886c5;
}

.log-reg-tab .login-form {
    margin: 20px 0px;
}

.log-reg-tab .login-form label {
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
}

.log-reg-tab .login-form .form-control {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
}

.log-reg-tab .login-form ::placeholder {
    color: #fff;
}

.log-reg-tab .login-form .icon {
    color: #fff;
}

.log-reg-tab .login-form .input-group-text {
    padding-left: 10px;
}

.log-reg-tab .login-form .form-label-description {
    float: right;
    text-align: right;
    font-size: 15px;
    text-transform: capitalize;
}

.log-reg-tab .login-form .form-label-description a {
    color: #fff;
}

.log-reg-tab .login-form .form-label-description a:hover {
    color: #fff;
    text-decoration: none;
}

.log-reg-tab .login-form .form-control:focus {
    box-shadow: none;
}

.technical-partner {
    text-align: right;
    padding: 15px 0px;
}

.technical-partner img {
    width: 23%;
    padding-left: 5px;
}

.login-title-box h1 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.tech-partner {
    color: #fff;
}

.tech-partner:hover {
    text-decoration: none;
    color: #fff;
}

.small-logo-set {
    display: none;
}

.big-show {
    display: none;
}

.small-show {
    display: block;
}

.cv-card {
    margin: 20px;
    border: none;
}

.cv-card fieldset {
    border: 1px dotted #5886c5;
    padding: 15px;
}

.cv-card legend {
    padding: 5px;
    margin-bottom: 0 !important;
    float: none;
    text-align: center;
    color: #5886c5;
    text-transform: capitalize;
    /* width: 225px; */
    width: auto;
    padding: 5px;
    text-align: center;
    margin: auto;
    padding: 2px 20px;
    /* background: #e9ebec; */
    background: #fff;
    border-radius: 4px;
    position: unset;
}

.cv-main-box .cv-header {
    background: #f4f6fa;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
}

.cv-head-service {
    flex-basis: 50%;
    min-height: 40px;
}

.cv-head-service .cv-image {
    height: 100px;
    width: 100px;
    float: right;
}

.cv-head-service .cv-image img {
    height: 100%;
    width: 100%;
}

.serviceid-number {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.serviceid-number h5 {
    font-size: 20px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #5886c5;
}

.button-set {
    margin: 20px 0px;
    text-align: center;
}

.button-set a {
    text-transform: uppercase;
    width: 18%;
    margin-right: 2%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.button-set a:last-child {
    margin-right: 0;
}

.seaservice-table thead th {
    font-size: 17px;
    text-align: center;
    color: #62626b;
}

.seaservice-table tbody th {
    font-size: 17px;
    font-weight: normal;
    width: 150px;
    color: #62626b;
}

.seaservice-table tbody td {
    font-size: 17px;
    font-weight: normal;
    color: #62626b;
}

.expriance-table th {
    text-transform: uppercase;
    font-size: 17px;
    text-align: center;
    color: #62626b;
}

.expriance-table td {
    font-size: 15px;
    color: #62626b;
}

.expriance-table thead tr th {
    font-size: 17px;
    font-weight: bold;
    color: #62626b;
}

.expriance-table tr th {
    font-size: 17px;
    font-weight: normal;
    color: #62626b;
}

.education-table thead tr th {
    font-weight: bold;
    color: #62626b;
}

.education-table tr th {
    text-align: left;
}

.education-table td {
    font-size: 15px;
    text-transform: uppercase;
    color: #62626b;
}

.course-table tr td:first-child {
    width: 40% !important;
}

.signature-box {
    width: 40%;
    float: right;
}

.signature-box fieldset {
    border: 1px dotted #1d59b3;
    padding: 15px;
}

.signature-box legend {
    padding: 5px;
    margin-bottom: 0 !important;
    float: none;
    text-align: center;
    color: #1d59b3;
    text-transform: capitalize;
    width: 130px;
    padding: 5px;
    text-align: center;
    margin: auto;
}

.signature-image {
    text-align: center;
}

.modal-approve-btn {
    background: #8cc63f;
    color: #fff;
    border-color: #8cc63f;
    text-transform: capitalize;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.modal-approve-btn:hover {
    background: #8cc63f;
    color: #fff;
    border-color: #8cc63f;
}

.modal-approve-btn:focus {
    box-shadow: none;
}

.modal-decline-btn {
    background: #ff1111;
    color: #fff;
    border-color: #ff1111;
    text-transform: capitalize;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.modal-decline-btn:focus {
    box-shadow: none;
}

.modal-decline-btn:hover {
    background: #ff1111;
    color: #fff;
    border-color: #ff1111;
}

.modal-details-btn {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    text-transform: capitalize;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.modal-details-btn:focus {
    box-shadow: none;
}

.modal-details-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.common-modal .modal-header {
    background: #4cd137;
    color: #fff;
    font-size: 22px;
    font-weight: normal;
    min-height: 2.5rem;
}

.common-modal .modal-content .btn-close {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 1;
}

.common-modal textarea:focus {
    box-shadow: none;
    border-radius: 0;
    border-color: #4cd137;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.common-modal .modal-body {
    padding: 17px;
}

.common-modal .modal-footer {
    padding-bottom: 8px;
}

.shore-cv-card {
    margin-top: 20px;
    border-radius: 0;
    border: none;
}

.shore-cv-card .card-header {
    padding-left: 0;
    padding-right: 0;
    background: #f4f6fa;
    border: none;
    border-radius: 0;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.shore-cv-card .card-header h5 {
    text-align: center;
    margin: auto;
    font-size: 18px;
    color: #5886c5;
    text-transform: uppercase;
}

.shore-cv-card .card-body {
    padding-left: 0;
    padding-right: 0;
}

.shore-cv-card tr td:first-child {
    text-align: right;
    width: 50%;
}

.shore-cv-card tr td {
    border: none;
}

.children-table tr td {
    width: auto !important;
    text-align: left !important;
    border: 1px solid #f7f5f5;
}

.children-table tr th {
    background: #f8f8f8;
    /* border-bottom: none; */
}

.shore-cv-card .table-responsive {
    margin-bottom: 0;
}

/* admit card css start from here  */

.admit-card-section {
    padding: 20px 0px;
    min-height: 100vh;
    background: #fff;
}

.admit-card-section fieldset {
    border: 1px dotted #1d59b3;
    padding: 15px;
}

.admit-card-section legend {
    padding: 5px;
    margin-bottom: 0 !important;
    float: none;
    text-align: center;
    color: #1d59b3;
    text-transform: capitalize;
    width: auto;
    padding: 2px 15px;
    text-align: center;
    margin: auto;
    border: 1px dotted;
    position: unset !important;
}

.admit-header-section img.bsc-logo {
    margin-top: 19px;
}

.image-right {
    text-align: right;
}

.admit-card-section .admit-title {
    padding-top: 20px;
}

.admit-card-section .admit-title h2 {
    text-transform: capitalize;
    font-size: 25px;
    text-align: center;
    margin-bottom: 0;
    color: #124394;
}

.admit-card-section .admit-title p {
    text-align: center;
    margin-bottom: 0;
    color: #555454;
}

.admit-card-section .exam-title {
    padding: 15px 0px;
}

.admit-card-section .exam-title h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    /* text-transform: capitalize; */
}

.admit-card-section .exam-title h2 span {
    text-transform: capitalize;
}

.admit-card-section .candidate-info-section {
    padding: 25px 0px;
}

.admit-card-section .candidate-info-section .table tr td {
    text-transform: capitalize;
    font-size: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.candidate-img-box {
    width: 100%;
    text-align: right;
}

.candidate-img-box img {
    height: 150px;
    border: 1px dotted #124394;
    padding: 3px;
}

.candidte-signature-main .candidte-signature-box .signature p {
    font-size: 15px;
    text-transform: capitalize;
    border-top: 1px solid #ccc;
    text-align: center;
    padding-top: 5px;
    margin-bottom: 0;
}

.candidte-signature-main .candidte-signature-box .signature {
    max-width: 300px;
}

.candidte-signature-main .candidte-signature-box .signature img {
    max-height: 80px;
}

.user-id-box {
    padding: 15px 0px;
}

.user-id-box p {
    float: left;
    text-transform: capitalize;
    font-size: 14px;
}

.user-id-box p:nth-child(1) {
    width: 30%;
}

.user-id-box p:nth-child(2) {
    width: 70%;
}

.instruction-main {
    padding: 15px 0px;
}

.instruction-main h5 {
    text-transform: capitalize;
    font-size: 17px;
    color: #d81a60;
    text-align: center;
}

.instruction-list p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: normal;
}

.controller-signature-box .signature {
    max-width: 300px;
    float: right;
}

.controller-signature-box p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: center;
    border-top: 1px solid #62626b;
}

.qr-code-box {
    text-align: center;
    padding: 15px 0px;
    padding-bottom: 0;
}

.qr-code-box img {
    height: 70px;
    width: 70px;
}

/* admit card css end here  */

/* shore profile css start from here  */

.shore-profile-main .shore-applicant-table {
    margin: 20px 0px;
}

.shore-profile-main .shore-applicant-table tr td {
    vertical-align: middle;
}

.table-flex-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 17px;
}

.table-flex-box .signtaure-table {
    flex-basis: 50%;
}

.table-flex-box .signtaure-table:nth-child(2) {
    text-align: center;
    margin: auto;
}

.table-flex-box .signtaure-table:nth-child(2) img {
    height: 40px;
}

.table-flex-box .signtaure-table:nth-child(2) p {
    margin-bottom: 0;
}

.afloat-cv-card {
    margin-top: 20px;
    border-radius: 0;
    border: none;
}

.afloat-cv-card .card-header {
    padding-left: 0;
    padding-right: 0;
    background: #f4f6fa;
    border: none;
    border-radius: 0;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.afloat-cv-card .card-header h5 {
    text-align: center;
    margin: auto;
    font-size: 18px;
    color: #5886c5;
    text-transform: uppercase;
}

.afloat-cv-card .table tr.first td {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

/* shore profile css end here  */

/* candidte profile vue file css start from here  */

.candidate-profile .candidate-fromcontrol:focus {
    box-shadow: none;
    outline: none;
}

.candidate-profile .candidate-fromcontrol {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px dotted #124394;
    border-top: none;
    border-right: none;
    color: #495057;
}

.candidate-profile label {
    color: #666;
    text-transform: capitalize;
}

.candidate-profile .form-select:focus {
    box-shadow: none;
    outline: none;
}

.candidate-profile .form-select {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #124394;
    /* border-top: none;
    border-right: none; */
    color: #495057;
}

.candidate-profile .cv-card legend {
    width: auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

.candidate-profile .cv-card {
    margin: 0;
    margin-bottom: 10px;
}

.cv-card .form-control {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #124394;
    /* border-top: none;
    border-right: none; */
    color: #495057;
}

.cv-card .form-control[readonly] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #124394;
}

.candidate-profile .cv-card legend.text-danger {
    font-size: 15px;
    color: #5886c5 !important;
    color: #1d59b3;
    width: auto;
    float: inherit;
    font-size: 1rem;
    padding: 2px 20px;
    background: #e9ebec;
    border-radius: 4px;
}

.candidate-profile .form-control:disabled,
.form-control[readonly] {
    background-color: #f4f6fa;
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #124394;
    /* border-top: none;
    border-right: none; */
    color: #495057;
}

.candidate-profile .form-control:disabled:focus,
.form-control[readonly]:focus {
    box-shadow: none;
    outline: none;
}

.candidate-profile .step-footer .current-steps:nth-child(1) {
    float: left;
    font-size: 15px;
}

.candidate-profile .step-footer .current-steps:nth-child(2) {
    float: right;
}

.candidate-profile .step-footer .current-steps:nth-child(2) .btn-sm {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #27ae60 !important;
    border-color: #27ae60 !important;
}

.candidate-profile .step-footer .current-steps:nth-child(2) .btn-sm:focus {
    box-shadow: none;
    outline: none;
}

.add-education-btn {
    border: 1px dotted #5886c5;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 15px;
    margin-top: 0px;
}

.add-education-btn i {
    padding-right: 5px;
    color: #5886c5;
    font-size: 15px;
}

.add-education-btn:focus {
    box-shadow: none;
    outline: none;
}

.mb-20 {
    margin-bottom: 30px;
}

.candidate-profile .delete_right[data-v-f2ab7bfe] {
    display: block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 22px;
    right: 30px;
}

.shore-applicant-table .table tr td.serial {
    width: 60px !important;
    vertical-align: middle;
    text-align: center;
}

.shore-applicant-table .table-responsive {
    margin-bottom: 0;
}

.shore-applicant-table .table-responsive .table-bordered {
    border-top-color: transparent;
}

.shore-applicant-table .table-responsive:nth-child(1) .table-bordered {
    border-top-color: #e6e7e9;
}

/* multi form start from here  */

/* Make circles that indicate the steps of the form: */

.multitabs {
    display: none;
}

input.invalid {
    background-color: #ffdddd;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #04aa6d;
}

/* candidte profile vue file css end here  */

.reg-now-btn {
    color: #fff;
    border: none;
}

.form-footer {
    margin-top: 0;
}

.candidate-profile tr td {
    vertical-align: middle;
}

.add-afloat-course-btn {
    margin-bottom: 20px;
}

.legend-small {
    font-size: 17px;
}

.nav-logo img {
    height: 70px!important;
    width: 60px!important;
}

.nav-link-icon svg {
    color: #fff;
    opacity: 1;
}

.side-navbg {
    background: #70a1ff;
}

.side-navbg .navbar-nav {
    padding-left: 17px;
    padding-right: 17px;
    border-top: 1px solid #6395f7;
}

.side-navbg .navbar-nav .nav-item .nav-link {
    background: #124394;
    margin-bottom: 10px;
    border-radius: 13px;
    position: relative;
    transition: all 0.3s;
    z-index: 11;
    overflow: hidden;
}

.side-navbg .navbar-nav .nav-item .nav-link:hover {
    background-color: #d81a60;
}

/*
.side-navbg .navbar-nav .nav-item .nav-link::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #d81a60;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
        transition-timing-function: ease;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    border-radius: 13px;
}
.side-navbg .navbar-nav .nav-item .nav-link::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #d81a60;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
        transition-timing-function: ease;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    border-radius: 13px;
}

.side-navbg .navbar-nav .nav-item .nav-link:hover::before{
    transform: translate(0, 0);
    color: #fff;
}
.side-navbg .navbar-nav .nav-item .nav-link:hover::after{
    transform: translate(0, 0);
color: #fff;
} */

.side-navbg .navbar-nav .nav-item .nav-link {
    color: #fff;
}

.navbar-vertical.navbar-expand-lg
.navbar-collapse
.dropdown-menu
.dropdown-item {
    color: #fff;
    background: #336ac6;
    border-radius: 13px;
    margin-bottom: 10px;
    padding-left: 1.25rem;
}

.navbar-vertical.navbar-expand-lg
.navbar-collapse
.dropdown-menu
.dropdown-item:hover {
    background-color: #d81a60;
    transition: all 0.3s;
}

.signature_img {
    width: 300px;
    height: 80px;
}

.admin-loop:nth-child(1) .card .card-body {
    background: linear-gradient(to right, #4568dc, #b06ab3);
    text-align: center;
}

.admin-loop:nth-child(2) .card .card-body {
    background-image: linear-gradient(
        132.6deg,
        rgba(71, 139, 214, 1) 23.3%,
        rgba(37, 216, 211, 1) 84.7%
    );
    text-align: center;
}

.admin-loop:nth-child(3) .card .card-body {
    background-image: linear-gradient(
        109.6deg,
        rgba(45, 116, 213, 1) 11.2%,
        rgba(121, 137, 212, 1) 91.2%
    );
    text-align: center;
}

.admin-loop:nth-child(4) .card .card-body {
    background-image: linear-gradient(
        178.9deg,
        rgba(176, 57, 105, 1) 5.1%,
        rgba(229, 113, 159, 1) 109.3%
    );
    text-align: center;
}

.admin-loop:nth-child(5) .card .card-body {
    background-image: linear-gradient(
        178.9deg,
        rgb(160 140 148) 5.1%,
        rgb(187 116 145) 109.3%);
    text-align: center;
}

.admin-loop .subheader {
    font-size: 20px;
    color: #fff;
    width: 100%;
}

.admin-loop .h1 {
    color: #fff;
    text-align: center;
    width: 100%;
    margin-bottom: 0 !important;
}

/* candiadate new cv design start from here  */

.newcv-main {
    margin: 20px 0px;
}

.newcv-main .admit-title {
    text-align: center;
}

.newcv-main p {
    margin-bottom: 0;
    text-transform: capitalize;
    color: #124394;
    font-size: 17px;
}

.newcv-main h2 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    color: #124394;
}

.newcv-main p a {
    text-decoration: none;
    color: #62626b;
    font-size: 17px;
}

.newcv-main .card {
    /*border: none;*/
    border-radius: 5px;
    margin-bottom: 0px;
}

.newcv-main p.govt {
    color: #ec1c24 !important;
}

.newlogo img {
    width: 80px;
    padding-top: 20px;
}

.user-id {
    background: #f4f6fa;
    padding: 5px 10px;
    margin: 10px 0px;
    border-radius: 5px;
}

.applicant-description .table tr td {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: normal;
    color: #62626b;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #f4f6fa;
    border-bottom: 2px solid #fff;
    border-radius: 5px;
}

.applicant-description .table tr td:first-child {
    width: 200px;
}

span.right-dot {
    float: right;
}

.applicant-address .table tr td {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: normal;
    color: #62626b;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #f4f6fa;
    border-bottom: 2px solid #fff;
    border-radius: 5px;
}

.appliact-declaration p {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: normal;
    color: #62626b;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 5px;
}

.appliact-declaration p {
    font-size: 14px;
    color: #62626b;
}

.applicant-signature {
    text-align: right;
}

.applicant-signature-img {
    width: 300px;
    text-align: center !important;
    float: right;
}

.applicant-signature img {
    width: 300px;
    height: 80px;
}

.applicant-signature-img p {
    border-top: 1px solid #62626b;
}

.card-borderless {
    border: none;
}

.applicant-qualification .table tr td {
    text-transform: capitalize;
    color: #62626b;
}

.tr-bold td {
    font-weight: 600;
    text-transform: capitalize;
}

.w-img {
    width: 100px;
}

.h-img {
    height: 50px;
}

.w-33 {
    width: 33.33% !important;
}

.admit-name {
    float: left;
}

.admit-name h6 {
    font-size: 17px;
    margin: 0;
    padding-top: 30px;
    text-align: center;
    text-transform: capitalize;
}

/* .qr-code-box{
    float: left;
 }*/

.office-address p {
    margin-bottom: 5px;
}

/* candiadate new cv design end here  */

.site-footer {
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

.office-address p {
    font-size: 15px;
}

.auth-card ul.nav .nav-item {
    flex-basis: 16.6%;
    border: 1px solid #edefff;
}

.auth-card ul.nav .nav-item .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 100%;
    display: block;
    text-align: center;
}

.auth-card ul.nav .nav-item .nav-link.active {
    background: #124394;
    color: #fff;
    border-color: #124394;
    /* position: relative; */
}

/* .auth-card ul.nav .nav-item .nav-link.active::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    height: 10px;
    width: 10px;
    background: red;
} */
.auth-card ul.nav .nav-item:hover .nav-link {
    border: 1px solid #124394;
    background: #124394;
    color: #fff;
}

.auth-card .form-control {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 15px;
    color: #62626b;
    border: 1px solid #124394;
    /* border-top: 0;
    border-right: 0; */
}

.auth-card .form-control:focus {
    box-shadow: none;
    outline: none;
}

.auth-card label {
    color: #505780;
    font-weight: normal !important;
    text-transform: capitalize;
    font-size: 17px;
}

.auth-save {
    margin-top: 15px;
    padding: 5px 25px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #124394;
    color: #fff;
}

.auth-card p.border {
    border-radius: 0 !important;
    border: 1px dotted #124394 !important;
    /* border-top: 0 !important;
    border-right: 0 !important; */
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    background: #f2f2f2;
}

.auth-card legend {
    padding-left: 15px;
    padding-right: 15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.candidate-attendence {
    min-height: 80vh;
}

.candidate-attendence .table thead tr th {
    vertical-align: middle;
    font-size: 15px;
    text-align: center;
    text-transform: capitalize;
}

.candidate-attendence .table tbody tr td {
    vertical-align: middle;
    font-size: 14px;
}

.td-twofifty {
    width: 250px;
}

.circular-description p {
    font-size: 17px;
    text-transform: capitalize;
    text-align: justify;
    word-spacing: 1px;
}

.facility-list h2 {
    text-transform: capitalize;
}

.facility-list ul li {
    list-style-type: disc;
    text-transform: capitalize;
    color: #124394;
}

.sender {
    margin-bottom: 20px;
}

.sender p {
    font-size: 17px;
    text-transform: capitalize;
    text-align: justify;
    word-spacing: 1px;
}

.circular-head p {
    margin-bottom: 0;
    font-size: 14px;
}

.attendce-search-box .form-control {
    border: 1px solid #124394;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 15px;
}

.attendce-search-box .form-control:focus {
    box-shadow: none;
    outline: none;
}

.attendce-search-box label {
    text-transform: capitalize;
    font-size: 15px;
}

.attendce-search-box .btn-primary {
    margin-top: 27px;
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 15px;
}

.attendce-search-box .btn-primary i {
    padding-right: 5px;
}

.side-copyright {
    display: none;
}

.text-transform label {
    text-transform: none !important;
}
