:root {
    --header-bg-color:#fff
}
input:focus {
    outline: none; /* Remove the default focus outline */
}

/* loader css */
.loader {
    display: none;
    top: 7px;
    left: 50px;
    width: 30px;
    height: 30px;
    border: 5px solid #cc0100;
    border-radius: 50%;
    box-sizing: border-box;
    position: relative;
    animation: pulse 1s linear infinite;
}
.loader:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid #f7caca;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
    0% { transform: translate(-50%, -50%) scale(0) }
    60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
    0% , 60% , 100%{ transform:  scale(1) }
    80% { transform:  scale(1.2)}
}

/* loader css ends here */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.remove-left-margin {
    margin-left: 0px !important;
}
.margin-top-20 {
    margin-top: 20px !important;
}
.view-mode {
    pointer-events: none;
}
.header-container {
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #cc0100;
    display: grid;
    grid-template-columns: 1fr 3fr;
    position: sticky;
    top: 0px;
    z-index: 5;
    background: #fff;
}
.header-container-login {
    grid-template-columns: 1fr !important;
}
.header-left-login {
    display: flex;
    justify-content: center;
}
.header-logo-box{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2a2929;
}
.img-logo {
    width: 45px;
    border-radius: 3px;
}
.logo-container {
    display: flex;
    align-items: center;
    height: 70px;
    margin-left: 130px;
    width: 65%;
    justify-content: center;
}
.header-logo-text {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: italic;
    margin-left: 7px;
}
.header-menu-container {
    display: flex;
    height: 70px;
    width: 88%;
    align-items: center;
    justify-content: right;
}
.header-menu-container a{
    text-decoration: none;
    color: #cc0100;
    font-size: 17px;
    transition: .5s;
}
.header-menu-container a:hover:not(.dropdown-content a, .select-language-list a){
    cursor: pointer;
    background: #cc0100;
    padding: 6px;
    border-radius: 4px;
    color: #ffffff;
}
.header-active {
    background: #cc0100;
    padding: 6px;
    border-radius: 4px;
    color: #ffffff !important;
}
#dropdownId{
    display: inline-block;
}
.nav-menu:not(:first-child) {
    margin-left: 15px;
}
.divider {
    width: 2px;
    height: 15px;
    background: #cc0100;
    margin-left: 10px;
}

