:root {
    /* Primary Colors */
    --primary-color: #004a7c;
    --primary-color-light: #0071bc;
    --primary-color-dark: #002855;
    --primary-color-hover: #003366;

    /* Secondary Colors */
    --secondary-color: #e0e0e0;
    --secondary-color-light: #f4f4f4;
    --secondary-color-dark: #b3b3b3;
    --secondary-color-hover: #a3a3a3;

    /* Text Colors */
    --text-color: #333333;
    --text-light-color: #666666;
    --text-dark-color: #111111;
    --text-link-color: #0071bc;

    /* Background Colors */
    --background-color: #ffffff;
    --background-color-light: #f9f9f9;
    --background-color-dark: #e6e6e6;

    /* Button Colors */
    --button-color: #004a7c;
    --button-hover-color: #003366;
    --button-text-color: #ffffff;

    /* Alert Colors */
    --success-color: #388e3c;
    --success-hover-color: #287830;
    --error-color: #d32f2f;
    --error-hover-color: #c12b2b;
    --warning-color: #fbc02d;
    --warning-hover-color: #f9a825;

    /* Accent Colors */
    --accent1-color: #d32f2f;
    /* Red - Alerts, Errors */
    --accent2-color: #388e3c;
    /* Green - Success messages, Validations */

    /* Other Colors */
    --border-color: #e5e7eb;

    /* Link Hover Color */
    --text-link-hover-color: #005a8e;

    /* Disabled Elements */
    --disabled-background-color: #cccccc;
    --disabled-text-color: #999999;

    /* Table Colors */
    --table-header-color: #f2f2f2;
    --table-row-color: #ffffff;
    --table-row-alt-color: #f9f9f9;
    --table-border-color: #dddddd;

    /* Input Fields and Forms */
    --input-background-color: #ffffff;
    --input-border-color: #cccccc;
    --input-placeholder-color: #aaaaaa;
    --input-focus-border-color: #004a7c;

    /* Navbar and Footer */
    --navbar-background-color: #004a7c;
    --footer-background-color: #002855;

    /* Tooltip and Popover */
    --tooltip-background-color: #333333;
    --tooltip-text-color: #ffffff;

    /* Background Color */
    --background-cream-color: #f7f7f7;
}

body {
    /* font-family: 'Nunito', sans-serif; */
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-color);
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

ul {
    padding-left: 0;
    margin: 0;
}

input:focus {
    box-shadow: none !important;
}

b,
strong {
    font-weight: 500 !important;
}

tbody a:hover {
    color: var(--primary-color) !important;
}

/*======================= Common =======================*/
.top-space-80 {
    padding-top: 80px;
}

.bottom-space-80 {
    padding-bottom: 80px;
}

.space-80 {
    padding: 80px 0;
}

.top-space-120 {
    padding-top: 80px;
}

.bottom-space-120 {
    padding-bottom: 120px;
}

.space-120 {
    padding: 120px 0;
}

.center {
    text-align: center;
}

