/* imported fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* open sans */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* color palete */
:root {
    --bg: #FAFAFA;
    --black: #000;
    --white: #fff;
    --yellow: #FFC94A;
    --charcoal: #4A4A4A;
    --silver: #BDBDBD;
    --mango: #F4A800;
    --light: #E3E3E3;
    --deep-yellow: #FDB515;
    --dull-yellow: rgba(255, 201, 74, 0.20);
    --dark-gray: rgba(74, 74, 74, 0.40);
    --box-shadow: rgba(255, 201, 74, 0.10);
    --chocolate: #4D4D4D;
    --date: #696969;
    --submitted: #04C800;
    --modalInput: #F1F1F1;
    --paymentcard: #EDEDED;
    --modalInputText: #BEBEBE;
}

.a-center {
    align-items: center;
}

.j-center {
    justify-content: center;
}

.charcoal{
    color: #4A4A4A;
}
.gray{
    color:#9B9B9B;
}
li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    color: var(--charcoal);
    font-family: "League Spartan";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

h2 {
    color: #FFF;
    font-family: "League Spartan";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
}

h3 {
    color: var(--charcoal);
    font-family: "League Spartan";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
}

h4 {
    color: var(--charcoal);
    font-family: "League Spartan";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

h5 {
    color: var(--charcoal);
    font-family: "League Spartan";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
}

h6 {
    color: #4D4D4D;
    /* text-align: center; */
    font-family: "League Spartan";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: lowercase;
}

.mango-color {
    color: var(--mango);
}

.open-sans {
    font-family: "Open Sans", sans-serif;
    color: var(--charcoal);
}

.hero-heading {
    padding: 40px 20px;
}

/* font sizes */
.fs-48 {
    font-size: 48px;
    line-height: normal;
}

.fs-40 {
    font-size: 40px;
    line-height: normal;
}

.fs-32 {
    font-size: 32px;
    line-height: normal;
}

.fs-28 {
    font-size: 28px;
    line-height: normal;
}

.fs-24 {
    font-size: 24px;
    line-height: normal;
}

.fs-22 {
    font-size: 22px;
    line-height: normal;
}

.fs-20 {
    font-size: 20px;
    line-height: normal;
}

.fs-18 {
    font-size: 18px;
    line-height: normal;
}

.fs-16 {
    font-size: 16px;
    line-height: normal;
}

.fs-14 {
    font-size: 14px;
    line-height: normal;
}

.fs-12 {
    font-size: 12px;
    line-height: normal;
}

/* line height */
.line-24_4 {
    line-height: 24.24px;
}

.line-22_8 {
    line-height: 22.88px;

}

.line-19_6 {
    line-height: 19.611px;
}

/* font weights */
.bolder {
    font-weight: 900;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.light {
    font-weight: 300;

}

.card {
    border: unset;
    box-shadow: none;
    background: transparent;
}

/* buttons */
.login-btn {
    display: flex;
    width: 360px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 90px;
    background: var(--yellow);
    box-shadow: 0px 8px 25px 0px var(--dull-yellow);
    color: var(--white);
    transition: .2s ease-in;
}

.rounded-btn {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    background: var(--deep-yellow);
    border: 2px solid var(--deep-yellow);
    transition: .2s ease-in;
    color: var(--white);
    height: 47px;
    text-transform: capitalize;
}

.rounded-btn:hover {
    background: var(--white);
    border: 2px solid var(--deep-yellow);
    transition: .2s ease-in;
    color: var(--deep-yellow);
}

.black-btn{
    display: flex;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    background: #4A4A4A;
    border: 2px solid  #4A4A4A;
    transition: .2s ease-in;
    color: var(--white);
    height: 47px;
}

.black-btn:hover {
    background: #000000;
    border: 2px solid #000000;
    transition: .2s ease-in;
    color: var(--white);
}

a.create_recommend {
    color: black;
    border-radius: 33px;
    border: 2.5px solid #4A4A4A;
    display: flex;
    width: 13em;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.square-btn {
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--white);
}

/* form-controls */
.form-control {
    font-size: 14px;
    font-weight: 400;
    /* line-height: normal; */
    color: var(--charcoal);
    appearance: none;
    display: flex;
    align-items: center;
    background: var(--white);
}

.form-control-2 {

    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 33px;
    border: 1px solid var(--deep-yellow);
    padding: 15px 20px;
    justify-content: space-between;
}

.form-control-1 {
    border-radius: 20px;
    box-shadow: 0px 6px 40px 0px var(--box-shadow);
    padding: 15px 25px;
    gap: 25px;
    text-transform: capitalize;
    border: none;
}

label {
    margin: 0;
    text-transform: capitalize;
    color: var(--charcoal);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "League Spartan";
}

body {
    background: var(--bg);
}

div#kt_app_header {
    border-bottom: 1px solid var(--yellow);
}

.back-btn {
    display: flex;
    width: 50px;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 85px;
}

.yellow {
    color: var(--yellow);
}

.yellow-bg {
    border: 1px solid var(--yellow);
    background: var(--yellow);

}

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

/* sidebar */
.symbol {
    border: 6px solid var(--yellow);
}

.sidebar-profile-details,
.sidebar-profile-details a,
.sidebar-profile-details a:hover {
    color: var(--charcoal);
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    /* color: red; */
}

[data-kt-app-layout=dark-sidebar] .app-sidebar {
    background-color: var(--bg);
    border-right: 1px solid var(--yellow);
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .app-sidebar-logo {
    border-bottom: unset;
}

.sidebar-logo {
    padding-top: 70px;
}

.square-btn i[class*=" fa-"],
.square-btn i[class^=fa-],
.yellow-icon {
    border-radius: 5px;
    background: var(--white);
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-size: 16px;
    line-height: normal;
}

.menu-link {
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
}

.menu-title {
    text-transform: capitalize;
    text-align: left;
    margin-bottom: 0;
}

.menu-item .menu-link .menu-title {
    flex-grow: unset;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item .menu-link.active .menu-title {
    color: unset;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item .menu-link .menu-title {
    color: var(--charcoal);
}

.app-sidebar-menu .menu>.menu-item>.menu-link>.menu-title {
    font-weight: 400;
    font-size: 20px;
}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item .menu-link.active,
[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item .menu-link.hover {
    transition: color .2s ease;
    color: var(--white);
    background: var(--yellow);
    border-radius: unset;
    border-radius: 10px;

}

[data-kt-app-layout=dark-sidebar] .app-sidebar .menu>.menu-item .menu-link.active .menu-icon i {
    color: var(--yellow);
    font-size: 16px;
}

.menu-icon {
    color: var(--charcoal);
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;
}

.menu-item .menu-link .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-right: 0;
}

/* admin-form1 */

.card .card-header {
    border-bottom: none;

}

.banner-box {
    padding: 20px 0;
}

/* .form-box {
    padding: 28px 0;
} */

.edit-btn {
    background: var(--white);
    width: 100px;
    color: var(--deep-yellow);
    transition: .2s ease-in;
}

.edit-btn:hover {
    color: var(--white);
    background-color: var(--deep-yellow);
    transition: .2s ease-in;
}

/* admin-form2 */
.password {
    position: relative;
}

.password i[class*=" fa-"],
.password i[class^=fa-] {
    line-height: normal;
    font-size: 16px;
    background-color: transparent;
    color: var(--deep-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    position: absolute;
    right: 27px;
    bottom: 8px;
    cursor: pointer;
}

/* templates */

.hero-banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 194px;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(244, 171, 0, 0.85) 0%, rgba(244, 171, 0, 0.85) 100%), url(../images/banner.png) lightgray 0px -315.282px / 100% 321.821% no-repeat;
    box-shadow: 0px 6px 40px 0px var(--box-shadow) inset;
    display: flex;
    height: 200px;
    padding: 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.admin-profile {
    position: absolute;
    top: 108px;
    left: 57px;
}

i[class*=" fa-"],
i[class^=fa-] {
    line-height: normal;
    font-size: 16px;
    background-color: var(--deep-yellow);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-icon {

    height: unset;
    width: unset;

}

.profile-pic-img {
    /* border: 10px solid var(--white);
    border-radius: 126.623px; */
    position: relative;

}

.image-input.image-input-outline .image-input-wrapper {
    border: 10px solid var(--white);
    box-shadow: var(--bs-box-shadow);
    width: 171.369px;
    height: 171.369px;
    border-radius: 50%;

}

.btn-circle {
    position: absolute;
    top: 10px;
    right: 20px;
}

/* i[class*=" fa-"], i[class^=fa-] {
    line-height: normal;
    font-size: 16px;
    background-color: var(--deep-yellow);
    color: var(--white);
    width: 32px;
    position: absolute;
    border-radius: 62px;
    top: 136px;
    right: 14px;
} */

.section01 {
    padding: 25px 10px;
    position: relative;
    border-radius: 20px;
    background-size: cover;
}

.section01:before {
    content: '';
    top: 0;
    left: 0;
    opacity: .9;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    background: #F4AB00;
}

.dashboard-card .ds1 {
    font-size: 24px;
}

.dashboard-card .ds3 {
    font-size: 18px;
}

.dashboard-card .card-body {
    padding: 0 1.5rem;
}

.dashboard-card {
    height: 100vh;
    max-height: 144px;
}

.section01:not(.dashboard-card) {
    min-height: 194px;
}

.dashboard-card .ds2 {
    font-size: 40px;
    font-weight: 700;
}

.dashboard-card span {
    max-width: 90%;
    line-height: 1.2;
    font-weight: 400;
}

.dashboard-profile:has(.dashboard-btns) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section01>:not(:first-child) .card:before {
    content: '';
    top: 50%;
    left: -10%;
    width: 1px;
    height: 75%;
    position: absolute;
    background: #fff;
    transform: translate(10%, -50%);
}

/*Area Line Chart CSS*/
.area_chart_wrapper {
    padding: 20px;
    border-radius: 10px;
}

.box_shadow {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}

.area_chart_wrapper .chart_header_wrapper .chart_header_text label {
    font-size: 14px;
    line-height: 1.2;
}

.area_chart_wrapper .chart_header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/*Activity Log*/
.activity-log-table {
    margin: 0;
}

.activity-log-table tbody :last-child td {
    padding-bottom: 0;
}

.table-responsive .activity-log-table .td-name {
    font-weight: 400;
}

.table-responsive .activity-log-table .td-hours {
    font-size: 14px;
}

.table-responsive .activity-log-table td {
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    padding: 16px 10px;
    border-bottom: none;
}

.table-responsive .activity-log-table .td-name:after {
    left: 4px;
    width: 8px;
    height: 8px;
    background: #F4A800;
}

.table-responsive .activity-log-table .td-name:before {
    left: 0;
    width: 16px;
    height: 16px;
    background: #FFC94A;
    border: 2px solid #F4A800;
}

.table-responsive .activity-log-table .td-name:before,
.table-responsive .activity-log-table .td-name:after {
    top: 50%;
    content: '';
    position: absolute;
    border-radius: 100px;
    transform: translateY(-50%);
}

.menu-sub-dropdown.menu.show,
.menu-sub-dropdown.show[data-popper-placement] {
    display: flex;
    will-change: transform;
    animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1;
    border-radius: 22px;
    border: 1px solid var(--dull-yellow);
    background: var(--white);
    box-shadow: 0px 6px 40px 0px var(--box-shadow);
    width: 150px;
}

.table-menu-link,
.filter option {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.table:not(.table-bordered) thead tr th:nth-child(1) {
    border-radius: 22px 0px 0px 0px;
}

.table:not(.table-bordered) thead tr th:last-child {
    border-radius: 0px 22px 0px 0px;
}

.action-btn {
    color: var(--yellow);
}

.table {
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}

body .table thead tr th {
    background-color: var(--yellow);
    text-align: center;
}

body .table tbody tr td {
    text-align: center;
}

.table:not(.table-bordered) th {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--white);
}

.table:not(.table-bordered) tr {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    color: var(--chocolate);
}

.search-box {
    width: 385px;
    padding: 4px 2px;
    gap: 10px;
    border-radius: 160px;
    background: var(--dull-yellow);
}

.search-field {
    color: rgba(136, 136, 136, 0.53);
    border: none;
    background-color: transparent;
    width: 95%;
}

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

.search-icon {
    width: 30px;
    height: 30px;
    padding: 10px;
    gap: 10px;
    border-radius: 65px;
    background: var(--yellow);
}

.date-text {
    color: var(--chocolate);
}

.numeric-date {
    color: var(--date);
}

.form-control:disabled {
    background-color: var(--white);

}

/*.profile-pctr-style{*/
/*border: 10px solid var(--white);*/
/*box-shadow: var(--bs-box-shadow);*/
/*width: 190px;*/
/*height: 190px;*/
/*border-radius: 50%;*/
/*    bottom: 50px;*/
/*    left: 35px;*/
/*}*/

/*.pctr-width{*/
/*    height: 171px;*/
/*    width: 171px;*/
/*}*/


#hero-section .dashboard-btns {
    gap: 15px;
    display: flex;
}

#hero-section .user-profile {
    display: flex;
    align-items: center;
    margin: -70px 0 0 20px;
}

#hero-section .user-info {
    margin: auto 0 20px 20px;
}

#hero-section .user-profile input[type="file"] {
    width: 0;
    opacity: 0;
}

#hero-section .profile-img label {
    width: 28px;
    right: 10px;
    height: 28px;
    bottom: 10px;
    position: absolute;
    border-radius: 100px;
    transform: translateY(-50%);
    background: var(--deep-yellow);
}