.listing-section-header,.list-items-container{
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr 2fr 2fr 2fr 2fr .5fr .5fr
}
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 90vh;
}
.add-item-section {
    width: 82%;
    display: flex;
    justify-content: right;
    align-items: center;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.add-btn-icon {
    font-size: 30px;
    color: #cc0100;
}
.add-btn-icon:hover {
    color: #f7caca;
    cursor: pointer;
}
.listing-section {
    width: 82%;
}
.list-itmes-section {
    min-height: 46vh;
}
.list-title {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #f7caca;
    margin-bottom: 10px;
    padding-right: 10px;
}
.list-title:not(:first-child),.list-item:not(:first-child) {
    margin-left: 2px;
}
.list-item {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.list-items-container:nth-child(even) {
    background: #e8e8e8;
}

.footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 50px;
    background:#070707;
}
.copyright {
    color: #fff;
    height: 50px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.overlay {
    width: 100%;
    height: 100%;
    background: #070707d9;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-box {
    padding: 20px;
    background: #ffffff;
    border-radius: 4px;
    max-height: 500px;
    overflow-y: auto;
}
.close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.close-btn i {
    font-size: 25px;
}
.close-btn i:hover {
    cursor: pointer;
    color: #cc0100;
}
.detail-input-text {
    width: 300px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 6px;
}
.detail:not(:first-child) {
    margin-top: 10px;
}
.detail-submit-btn,.next-btn,.send-submit-btn {
    padding: 5px 20px;
    border: 0px;
    border-radius: 3px;
    background: #cc0100;
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}
.back-btn {
    padding: 5px 20px;
    border: 0px;
    border-radius: 3px;
    background: #070707;
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}
.detail-submit-btn:hover{
    background: #f7caca;
    cursor: pointer;
}

/* login page */
.login-section {
    width: 450px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 20px 10px;
    margin-top: 7%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.login-header {
    padding: 15px 0px 20px 0px;
}
.lgin {
    width: 370px;
    height: 50px;
    padding-left: 10px;
    padding-right: 7px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}
.login-input:not(:first-child) {
    margin-top: 10px;
}
.login-submit-btn {
    border: 0px;
    background-color: #cc0100;
    color: #fff;
    font-size: 25px;
    padding: 10px 20px;
    border-radius: 4px;
}
.login-submit-btn:hover {
    background: #f7caca;
    cursor: pointer;
}
.login-btn {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-demo-link a{
    text-decoration: none;
    color: #0b57d0;
    font-size: 15px;
}
.lgin::placeholder {
    font-size:15px;
}
/* login page ends */


.header-menu-container {
    position: relative;
}
.dropdown {
    position: absolute;
    top: 75px;
    display: none;
    right: 61px
}
.dropdown-content {
    display: block;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: #343333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    text-decoration: none !important;
    background-color: #f7caca;
}

.drp-itm{
    margin-right: 7px;
}

.listing-section-header-user,.list-items-container-user {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 2fr 2fr 2fr .5fr .5fr
}
.listing-request-section {
    display: grid;
    grid-template-columns: 0.5fr 4fr 3fr 0.2fr;
}
.listing-request-section:nth-child(even) {
    background: #e8e8e8;
}

.listing-section-header-passport,.list-items-container-passport {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 2fr 2fr 2fr 2fr .5fr
}

.list-items-container-user:nth-child(even),.list-items-container-passport:nth-child(even) {
    background: #e8e8e8;
}
.input-label {
    font-size: 14px;
    margin-bottom: 5px;
    margin-left: 3px;
    color: #474747;
}
.list-item-dropdown {
    position: relative;
}
.listing-dropdown {
    display: none;
    position: absolute;
    right: 34px;
    top: 5px;
    background: #fff;
    min-width: 185px;
    border: 1px solid #ddd;
    border-radius: 3px;
    z-index: 5;
}

.listing-dropdown a{
    display: block;
    text-decoration: none;
    color: #373737;
    font-size: 15px;
    padding:7px;
    transition: .5s;
}

.listing-dropdown a:hover{
    background: #f7caca;
}

.listing-dropdown a:not(:last-child){
    border-bottom: 1px solid #ddd;
}
.listing-icon {
    margin-right: 3px;
}
.font-icon {
    padding: 3px 10px;
}
.font-icon:hover {
    cursor: pointer;
    background: #f7caca;
    border-radius: 4px;
}
.no-list-item {
    font-size: 11px;
    color: #2e2e2e;
}
.font-icon-active {
    background:#f7caca;
    border-radius: 4px;
}


/*visa creation css ends here*/

.disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}

/*toaster CSS*/
.toast-card-box {
    width: 330px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}
.toast-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    justify-content: space-between;
    min-height: 70px;
}
.toast-card {
    margin-bottom: 7px;
}
.toast-message {
    word-break: break-word;
    padding-right: 7px;
}
.success {
    color: #039003;
    box-shadow: 1px 1px 7px -1px rgb(93 137 71 / 75%)
}
.fail {
    color: #cc0100;
    box-shadow: 1px 1px 7px -1px rgb(250 46 46 / 75%);
}
.toast-message-close-btn {
    padding-right: 7px;
    color: #070707 !important;
}
.toast-message-close-btn:hover {
    font-weight: bold;
    cursor: pointer;
}

.overlay-loader {
    width: 30%;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.overlay-loader::after {
    content: '';
    width: 30%;
    height: 4.8px;
    background:#cc0100;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: overlayanimloader 2s linear infinite;
}
.overlay-loader-message {
    color: #fff;
    margin-bottom: 15px;
}

@keyframes overlayanimloader {
    0% {
        left: 0;
        transform: translateX(-100%);
    }
    100% {
        left: 100%;
        transform: translateX(0%);
    }
}

.passport-confirmation-popup-box,.passport-delete-confirmation-popup-box {
    position: absolute;
    top: 30%;
    width: 40%;
    -webkit-box-shadow: 2px 2px 21px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 21px -1px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 21px -1px rgba(0,0,0,0.75);
    display: none;
}

.passport-confirmation-btn {
    display: flex;
    align-items: center;
}
.passport-confirmation-btn .detail-submit-btn:not(:first-child) {
    margin-left: 10px;
}
.review-btn,.delete-no-btn {
    background: #070707 !important;
}

.review-btn:hover {
    background: #2a2929 !important;
}
.passport-image{
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
}
.passport-image img{
    width: 150px;
    height: 150px;
}


/*new visa view css*/
* {
    font-family: Arial, sans-serif;
}
.visa-container {
    width: 149mm;
    height: 100mm;
    display: flex;
    margin-top: 15px;
}
.visa-left-body {
    width: 35%;
    z-index: 1;
    position: relative;
}
.visa-right-body {
    width: 65%;
    z-index: 1;
}
.visa-qr-code {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.visa-image img {
    position: absolute;
    top: 10px;
    left: 45px;
    width: 150px;
    height: 184px;
}
.visa-header {
    padding: 10px;
    justify-content: space-between;
    display: flex;
}
.visa-body {
    margin-top: 45px;
}
.visa-country {
    font-size: 20px;
    position: relative;
}
.visa-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.visa-qr-code img {
    width: 165px;
    height: 190px;
}
.visa-right-body {
    padding: 10px;;
}
.visa-holder-info {
    font-size: 12px;
}
.info-line {
    border-bottom: 1px solid #9e9e9e;
    padding-bottom: 3px;
}
.info-line:not(:first-child) {
    padding-top: 15px;
}
.info-line p {
    margin: 0;
    display: flex;
}
.info-line p strong{
    display: inline-block;
}
.info-key {
    display: inline-block;
    min-width: 95px;
    margin-right: 10px;
}
.info-key1 {
    display: inline-block;
    margin-left: 20px;
    width: 65px
}
.document-id h2 {
    margin:0;
    font-size: 17px;
    letter-spacing: 5px;
}
.print-visa-btn {
    background: #cc0100;
    padding: 10px 15px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    margin-top: 20px
}
.print-visa-btn:hover {
    background: #e70604;
    cursor: pointer;
}

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
    .main {
        display: block;
        flex-direction: column;
        align-items: center;
        position: relative;
        min-height: 10vh;
    }
    .visa-container {
        margin-top: 0;
    }
}

/*Search box css*/
input:focus::placeholder {
    color: transparent;
}
.list-search-box {
    padding: 10px;
    /* -webkit-box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75); */
    border: 1px solid #cc0100;
    margin-bottom: 20px;
    border-radius: 4px;
}
.list-search-fields {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    row-gap: 10px;
}
.search-field input,.search-field select {
    width: 150px;
    height: 30px;
    border: none;
    border-bottom: 1px solid #cc0100;
    padding-left: 10px;
    padding-right: 7px;
}
.list-search-btns {
    margin-top: 10px;
    display: flex;
    justify-content: right;
    margin-right: 10px;
}
.list-search-btns input {
    border: 0px;
    padding: 10px 15px;
    border-radius: 4px;
}
.search-btn {
    background: #cc0100;
    color: #fff;
}
.search-reset-btn {
    margin-right: 10px;
    background: black;
    color: #fff;
}


/*pagination custom css*/
.pagination {
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-makeup-div {
    width: 100%;
    height: 50px;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.passport-image-margin-top {
    margin-top: 90px !important;
    position: relative;
}

.error-message {
    color: #cc0100;
    font-size: 13px;
    margin-top: 5px;
}

/*new create passport css */
.new-passport-form-holder {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 52%;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}
.create-new-passport-section {
    width: 100%;
    display: flex;
    justify-content: center;
}
.passport-create-input {
    border: 1px solid #ddd;
    padding: 10px 7px 10px 7px;
    width: 300px;
    border-radius: 4px;
    margin-top: 5px;
}
.p-input-group:not(:first-child) {
    margin-top: 20px;
}
.p-input:not(:first-child) {
    margin-left: 10px;
}
.p-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.p-input-label {
    font-size: 15px;
    color: #3b3b3b;
}

.mb-20 {
    margin-bottom: 20px !important;
}
.mt-20 {
    margin-top: 20px !important;
}

.mt-10 {
    margin-top: 10px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.reset-right {
    right: 0 !important;
}

.footer-makeup-div {
    width: 100%;
    height: 50px;
}
.file-input-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.file-input-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #cc0100;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.file-label {
    position: absolute;
}
.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    opacity: 0;
    cursor: pointer;
}
.p-uploaded-image {
    border: 1px solid #ddd;
    width: 146px;
    height: 173px;
}
.uploaded-image {
    width: 146px;
    height: 173px;
}
.page-title {
    width: 52%;
    margin-top: 20px;
    font-size: 20px;
}
.image-bottom-border {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px
}



/*demo user creation wizard css*/
/* Style the form */
.registration-form {
    background-color: #ffffff;
    width: 300px;
}

/* Style the input fields */
input.reg-input-field {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    margin-top: 20px;
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #cc0100;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #fabfbf;
}

.reg-input-field {
    border-radius: 4px;
}

/* Create passport new page css */
.admin-section {
    display: flex;
    width: 82%;
}
.left-admin-menu {
    min-height: 80vh;
    width: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #f75e5e;
    margin-top: 10px;
}
.left-menu-ul {
    margin-top: 50px;
    padding-right: 10px;
}
.left-admin-menu a:not(:last-child) {
    border-bottom: 1px solid #cc0100;
    margin-bottom: 5px;

}

.left-admin-menu a {
    color: #cc0100;
    text-decoration: none;
    display: block;
    width: 143px;
    padding: 5px;
}

.left-admin-menu a:hover {
    background: #cc0100;
    color: #fff;
    border-radius: 4px;
}
.adm-itm {
    margin-right: 9px;
}
.left-admin-menu .adm-itm-active{
    background:#cc0100;
    color: #fff;
    border-radius: 4px;
}
.admin-body .add-item-section {
    width: 100%;
}
.admin-body {
    padding-left: 10px;
    width: 100%;
}
.wide-popup-box {
    width: 45%;
    padding: 20px;
    background: #ffffff;
    border-radius: 4px;
}
.popup-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.popup-input-labale {
    color: #323232;
    margin-bottom: 5px;
    margin-left: 4px;
}
.dm-link {
    width: 100px;
    overflow-x: auto;
    display: inline-block;
    padding: 5px 4px;
    border: 1px solid #f7caca;
    border-radius: 4px;
    margin-right: 3px;
    text-wrap: nowrap;
}
.dm-link-cp {
    padding: 5px;
    background: #f7caca;
    border-radius: 3px;
}
.dm-link-cp:hover {
    cursor: pointer;
    background: #cc0100;
    color: #fff;
}
.d-flex-both-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.d-flex-v-center {
    display: flex;
    align-items: center;
}

.code-request-hyperlink {
    margin-left: 10px;
    color: #cc0100;
}
.red-message {
    color: #cc0100;
}

.p-relative {
    position: relative;
}
.tooltip {
    display: none;
    position: absolute;
    min-width: 50px;
    height: 15px;
    top: -9px;
    left: 80px;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 11px;
    background: #cc0100;
    color: #fff;
}


/*error box*/
.error-box,.other-detail-box{
    width: 60%;
}
.error-message-box {
    height: 250px;
    background: #c15e5e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 15px;
    font-size: 30px;
    color: #fff;
}
.success-message-box {
    height: 250px;
    background: #5ca37f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 15px;
    font-size: 30px;
    color: #fff;
}
.error-header {
    font-size: 45px;
    font-weight: 600;
    padding: 10px 0px;
    color: #ffa5a5;
}
.success-header {
    font-size: 45px;
    font-weight: 600;
    padding: 10px 0px;
    color: #b6ffa5;
}
.already-have-account {
    margin-top: 10px;
    color: #3b3b3b;
}
.mail-detail {
    margin-top: 20px;
}
.mail-detail-info {
    color: #3b3b3b;
    font-size: 20px;
}
.mail-detail-email {
    margin-top: 5px;
}
.email-copy-icon {
    margin-left: 10px;
    background: #f7caca;
    padding: 3px 5px;
    border-radius: 3px
}

.email-copy-icon:hover {
    background: #fc9292;
    cursor: pointer;
}
.width100 {
    width: 100% !important;
}
.mail-body {
    height: 200px;
}

/*internationalization */
.select-language-list {
    position: absolute;
    display: none;
    top: 75px;
    right: -10px;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    max-height: 150px;
    overflow-y: auto;
}
.select-language-list a {
    display: block;
    color: #404040;
    padding: 4px 10px;
    text-decoration: none;
}
.select-language-list a:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.select-language-list a:hover {
    background: #e9e9e9;
}
.select-language-dropdown {
    position: relative;
    margin-left: 5px;
}
.lng-text {
    margin-left: 5px;
    font-size: 15px;
    text-transform: lowercase;
}
.langugage-btn {
    min-width: 52px;
    display: flex;
    align-items: center;
    color: #333;
    padding: 2px 5px;
}
.langugage-btn:hover {
    background: #333;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.lng-icon {
    font-size: 20px;
}

/*demo page css*/
.error-box,.other-detail-box,.wephi-account-step{
    width: 70%;
}
.wephi-message-box {
    height: 250px;
    border: 1px solid #c15e5e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 15px;
    font-size: 30px;
    color: #c15e5e;
}
.wephi-account-step {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 20px;
}
.wephi-description-box {
    display: flex;
}
.wephi-step-title {
    width: 70%;
    margin-top: 80px;
    color: #3b3b3b;
}
.wephi-step-description {
    width: 100%;
    background: #c15e5e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    padding: 15px;
    text-align: center;
    cursor: default;
}
.wephi-step-img-ill {
    width: 350px;
}
.wephi-title-header {
    font-size: 45px;
    font-weight: 600;
    padding: 10px 0px;
    color: #ffa5a5;
}
.already-have-account {
    margin-top: 10px;
    color: #3b3b3b;
}
.wephi-create-demo-account-btn {
    margin-top: 20px;
}
.create-demo-account-btn {
    background: #cc0100;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
}

.request-link-details {
    display: none;
    position: absolute;
    min-width: 212px;
    background: white;
    padding: 10px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(250, 132, 132, 0.3);
    border-right: 4px;
    max-width: 400px;
}
.top30 {
    top: 30px;
}
.bottom30 {
    bottom: 30px;
}
.request-message {
    border-bottom: 1px dotted #cc0100;
}
.request-message:hover {
    cursor: pointer;
}
.request-message:hover .request-link-details {
    display: block;
}
.request-tooltip-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.request-tooltip-para {
    margin-top: 10px;
}
.bulk-mail-send-btn {
    font-size: 15px;
    background: #cc0100;
    padding: 5px;
    border-radius: 4px;
    margin-right: 5px;
    color: #fff;
}
.bulk-mail-send-btn:hover {
    cursor: pointer;
    background: #8d0909;
}
.gradient-test {
    webkit-box-align: center;
    align-items: center;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-family: inherit;
    font-weight: 500;
    max-width: 100%;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background 0.1s ease-out 0s, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38) 0s;
    white-space: nowrap;
    background: linear-gradient(135deg, #6E5DC6, #0C66E4,#589eff);
    color: #fff;
    cursor: pointer;
    height: 28px;
    line-height: 2.28571em;
    padding: 5px 10px;
    vertical-align: middle;
    width: auto;
    -webkit-box-pack: center;
    justify-content: center;
    outline: none;
    border: none;
    gap: 2px;
    margin-right: 7px;
}
.prem-star {
    margin-top: 5px;
    margin-right: 5px;
}

.global-loader-section {
    background: #cc0100;
    height: 42px;
    width: 100px;
    position: absolute;
    bottom: -45px;
    margin-left: 49%;
    border-radius: 4px;
    display: none;
}
.global-loader {
    width: 5px;
    height: 20px;
    border-radius: 4px;
    display: block;
    margin: 11px auto;
    position: relative;
    background: currentColor;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 0.3s 0.3s linear infinite alternate;
}

.global-loader::after, .global-loader::before {
    content: '';
    width: 5px;
    height: 20px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    box-sizing: border-box;
    animation: animloader 0.3s  0.45s  linear infinite alternate;
}
.global-loader::before {
    left: -10px;
    animation-delay: 0s;
}

@keyframes animloader {
    0%   { height: 30px}
    100% { height: 4px}
}



.left-payment-admin-menu {
    border-right: 1px solid #ddd;
}
.left-payment-admin-menu a:not(:last-child) {
    border-bottom: 1px solid #cc0100;
    margin-bottom: 5px;

}

.left-payment-admin-menu a {
    text-decoration: none;
    display: block;
    width: 135px;
    padding: 5px;
}

.left-payment-admin-menu a:hover {
    background: #d5d5d5;
}
.payment-title {
    margin-top: 10px;
    margin-left: 10px;
}
.payment-mode-items {
    font-size: 25px;
}
.stripe {
    color: #243e5c !important;
}
.payment-right-section {
    border: 1px solid #ddd;
    margin-left: 10px;
    margin-top: 15px;
    padding:10px;
    border-radius: 4px;
}
.payment-summary-title {
    margin-bottom: 10px;
    font-size: 20px;
}
.payment-details {
    border: 1px solid #f69a9a;
    margin-bottom: 10px;
    border-radius: 4px;
}
.payment-items,.payment-header {
    display: grid;
    grid-template-columns: 200px 200px 200px;
}
.payment-header {
    border-bottom: 1px solid #ddd;
    background: #f69a9a;
}
.payment-item-title,.payment-item {
    padding-left: 7px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.payment-item-title:not(:first-child) {
    margin-left: 2px;
}
.promo-code-icon {
    width: 50px;
}

.payment-amount-info {
    display: flex;
    margin-bottom: 10px;
}

.payment-left-box {
    background: linear-gradient(135deg, #f75e5e, #f69a9a, #b3c0f6, #5884f9);
    width: 30px;
    height: 50px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.payment-price-details {
    display: flex;
    border:1px solid #ddd;
    width: 50%;
    align-items: center;
    font-size: 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-left: 3px;
}
.payment-price-title {
    padding: 5px 10px;
}
.payment-divider {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #ddd;
    width: 100%;
    height: 1px;
}
.payment-promo-discount {
    background: #fff0f0;
    width: 55%;
    border-radius: 4px;
    -webkit-box-shadow: 1px 1px 14px -7px rgba(51,51,51,1);
    -moz-box-shadow: 1px 1px 14px -7px rgba(51,51,51,1);
    box-shadow: 1px 1px 14px -7px rgba(51,51,51,1);
}
.promo-eligibility {
    padding: 10px;
    border-bottom: 2px dotted #ddd;
}
.promo-eligibility-message {
    color: #626262;
    font-size: 15px;
}
.promo-expire-date {
    font-size: 12px;
    color: #323232  ;
}
.promo-discount-proce-box {
    display: flex;
    align-items: center;
    padding: 10px 5px;
}
.payment-promo-image {
    padding-left: 10px;
    border-left: 2px solid #d5d5d5;
}
.payment-input-btn {
    border: 0;
    background: #f35555;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
}
.payment-input-btn:hover {
    cursor: pointer;
    background: #cc0100;
}

/* The container */
.container {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 26px;
    margin-right: 33px;
    margin-left: 10px;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #616060;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #f69a9a;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.payment-detail-summary {
    margin-top: 25px;
    width: 330px;
    background: #f69a9a;
    border-radius: 3px;
    padding: 7px
}
.pds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 6px;
    color: #3e3d3d;
}
.payment-total-payable-amount {
    border-top: 1px dotted #ddd;
    padding-top: 5px;
}
.demo-passport-btn-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.dm {
    display: flex;
    padding: 5px 10px;
    color:#2a2929;
}
.dm:hover {
    cursor: pointer;
    border-bottom: 1px solid #2a2929;
}
.dm-icon {
    margin-right: 5px;
}
.dm-divider {
    background: #d5d5d5 !important;
}
.passport-creation-success-box{
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.passport-creation-success-btn-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.passport-creation-success-btn-box a {
    color: #2a2929;
    margin-left: 10px;
}
.passport-creation-success-box p {
    margin-top: 7px;
 }
.p-success-cngrt {
    color: #039003;
    margin-bottom: 10px;
}
.dm-request-visa a{
    color: #2a2929;
}
.lgn-lng-drp {
    display: inline-block;
}
.login-multi-language {
    width: 450px;
    margin-top: 10px;
    position: relative;
}
.reset-login-lng-dropdown {
    top: 25px !important;
    right: 0 !important;
    left: 5px !important;
    width: 100px;
    max-width: 200px;
}
.formation-img-div {
    position: absolute;
}
.formation-img-div img {
    width: 170px;
}

/*forget password*/
.forget-password-div {
    display: flex;
    justify-content: right;
    margin-top: 10px;
}
.forget-password-div a {
    text-decoration: none;
    color: #0b57d0;
    font-weight: 700;
}
.forget-password-div :hover {
    color: #0747b0;
}
.login-here-div {
    font-weight: unset !important;
}

.non-login-header-lng {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*training popup*/
@keyframes zoom-in {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.close-btn {
    background-color: #cc0100;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 80px;
    text-decoration: none;
    text-align: center;
}

.close-btn:hover {
    background-color: #8d0909;
}


/*Training page*/
.listing-training-section {
    display: grid;
    grid-template-columns: 1.5fr 4fr 3fr 0.2fr;
}
.listing-training-section:nth-child(even) {
    background: #e8e8e8;
}

.long-popup-box{
    width: 70%;
    min-height: 40vh;
    animation: zoom-in 0.3s ease forwards;
}
.popup-body-box {
    display: flex;
    justify-content: space-around;
}
.popup-logo-section img {
    width: 55px;
}
.popup-desc-title {
    padding: 15px 0px 5px 0px;
    color: #2b2a2a;
}
.popup-input-field {
    width: 90% !important;
}
.popup-desc p {
    margin-top: 6px;
    font-size: 14px;
}
.popup-input-field-section {
    width: 50%;
    padding: 0px 10px;
}
.popup-details {
    display: flex;
    justify-content: end;
}
.reset-tm {
    margin-top: 0px !important;
}
.popup-close-btn {
    padding: 0px 10px 20px;
    display: flex;
    justify-content: end;
    font-size: 20px;
    font-weight: bold;
}
.popup-close-btn:hover {
    cursor: pointer;
    color: #3d3d3d;
}
.popup-loader-box {
    position: absolute;
    top: 10px;
}
.display-block {
    display: block !important;
}

.training-empty-desc {
    font-size: 15px;
}
.listing-coffret-section-header,.list-coffret-items-container{
    display: grid;
    grid-template-columns: .2fr 2fr 2fr .2fr
}

.display-none {
    display: none !important;
}

/*coffret*/
.id-card-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.id-card-front-box {
    position: relative;
}
.id-card-img {
    width: 530px;
}
.id-card-overlay {
    position: absolute;
    width: 530px;
    height: 100%;
    top: 0;
}
.id-card-back-box {
    position: relative;
}

.card-info {
    position: relative;
    margin-top: 95px;
}
.card-year {
    display: flex;
    justify-content: end;
    margin-right: 20px;
    font-weight: bold;
}
.card-mid-info {
    width: 263px;
    margin-left: 200px;
    font-weight: bold;
    margin-top: 6px;
}
.card-speciality {
    min-height: 37px;
}
.card-level {
    display: flex;
    justify-content: end;
    margin-right: 20px;
    font-weight: bold;
}
.card-firstName p {
    margin-top: 17px;
}
.card-born p {
    margin-top: 21px;
}
.card-regNumber {
    margin-top: 18px;
}
.rare-card-info {
    margin-top: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
}
.rare-card-status p {
    margin-top: 5px;
}
.id-card-back-box {
    margin-top: 20px;
}
.card-image {
    position: absolute;
    margin-top: 50px;
    margin-left: 25px;
}
.card-image img {
    width: 120px;
    height: 140px;
    border-radius: 3px;
}
.card-qr-code {
    position: absolute;
    bottom: 45px;
    right: 22px;
}
.card-qr-code img {
    width: 80px;
    height: 80px;
    border-radius: 3px;
}
.card-print-btn {
    display: flex;
    justify-content: center;
}
.card-divider{
    border-bottom: 1px dotted;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.listing-coffret-id-card-section-header,.list-coffret-id-card-items-container{
    display: grid;
    grid-template-columns: .2fr 1fr 3fr 1fr .2fr
}


/*passport pricing start*/
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 350px;
    min-height: 445px;
    margin: 20px;
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.passport-type {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.price {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.details {
    margin-bottom: 20px;
    height: 300px;
    padding-left: 20px;
}
.details li {
    list-style: square;
    margin-top: 10px;
    padding: 5px 0;
    color: #031a71;
}
.passport-validity {
    border-top: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

.selected {
    background-color: #007bff;
    color: #fff !important;
}
.selected li {
    color: #fff !important;
}
.selected-btn {
    background: linear-gradient(135deg, #c65d74, #e45d0c, #589eff) !important;
}

.buy-btn {
    background: linear-gradient(135deg, #6E5DC6, #0C66E4,#589eff);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #0056b3;
}

.pricing-card:hover .selected {
    background-color: #0056b3;
}

.banner-img {
    width: 450px;
    border-radius: 4px;
}
.passport-banner {
    display: flex;
}
.banner-desc {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-desc p {
    width: 70%;
    text-align: center;
    margin-top: 15px;
}

.option-title {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.options {
    display: flex;
    flex-direction: column;
}


.option-card-strip {
    padding: 10px;
}
.option-card-cinet {
    padding: 21px;
}
.option-card {
    display: flex;
    align-items: center;
    border: 1px solid;
    width: 75%;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card img {
    width: 100px;
}

.option-card span {
    font-size: 18px;
}
.select-payment {
    margin-top: 10px;
}
.select-payment p {
    font-style: italic;
    color: #374183;
    font-size: 15px;
}
.payment-option-active {
    border: 1px solid #cc0100;
}

.option-card-title {
    margin-left: 10px;
}
/*passport pricing ends*/


.passport-right-info-section {
    height: 67mm;
    position: relative;
}
.p-design-common {
    position: absolute;
    left: 14px;
}
.passport-name {
    top: 55px;
}
.p-design-common p {
    width: 300px;
    font-size: 14px;
}
.passport-nationality {
    top: 95px;
}
.passport-dob {
    top: 120px;
}
.passport-gender {
    top: 145px;
}
.passport-doi {
    top: 169px;
}
.passport-doe {
    top:194px
}
.passport-agency {
    top: 220px;
}
.visa-qr-code-image{
    top: 35px !important;
    left: 32px !important;
    width: 135px !important;
    height: 145px !important;
}
.visa-avatar-image {
    top: -75px !important;
    left: 54px !important;
    width: 90px !important;
    height: 100px !important;
}
.visa-name {
    position: absolute;
    top: 27px;
    left: 30px;
}
.visa-valid-from {
    position: absolute;
    top: 59px;
    left: 58px;
}
.visa-valid-until {
    position: absolute;
    top: 59px;
    left: 220px;
}
.visa-nationality {
    position: absolute;
    top: 91px;
    left: 60px;
}
.visa-p-number {
    position: absolute;
    top: 123px;
    left: 120px;
}
.visa-type {
    position: absolute;
    top: 154px;
    left: 35px;
}
.visa-agency {
    position: absolute;
    top: 185px;
    left: 89px;
}
.visa-denomi {
    position: absolute;
    top: 219px;
    left: 84px;
}
.passport-type-name {
    position: absolute;
    top: 61px;
    left: 54px;
    width: 125px;
    max-height: 40px;
}

.best-choice-blinking {
    display: inline-block;
    font-size: 20px;
    color: white;
    position: absolute;
    right: 0;
    top: 35px;
    padding: 5px 10px;
    border-radius: 4px;
    background: linear-gradient(45deg, #ff0000, #0000ff);
    animation: blink-gradient 2.5s infinite;
}

@keyframes blink-gradient {
    0% {
        background: linear-gradient(45deg, #ff0000, #0000ff);
    }
    50% {
        background: linear-gradient(45deg, #00ff00, #ff00ff);
    }
    100% {
        background: linear-gradient(45deg, #ff0000, #0000ff);
    }
}
.new-request-card-section {
    display: flex;
    width: 100%;
    justify-content: center;
}
.new-request-card-box {
    display: flex;
    width: 80%;
    justify-content: center;
    flex-wrap: wrap;
}

.new-request-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s;
    position: relative;
    margin-bottom: 20px;
    margin-left: 15px;
    padding: 10px;
}

.new-request-card:hover {
    transform: translateY(-10px);
}

.new-request-card-image {
    width: 100%;
    height: 260px;
}

.new-request-card-content {
    padding: 15px;
}

.new-request-card-title {
    font-size: 1.5em;
    margin: 0;
}

.new-request-card-description-title {
    font-size: 1.2em;
    color: #555;
}

.new-request-card-description {
    font-size: 1em;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 1px dotted #333;
}

.new-request-card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #c01413;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    margin-right: 10px;
}

.new-request-card-link:hover {
    background: #cc0100;
}

.new-request-tooltip {
    display: none;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    width: 94%;
    z-index: 100;
    bottom: 80px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(250, 132, 132, 0.3);
}
.rq-icon {
    margin-left: 10px;
}

.passport-purchase-status {
    font-size: 9px;
    padding: 5px 7px;
    border-radius: 25px;
    margin-left: 7px;
    color: #fff;
}
.not-paid {
    background: #dc3a3a;
}
.paid {
    background: #0a860a;
}
.banner-image {
    margin-top: 15px;
    margin-right: 10px;
}
.diploma-cert-container {
    position: relative;
    width: 297mm;
    height: 210mm;
    display: flex;
    margin-top: 15px;
}

.diploma-background-image {
    position: absolute;
    width: 297mm;
    height: 210mm;
}

.document-info {
    position: relative;
    width: 100%;
}
.document-speciality, .document-faculty {
    position: absolute;
    top: 293px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}
.document-speciality {
    height: 60px;
}
.document-faculty {
    top: 345px !important;
    font-style: italic;
}
.document-speciality p {
    width: 60%;
    text-align: center;
}
.document-name {
    position: absolute;
    top: 385px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
}
.document-desc1 {
    position: absolute;
    top: 422px;
    left: 244px;
    font-size: 18px;
    color: #423d3c;
}
.document-batch {
    position: absolute;
    top: 449px;
    left: 824px;
}
.document-mention {
    position: absolute;
    top: 472px;
    left: 313px;
}

.document-issue-date {
    position: absolute;
    top: 509px;
    left: 345px;
}
.document-print-btn {
    margin: 10px 0;
}
.certificate-name {
    position: absolute;
    top: 405px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.certificate-desc1 {
    position: absolute;
    top: 445px;
    left: 160px;
    font-size: 21px;
    color: #494545;
    width: 750px;
}
.certificate-issue-date {
    position: absolute;
    top: 552px;
    left: 324px;
    font-size: 20px;
}
.passport-number-container {
    font-size: 11px;
    position: absolute;
    right: 24px;
    top: 15px;
    color: #333;
    letter-spacing: 4px;
}
.certificate-title {
    position: absolute;
    top: 287px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 23px;
    font-weight: bold;
}
.document-diploma-id {
    position: absolute;
    bottom: 112px;
    left: 715px;
    font-size: 11px;
    font-weight: 700;
}
.document-certificate-id {
    position: absolute;
    bottom: 83px;
    left: 690px;
    font-size: 11px;
    font-weight: 700;
}
.certificate-speciality {
    text-transform: uppercase;
    position: absolute;
    top: 312px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    min-height: 60px;
}
.certificate-speciality p {
    width: 60%;
    text-align: center;
}

.become-reseller-section {
    width: 450px;
    margin-top: 15px;
    padding: 10px 0 10px 5px;
}
.become-reseller-section a {
    text-decoration: none;

}

.error {
    padding: 10px 10px;
    font-size: 17px;
    text-align: center;
    background: #ffe8e8;
    border-radius: 4px;
    width: 70%;
    color: #333232;
    margin-top: 20px;
}