.heading {
    max-width: 650px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.box-card {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/*%%%%%%%%%%%%% Navbar %%%%%%%%%%%%%*/
.top-bar {
    padding: 5px 0;
}

.ftco_navbar {
    background: var(--background-color-light);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.ftco_navbar .dropdown-menu {
    top: 70px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (min-width: 991px) {
    .ftco_navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(50px);
        transition: .5s ease all;
    }

    .ftco_navbar .dropdown-menu.show {
        background-color: var(--button-text-color);
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
        transition: .5s ease all;
    }
}

.ftco_navbar .dropdown-item:focus,
.dropdown-item:hover {
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--background-color-light);
}

.navbar-brand {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 60px;
}

.menu-logo {
    width: 150px;
}

.top-bar .social-media {
    float: right;
    padding: 15px 0;
}

.social-media p a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 7px;
    margin-right: 7px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.top-bar .top-search-area {
    padding: 10px 0;
}

.searchform {
    height: 40px;
    border-radius: 5px;
    margin-top: 5px;
    border: 1px solid var(--primary-color) !important;
}

.searchform .form-control {
    width: calc(100% - 40px);
    border: none;
    background: #fff;
    color: var(--text-color) !important;
    font-size: 14px;
}

.searchform .search {
    width: 40px;
    height: 38px;
    padding: 10px;
    background: var(--primary-color) !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.searchform input {
    color: var(--text-color);
    background: transparent !important;
    height: 38px;
}

.searchform .search span {
    font-size: 22px;
    color: #fff;
}

.search-option {
    background: transparent !important;
    border: none;
    font-size: 16px;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-left: 1px solid var(--primary-color);
    color: #505863;
    line-height: 30px;
    border-radius: 0;
}

.search-option option {
    border-radius: 0;
    background: var(--background-color);
    color: var(--button-text-color);
}

.search-option option:hover {
    background: var(--primary-color-hover) !important;
}

select option::before {
    border-radius: 0;
}

select option::after {
    border-radius: 0;
}

.search-title {
    color: #505863;
    margin-bottom: 20px;
}

.search-option:focus-visible {
    outline: none;
}

.alert-test {
    position: absolute;
    top: 62px;
    background: var(--accent1-color);
    color: #fff;
    right: 0;
    padding: 5px 15px;
    z-index: 999;
    border-radius: 3px;
    left: 0;
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a {
    color: var(--primary-color) !important;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    font-size: 14px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--text-color);
    letter-spacing: 2px;
    position: relative;
    opacity: 1 !important;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
    color: var(--primary-color);
}

.ftco_navbar .dropdown-item {
    padding: 10px 15px;
}

.dropdown-item:hover {
    background-color: var(--background-color-light);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: 0.5s ease-in-out;
}

.social-media a {
    color: var(--primary-color);
    transition: 0.5s ease-in-out;
}

.social-media a:hover {
    color: #fff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: 0.5s ease-in-out;
}

.content {
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

/* @media (min-width: 1200px) {
  .container {
    max-width: 1280px !important;
  }
} */

@media (max-width: 769px) {
    .searchform {
        width: 100%;
    }

    .top-bar .social-media {
        margin: 0 auto;
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        padding-left: 0.2rem;
    }
}

/*===============Content======================*/
.home-page {
    padding: 80px 0;
}

.vr-home-banner {
    background-size: cover;
    background-position: center;
}

.vr-home-banner .overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    padding: 20em 0 15em 0;
}

.hero-content h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--button-color);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px var(--button-text-color);
}

.hero-content p {
    color: var(--text-color);
    font-size: 1.4rem;
    line-height: 30px;
    max-width: 750px;
    margin: 30px auto;
}

@media (max-width: 991px) {
    .vr-home-banner .overlay {
        padding: 5em 0 7em 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

.hero-content {
    text-align: center;
}

.filter-area-title {
    background: #142580;
    padding: 5px 15px;
    border-radius: 10px;
}

.filter-area-title h4 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.filter-area-title i {
    font-size: 80%;
}

.filter-group {
    background: #fff;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.filter-title {
    background: var(--primary-color);
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.filter-title h5 {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.filter-serarch {
    padding: 10px 5px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-item input {
    height: 30px;
    border-radius: 20px;
    font-size: 12px;
}

.filter-selected {
    padding: 15px;
}

.filter-selected li {
    list-style: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: inline-flex;
    margin: 5px 2px;
    padding: 3px 10px;
    border-radius: 13px;
    font-size: 14px;
    text-transform: capitalize;
}

.job-summary {
    background: #fff;
    transition: 0.3s ease-in-out;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.job-summary .job-title {
    color: #142580;
    font-weight: 500;
    margin-bottom: 0;
}

.job-summary .location {
    font-size: 12px;
    margin: 7px 0;
}

.job-summary .post-auth-info {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}

.job-summary .post-short {
    font-size: 14px;
    line-height: 18px;
}

.job-summary .time-marker span {
    font-size: 14px;
}

.job-summary:hover {
    transition: 0.3s ease-in-out;
    box-shadow: rgba(9, 78, 85, 0.25) 0px 25px 50px -12px;
    -webkit-box-shadow: rgba(9, 78, 85, 0.25) 0px 25px 50px -12px;
}

.circular-bookmark-form {
    width: 28px;
    height: 25px;
}

.flex-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.time-marker .btn-marker {
    float: right;
    background: var(--background-color);
    color: var(--primary-color);
    font-size: 14px;
    border: 1px solid var(--primary-color);
    padding: 2px 6px;
    opacity: 0.5;
    transition: 0.5s ease-in-out;
}

.time-marker .btn-marker:hover {
    background: var(--primary-color);
    color: var(--button-text-color) !important;
    border: 1px solid var(--primary-color);
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.time-marker .btn-marker.marked {
    color: var(--button-text-color) !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    opacity: 1;
}

.copyright {
    background: var(--footer-background-color);
    padding: 30px;
    bottom: 0;
}

.copyright p {
    color: var(--secondary-color);
    margin: 0;
}


.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 999;
}

.to-top {
    background: var(--primary-color) !important;
    color: var(--button-text-color) !important;
    font-size: 20px;
    border: 1px solid var(--primary-color) !important;
    border-radius: 5px;
    width: 35px;
    height: 40px;
    padding: 5px;
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 8px 15px #0404046b;
}

.to-top:hover,
.to-top:focus {
    background: #068e33;
    color: #fff;
    transition: 0.5s;
    box-shadow: none;
    margin-bottom: -2px;
}

#back_to_top:hover {
    cursor: pointer;
}

#back_to_top.show {
    opacity: 1;
    visibility: visible;
}

.signup-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.singup-content {
    max-width: 400px;
    margin: -50px auto 50px auto;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: 20px;
    background: #fff;
}

.singup-content h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 500;
}

.singup-content .singup-group input {
    border-radius: 30px !important;
    border: none;
    margin-bottom: 10px !important;
    padding-left: 50px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.singup-content .singup-group input:focus {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
}

.singup-content .input-group-text {
    position: absolute;
    z-index: 9;
    background: transparent;
    border: none;
    top: 2px;
    left: 5px;
    font-size: 20px;
    color: var(--primary-color);
}

.btn-signup {
    border: none;
    border-radius: 25px;
    background-image: linear-gradient(to left top, #104369, #15749c, #21a8cc);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 25px;
}

.account-type-check label {
    font-size: 13px;
}

.terms-checkbox {
    font-size: 14px;
    margin-right: 0 !important;
}

.redi-signin {
    color: var(--primary-color);
    font-weight: 500;
}

.user-nav .nav-link {
    padding: 15px !important;
}

.user-nav img {
    width: 35px;
    height: 35px;
    border-radius: 30px;
    object-fit: cover;
    object-position: left top;
}

/*===========================Profile======================*/

.profile {
    padding: 130px 0 50px 0;
}

.user-intro {
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user-arca li {
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.user-details {
    background: #fff;
}

.user-details .tabs {
    margin-bottom: 0px;
}

.btn-theme {
    line-height: 24px;
    padding: 5px 20px;
    border-radius: 30px;
    color: var(--primary-color);
    background: var(--background-color);
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 3px;
    margin-right: 5px;
    transition: 0.5s ease-in-out;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 1px;
    transition: 0.5s ease-in-out;
}


.user-summary {
    text-align: center;
}

.user-arca-point {
    font-size: 18px;
    font-weight: 500;
}

.user-avatar {
    width: 150px;
    height: 150px;
    margin: -80px auto 30px auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: white;
    border-radius: 10px;
}

.user-avatar img {
    border-radius: 5px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: left top;
}

@media (max-width:769px) {
    .user-summary {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .user-avatar {
        margin: 0 auto;
    }

    .connection-group {
        text-align: center !important;
    }

    .user-arca {
        text-align: center !important;
        margin-bottom: 20px;
    }
}

.user-summary .user-name {
    font-size: 20px;
    font-weight: 500;
}

.user-summary .user-address {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 17px;
}

.user-summary .last-degree {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 17px;
}

.user-summary .user-position {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 17px;
}

.connection-group {
    text-align: right;
}

.user-img-upload {
    width: 150px;
    height: 150px;
    padding: 0;
}

.user-img-upload img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.scholarship-img-upload {
    width: 150px;
    height: auto;
    padding: 0;
    margin-bottom: 2rem;
}

.scholarship-img-upload img {
    width: 150px;
    object-fit: cover;
}

.about-intro p {
    line-height: 20px;
}

.personal-information p {
    margin-bottom: 10px;
}

.personal-information .pi-icon {
    color: var(--primary-color);
    width: 30px;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 3px;
    height: 30px;
    margin-right: 10px;
    padding: 2px;
    text-align: center;
    border-radius: 15px;
}

@media(min-width: 769px) {
    .user-data {
        padding-left: 100px;
    }

    .personal-information {
        padding-left: 30px;
        border-left: 2px solid #ccc;
    }
}

.academic-row {
    display: flex;
    position: relative;
}

.delete-row {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.btn-delete {
    color: var(--error-color);
    background: var(--background-color);
    padding: 0;
}


.academic-lable {
    width: 200px;
    text-align: right;
    padding-right: 30px;
    flex-shrink: 0;
}

.academic-lable h6 {
    font-weight: 500;
    margin-bottom: 0;
}

.academic-lable p {
    color: #8c8c8c;
    font-size: 14px;
}

.academic-details {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
    border-left: 1px solid var(--border-color);
}

.academic-details h6 {
    font-weight: 500;
    margin-bottom: 10px;
}

.academic-details p {
    font-size: 14px;
    line-height: 25px;
}

.academic-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    background: #fff;
    display: block;
    margin-left: -30px;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 2px 4px;
    text-align: center;
}

.tab-pane {
    position: relative;
}

.tab-detail-title {
    width: 35px;
    background: var(--primary-color);
    padding: 13px;
    color: white;
    position: absolute;
    left: 25px;
    top: 0;
}

.vericaltext {
    width: 1px;
    word-wrap: break-word;
    font-family: monospace;
    /* this is just for good looks */
}

.user-details .nav-link {
    border-radius: 20px;
    padding: 5px 18px;
    color: #505863;
}

.nav-tabs .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
    padding: 5px 18px;
    border: none;
}

/*.nav-pills .nav-link.active::before{
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 40px;
  left: 45px;
  border: 15px solid;
  border-color: transparent transparent var(--primary-color) transparent;
}*/

.user-details .nav-tabs {
    border: none;
}

.ipd-title {
    margin-bottom: 20px;
}

.theme-input {
    background: var(--input-background-color);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: none;
}

.theme-input:focus {
    /*  color: #fff;
  background: var(--primary-color);
  border-radius: 18px;*/
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}


.datepicker {
    padding: 0 !important;
    width: 200px;
    color: #666;
    background: #fff;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: none;
}

.datepicker:focus {
    border-radius: 18px;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
}

.datepicker.input-group {
    height: 36px !important;
}

.date-divider {
    background: #fff;
    border: none;
}

.form-button {
    text-align: right;
}

.form-button button {
    margin-right: 10px;
}

.required label:after {
    color: #ff1f59;
    content: ' *';
    display: inline;
}

.required .not-mendatory:after {
    display: none;
}

.btn-theme-color {
    background: var(--background-color);
    border-radius: 999px;
    box-shadow: var(--primary-color) 0 10px 20px -10px;
    box-sizing: border-box;
    color: var(--primary-color) !important;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 4px 15px;
    width: fit-content;
    word-break: break-word;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease-in-out 0s;
}

.btn-theme-color:hover {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color) !important;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: var(--primary-color) 0 5px 15px -10px;
    -webkit-box-shadow: var(--primary-color) 0 5px 15px -10px;
}

.btn-theme-color:active {
    transform: scale(0.97);
    transition: all 0.3s ease-in-out 0s;
}

.btn-red-color {
    background: #ee1202;
    border-radius: 999px;
    box-shadow: #ee1202 0 10px 20px -10px;
    box-sizing: border-box;
    color: var(--button-text-color) !important;
    cursor: pointer;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 5px 25px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    border: 0;
    transition: all 0.3s ease-in-out 0s;
}

.btn-red-color:hover {
    background: #ee1202;
    color: var(--button-text-color);
    transition: all 0.3s ease-in-out 0s;
}

.btn-green-color {
    background: var(--primary-color);
    border-radius: 999px;
    box-shadow: var(--primary-color) 0 10px 20px -10px;
    box-sizing: border-box;
    color: var(--button-text-color) !important;
    cursor: pointer;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 5px 20px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    border: 0;
    transition: all 0.3s ease-in-out 0s;
    border: 1px solid var(--primary-color);
}

.btn-green-color:hover {
    border: 1px solid var(--primary-color);
    background: var(--background-color);
    color: var(--primary-color) !important;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: var(--primary-color) 0 5px 15px -10px;
    -webkit-box-shadow: var(--primary-color) 0 5px 15px -10px;
}

.btn-green-color:active {
    background: var(--primary-color) !important;
    transform: scale(0.97);
    transition: all 0.3s ease-in-out 0s;
}

.btn-theme-color a {
    color: var(--primary-color) !important;
}

.btn-green-color a {
    color: var(--button-text-color) !important;
}

.added-current-info {
    padding: 20px 0;
}

.added-current-info .label-added {
    font-size: 20px;
    font-weight: 500;
}

.double-input {
    width: 48%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    margin-right: 10px;
}

.swal2-popup {
    font-size: 0.6rem !important;
    font-family: Georgia, serif;
}

.form-check {
    padding: 15px;
}

.form-check label::after {
    display: none;
}


/*===========================Circular Add======================*/

.page-content {
    padding: 80px 0;
}

.content-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.content-card .circular-row h1{
    font-size: 1.8rem;
}

.content-card .circular-row h2{
    font-size: 1.5rem;
}


.content-card .circular-row h3{
    font-size: 1.3rem;
}

.content-card .circular-row h4{
    font-size: 1.2rem;
}


.add-circular-page {
    padding: 80px 0;
}

.add-circular {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
}

.add-circular input,
.add-circular textarea {
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    margin-bottom: 15px;
}

.add-circular input:hover {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.add-circular input:focus {
    border-bottom: 1px solid var(--primary-color);
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
}

.add-circular textarea:hover {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.add-circular textarea:focus {
    border-bottom: 2px solid var(--primary-color);
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
}

.form-title {
    margin-bottom: 20px;
}

.form-title h5 {
    font-size: 1.5rem;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 5px;
}

.form-control:focus {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tox-tinymce {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

/*=========================== Circular Details ======================*/
.circular-row {
    margin-bottom: 20px;
}

.circular-row h4 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.circular-row p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 20px;
}

.circular-row .circular-title {
    color: var(--primary-color);
    font-size: 18px;
}

.auth-info {
    padding: 30px 15px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.auth-info img {
    width: 100px;
    margin-bottom: 20px;
}

.auth-text h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.auth-text p {
    color: #74788d;
    font-size: 14px;
}

.circular-info {
    margin-bottom: 30px;
}

.circular-info .circular-row:nth-child(1) {
    padding-right: 50px;
    position: relative;
}

.favourite-detail-page {
    position: absolute;
    right: 0;
    top: 0;
}

.btn-marker {
    float: right;
    background: var(--background-color);
    color: var(--primary-color) !important;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    padding: 2px 6px;
    opacity: 0.5;
    transition: 0.5s ease-in-out;
}

.btn-marker:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.btn-marker.marked {
    color: #fff !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    opacity: 1;
}

.circular-summary {
    background: #f8f8fb;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.circular-summary .header {
    background: var(--primary-color);
    padding: 15px;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.circular-summary .header h5 {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.cs-content {
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cs-content p {
    font-size: 15px;
}

.cs-content strong {
    font-weight: 500;
}

.keyword {
    list-style: none;
    display: inline-flex;
    margin: 5px 5px;
    padding: 2px 8px;
    border-radius: 17px;
    font-size: 13px;
    text-transform: capitalize;
}

.bootstrap-tagsinput .tag {
    margin-right: 5px;
    color: #7286a2 !important;
    background: #f5f5f5;
    padding: 3px 7px;
    border-radius: 15px;
    line-height: 30px;
    text-transform: capitalize;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.bootstrap-tagsinput {
    width: 100%;
    border: none !important;
    border-radius: 5px;
    border-bottom: 2px solid #fff !important;
    box-shadow: rgb(50 50 105 / 15%) 0px 2px 5px 0px, rgb(0 0 0 / 5%) 0px 1px 1px 0px !important;
    margin-bottom: 15px;
}

.user-circular-list {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
}

.user-circular-list .card-title h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

.user-circular-list tr {
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 10px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 10px 0px;
}

.user-circular-list .table {
    border-collapse: separate;
    border-spacing: 0 7px;
}

.user-circular-list th {
    color: #303e67;
    font-size: 1rem;
    border: none;
}

.user-circular-list td {
    color: #74788d;
    font-size: 1rem;
    border: none;
}

.user-circular-list .table th:nth-child(1),
.user-circular-list .table td:nth-child(1) {
    min-width: 50px;
}

.action-btn a {
    margin: 0 5px 5px 0;
}

.action-btn .fa-eye {
    color: var(--primary-color);
}

.action-btn .fa-edit {
    color: var(--warning-color);
    padding: 3px 7px;
    border: 1px solid var(--warning-color);
    border-radius: 10px;
    font-size: 80%;
}

.action-btn .fa-edit:hover,
.action-btn .fa-edit:focus {
    background: var(--warning-hover-color);
    color: var(--button-text-color);
}

.action-btn .fa-trash-alt {
    color: var(--error-color);
    padding: 3px 9px;
    border: 1px solid var(--error-color);
    border-radius: 10px;
    font-size: 80%;
}

.action-btn .fa-trash-alt:hover,
.action-btn .fa-trash-alt:focus {
    background: var(--error-hover-color);
    color: var(--button-text-color);
}

.my-circular-summary .title {
    color: var(--primary-color);
    font-size: 16px;
}

.my-circular-summary .date {
    font-style: italic;
    font-size: 13px;
}

.my-circular tr {
    background: var(--table-row-color);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 10px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 10px 0px;
}

.my-circular .table {
    border-collapse: separate;
    border-spacing: 0 7px;
}

.thead-light th {
    background-color: var(--table-header-color);
    border-color: var(--table-header-color);
}

.my-circular th,
.my-circular td {
    border: none;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
}

.my-applied-circular .check-status,
.my-applied-circular .action-btn {
    vertical-align: middle;
}

.my-applied-circular .check-status .ti-check {
    color: var(--primary-color-light);
}

.recruitment-status {
    text-align: center;
    vertical-align: middle;
}

.middle-align {
    vertical-align: middle;
}

.recruitment-status-icon {
    color: #777;
    text-align: center;
    background: var(--background-color);
    width: 35px;
    height: 35px;
    margin: 0 auto;
    padding: 8px 10px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.recruitment-status-icon.active {
    background: #c3f0f4;
    color: var(--primary-color);
    box-shadow: rgba(10, 164, 149, 0.58) 0px 1px 4px;
    -webkit-box-shadow: rgba(10, 164, 149, 0.58) 0px 1px 4px;
}

.my-circular .fa-check {
    color: var(--primary-color);
}

.similar-circular .sc-title {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.similar-circular .circular-info {
    margin-bottom: 0;
}

.similar-circular .sc-card {
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.similar-circular .similar-detail {
    margin-top: auto;
    text-align: center;
}

.invalid-page {
    padding: 15px;
    margin-bottom: 20px;
}

.invalid-page h3 {
    margin-bottom: 20px;
}

.invalid-page h1 {
    color: #ccc;
}

.email-verify-warning {
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    -webkit-box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    position: relative;
}

.email-verify-warning .alert-warning {
    margin: 20px auto;
    position: absolute;
    left: 12px;
    right: 12px;
    text-align: center;
    padding: 10px;
    font-size: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warning-color);
    border: none;
    color: var(--primary-color);
}

.email-verify-warning .verify-warning-sapn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px 3px 4px;
    border-radius: 30px;
    background-color: var(--button-text-color);
    margin-right: 10px;
    height: 22px;
    width: 22px;
    color: var(--warning-color);
}

.email-verify-warning span i {
    font-size: 12px;
    /* Keep the icon size smaller */
    line-height: 1;
    /* Ensure no extra space around the icon */
}

#resendVerificationButton {
    color: #ffffff;
    text-decoration: underline;
}

#resendVerificationButton:hover {
    color: var(--navbar-background-color) !important;
    text-decoration: underline;
}

/* For summernote override unordered and order list */
.note-editable ul {
    list-style: disc !important;
    list-style-position: inside !important;
}

.note-editable ol {
    list-style: decimal !important;
    list-style-position: inside !important;
}

.note-editable {
    height: 200px;
}

.home-applied {
    float: right;
    margin-right: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 3px 15px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.home-applied i {
    margin-right: 5px;
    color: var(--primary-color);
}

.details-applied {
    margin-bottom: 20px;
    background: var(--primary-color);
    border-radius: 3px;
    padding: 5px 15px;
    color: var(--button-text-color);
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.details-applied i {
    margin-right: 5px;
    color: var(--button-text-color);
}

.card {
    padding: 15px;
    margin: 15px 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cv-header {
    padding: 15px;
}

.cv-avater {
    width: 120px;
    height: 150px;
    margin: 0 auto 20px auto;
}

.cv-avater img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cv-career h3 {
    color: #505863;
}

.cv-short-info h6 {
    margin-bottom: 0;
    line-height: 20px;
}

.cv-short-info p {
    margin-bottom: 0;
    line-height: 20px;
}

.cv-details {
    padding-right: 15px;
}

.cv-details-row {
    margin-bottom: 15px;
}

.cv-row-title {
    color: #505863;
    font-size: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 5px !important;
    margin-top: 20px !important;
}

.cv-details-row h4,
.cv-details-row h5,
.cv-details-row p {
    margin-bottom: 0;
}

.cv-row-content {
    margin-bottom: 15px;
}

.cv-row-content h5 {
    font-size: 16px;
    color: #505863;
}

.cv-row-content p {
    line-height: 20px;
}

.cv-social {
    margin-top: 25px;
}

.cv-social p {
    text-align: left;
    margin-bottom: 10px;
}

.cv-social .btn-theme {
    width: 40px;
    color: #333;
}

.cv-social i {
    margin-right: 15px;
    width: 10px;
    float: left;
}

.cv-row-content strong {
    font-weight: 500;
}

.cv-row-content .small-space {
    font-size: 14px;
    margin: 7px 0;
}

.cv-row-content a {
    font-weight: 500;
    color: #007bff;
}

.invalid-section {
    text-align: center;
    margin: 50px 0;
}

.invalid-section h1 {
    font-size: 100px;
    color: var(--primary-color);
}

.invalid-section h2 {
    font-size: 50px;
    color: orange;
    margin-bottom: 20px;
}

.invalid-section p {
    font-size: 25px;
}

.date-range-row .form-check {
    width: 100px;
    margin-left: 15px;
}

.large-shadow {
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 15px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.dashboard-content {
    margin-bottom: 30px;
    height: 170px;
}

.dashboard-content h3 {
    font-size: 35px;
    margin: 10px;
}

.dashboard-content p {
    color: #444;
}

.dashboard-content.applied h3 {
    color: #e85d04;
}

.dashboard-content.favourite h3 {
    color: var(--primary-color);
}

.dashboard-content.viewed h3 {
    color: #5e5df0;
}

.action-btn .fa-eye {
    color: var(--primary-color);
    padding: 2px 5px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.action-btn .fa-eye:hover,
.action-btn .fa-eye:focus {
    background: var(--primary-color);
    color: #fff;
}

.card-content {
    font-size: 16px;
    color: #444;
}

.dashboard-intro {
    padding: 25px;
    height: 170px;
}

.profile-complete-bar .progress {
    height: 0.3rem;
}

.profile-complete-bar .progress-bar {
    height: 0.3rem;
}

.dashboard-intro .avater {
    flex: 0 0 30%;
}

.dashboard-intro .d-avater {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.dashboard-intro .avater img {
    border-radius: 3px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

.dashboard-content-icon {
    width: 50px;
    height: 50px;
    box-shadow: inset rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.list-button {
    padding-top: 15px;
    text-align: right;
}

.profile-type p {
    margin-bottom: 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    padding-top: 10px;
}

.profile-type span {
    color: #fff;
    font-weight: 500;
}

.d-avater-content {
    display: flex;
}

.account-complete {
    flex: 0 0 70%;
    text-align: right;
    padding-left: 15px;
}

.account-complete h4 {
    color: #505863;
}

.account-complete p {
    color: #444;
    margin-bottom: 0;
    line-height: 20px;
    font-size: 14px;
}

.dashboard-social li {
    margin-top: 15px;
    list-style: none;
    display: inline-block;
}

.dashboard-social a {
    color: var(--primary-color);
    border: 1px solid;
    padding: 2px 12px;
    font-size: 12px;
    border-radius: 10px;
    margin-left: 6px;
    transition: 0.3s ease-in-out;
}

.dashboard-social a:hover {
    color: #fff;
    background: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.dashboard-card-title {
    padding: 15px;
    color: var(--warning-color);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.latest-circular-row {
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    margin: 0px 0 10px 0;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 10px 0px;
    transition: 0.3s ease-in-out;
}

.latest-circular p {
    margin: 0;
}

.latest-circular a {
    color: var(--primary-color);
}

.btn-list-view {
    padding: 2px 10px;
    line-height: 1;
    border-radius: 12px;
    font-size: 13px;
    border: 1px solid var(--primary-color);
    transition: 0.3s ease-in-out;
}

.btn-list-view:hover,
.btn-list-view:focus {
    color: var(--button-text-color);
    background: var(--primary-color);
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

.btn-list-view:active {
    transition: 0.3s ease-in-out;
    color: var(--button-text-color) !important;
    background: var(--primary-color) !important;
}

.latest-circular-row:hover p {
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.profile-complete-bar {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 10px;
}

.profile-complete-bar p {
    margin-bottom: 0px;
    color: #002751;
    font-size: 15px;
}

.profile-complete-bar span {
    font-weight: 400;
}

.profile-complete-bar .personal {
    background-color: var(--primary-color);
    color: #fff;
}

.personal-bar {
    padding: 30px 15px;
}

.personal-bar .info-count span {
    font-size: 12px;
    font-weight: 500;
}

.small-card {
    position: relative;
    padding: 30px 10px;
    margin-bottom: 0 !important;
}

.small-card .icon {
    width: 39px;
    height: 40px;
    margin: 10px auto;
    border-radius: 50%;
    padding: 5px 3px;
    color: #fff;
    background: var(--primary-color);
}

.small-card .icon::after {
    display: block;
    content: '';
    border: 1px solid var(--primary-color);
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin-top: -37px;
    margin-left: -7px;
}

.small-card .icon span {
    font-size: 20px;
    padding: 5px;
    border-radius: 50%;
}

.small-card .info-count {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    font-size: 25px;
    line-height: 40px;
    background-color: rgba(253, 182, 19, 0.7);
    border-top-right-radius: 15px;
    border-bottom-left-radius: 5px;
}

.info-added {
    margin-top: -7px;
}

.profile-complete-bar .academic {
    background-color: #2ec4b6;
}

.profile-complete-bar .training {
    background-color: #80ed99;
}

.profile-complete-bar .research {
    background-color: #0077b6;
}

.profile-complete-bar .publication {
    background-color: #0096c7;
}

.profile-complete-bar .award {
    background-color: #00b4d8;
}

.profile-complete-bar .membership {
    background-color: #758bfd;
}

.profile-complete-bar .experience {
    background-color: #3f37c9;
}


.circular-row strong {
    font-weight: 500;
}

.circular-row a {
    color: #0061a3;
}

.circular-row ul {
    color: #495057;
    padding-left: 40px;
}

.academic-row strong {
    font-weight: 500;
}

.academic-row a {
    color: #0061a3;
}

.academic-row ul {
    color: #495057;
    padding-left: 40px;
}

.page-not-found {
    margin: -8px;
    min-height: 100vh;
    padding: 30px 0;
    background: linear-gradient(#f1f3ff, #ebebeb);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Varela Round", Sans-serif;
    text-shadow: 0 30px 10px rgba(0, 0, 0, 0.15);
}

.page-not-found:before {
    height: 105vmax;
    width: 105vmax;
    z-index: -4;
}

.page-not-found:after {
    height: 80vmax;
    width: 80vmax;
    z-index: -3;
}

.main {
    text-align: center;
    z-index: 5;
}

.page-not-found p {
    font-size: 25px;
    margin-top: 0;
}

.page-not-found h1 {
    font-size: 150px;
    margin: 0;
}

.page-not-found button {
    background: linear-gradient(#a0a8ff7d, #cbc8fd3b);
    padding: 0 12px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
    outline: none;
    color: #000;
    font: 400 16px/2.5 Nunito, "Varela Round", Sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.bubble {
    background: linear-gradient(#a0a8ff7d, #cbc8fd3b);
    border-radius: 50%;
    box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
    color: #000;
}

.bubble:before,
.bubble:after {
    content: "";
    background: linear-gradient(#a0a8ff7d, #cbc8fd3b);
    border-radius: 50%;
    box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.bubble:nth-child(1) {
    top: 15vh;
    left: 10vw;
    height: 22vmin;
    width: 22vmin;
}

.bubble:nth-child(1):before {
    width: 13vmin;
    height: 13vmin;
    bottom: -25vh;
    right: -10vmin;
}

.bubble:nth-child(2) {
    top: 0;
    left: 25vw;
    height: 10vmin;
    width: 10vmin;
}

.bubble:nth-child(2):before {
    width: 5vmin;
    height: 5vmin;
    bottom: -10vh;
    left: -8vmin;
}

.bubble:nth-child(3) {
    top: -5vh;
    right: 20vw;
    height: 13vmin;
    width: 13vmin;
}

.bubble:nth-child(3):before {
    width: 3vmin;
    height: 3vmin;
    bottom: -15vh;
    left: -18vmin;
    z-index: 6;
}

.bubble:nth-child(4) {
    top: 25vh;
    right: 18vw;
    height: 18vmin;
    width: 18vmin;
}

.bubble:nth-child(4):before {
    width: 7vmin;
    height: 7vmin;
    bottom: -10vmin;
    left: -15vmin;
}

.bubble:nth-child(5) {
    top: 60vh;
    right: 18vw;
    height: 28vmin;
    width: 28vmin;
}

.bubble:nth-child(5):before {
    width: 10vmin;
    height: 10vmin;
    bottom: 5vmin;
    left: -25vmin;
}


.expire-note {
    background: var(--warning-color);
    border-radius: 15px;
    padding: 5px 15px;
    color: #fff;
    margin-top: 3em;
}

.cv-details-row strong {
    font-weight: 500;
}

.cv-details-row a {
    color: #0061a3;
}

.cv-details-row ul {
    color: #495057;
    padding-left: 40px;
}

.job-summary strong {
    font-weight: 500;
}

.job-summary a {
    color: var(--primary-color);
}

.job-summary ul {
    color: #495057;
    padding-left: 40px;
}

.show-tinymce-row strong {
    font-weight: 500;
}

.show-tinymce-row a {
    color: #0061a3;
}

.show-tinymce-row ul {
    color: #495057;
    padding-left: 40px;
}

.cover-letter .modal-content {
    max-width: 850px;
    margin: 20px auto;
}

.cover-letter .modal-dialog {
    max-width: 850px;
    margin: 20px auto;
}

.cover-letter .modal-content textarea {
    min-height: 400px;
}

.progress-bar {
    color: #000000 !important;
}

.notification .dropdown-toggle::after {
    content: none;
}

@media (min-width: 991px) {
    .notification .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(50px);
        transition: .5s ease all;
    }

    .notification .dropdown-menu.show {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
        transition: .5s ease all;
    }
}

.datepicker-days {
    padding: 10px;
}

.notification-icon {
    position: relative;
}

.notification .notify-bell i {
    border: 1px solid var(--border-color);
    padding: 8px 8px 8px 9px;
    border-radius: 30px;
    font-size: 16px;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
}

.notification .notify-number {
    position: absolute;
    padding: 0px 7px 0px 7px;
    border-radius: 30px;
    font-size: 12px;
    top: -10px;
    left: 18px;
    background: #ff1f59;
    color: #fff;
}

.notification .dropdown-menu {
    margin-left: -151px;
    left: auto !important;
    right: 0 !important;
    width: 350px;
    top: 51px;
}

.notification .nav-link {
    padding-top: 18px !important;
    padding-bottom: 10px !important;
}

.notification .dropdown-item {
    white-space: normal;
    padding: 10px 20px;
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0px;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 16px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.notification .dropdown-item:hover {
    background: var(--background-color-dark);
    opacity: 0.9;
}

/* .notification .dropdown-item.active {
    background: var(--text-link-color);
    color: var(--primary-color);
    font-weight: 500;
}

 */
.notification .dropdown-item.active {
    background: var(--background-color);
    font-weight: 500;
    position: relative;
}

.notification .dropdown-item.active::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.notification .dropdown-item.active:hover {
    background: var(--background-color-dark);
    color: var(--text-color);
}

.notification-header {
    padding: 10px 15px;
    height: 50px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--footer-background-color);
}

.notification-header h5 {
    color: var(--text-color);
    float: left;
    text-transform: none;
    letter-spacing: 0;
}

.notification-header button {
    float: right;
    border: none;
    background: transparent;
    color: var(--text-color);
    margin-top: 4px;
}

.notification-type {
    font-weight: 400;
}

#user-notification {
    height: 350px;
    overflow-y: scroll;
}

.notification-message .btn:focus,
.notification-message .btn:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.admin-post {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    padding: 2px 10px;
    margin-left: 7px;
    font-size: 12px !important;
}

.admin-post-details {
    text-align: center;
    background-color: #142580;
    color: #fff;
    border-radius: 15px;
    padding: 5px 10px;
    width: 300px;
    margin: 20px auto;
}

.message-icon {
    position: relative;
}

.message .ti-comment {
    border: 1px solid var(--button-text-color);
    padding: 8px 8px 8px 9px;
    border-radius: 30px;
    font-size: 15px;
    color: var(--button-text-color);
    width: 35px;
    height: 35px;
    display: block;
}

.message .message-number {
    position: absolute;
    padding: 0px 5px 0px 5px;
    border-radius: 30px;
    font-size: 12px;
    top: -15px;
    left: 18px;
    background: #ff1f59;
    color: #fff;
}

.message .dropdown-menu {
    margin-left: -151px;
    left: auto !important;
    right: 0 !important;
    width: 350px;
    top: 52px;
}

.message .nav-link {
    padding-left: 0px !important;
    padding-top: 25px !important;
    padding-bottom: 18px !important;
}

.message .dropdown-item {
    white-space: normal;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 5px;
    line-height: 16px;
}

.message .dropdown-item:hover {
    background: #dee0e3;
    color: var(--primary-color);
}

.message .dropdown-item.active {
    background: #fff;
    color: var(--primary-color);
    font-weight: 500;
}

.message .dropdown-item.active:hover {
    background: #dee0e3;
    /*color: #fff;*/
}

.message-header {
    padding: 15px;
    height: 49px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.message-header h5 {
    float: left;
    text-transform: none;
    letter-spacing: 0;
}

.message-header button {
    float: right;
    border: none;
    background: transparent;
    color: #142580;
    margin-top: 6px;
}


#user-message {
    height: 350px;
    overflow-y: scroll;
}

.btn-none {
    color: var(--button-text-color);
    background: transparent;
    padding: 5px 0;
    border: none;
}

.btn-none:focus {
    box-shadow: none !important;
}

.notification-message {
    position: sticky;
    z-index: 999;
}

.notification-message .dropdown:nth-child(1) {
    position: absolute;
    right: 0;
    top: -21px;
}

.notification-message .dropdown:nth-child(2) {
    position: absolute;
    right: 45px;
    top: -21px;
}

.notification-message .dropdown:nth-child(3) {
    position: absolute;
    right: 90px;
    top: -21px;
}

@media (max-width: 769px) {
    .notification-message .dropdown:nth-child(3) {
        top: 48px;
    }

    .notification-message .dropdown:nth-child(2) {
        top: 45px;
    }

    .notification-message .dropdown:nth-child(1) {
        top: 52px;
    }
}

.notification .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s ease all;
}

.notification .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .5s ease all;
}

.message .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s ease all;
}

.message .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .5s ease all;
}

.menu-user-icon {
    width: 35px;
    height: 35px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.menu-user-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    object-position: left top;
}

#user-menu.dropdown-menu {
    margin-left: -150px;
    left: auto !important;
    right: 0 !important;
    width: 220px;
    top: 51px;
}

.user .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s ease all;
}

.user .dropdown-menu.show {
    background-color: var(--background-color);
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .5s ease all;
}

@media (max-width: 991px) {
    .ftco_navbar {
        position: relative;
        padding: 15px;
    }

    .notification-message .dropdown-menu {
        top: 52px !important;
    }

    .notification-message {
        position: initial;
    }

    .notification-message .dropdown:nth-child(3) {
        top: 7px;
        right: 110px;
    }

    .notification-message .dropdown:nth-child(2) {
        top: 7px;
        right: 65px;
    }

    .notification-message .dropdown:nth-child(1) {
        top: 6px;
        right: 20px;
    }
}

.swal-wide {
    width: 400px !important;
    height: auto;
}

.modal-confirm {
    color: #636363;
    width: 400px;
}

.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}

.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -10px;
}

.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -2px;
}

.modal-confirm .modal-body {
    color: #999;
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
    padding: 10px 15px 25px;
}

.modal-confirm .modal-footer a {
    color: #999;
}

.modal-confirm .icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    border: 3px solid #f15e5e;
}

.modal-confirm .icon-box i {
    color: #f15e5e;
    font-size: 18px;
    display: inline-block;
    margin-top: 13px;
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.modal-confirm .modal-footer .action-btn a {
    margin: 0 !important;
}

.to-tooltip {
    display: inline-block;
    text-decoration: none;
    position: relative;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}


.to-tooltip-add {
    width: 170px;
    background: #fff;
    color: #222;
    position: absolute;
    bottom: 0;
    left: -58px;
    padding: 5px 7px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    z-index: 999;
}

.to-tooltip-add:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--primary-color);
    position: absolute;
    bottom: -9px;
    left: 65px;
}

.to-tooltip:hover .to-tooltip-add {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

.to-tooltip-remove {
    width: 180px;
    background: #fff;
    color: #222;
    position: absolute;
    bottom: 0;
    left: -58px;
    padding: 5px 7px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    z-index: 999;
}

.to-tooltip-remove:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--primary-color);
    position: absolute;
    bottom: -9px;
    left: 65px;
}

.to-tooltip.marked:hover .to-tooltip-remove {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

.to-tooltip.marked:hover .to-tooltip-add {
    visibility: hidden;
}

@media(min-width: 991px) {
    .job-summary {
        padding: 30px;
    }
}

.counter {
    color: var(--primary-color);
    background: linear-gradient(to right, transparent 49%, var(--main-color) 50%);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    /* width: 210px; */
    padding: 60px 25px;
    margin: 0 auto 15px auto;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.counter:before {
    content: "";
    background: linear-gradient(to right, #F8F8FA, #F5F5F5);
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border-radius: 20px 20px;
    box-shadow: rgb(0 0 0 / 15%) 2.4px 2.4px 3.2px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.counter .counter-icon {
    color: var(--primary-color);
    font-size: 28px;
    line-height: 35px;
    margin: 0 0 12px;
    transform: rotateY(0deg);
}

.counter h3 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 15px 0 12px;
}

.counter .counter-value {
    color: #fff;
    background: linear-gradient(to right, var(--primary-color-light) 49%, var(--primary-color) 50%);
    font-size: 30px;
    font-weight: 600;
    padding: 3px 10px 2px;
    border-radius: 10px;
    display: inline-block;
}

/*.counter.t-circular{
  --main-color: #ff1f59;
  --color2: #f9557f;
}
.counter.t-teacher{
  --main-color: #f7b134;
  --color2: #fbc668;
}
.counter.t-active{
  --main-color: #142580;
  --color2: #20349b;
}*/
@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

.invalid-page {
    padding: 50px;
    max-width: 650px;
    margin: 30px auto;
}

.page-item .page-link {
    color: var(--primary-color);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.details-applied.own-post {
    background: transparent;
    color: var(--warning-color);
}

.cv-social-icon {
    margin-top: 10px;
}

.cv-social-icon a {
    margin-right: 10px;
}

.profile-cv {
    margin: -15px 0;
    padding: 15px 0;
}

.swal2-styled.swal2-confirm {
    background-color: var(--primary-color) !important;
    box-shadow: none !important;
}

/* scholarship-page */

.scholarship-page {
    padding: 80px 0;
}

.scholarship-content {
    margin-bottom: 20px;
}

.scholarship-img {
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.scholarship-img img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}



@media (min-width: 991px) {
    .scholarship-img {
        height: 300px;
    }

    .scholarship-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .scholarship-content .col-lg-5 {
        padding-right: 0;
    }

}

@media (max-width: 990px) {
    .scholarship-content .scholarship-img {
        padding-top: 20px;
    }
}

.scholarship-page .circular-summary {
    background: #fff;
}

.check-circular {
    padding: 0 15px;
}

.check-circular li {
    list-style: none;
    margin-bottom: 10px;
}

.check-circular li a {
    color: var(--primary-color);
}

.check-circular span {
    margin-right: 7px;
}

.check-circular li:hover a {
    color: #000;
}

.scholarship-content a {
    color: var(--primary-color);
}

.scholarship-content .job-title a:hover {
    opacity: 0.8;
}

.title-with-button {
    display: block ruby;
}

.button-group {
    margin-left: 50px;
}

.button-group a {
    margin-right: 15px;
}

.scholarship-list {
    padding-top: 30px !important;
}

.title-with-button .button-group .active {
    background: var(--primary-color);
    color: #fff !important;
    border: 1px solid var(--primary-color);
}

.scholarship-short-info {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #505863;
    margin-bottom: 1.25rem;

}

/* Unsubscribe page design */
.unsubscribe-page {
    background-color: #f1f1f1;
    height: 100vh;
    padding-top: 50px;
}

.unsubscribe-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 3em;
    background-color: #ffffff;
    border-radius: 5px;
}

.theme-color {
    color: #068e33;
}

.unsubscribe-content img {
    width: 150px;
    margin-bottom: 30px;
}

.warning {
    margin-bottom: 20px;
    background: #ffc107;
    border-radius: 3px;
    padding: 5px 15px;
    color: #000;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
}

.navbar-dark .navbar-toggler {
    font-size: 1.6rem;
    color: var(--primary-color);
    background-color: var(--background-color);
    padding: 6px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: none;
}

.calender-icon {
    border-radius: 0;
    height: 38px;
    border: none;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.calendar-icon {
    border-radius: 0;
    height: 36px;
    border: none;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.scholarshiop-list-content .job-title {
    margin-right: 50px;
}

.scholarshiop-list-content {
    position: relative;
}

.scholarship-bookmark {
    position: absolute;
    right: -15px;
    top: -15px;
}

.scholarship-creator {
    margin-top: 30px;
    margin-bottom: 0;
}

.scholarship-creator span {
    margin-left: 0 !important;
    clear: both;
}

#create_new {
    width: 30px;
}

.circular-bookmark {
    float: right;
}

.refer-dev {
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    margin: 30px 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.experience-current {
    padding: .375rem .75rem .375rem 0;
}

/* .loader {
  background-image: url('/assets/images/loading.gif');
  background-size: cover;
  width: 20px;
  height: 20px;
  display: grid;
  color: var(--text-link-color);
  margin: -5px 0 0 0;
  display: inline-grid;
} */

/* .loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  --c:#0000 calc(100%/3),var(--text-link-color) 0 calc(2*100%/3),#0000 0;
  --c1:linear-gradient(90deg,var(--c));
  --c2:linear-gradient( 0deg,var(--c));
  background: var(--c1),var(--c2),var(--c1),var(--c2);
  background-size: 300% 4px,4px 300%;
  background-repeat: no-repeat;
  animation: l15 1.5s infinite;
}

.loader:after {
  animation-delay: -.75s;
} */

.personal-loader {
    display: none;
    width: 20px;
    height: 20px;
    margin: 0 7px;
}

@keyframes l15 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%
    }
}

/* Terms and Conditions Page */
.term-condition-page {
    margin: 50px 0;
    padding: 15px;
    background-color: #ffffff;
}

.term-condition-page p {
    font-size: 1rem;
}

.terms-new-row {
    margin: 40px 0;
}

.terms-new-row ul {
    padding-left: 40px;
}

.terms-title {
    margin-bottom: 20px;
    color: var(--button-color);
}

.terms-link {
    color: var(--button-text-color);
    font-style: italic;
}

.terms-link:hover {
    border-bottom: 1px solid #fff;
}

/* user unsubscribe page */
.user-subscription-page {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px;
    min-height: 500px;
}

.user-subscription-content {
    padding: 3em;
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 500;
}

.user-subscription-content h5 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #444;
}

.theme-checkbox {
    display: flex;
}

.theme-checkbox input[type=checkbox] {
    margin: 8px 15px 5px 0px;
    width: 1.5em;
    height: 1.5em;
    border-color: var(--button-color);
}

.theme-checkbox input[type=checkbox]:checked {
    background-color: var(--button-color);
    border-color: var(--button-color);
    width: 1.5em;
    height: 1.5em;
}

.theme-checkbox label {
    line-height: 40px;
}

.verification-status {
    position: absolute;
}

.verification-status p {
    font-size: 13px;
    margin-right: 15px !important;
}

.created-at-lable {
    color: #495057;
    font-size: 13px;
    font-weight: 500;
}

.location-icon-color {
    color: var(--primary-color)
}

/* start resend verification email */
/* .statusMessage{
    margin-top: 2px;
} */
.support-link {
    text-decoration: underline;
}

.support-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* endresend verification email */

/* visitor counter */

.visitor-counter {
    color: var(--primary-color) !important;
    font-size: 18px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.list-counter {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--primary-color) !important;
}

.scholarshiop-list-content .list-counter {
    color: var(--text-color) !important;
}

.scholarship-list-deadline b {
    color: var(--primary-color);
}

.scholarship-list-deadline i {
    color: var(--primary-color);
}

.list-counter strong {
    font-style: italic;
}

.views-counter {
    margin-right: 10px;
}


/* Change tooltip background color and text color */
.tooltip-inner {
    background-color: #fff;
    color: #222;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
}

/* Change tooltip arrow color to red */
.tooltip .tooltip-arrow::before {
    border-top-color: var(--primary-color) !important;
}

/* End visitor counter */

/* Refined Cookie Consent Banner */
#cookies-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(145deg, #212121, #1a1a1a);
    color: #e0e0e0;
    padding: 24px;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    font-family: "Roboto", Arial, sans-serif;
    animation: slide-up 0.5s ease-out;
    max-width: 500px;
    display: none;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.consent-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

#cookies-banner h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.75em;
    color: #ffffff;
    font-weight: 500;
}

#cookies-banner p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: #bdbdbd;
}

.consent-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 600px) {
    #cookies-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 16px;
    }

    .consent-actions {
        flex-direction: column;
    }

    .consent-actions button {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}

#cookies-banner .btn-theme-color:hover {
    background-color: var(--button-hover-color);
    color: var(--button-text-color) !important;
}

#cookies-banner .btn-green-color:hover {
    background-color: var(--background-color);
    color: var(--button-color) !important;
}


/* Select 2 */

.date-dead-line {
    width: 220px !important;
}

.date-dead-line .input-group-append span {
    background: #fff;
    border: none;
}

.dropdown-select2 {
    width: 220px !important;
}

.select2-search__field {
    outline: 0.5px solid var(--primary-color) !important;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    height: 37px !important;

}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px !important;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
    border-radius: 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important;
    right: 4px !important;
}

.select2-container--open .select2-dropdown--below {
    border: 0.5px solid rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
        rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
}

.select2-container--default .select2-selection--single:hover {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
}

.select2-container--default .select2-selection--single:focus {
    border-bottom: 1px solid var(--primary-color);
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px !important;
}

.select2-search__field:focus-visible {
    outline: 2px solid var(--primary-color) !important;
    border-radius: 5px !important;
}

.select2-results__option--highlighted {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Select 2 */

/* expired design */
.scholarship-expired span {
    margin-left: 0 !important;
    clear: both;
}

.expired-lable {
    background-color: var(--error-color);
    color: #fff;
    border-radius: 15px;
    padding: 2px 10px;
    font-size: 12px !important;
    margin-left: 7px;
}

.scholarship-info {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.scholarship-expired {
    margin-top: 30px;
    margin-bottom: 0;
}

.details-expire-note {
    background: var(--error-color);
    border-radius: 15px;
    padding: 5px 15px;
    color: #fff;
    margin-top: 1.2em;
}

/* end expired design */

.scholarship-counter {
    margin-left: 5px;
    margin-right: 10px;
}

/* footer */
.footer-section {
    padding: 3em 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.footer-section .job-title {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
}

a.job-title:hover {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.job-count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 5px;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.card-header {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1px 20px;
}

.list-group-item {
    border: none;
    padding: 6px 12px;
}

.list-group-item:last-child {
    border-bottom: none;
}

.custom-image {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.footer-short-description {
    font-size: 1rem;
    color: var(--text-color);
    text-align: justify;
}

/* Make social icons evenly spaced */
.social-media a {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
}

.social-media a:hover {
    background-color: var(--primary-color-light);
    color: #fff;
}

/* Search Toggle Button 10 */

.toggle-button-cover {
    display: table-cell;
    position: relative;
    width: 200px;
    height: 140px;
    box-sizing: border-box;
}

.button-cover {
    height: 100px;
    margin: 20px;
    background-color: var(--button-text-color);
    box-shadow: 0 10px 20px -8px #c5d6d6;
    border-radius: 4px;
}

.button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.search-type {
    position: relative;
    width: 220px;
    height: 34px;
    overflow: hidden;
    margin: 2px;
}

.search-type.r,
.search-type.r .layer {
    border-radius: 100px;
}

.search-type.b2 {
    border-radius: 2px;
}

.search-type .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.search-type .knobs {
    z-index: 2;
}

.search-type .layer {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    transition: 0.3s ease all;
    z-index: 1;
}

#search-toggle .knobs:before,
#search-toggle .knobs:after,
#search-toggle .knobs span {
    position: absolute;
    top: 4px;
    width: 80px;
    height: 26px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    padding: 7px 4px;
    border-radius: 15px;
    transition: 0.3s ease all;
}

#search-toggle .knobs:before {
    content: '';
    left: 4px;
    background-color: var(--primary-color);
}

#search-toggle .knobs:after {
    content: 'Scholarship';
    right: 2px;
    color: #4e4e4e;
}

#search-toggle .knobs span {
    display: inline-block;
    left: 4px;
    color: #fff;
    z-index: 1;
}

#search-toggle .checkbox:checked+.knobs span {
    color: #4e4e4e;
}

#search-toggle .checkbox:checked+.knobs:before {
    left: 80px;
    background-color: var(--primary-color);
}

#search-toggle .checkbox:checked+.knobs:after {
    color: var(--background-color);
}

#search-toggle .checkbox:checked~.layer {
    background-color: var(--background-color);
}

/* Bootstrap XL breakpoint (1200px - 1399.98px) */
@media (max-width: 1398.99px) and (min-width: 1200px) {
    .search-type {
        width: 245px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 87px;
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .search-type {
        width: 270px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 87px;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .search-type {
        width: 238px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 87px;
    }
}

@media (max-width: 767.98px) and (min-width: 576px) {
    .search-type {
        width: 260px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 80px;
    }
}

@media (max-width: 575.98px) and (min-width: 567px) {
    .search-type {
        width: 260px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 84px;
    }
}

@media (max-width: 566.98px) and (min-width: 561px) {
    .search-type {
        width: 260px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 82px;
    }
}

@media (max-width: 560.98px) and (min-width: 548px) {
    .search-type {
        width: 258px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 80px;
    }
}

@media (max-width: 547.98px) and (min-width: 538px) {
    .search-type {
        width: 265px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 80px;
    }
}

@media (max-width: 537.98px) and (min-width: 526px) {
    .search-type {
        width: 270px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 83px;
    }
}

@media (max-width: 525.98px) and (min-width: 515px) {
    .search-type {
        width: 280px;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 83px;
    }
}

@media (max-width: 514.98px) and (min-width: 500px) {
    .search-type {
        width: 190px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {

        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 3px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 65px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 499.98px) and (min-width: 480px) {
    .search-type {
        width: 190px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 3px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 63px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 479.98px) and (min-width: 460px) {
    .search-type {
        width: 190px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 459.98px) and (min-width: 440px) {
    .search-type {
        width: 190px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 439.98px) and (min-width: 433px) {
    .search-type {
        width: 200px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 61px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 432.98px) and (min-width: 426px) {
    .search-type {
        width: 200px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 425.98px) and (min-width: 400px) {
    .search-type {
        width: 220px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 65px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 399.98px) and (min-width: 380px) {
    .search-type {
        width: 230px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 67px;
    }
}

@media (max-width: 379.98px) and (min-width: 373px) {
    .search-type {
        width: 230px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 62px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 372.98px) and (min-width: 364px) {
    .search-type {
        width: 235px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 363.98px) and (min-width: 350px) {
    .search-type {
        width: 238px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 349.98px) and (min-width: 330px) {
    .search-type {
        width: 250px;
    }

    #search-toggle .knobs:before,
    #search-toggle .knobs:after,
    #search-toggle .knobs span {
        top: 5px;
        width: 60px;
        height: 24px;
        font-size: 9px;
        padding: 8px 4px;
        border-radius: 15px;
    }

    #search-toggle .knobs:after {
        content: 'Scholarship';
        right: 4px;
        color: #4e4e4e;
    }

    #search-toggle .checkbox:checked+.knobs:before {
        left: 60px;
        background-color: var(--primary-color);
    }
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-weight: 500 !important;
}

/* Search Toggle Button 1 */

/* New Footer Section */
.footer-title {
    padding-left: 0.5em;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1em;
}