#hero-section .profile-img img {
    border: 10px solid var(--white);
    box-shadow: var(--bs-box-shadow);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
}

#hero-section .user-date {
    font-size: 14px;
    line-height: 1.2;
    color: #696969;
}

.black-font {
    color: var(--charcoal);
}

.nav-line-tabs .nav-item .nav-link.active {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--charcoal);
}

.nav-line-tabs .nav-item .nav-link:hover:not(.disabled) {
    border-bottom: 1px solid var(--charcoal);
}

.nav-line-tabs .nav-item .nav-link .black-font {
    color: #000;
}

.tabs-bg {
    border-radius: 20px 20px 0px 0px;
    border: 0.5px solid #DBDBDB;
    background: #FFF;
}

.recommendation-details {
    min-width: 1040px;
    min-height: 1134px;
}

.recommendation-details img {
    width: 100%;
    height: 100%;
}

.Submitted {
    color: var(--submitted);
}

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

.filter {
    appearance: none;
}

.filter:focus-visible {
    outline: none;
}

.recommendation-detailsCard {
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 6px 40px 0px var(--box-shadow);
}

.nav-line-tabs .nav-item .nav-link {
    color: var(--charcoal);
    font-weight: 600;
    line-height: normal;
}

.student-table-responsive {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: scroll;
}
.questions-list-modal {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: scroll;
}


