body {
    background-color: var(--body_color);
    color: var(--text_color_secondary);
}

.teacherdashboard_header {
    padding: 0 0 10px;
    color: var(--text_color_primary);
}

.teacherdashboard_header_container {
    background: var(--primary_color);
    /* border-radius: var(--border-radius); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    height: 8vh;
}

.teacherdashboard_header_text_container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    text-transform: capitalize;
}

.teacherdashboard_site_pic {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.teacherdashboard_site_pic img {
    width: 100%;
}


.teacherdashboard_site_icon {
    font-size: 22px;
    line-height: 25px;
}

.teacherdashboard_header_Profile_container {
    background: #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    padding: 5px;
}

.teacherdashboard_header_Profile_container img {
    width: 100%;
}

.teacherdashboard_load_container {
    height: 100%;
    margin-bottom: 15px;
    height: calc(100vh - 30vh);
    overflow: scroll;
    scrollbar-width: none;
}

.teacherdashboard_scroll_cards {
    margin-bottom: 10px;
}

#teacherCarousel {
    width: 100%;
    height: 200px;
    background-color: red;
    border-radius: var(--border_radius);
}

#teacherCarousel button {
    /* opacity: .2; */
}

.carousel-indicators button {
    height: var(--carosol_round) !important;
    width: var(--carosol_round) !important;
    border-radius: 50% !important;
}

.teacherdashboard_features_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teacherdashboard_features_content {
    /* background: var(--body_color); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--border_radius);
    /* padding: 15px 10px; */
    color: var(--primary_color);
}

.teacherdashboard_cards_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 10px;
    background: var(--body_color);
    padding: 15px 10px;
    border-radius: var(--border_radius);
}

.teacherdashboard_cards_text {
    /* margin-bottom: 10px; */
    text-transform: capitalize;
    font-size: 18px;
    font-weight: bolder;
    align-self: flex-start;
    padding: 8px 10px;
}

.teacherdashboard_cards_name {
    text-align: center;
    line-height: 14px;
}

.teacherdashboard_cards {
    background: var(--background_color);
    border-radius: var(--border_radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
    width: 23%;
    text-decoration: none;
    text-transform: capitalize;
    padding: 8px;
    font-size: 11px;
    color: var(--primary_color);
    border: 1px solid #00000034;
}

.teacherdashboard_cards_icon {
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacherdashboard_cards_icon img {
    width: 50%;
}

.teacherdashboard_footer {
    height: 7vh;
    overflow: hidden;
    background: var(--body_color);
}

.teacherdashboard_footer_container ul {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 10px 0;
    width: 100%;
}

.teacherdashboard_footer_container ul li a {
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.teacherdashboard_footer_icon {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary_color);
}

.teacherdashboard_footer_icon img {
    width: 22px;
}

.teacherdashboard_footer_name {
    color: var(--primary_color);
    font-size: 12px;
}



/* ===== Add Batch ===== */


.teacherdashboard_add_batch_container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 80px;
}

.add_batch_container {
    height: 60%;
    width: 90%;
    background: var(--body_color);
    backdrop-filter: blur(25px);
    overflow: hidden;
    border: 1px solid var(--primary_color);
    border-radius: var(--border_radius);
}

.add_batch_heading_text {
    text-transform: capitalize;
    padding: 15px;
    font-size: 22px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bolder;
    background: var(--primary_color);
}

.addbatch_content {
    padding: 10px 15px;
}

.form_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    margin-top: 20px;
    border: 1px solid var(--primary_color);
    border-radius: var(--border_radius);
    height: 45px;
}

.form_container label {
    position: absolute;
    top: 9px;
    left: 12px;
    color: var(--primary_color);
    font-size: 18px;
    transition: 0.3s;
    pointer-events: none;
}

.form_container input {
    border: none;
    outline: none;
    font-size: 17px;
    background: transparent;
    width: 100%;
    padding: 0 15px;
    height: 65%;
}

.form_container input::placeholder {
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--text_color_secondary);
}

.form_container:last-child {
    border: none;
}

.form_container button {
    border: none;
    outline: none;
    background: transparent;
    background: var(--primary_color);
    height: 40px;
    font-size: 17px;
    font-weight: bolder;
    width: 100%;
    color: var(--text_color_primary);
    border-radius: var(--border_radius);
}

