:root {
    --white: #ffffff !important;
    --black: #353535 !important;
    --primary: #0148a6 !important;
    --secondary: #0f2747 !important;
    --font: "Poppins", sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--font);
}

html {
    margin: 0;
    padding: 0;
}

a,
a:hover {
    text-decoration: none !important;
}

body {
    background-color: #fff;
    position: relative;
    width: 100%;
    /* min-height: calc(100vh - 120px); */
}

/* common */
.btn-primary {
    color: var(--white);
    background-image: linear-gradient(20deg, var(--primary) 50%, var(--secondary) 50%);
    border-radius: 4px;
    position: relative;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    background-size: 300%;
    transition: all 1s;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-primary:hover {
    color: #fff;
    background-position: 100%;
    transform: translateX(-5px);
    transition: all 1s;
}

.btn-primary:active {
    transform: translate(10px, 10px);
    box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.btn-white {
    color: var(--primary);
    background-image: linear-gradient(20deg, var(--white) 50%, var(--primary) 50%);
    border-radius: 4px;
    position: relative;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    background-size: 300%;
    transition: all 1s;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--primary);
}

.btn-white:hover {
    color: #fff;
    background-position: 100%;
    transform: translateX(-5px);
    transition: all 1s;
}

.btn-white:active {
    transform: translate(10px, 10px);
    box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.form-floating>label,
.form-floating .form-control::placeholder {
    font-weight: 500 !important;
}

.form-floating .form-control {
    color: var(--black);
    font-weight: 500;
    border-radius: 7px;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-white {
    background-color: var(--white);
}

.primary-text {
    color: var(--primary) !important;
}

.white-text {
    color: var(--white);
}

.black-text {
    color: var(--black);
}

/* header */
.top-bar {
    width: 100%;
    height: 30px;
    background-color: var(--primary);
}

.header {
    width: 100%;
    height: 120px;
    background-color: var(--white);
    padding: 15px 0;
}

.header.landing .logo-text {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

.header.landing .tag-line {
    color: var(--black);
    font-size: 14px;
    font-weight: 500 !important;
    text-align: center;
    margin-bottom: 0;
}

.header-div {
    display: flex;
}

.header.login .logo-text {
    font-size: 48px;
    color: var(--primary);
    text-align: left;
    font-weight: 600;
    margin-bottom: 0;
}

.header.login .tag-line {
    color: var(--black);
    font-size: 14px;
    font-weight: 500 !important;
    text-align: left;
    margin-bottom: 0;
}

.header.student-login .logo-text {
    font-size: 48px;
    color: var(--primary);
    text-align: left;
    font-weight: 600;
    margin-bottom: 0;
}

.header.student-login .tag-line {
    color: var(--black);
    font-size: 14px;
    font-weight: 500 !important;
    text-align: left;
    margin-bottom: 0;
}

.student-user-menu {
    display: none;
}

.header-right-link {
    margin-left: auto;
    display: flex;
    margin-top: 30px;
}

.login-logout-div {
    background-color: var(--primary);
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    color: var(--white);
    font-weight: 500;
    border-radius: 5px;
    margin-right: 15px;
}

.login-logout-div a {
    color: #b0e4ff;
    font-size: 14px;
}

.login-logout-div a:hover,
.login-logout-div a.active {
    border-bottom: 1px solid #b0e4ff;
}

.login-logout-div-emp {
    background-color: var(--white);
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    color: var(--primary);
    font-weight: 500;
    border-radius: 5px;
    margin-right: 20px;
}

.login-logout-div-emp a {
    color: var(--primary);
    font-size: 16px;
}

.login-logout-div-emp a:hover {
    color: var(--secondary);
    font-size: 16px;
    border-bottom: 1px solid var(--secondary);
}


.section-change {
    background-color: var(--white);
    height: 30px;
    padding: 0 10px;
    line-height: 28px;
    color: var(--primary);
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid var(--primary);
    display: inline-block;
    transition: all 0.5s;
}

.section-change:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: all 0.5s;
}

.section-change {
    color: var(--primary);
    background-image: linear-gradient(20deg, var(--white) 50%, var(--primary) 50%);
    border-radius: 4px;
    position: relative;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    background-size: 300%;
    transition: all 0.6s;
}

.section-change:hover {
    color: #fff;
    background-position: 100%;
    transition: all 0.6s;
    border: 1px solid #fff;
}

.section-change i {
    font-size: 11px;
    line-height: 28px;
}

.user-name {
    color: var(--primary);
    font-weight: 500;
    position: relative;
}

.user-name:hover {
    color: var(--secondary);
    font-weight: 500;
}

.header-right-link ul {
    margin: 0;
    padding: 0;
}

.header-right-link ul li {
    display: inline-block;
    margin: 0 7px;
}

.notification {
    min-width: 25px;
    padding: 0 2px;
    height: 25px;
    line-height: 21px;
    border-radius: 25px;
    font-size: 12px;
    background-color: #b53930;
    color: var(--white);
    text-align: center;
    position: absolute;
    top: -10px;
    border: 2px solid #fff;
    right: -5px
}

.notification.green {
    background-color: #6a8d26;
}










/* sidebar */

.sidebar_menu {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    /* box-shadow: -0px 0px 15px 0px rgba(0, 0, 0, 0.3); */
    display: none;
    overflow: hidden !important;
}

.sidebar_menu .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    content: ' ';
    z-index: -100;
    position: absolute;
    top: 0;
    left: 0;
}

.sidebar_menu .content {
    max-width: 360px;
    width: 100%;
    height: 100%;
    padding: 0px;
    background-color: #cad9db !important;
    overflow-y: scroll;
    float: right;
    /* overflow: hidden !important; */
}

.sidebar_menu .head {
    position: relative;
    padding: 5px 20px;
    z-index: 1;
    margin-bottom: 15px;
    background-color: var(--white);
    border-bottom: 1px solid #f1f1f1;
}

.sidebar_menu .head .logo-text {
    color: var(--primary);
    font-size: 36px;
    margin: 0;
    text-align: left;
}

.sidebar_menu .head .tag-line {
    text-align: cenleftter;
    font-size: 10px;
    margin: 0;
    color: var(--black);
    font-weight: 500;
}

.cloase_btns {
    background-color: var(--primary);
    width: 50px;
    height: 68px;
    color: var(--white);
    opacity: 1;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 10000;
    line-height: 0px !important;
    transition: 0.3s;
    border: 0px;
}

.cloase_btns:hover {
    background-color: var(--secondary);
    color: var(--white);
    opacity: 1;
    position: absolute;
    line-height: 0px !important;
    transition: 0.3s;
}

.content .user-profile-image {
    width: 75px;
    height: 75px;
    border: 3px solid #fff;
}


/* Footer */
.footer {
    background-color: var(--secondary);
    padding: 20px 0;
    color: var(--white);
    font-size: 14px;
}

.footer-desktop {
    display: block;
}

.footer-mobile {
    display: none;
}

.footer p {
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    margin-top: 30px;
}

.footer p i {
    font-size: 7px;
    margin: 0 10px;
    vertical-align: middle;
}

.footer p a {
    color: #8bd7ff;
    font-weight: 500;
    transition: all 0.3s;
}

.footer p a:hover {
    color: #fff;
    transition: all 0.3s;
}

.footer-logo {
    width: auto;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
}

.footer-logo img {
    width: 120px;
}

.credit {
    text-align: right;
    float: right;
}

.footer-mobile-br {
    display: none;
}

/* Main DIV */
.main {
    background-image: url(../../../assets/images/new/bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: calc(100vh - 120px);
}

.section {
    padding: 75px 0;
}

.skill-padding {
    padding-left: 60px;
}

.landing-title {
    color: var(--secondary);
    text-align: center;
    font-size: 48px;
    line-height: 72px;
    position: relative;
    padding-bottom: 35px;
}

.landing-title::after {
    width: 50%;
    height: 1px;
    background-color: var(--secondary);
    content: " ";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.landing-title span {
    font-weight: 700;
}

.user-type {
    width: 100%;
    height: auto;
    /* padding: 0 50px; */
    text-align: center;
    margin-top: 50px;
}
 
.user-type img {
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
 
.user-type .btn-primary {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 40px;
    border-radius: 50px;
    width: 90%;
}

.legal {
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
}

.legal span {
    color: var(--primary);
    font-weight: 700;
}

.login-title {
    color: var(--secondary);
    text-align: center;
    font-size: 48px;
    line-height: 72px;
    position: relative;
    padding-bottom: 0px;
}

.legal a {
    color: var(--primary);
    transition: all 0.3s;
}

.legal a:hover {
    color: var(--secondary);
    transition: all 0.3s;
}

.forgot-pwd {
    color: var(--primary);
    transition: all 0.3s;
    float: right;
    margin-top: 10px;
    font-weight: 500;
}

.forgot-pwd:hover {
    color: var(--black);
    transition: all 0.3s;
}

form .btn-primary {
    margin-top: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 50px;
}

.eye {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px
}

.form-check-label {
    color: var(--primary);
    font-weight: 500;
    margin-right: 30px;
}

.forgot-pwd,
.legal a,
.form-check-label a {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.forgot-pwd a:hover,
.legal a:hover,
.form-check-label a:hover {
    color: var(--secondary);
}

.form-check-input:checked {
    background-color: var(--primary);
}

.form-check-input {
    border: 1px solid var(--primary) !important;
    background-color: var(--white);
    width: 16px !important;
    height: 16px;
}

.student-menu {
    width: 100%;
}

.user-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    border: 5px solid #fff;
}

.student-menu-link {
    margin: 0;
    padding: 0;
}

.student-menu-link li a {
    display: block;
    background-image: linear-gradient(15deg, var(--white) 50%, var(--primary) 50%);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: 300%;
    transition: all 0.7s;
}

.student-menu-link li a:hover {
    color: #fff;
    background-position: 100%;
    transform: translateX(10px);
    transition: all 0.7s;
}

.student-menu-link li a:active {
    transform: translate(0px, 5px);
    box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.student-menu-link li a.active {
    background: var(--primary);
    color: var(--white);
}


.student-menu-link li a:hover img,
.student-menu-link li a.active img {
    filter: brightness(0) invert(1);
}

.page-title {
    color: var(--secondary);
    font-size: 48px;
    line-height: 72px;
    position: relative;
    padding-bottom: 0px;
}

.skill-selected {
    background-color: var(--primary);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-sub-title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600 !important;
    line-height: 30px;
    margin-bottom: 20px;
}

.skill-selected-div {
    background-color: #e9f2f4;
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
}

.skill-selected-div:last-child {
    margin-bottom: 0;
}

.skill-selected-div-title {
    position: relative;
    height: 100%;
}

.skill-selected-div-title h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 35px 0 0;
    text-transform: uppercase;
}

.skill-type {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: right;
}

.skill-type-topic {
    background-color: var(--white);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3) !important;
    padding: 10px 5px;
    margin: 0 7px;
    border-radius: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    width: 90px;
}

.skill-type-topic span {
    color: #353535;
    font-weight: 500;
}

.skill-type-projects {
    background-color: var(--white);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3) !important;
    padding: 10px 5px;
    margin: 0 7px;
    border-radius: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    width: 90px;
}

.skill-type-projects span {
    color: #353535;
    font-weight: 500;
}

.skill-type-level {
    background-color: var(--white);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3) !important;
    padding: 10px 5px;
    margin: 0 7px;
    border-radius: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    width: 130px;
    display: none;
}

.skill-type-level span {
    color: #353535;
    font-weight: 500;
}

.mobile-colon {
    display: none;
}

.skill-selected-link {
    width: 25px;
    height: 25px;
    font-size: 14px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    display: block;
    text-align: center;
    line-height: 23px;
    color: var(--white);
    border-radius: 30px;
    margin-bottom: 10px;
    margin-left: 5px;
    transition: all 0.3s;
}

.skill-selected-link:hover {
    color: var(--primary);
    background-color: var(--white);
    transition: all 0.3s;
}

.skill-selected-delete {
    width: 25px;
    height: 25px;
    font-size: 14px;
    background-color: var(--white);
    border: 1px solid #b72843;
    display: block;
    text-align: center;
    line-height: 23px;
    color: #b72843;
    border-radius: 28px;
    margin-bottom: 5px;
    margin-left: 5px;
    transition: all 0.3s;
}

.skill-selected-delete:hover {
    color: var(--white);
    background-color: #b72843;
    transition: all 0.3s;
}

.skill-category {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.skill-category-div {
    background-color: #e9f2f4;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    min-height: 60px;
    height: auto;
    transition: all 0.3s;
}

.skill-category-div:hover {
    background-color: #cbdbde;
    transition: all 0.3s;
}

.skill-category-div p {
    position: absolute;
    width: 100%;
    color: var(--primary);
    font-weight: 500;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 70px 0px 0px;
    max-height: 50px;
    overflow: hidden;
    margin: 0;
}

.skill-category-div i {
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    color: var(--white);
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    right: 15px;
    transition: all 0.3s;
    font-size: 14px;
}

.skill-category-div:hover i {
    right: 20px;
    transition: all 0.3s;
    background-color: var(--secondary);
}

.course-wise-kills-div {
    background-color: #e9f2f4;
    /* padding: 15px; */
    border-radius: 10px;
    position: relative;
    min-height: 60px;
    height: auto;
    transition: all 0.3s;
    overflow: hidden;
}

.course-wise-kills-div:hover {
    background-color: #cbdbde;
    transition: all 0.3s;
}

.course-wise-kills-div p {
    position: absolute;
    width: 100%;
    color: var(--primary);
    font-weight: 500;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 55px 0px 130px;
    max-height: 90px;
    overflow: hidden;
    margin: 0;
}

.course-wise-kills-div i {
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--white);
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    right: 15px;
    transition: all 0.3s;
}

.course-wise-kills-div:hover i {
    right: 20px;
    transition: all 0.3s;
    background-color: var(--secondary);
}

.skill-category .btn-primary {
    padding: 0 50px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
    margin-top: 15px;
}


.add-skill-title {
    background-color: var(--primary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    min-height: 60px;
    height: auto;
}

.add-skill-title h3 span {
    font-size: 14px;
    float: right;
    text-transform: capitalize;
    font-weight: 500;
}

.skill-category .set {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background-color: #e9f2f4;
    border-radius: 10px;
}

.skill-category .set>a {
    display: block;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    color: var(--primary) !important;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    /* background-color: #fff; */
    text-transform: uppercase;
    background-color: #e9f2f4;
    border-radius: 10px;
}

.skill-category .set .tag {
    padding-right: 30px;
    position: relative;
}

.skill-category .set i {
    float: right;
    background-color: var(--primary);
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    color: var(--white);
    text-align: center;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
}



.skill-category .active-bg {
    background-color: #e7edf8;
}

.skill-category .set>a.active {
    /* background-color: #e7edf8; */
    color: var(--tertiary);
}

.skill-category .acc-content {
    /* background-color: #e7edf8; */
    display: none;
    padding: 0px;
    border: 2px solid var(--tertiary);
    padding: 0 15px 15px 15px;
}

.skill-category .add-skill-question {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

p.skill-question {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0;
    font-weight: 600;
}

.add-skill-question label {
    color: var(--black);
}

.add-skill-question .form-check-input {
    width: 18px !important;
    height: 18px !important;
    margin-bottom: 10px;
}

.course-div {
    background-color: var(--primary);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 20px;
}

.course-name-div {
    background-color: #e9f2f4;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    position: relative;
}

.course-name-div img {
    border-radius: 8px 0 0 8px;
}

.course {
    width: 100%;
    height: auto;
    padding: 0 15px 0 125px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.course-name-title {
    color: var(--black);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0px !important;
    font-weight: 600;
}

.course-name {
    color: var(--primary);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px !important;
    font-weight: 600;
}

.add-project .btn-white {
    padding: 0 50px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
    margin-top: 15px;
}

.project-added-div {
    background-color: #e9f2f4;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
}

.project-added-div:last-child {
    margin-bottom: 0;
}

.project-added-div img {
    border-radius: 8px;
    object-fit: cover;
}

.project {
    padding: 10px 70px 10px 20px;
}

.project-title {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.project-added-detail {
    font-size: 16px;
    line-height: 24px;
    height: 70px;
    text-align: justify;
    overflow: hidden;
    font-weight: 500;
}

.project-added-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    right: 0;
    height: auto;
}

.project-added-link {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    display: block;
    text-align: center;
    line-height: 28px;
    color: var(--white);
    border-radius: 30px;
    margin-bottom: 10px;
    margin-left: 5px;
    transition: all 0.3s;
}

.project-added-link:hover {
    color: var(--primary);
    background-color: var(--white);
    transition: all 0.3s;
}

.project-added-delete {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid #b72843;
    display: block;
    text-align: center;
    line-height: 28px;
    color: #b72843;
    border-radius: 28px;
    margin-bottom: 5px;
    margin-left: 5px;
    transition: all 0.3s;
}

.project-added-delete:hover {
    color: var(--white);
    background-color: #b72843;
    transition: all 0.3s;
}

.add-project-label {
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.form-control.add-project {
    background-color: #e9f2f4;
    min-height: 60px;
    border: 0px;
    font-weight: 500;
    color: var(--black);
    border-radius: 7px !important;
}

/* select arrow */
select.add-project {
    background-image: url("../../../assets/images/down.png") !important;
    background-position: right 18px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px !important;
    border-radius: 2px;
    border: none;
    padding: 10px 30px 10px 10px;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.add-project-saperator {
    width: 100%;
    height: 1px;
    background-color: #ccdaed;
    margin: 15px 0;

}

.file-upload {
    height: 58px;
    padding: 15px;
    border: none;
    background-color: #e9f2f4 !important;
}

.file-upload:focus {
    background-color: #e9f2f4 !important;
}

input::file-selector-button {
    color: var(--black) !important;
    padding: 0.5em;
    border: 1px solid #ccc !important;
    border-radius: 0px;
    float: right;
    content: 'Upload Image';
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(204, 204, 204, 1) 100%);
}

input::file-selector-button {
    color: var(--black) !important;
    padding: 0.5em !important;
    border: 1px solid #ccc !important;
    border-radius: 0px;
    float: right;
    content: 'Upload Image';
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(204, 204, 204, 1) 100%);
}

.company-detail-acc .company-name-title {
    color: var(--black) !important;
    font-size: 16px !important;
    font-weight: 600;
}

.company-detail-acc .accordion-header button {
    background-color: #e9f2f4 !important;
    border-radius: 7px !important;
}

.company-detail-acc .accordion-item {
    border: 0px;
    margin-bottom: 10px;
}

.company-detail-acc .company-detail-title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    margin: 0;
}

.company-detail-acc .accordion-button:not(.collapsed)::after,
.company-detail-acc .accordion-button::after {
    background-image: url("../../../assets/images/down.png") !important;
    background-size: 14px;
    width: 14px;
    height: 14px;
    background-position: center;
    line-height: 14px;
}

.company-detail-acc .company-icon {
    font-size: 16px;
    color: var(--primary);
}

.company-detail-acc .company-detail {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.company-detail-acc .company-detail-title span {
    position: absolute;
    top: 0;
    right: 15px;
    font-weight: 700;
}

.company-detail-acc .accordion-body {
    border-bottom: 1px solid #ccdaed;
}



.skill-details .set {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background-color: var(--primary);
    border-radius: 10px;
}

.skill-details .set>a {
    display: block;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    color: var(--white) !important;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    /* background-color: #fff; */
    text-transform: uppercase;
    background-color: var(--primary);
    border-radius: 10px;
}

.skill-details .set .tag {
    padding-right: 30px;
    position: relative;
}

.skill-details .set i {
    float: right;
    background-color: var(--primary);
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    color: var(--white);
    text-align: center;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
}

.skill-details .active-bg {
    background-color: var(--primary);
}

.skill-details .set>a.active {
    /* background-color: #e7edf8; */
    color: var(--tertiary);
}

.skill-details .acc-content {
    display: none;
    padding: 0px;
    border: 2px solid var(--tertiary);
    padding: 0 15px 15px 15px;
}

.skill-details .add-skill-question {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.skill-details .skill-name-detail-div {
    background-color: #e9f2f4;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.skill-details .skill-name-detail-div .title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.skill-name-detail-div .company-detail-title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
    position: relative;
}

.skill-name-detail-div .company-detail-title span {
    position: absolute;
    color: var(--primary);
    top: 0;
    right: 0px;
    font-weight: 700;
}

.skill-name-detail-div .company-detail {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
}

.project-img {
    position: relative;
    background-color: transparent;
    /*width: 100%;*/
    height: 150px;
    border-radius: 5px;
}

.project-img img {
    max-width: 100% !important;
    max-height: 150px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    border-radius: 5px;
}

.project-img-div {
    position: relative;
}

.project-img .overlay {
    width: 0;
    height: 0;
    z-index: 1;
    background-color: var(--black);
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    border-radius: 5px;
}

.project-img:hover .overlay {
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}

.project-img i {
    position: absolute;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50px;
    text-align: center;
    background-color: #fff !important;
    color: var(--primary) !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 22px !important;
    z-index: 1;
}

.project-img:hover i {
    display: block;
}

.project-img-prev i,
.project-img-next i{
    color: #fff !important;
    font-size: 16px !important;
    z-index: 10000 !important;
    width: 26px !important;
    height: 26px !important;
    line-height: 26px !important;
    border-radius: 26px !important;
    margin-top: -40px;
    transition: all 0.3s;
    position: absolute;
    background-color: #0148a6 !important;
    text-align: center;
}

.project-img-prev:hover i,
.project-img-next:hover i{
    background-color: var(--secondary);
    transition: all 0.3s;
}

.project-img-next i{
    right : 12px !important
}

.project-img-prev i{
    right : 48px !important
}

.project-attachment{
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--black);
    font-weight: 500;
}

.project-attachment:hover{
    color: var(--primary);
}

.project-attachment-edit{
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #e9f2f4;
    padding: 0 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--black);
    font-weight: 500;
    position: relative;
}

.project-attachment-edit:hover{
    color: var(--primary);
}

.project-attachment-edit i{
    position: absolute;
    top : 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: #fff;
    color: #cc2626;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 3px;
    transition: all 0.4s;
}

.project-attachment-edit i:hover{
    background-color: #cc2626;
    color: #fff;
}

.search-info {
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    font-weight: 500;
}

.student-search-title {
    background-color: var(--primary);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.student-search-title p {
    color: var(--white);
    margin-bottom: 0px;
    line-height: 34px;
    font-weight: 500;
}

.student-search-title p span {
    color: var(--white);
    margin-bottom: 0px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 34px;
}

.student-list {
    background-color: var(--white);
    border-radius: 15px;
    padding: 15px;
}

.student-list-div {
    background-color: #e9f2f4;
    padding: 15px 60px 15px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s !important;
}

.student-list-div:hover {
    background-color: #cbdbde;
    /* background: linear-gradient(90deg, rgba(203,219,222,1) 50%, rgba(233,242,244,1) 100%); */
    transition: all 0.3s !important;
}

.student-list-div h5 {
    color: var(--primary);
    font-weight: 600 !important;
    font-size: 18px;
}

.student-list-div p {
    color: var(--black);
    font-weight: 500 !important;
    font-size: 16px;
    margin-bottom: 0;
}

.student-list-div p span {
    color: var(--primary);
    font-weight: 500 !important;
    font-size: 16px;
}

.student-list-div .contact-detail a {
    color: var(--black);
}

.student-list-div .contact-detail a:hover {
    color: var(--primary);
}

.student-list-div .contact-detail i {
    color: var(--primary);
}

.student-list-link-btn {
    position: absolute;
    height: 100%;
    line-height: 115px;
    background-color: var(--primary);
    display: block;
    top: 0;
    right: 0;
    color: #fff;
    width: 50px;
    text-align: center;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s;
}

.student-list-link-btn:hover {
    color: var(--white);
    background-color: var(--secondary);
    transition: all 0.3s;
}


.student-list-link-btn:hover .fa-arrow-right {
    animation: animName 0.3s linear;
}

@keyframes animName {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg) scale(1.5);
    }
}

.operation-btn{
    position: absolute;
    right : 60px;
    top : 50%;
    transform: translateY(-50%);
}

.operation-btn img{
    margin: 0 8px;
    transition: all 0.3s;
}

.operation-btn img:hover{
    filter: brightness(0) opacity(0.7);
    transform: scale(1.2);
    transition: all 0.3s;
}

/* .student-list-div i {
    background-color: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.student-list-div:hover i {
    background-color: var(--secondary);
    right: 25px
} */

.back-btn {
    text-align: right;
}

.student-list .btn-primary {
    padding: 0 50px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
    margin: 25px;
}

.user-profile-image {
    width: 140px;
    height: 140px;
    border-radius: 160px;
    border: 3px solid #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3) !important;
}

.student-profile {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
}

.interest-btn {
    padding: 0 15px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
}

.personal-info-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.student-profile .company-detail-title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    margin: 0;
}

.student-profile .company-detail-title span {
    position: absolute;
    top: 0;
    right: 0px;
    font-weight: 700;
}

.student-profile .company-detail {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
}

.student-profile-acco .accordion-item {
    background-color: var(--primary);
    color: var(--white);
    margin-bottom: 25px;
    border: 0px;
    border-radius: 10px;
}

.student-profile-acco .accordion-button {
    background-color: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    border-radius: 10px !important;
}

.student-profile-acco .accordion-button::after {
    background-image: url(../images/white-plus.png);
}

.student-profile-acco .accordion-button:not(.collapsed)::after {
    background-image: url(../images/white-minus.png);
}

.sub-skill .accordion-item {
    background-color: #e9f2f4;
    color: var(--primary);
    margin-bottom: 15px;
    border: 0px;
    border-radius: 10px;
}

.sub-skill .accordion-button {
    background-color: #e9f2f4;
    color: var(--primary);
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 10px !important;
    text-transform: uppercase;
}

.sub-skill .accordion-button::after {
    background-image: url("../../../assets/images/down.png") !important;
    background-size: 14px;
    width: 14px;
    height: 14px;
    background-position: center;
    line-height: 14px;
}

.sub-skill .accordion-button:not(.collapsed)::after {
    background-image: url("../../../assets/images/down.png") !important;
    background-size: 14px;
    width: 14px;
    height: 14px;
    background-position: center;
    line-height: 14px;
}

.sub-skill .skill-name-detail-div {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #92b3de;
}

.sub-skill .title {
    font-size: 18px;
    margin-bottom: 15px;
}

.green-btn {
    background: #63931f !important;
    border: 0px;
    padding: 0 15px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
}

.modal-header,
.modal-footer {
    display: block;
    border: 0;
    position: relative;
}

.modal-header .btn-cross {
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    background-color: #0148a6;
    color: #fff;
    position: absolute;
    top: 5px;
    right: 5px
}

.modal-header .btn-cross:hover {
    background-color: var(--secondary);
}

.modal-footer .btn-primary {
    border: 0px;
    padding: 0 15px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
}

.modal-title {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    font-size: 36px;
    margin-top: 25px;
}

.modal-header p {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.print {
    border: 0px;
    padding: 0 15px;
    border-radius: 7px;
    line-height: 40px;
    height: 40px;
    float: right;
    margin-top: 15px;
    background: var(--primary) !important;
    font-size: 20px;
}

.print:hover {
    background: var(--secondary) !important;
}

.page-margin {
    margin-top: 20px;
}


.labl {
    display: block;
    width: 100%;
}

.labl>input {
    /* HIDE RADIO */
    visibility: hidden;
    /* Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}

.labl>input+div {
    /* DIV STYLES */
    cursor: pointer;
    color: var(--black);
    border-radius: 7px;
    border: 2px solid transparent;
    background-color: #e9f2f4;
    border: 1px solid #e9f2f4;
    padding: 3px 0.75rem;
    font-weight: 500;
}

.labl>input:checked+div {
    /* (RADIO CHECKED) DIV STYLES */
    background-color: #e9f2f4;
    border: 1px solid var(--primary);
}

.date-icon {
    position: absolute;
    right: 15px;
    bottom: 20px;
    color: var(--primary);
    cursor: pointer;
}

.bi-calendar-date+.datepicker_input+label {
    padding-left: 3.5rem;
    z-index: 3;
}

.tempus-dominus-widget.light {
    background-color: #e9f2f4;
    border: 1px solid var(--primary);
}

.back-btn img{
    transition: all 0.3s;
}

.back-btn img:hover{
    filter: brightness(0) opacity(0.7);
    transform: scale(1.1);
    transition: all 0.3s;
}

.notify-icon{
    display: none;
}

.cookies {
    width: 380px;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 10px 37px rgba(0, 0, 0, .15);
    border: .5px solid hsla(0, 0%, 46%, .28);
    position: fixed;
    left: 1.5625rem;
    bottom: 1.5625rem;
    padding: 15px;
    display: flex;
    flex-direction: column;
    z-index: 111;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.cookies a {
    font-size: 18px;
    margin-bottom: 0px;
    text-align: right;
    color: var(--primary) !important;
}

.cookies a:hover {
    color: var(--black) !important;
}

.cookies h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font);
}

.cookies p {
    font-size: 15px;
    margin-bottom: 15px;
}

.cookies p a {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.cookies .btn {
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}

.terms-text {
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-align: justify;
}

.terms-text i {
    color: var(--black);
    position: absolute;
    top: 5px;
    left: 0;
}

.trems-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.terms-ul {
    margin: 0 0 20px 0;
    padding: 0;
}

.terms-ul li {
    padding-left: 15px;
    position: relative;
    line-height: 22px;
    margin-bottom: 10px;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-align: justify;

}

.terms-ul li::before {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--secondary);
    content: "";
    border-radius: 10px;
    top: 10px;
    left: 0;
}

.emp-project-img {
    position: relative;
    background-color: #e9f2f4;
    width: 100%;
    height: 150px;
    border-radius: 5px;
}

.emp-project-img img {
    max-width: 100% !important;
    max-height: 150px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    border-radius: 5px;
}


.emp-project-img .overlay {
    width: 0;
    height: 0;
    z-index: 1;
    background-color: var(--black);
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    border-radius: 5px;
}

.emp-project-img:hover .overlay {
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}

.emp-project-img i {
    position: absolute;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50px;
    text-align: center;
    background-color: #fff !important;
    color: var(--primary) !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 22px !important;
    z-index: 1;
}

.emp-project-img:hover i {
    display: block;
}

.emp-project-img-prev i,
.emp-project-img-next i{
    color: #fff !important;
    font-size: 16px !important;
    z-index: 10000 !important;
    width: 26px !important;
    height: 26px !important;
    line-height: 26px !important;
    border-radius: 26px !important;
    margin-top: -40px;
    transition: all 0.3s;
    position: absolute;
    background-color: #0148a6 !important;
    text-align: center;
}

.emp-project-img-prev:hover i,
.emp-project-img-next:hover i{
    background-color: var(--secondary) !important;
    transition: all 0.3s;
}

.emp-project-img-next i{
    right : 12px !important
}

.emp-project-img-prev i{
    right : 48px !important
}