hr {
    margin: 0;
}

.acievement-body {
    padding: 26px;
    flex-direction: column;
    gap: 25px;
    border-radius: 22px;
    background: var(--white);
}

.modal-header {
    display: flex;
    /* align-items: end; */
    justify-content: space-between;
    padding: 0;
    border-bottom: none;
}

.modal-body {
    padding: 0;
}

.modal-title {
    color: var(--charcoal);
}

.modal-footer {
    border-top: none;
    padding: 0;
}

.modalInput {
    border-radius: 10px;
    background: var(--modalInput);
    border: none;
    padding: 20px;
    gap: 10px;
    color: var(--modalInputText);
}

.modalInput:focus-visible {
    outline: none;
}

.modalInputPhoto {
    height: 258px;

}

.photoInput {
    display: none;
}

textarea {
    resize: none;
    height: fit-content;
}

textarea.form-control.form-control-2.uneditable {
    resize: vertical;
}

.notification,
.notification:active,
.notification:hover {
    border-radius: 65px;
    background: var(--deep-yellow);
    display: flex;
    width: 36px;
    height: 36px;
    padding: 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.notification>i {
    font-size: 16px;
}

.notification-icon {
    color: var(--white);
}

.notification-window {
    width: 998px;
    padding: 20px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    border-radius: 20px 0px 20px 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}

/* .notification-table tr:hover {
    border-bottom: 0.5px solid var(--yellow);
    background: linear-gradient(0deg, rgba(255, 201, 74, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%);
} */

.notification-view {
    text-decoration: underline;
    color: var(--yellow);
}

.noti-card .card-body {
    padding: 10px;
}

.form_control {
    display: flex;
    width: 360px;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 90px;
    border: 1px solid #BDBDBD;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(74, 74, 74, 0.05);
    outline: unset;
}

.login-btn,
.register-btn {
    display: flex;
    width: 360px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--yellow);
    border-radius: 90px;
    background: #FFC94A;
    box-shadow: 0px 8px 25px 0px rgba(255, 201, 74, 0.20);
}