.form_container.active label,
.form_container input:focus+label {
    top: -12px;
    font-size: 12px;
    padding: 2px 5px;
    background: var(--primary_color);
    color: var(--text_color_primary);
    border-radius: var(--border_radius);
    font-weight: bold;
}


.form_container.active input::placeholder {
    opacity: 1;
}






/* ===== Payment Histroy ====== */


.teacherdashboard_payment_histroy .teacherdashboard_features_content {
    margin-bottom: 10px;
}

.teacherdashboard_payment_histroy .teacherdashboard_features_content .teacherdashboard_cards_text {
    padding: 0 10px 8px 10px;
}

.payment_short_report_container {
    background: var(--body_color);
    width: 100%;
    padding: 10px;
    border-radius: var(--border_radius);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 10px;
}

.payment_short_report_card {
    background: #dbf7c4;
    border: 2px solid #64c118;
    width: 48%;
    border-radius: var(--border_radius);
    text-transform: capitalize;
    padding: 10px;
    height: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    font-weight: bolder;
}

.payment_short_report_card:nth-child(2) {
    background: #fbe3e3;
    border: 2px solid #ef4040;
}

.payment_short_report_card:nth-child(3) {
    background: #e4f6fc;
    border: 2px solid #2bb9e9;
}

.payment_short_report_card:nth-child(4) {
    background: #f4edff;
    border: 2px solid #a36ef6;
}

.payment_short_report_card img {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 40px;
    opacity: .3;
}

.payment_short_report_card span:first-child {
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    width: 100%;
}

.payment_short_report_card span:last-child {
    font-size: 15px;
}

.payment_learge_report_content {
    background: var(--body_color);
    border-radius: var(--border_radius);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment_learge_report_content>.teacherdashboard_cards_text {
    text-align: center;
    width: 100%;
    font-size: 18px;
}

.payment_learge_report_body {
    width: 100%;
    text-transform: capitalize;
    background: #ffe5d2;
    border: 2px solid #f6c9a8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: var(--border_radius);
    overflow: hidden;
    padding: 8px;
}

.payment_learge_report_body_header_container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.payment_learge_report_body_header_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 0 5px 0;
}

.payment_learge_report_body_header_heading span {
    font-weight: bolder;

}

.payment_learge_report_body_header_heading span span {
    font-weight: normal;
    text-transform: uppercase;

}

.payment_learge_report_body_header_fields {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--primary_color);
    color: var(--text_color_primary);
    border-radius: 4px;
    margin-bottom: 5px;

}

.payment_learge_report_body_datarow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    border-radius: 4px;
}

.payment_learge_report_body_datarow:nth-child(even) {
    background: #e4f6fc;
    border: 2px solid #2bb9e9;
}

.payment_learge_report_body_datarow:nth-child(odd) {
    background: #dbf7c4;
    border: 2px solid #64c118;
}

.payment_learge_report_body_header_fields span:nth-child(1),
.payment_learge_report_body_datarow span:nth-child(1) {
    display: block;
    width: 12%;
    border-right: 1px solid var(--body_color);
}

.payment_learge_report_body_datarow span:nth-child(2) {
    text-align: left;
}

.payment_learge_report_body_header_fields span:nth-child(2),
.payment_learge_report_body_datarow span:nth-child(2) {
    display: block;
    width: 50%;
    border-right: 1px solid var(--body_color);
}

.payment_learge_report_body_header_fields span:nth-child(3),
.payment_learge_report_body_datarow span:nth-child(3) {
    display: block;
    width: 21%;
    border-right: 1px solid var(--body_color);
}

.payment_learge_report_body_header_fields span:nth-child(4),
.payment_learge_report_body_datarow span:nth-child(4) {
    display: block;
    width: 15%;
}

.payment_learge_report_body_datarow span {
    text-align: center;
    font-size: 12px;
    padding: 5px;
}

.payment_learge_report_body_header_fields span {
    text-align: center;
    font-size: 12px;
    padding: 6px 5px;
}




/* ===== Payment Report ===== */

.teacherdashboard_payment_report_container {
    height: 100%;
}

.teacherdashboard_payment_report_header {
    width: 100%;
    background: var(--body_color);
    border-radius: var(--border_radius);
    padding: 10px;
}

.teacherdashboard_payment_report_header_searchfilter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.teacherdashboard_payment_report_header_searchbox {
    border: 1.5px solid #2bb9e9;
    background: #e4f6fc;
    height: 40px;
    width: 100%;
    border-radius: var(--border_radius);
    overflow: hidden;

}

.teacherdashboard_payment_report_header_searchbox input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
}

.teacherdashboard_payment_report_header_filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.payment_report_filter {
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 35px;
    font-size: 11px;
    text-transform: capitalize;
}

.payment_report_filter:first-child {
    width: 50%;
    background: #dbf7c4;
    border: 1.5px solid #64c118;
}

.payment_report_filter:nth-child(2) {
    background: #e4f6fc;
    border: 1.5px solid #2bb9e9;
}

.payment_report_filter:nth-child(3) {
    background: #f4edff;
    border: 1.5px solid #a36ef6;
}

.teacherdashboard_payment_report_header_searchfilter .payment_report_filter {
    height: 40px;
    border-radius: var(--border_radius);
    border: 1.5px solid #f6c9a8;
    background: #ffe5d2;
    display: none;
}

.teacherdashboard_payment_report_body {
    background: var(--body_color);
    padding: 10px;
    margin-top: 10px;
    border-radius: var(--border_radius);
    border: 1px solid #00000025;
}

.teacherdashboard_payment_report_head,
.teacherdashboard_payment_report_datarow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
}

.teacherdashboard_payment_report_head {
    background: var(--primary_color);
    color: var(--text_color_primary);
    border-radius: 4px;
    padding: 5px;

}

.teacherdashboard_payment_report_datarow {
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
}


.teacherdashboard_payment_report_head span {
    font-size: 10px;
}

.teacherdashboard_payment_report_datarow span {
    font-size: 11px;
}

.teacherdashboard_payment_report_head span,
.teacherdashboard_payment_report_datarow span {
    font-weight: bolder;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.teacherdashboard_payment_report_head span:first-child,
.teacherdashboard_payment_report_datarow span:first-child {
    width: 13%;
}

.teacherdashboard_payment_report_head span:nth-child(2),
.teacherdashboard_payment_report_datarow span:nth-child(2) {
    width: 38%;
}

.teacherdashboard_payment_report_head span:nth-child(3),
.teacherdashboard_payment_report_datarow span:nth-child(3) {
    width: 14%;
}

.teacherdashboard_payment_report_head span:nth-child(4),
.teacherdashboard_payment_report_datarow span:nth-child(4) {
    width: 15%;
    margin-left: 6px;
}

.teacherdashboard_payment_report_head span:nth-child(5),
.teacherdashboard_payment_report_datarow span:nth-child(5) {
    width: 13%;
    margin-left: 6px;
}

.teacherdashboard_payment_report_content {
    /* display: none; */
}

.teacherdashboard_payment_batch_report_content {
    /* display: none; */
    overflow-x: auto;
    width: 100%;
    scrollbar-width: thin;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.teacherdashboard_payment_batch_report_content_heading,
.teacherdashboard_payment_batch_report_content_datarow {
    display: flex;
    padding: 8px;
    scrollbar-width: none;
    border-radius: var(--border_radius);
    gap: 8px;
    background: var(--primary_color);
    color: var(--text_color_primary);
    width: min-content;
}

.teacherdashboard_payment_batch_report_content_heading span,
.teacherdashboard_payment_batch_report_content_datarow span {
    font-size: 11.5px;
    text-align: center;
    display: block;
    min-width: 90px !important;
    height: 100%;
    text-transform: capitalize;
    /* background-color: red; */
}

.teacherdashboard_payment_batch_report_content_heading span:nth-child(2),
.teacherdashboard_payment_batch_report_content_datarow span:nth-child(2) {
    font-size: 11.5px;
    text-align: center;
    display: block;
    min-width: 200px !important;
    height: 100%;
    text-transform: capitalize;
}

.teacherdashboard_payment_batch_report_content_datarow span:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 15px;
}

.teacherdashboard_payment_batch_report_content_datarow span:nth-child(2) div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.teacherdashboard_payment_batch_report_content_datarow span:nth-child(2) div img {
    width: 100%;
}

.teacherdashboard_payment_batch_report_content_datarow {
    background: transparent;
    color: var(--text_color_secondary);
    display: flex;
    align-items: center;
    height: 100%;
}