.login-btn:hover {
    border: 1px solid var(--yellow);
}

.notification-pageTable .activity-log-table td {
    border-bottom: none;
}

.unread {
    border-bottom: 0.5px solid var(--yellow);
    background: linear-gradient(0deg, rgba(255, 201, 74, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.table-noti {
    background-color: transparent;
    border-radius: unset;
}

.student-select-box {
    appearance: auto;
}

.Questionnaire_ModalHeading {
    color: var(--charcoal);
}

.QuestionnaireIcon-box {
    border-radius: 140px;
    border: 7px solid #FFC94A;
    display: flex;
    padding: 15px 22px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.QuestionnaireIcon {
    color: #FFC94A;
    font-family: "Font Awesome 6 Pro";
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.login-img {
    height: 100vh;
    width: 100%;
    border-top-left-radius: 26%;
    border-bottom-left-radius: 26%;
}

.uneditable-form {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}

.uneditable {
    border: none;
}

.legend-input {
    border: 1px solid #BDBDBD;
    padding: 20px;
    border-radius: 90px;
    width: 360px;
}

.legend-fields input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

.legend-fields {
    transform: translateY(12px);
    background: #fff;
    padding-inline: 13px;
    margin-left: 24px;
}

.bg-login {
    background: #fff;
}

/*register form*/

.register-img {
    height: 100%;
    width: 100%;
    border-top-right-radius: 26%;
    border-bottom-right-radius: 26%;
}

.legend-input1 {
    padding: 20px;
    border-radius: 90px;
    width: 232px;
}

.yellow-font {
    color: var(--yellow);
}

.login-icon {
    line-height: normal;
    font-size: 16px;
    background-color: transparent;
    color: var(--deep-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    position: absolute;
    right: 170px;
    bottom: 10px;
    cursor: pointer;
}

.login-icon {
    line-height: normal;
    font-size: 16px;
    color: var(--deep-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.password1 .login-icon {
    line-height: normal;
    font-size: 16px;
    background-color: transparent;
    color: var(--deep-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    position: absolute;
    left: 20em;
    bottom: 10px;
    cursor: pointer;
}

input.form-control:focus,
textarea.form-control:focus {
    border: 1px solid var(--deep-yellow);
}

div .student-table-responsive {
    scrollbar-color: var(--yellow) var(--dull-yellow);
}

input#contact input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login-logo {
    width: 253.232px;
    height: 77px;
}
.login-redirect{
    max-width: 360px;
color:var(--date);
}
.login-form {
    padding-left:67px;
}
/* recommender */
.subs-card {
    padding: 40px;
    /* align-self: stretch; */
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}
 .r-subs-box .subs-card .subs-trial{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 15px; */
    padding: 20px;
    /* padding-bottom: 10px; */
    border-bottom: 1.5px solid  #DDD;
}
.r-subs-box .subs-card .subs-trial.fee{
  border-bottom: none;
}
.card .card-footer {
    border-top: none;
}
.basic-plan-btn{
   max-width: 110px;
}
input#basic-plan{
    width: 20px;
}

.modal-footer {
    justify-content: space-between;
}

.payment-box input {
    display: flex;
    height: 54px;
    padding: 15px 20px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    border: none;
    background: var(--paymentcard);
}

.payment-box input:focus-visible {
    outline: none;
}

.acievement-body.payment-body {
    padding-top: 0;
}
.payment-options{
    display: flex;
    height: 42.846px;
    padding: 3.331px 9.107px;
    align-items: center;
    gap: 1.916px;
    border-radius: 3.036px;
    border: 0.304px solid #000;
    background: #FFF;
}
.payment-options.master img{
   height: 100%;
}

.add-btn i {
    /*margin-top: -8px;*/
    border: 1px solid var(--yellow);
    border-radius: 50%;
    padding: 10px;
    background: var(--yellow);
    color: white;
    /*margin-bottom: 10px;*/
}

.trashbtn i{
    font-size: 53px;
    height: 42px;
    width: 42px;
    border: 1px solid;
    border-radius: 50%;
    margin-top: 7px;
    font-size: 16px;
    background-color: var(--deep-yellow);
    margin-bottom: 20px;
}

.bg-orange {
    background-color: var(--yellow);
    padding: 18px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -8px;
}

right_tick_img{
    width: 176px;
    height: 176px;
}
.added_ques {
    display: flex;
    height: 76px;
    padding: 15px 25px;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}

.edit-icon {
    color: #FFC94A;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    line-height: normal;
}

.modal-dialog.modal-dialog-centered.questions-modal {
    max-width: 830px;
}

.modal-content.acievement-body.questions {
    padding: 26px 38px;
}

.questions-options {
    border: 0.5px solid #DBDBDB;
    background: #FFF;
    border-top: none;
}


div .questions-list {
    scrollbar-color: var(--yellow) var(--dull-yellow);
}

.questions-list input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 1px solid var(--yellow);
    border-radius: .25rem;
    appearance: none;
    cursor: pointer;
}

.questions-list input[type="checkbox"]:checked {
    background-color: var(--yellow);
}

.questions-list input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 7px;
    height: 13px;
    border: 3px solid transparent;
    border-left: none;
    border-top: none;
    transform: rotate(45deg) scale(1);
}
.questions-list input[type="checkbox"]:checked:before {
    border-color: var(--white);
    animation: checkAnim .2s ease;
}
@keyframes checkAnim{
    form{
        transform: rotate(45deg) scale(0);
    }
}
.questions-label {
    max-width: 95%;
}

.management-modal .tagify{height: 250px;}

.management-modal  .tagify.form-control {
    display: flex;
    align-items: flex-start;
    gap: .25rem;
    padding-top: 20px;
}

.management-modal  .tagify .tagify__input {
    margin: 20px 5px;
}


.management-modal  .tagify__tag>div::before{
    box-shadow: unset;
    background-color: var(--yellow);
}

.management-modal .tagify .tagify__tag .tagify__tag-text {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    padding: 10px 20px;
}

.management-modal .tagify__tag{
    border-radius: 70px !important;
}

.management-modal .tagify .tagify__tag .tagify__tag__removeBtn {background-color: var(--white);}

.management-modal .modal .modal-dialog{width: 600px;}
.management-modal .tagify{height: 250px;}
.ques_select{
    width: 140px;
    border: none;
}
.ques_select:focus-visible{
    outline: none;
}

.chess-image img {
    height: 300px;
    width: 100%;
}

.modal-txt {
    color: #696969;
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}



.editor-styling {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 6px 40px 0px rgba(255, 201, 74, 0.10);
}
.editor-styling .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    border: none;
}

.editor-styling .ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar{border: none;}


.bordered .ck.ck-reset.ck-editor.ck-rounded-corners {
    border: none;
}

.bordered .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused),
.bordered .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused):focus-within {
    border-top: none;
    border-color: var(--deep-yellow);
}

.bordered .ck.ck-editor__main>.ck-editor__editable,
.bordered .ck.ck-toolbar.ck-toolbar_grouping,
.bordered .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    border-radius: 33px;
    border: 1px solid var(--deep-yellow);
    /* border: none; */
}

.template_image i {
    background: #FFF;
}
.management-modal .tagify .tagify__tag .tagify__tag__removeBtn {
    background-color: var(--white);
}

.management-modal .modal .modal-dialog {
    width: 600px;
}

.management-modal .tagify {
    height: 250px;
}
.days-box #kt_card_widget_17_chart{
    position: relative;
}
.days{
    position: absolute;
    left: 632px;
}
.amount-box{
    width:100%;
}

/* Welcome Modal */

.parent-img { height: 176px; width: 176px; border-radius: 50%; padding: 40px; margin-bottom: 10px; border: 6px solid var(--yellow); margin-inline: auto;}
.parent-img img { height: 100%; width: 100%; object-fit: contain;}

body .app-page  .app-main .dt-container .dt-layout-row .dt-paging .dt-paging-button , body .dt-container .dt-layout-row .dt-paging .dt-paging-button:hover{ width: 28px; height: 28px; padding: 10px 0px 0px 0px; border-radius: 50%; color: #FFC94A !important; border: 2px solid #FFC94A; padding: 0pc; display: inline-flex; align-items: center; justify-content: center; margin: 0px; }
body .app-page  .app-main  .dt-container .dt-layout-row .dt-paging .dt-paging-button.current { background-color: #FFC94A; color: #fff !important; }
body .app-page  .app-main  .dt-container .dt-search { display: none; }
body .app-page  .app-main  .dt-container .dt-layout-row  nav { display: flex; column-gap: 8px; }
body .app-page  .app-main .dt-container .dt-layout-row  .dt-layout-end { justify-content: start; margin-left: unset; margin-right: auto; }
.parent_card  .round_btn_presets{display:unset;margin-left:30px}
#assign-student-modal.modal.show .modal-dialog {max-width:45%}



.custom_table_dropdown{width: fit-content !important;}
.menu.menu-sub.menu-sub-dropdown .table-menu-item  a:hover{background:var(--yellow)}
.menu.menu-sub.menu-sub-dropdown {gap:10px;width: fit-content !important;}
.sec_program .custom_flex{display: flex;align-items: center;gap:12px}


.custom-btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.custom-btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}
