﻿/* poppins-regular - latin-ext_latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v15-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/poppins-v15-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/poppins-v15-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/poppins-v15-latin-ext_latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500 - latin-ext_latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v15-latin-ext_latin-500.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/poppins-v15-latin-ext_latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/poppins-v15-latin-ext_latin-500.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-500.woff') format('woff'), /* Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/poppins-v15-latin-ext_latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin-ext_latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v15-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/poppins-v15-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/poppins-v15-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
    url('../fonts/poppins-v15-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/poppins-v15-latin-ext_latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* Root Variables */

:root {
    --cl-primary: #009744 !important;
    --cl-primary-light: #def2e6 !important;
    --cl-primary-dark: #008f40 !important;
    --cl-secondary: #FFBD3E !important;
    --cl-accent: #EC4E20 !important;
    --cl-dark: #272727 !important;
    --cl-modal-back: #11111159 !important;
    --cl-gray: #e6e6e6 !important;
    --cl-light-gray: #0000000a !important;
    --cl-light: #efefef !important;
    --cl-text: #111111 !important;
    --cl-white: #fff !important;
    --cl-red: #e10000 !important;
    --cl-warning: #ffcb00 !important;
    --cl-success: #5de500 !important;
    --font-primary: .85rem !important;
    --font-small: .75rem !important;
    --font-xsmall: .7rem !important;
    --font-h1: 1.6rem !important;
    --font-h2: 1.4rem !important;
    --font-h3: 1.2rem !important;
    --font-h4: 1rem !important;
    --cl-grad-gray: background: linear-gradient(0deg, rgb(255 255 255) 0%, rgb(209 209 209) 50%, rgb(215 215 215) 100%)
}

/* Static Background Colors */

.bg-cl-pri {
    background-color: var(--cl-primary);
}

.bg-cl-pri-light {
    background-color: var(--cl-primary-light);
}

.bg-cl-sec {
    background-color: var(--cl-secondary);
}

.bg-cl-acc {
    background-color: var(--cl-accent);
}

.bg-cl-dark {
    background-color: var(--cl-dark);
}

.bg-cl-gray {
    background-color: var(--cl-gray);
}

.bg-cl-light {
    background-color: var(--cl-light);
}

.bg-cl-yellow {
    background: linear-gradient(360deg, var(--warning), #ffdd12) !important;
}

    .bg-cl-yellow:hover {
        color: var(--cl-dark);
    }


/* Static Colors */
.cl-pri {
    color: var(--cl-primary);
}

.cl-sec {
    color: var(--cl-secondary);
}

.cl-dark {
    color: var(--cl-dark);
}

.cl-gray {
    color: var(--cl-gray);
}

.cl-light {
    color: var(--cl-light);
}

.cl-yellow {
    color: var(--yellow);
}


/* Static Background Colors */


.gradient {
    background: linear-gradient(0deg, rgb(0 0 0 / 15%), transparent) !important;
}

/*.bg-pri {
    background-color: var(--cl-primary) !important;
}

.bg-sec {
    background-color: var(--cl-secondary) !important;
}

.bg-dark {
    background-color: var(--cl-dark) !important;
}

.bg-dark-alt {
    background-color: var(--cl-black);
}

.bg-gray {

}

.cl-pri {
    background-color: var(--cl-primary) !important;
}

.cl-sec {
    background-color: var(--cl-secondary) !important;
}

.cl-alt {
    background-color: var(--cl-alternative) !important;
}

.cl-dark {
    background-color: var(--cl-dark) !important;
}

.cl-dark-alt {
    background-color: var(--cl-black);
}*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: border-color .15s cubic-bezier(0.18, 0.89, 0.32, 1.28),box-shadow .15s ease-in-out;
    scroll-behavior: smooth;
}

body {
    background-color: var(--cl-light);
    font-family: Poppins, sans-serif;
    color: var(--cl-dark);
}

a {
    font-weight: 400;
    color: var(--cl-dark);
    text-decoration: none;
}

    a:hover, a:active, a:focus {
        outline: none;
        text-decoration: none;
    }

p {
    font-weight: 400;
    padding: 0;
    margin: 10px 0 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin: 0 0 30px 0;
    padding: 0;
}

.container {
    max-width: 1366px;
}

.listed ul li {
    font-size: 0.9rem;
}

    .listed ul li u {
        font-size: 0.9rem;
    }


.font-w-500 {
    font-weight: 500 !important;
}

.text-underline {
    text-decoration: underline;
}


@media (max-width: 992px) {
    .mfix {
        margin-top: 4rem !important;
    }
}

.textAday {
    font-size: .9rem;
    margin: 0 0 0 1rem;
    align-self: center;
}

@media (max-width:425px) {
    .textAday {
        font-size: .8rem;
        margin-left: 0;
    }
}

.ogretmen-secarea {
    background-color: var(--cl-light);
}

.bg-ogretmen {
    background: var(--cl-primary) !important;
}

.smb {
    display: none;
}


@media (max-width: 768px) {

    .mfix {
        margin-top: 3rem !important;
    }

    .hmb {
        display: none !important;
    }

    .smb {
        display: block !important;
    }

    .h-75px {
        height: 75px;
    }

    .fixh {
        min-height: 92vh !important;
    }
}


.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-85 {
    width: 85% !important;
}

.w-90 {
    width: 90% !important;
}

#loginscr {
    width: 100%;
    position: static;
    height: -webkit-fill-available;
    background: url(../img/background-2.png) no-repeat;
    background-size: cover;
}

    #loginscr .loginbox {
        border: 2px solid #f7f7f7;
        background-color: #ffffff40;
        padding: 20px 10px;
        display: inline-flex;
        color: #111111;
    }

/* Modal Styles */

.modalnewgen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--cl-modal-back);
    opacity: 1;
}

.modalnewcent {
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
}

@media (max-width:768px) {
    .modalnewcent {
        width: 100%;
        overflow: auto;
        position: fixed;
        align-items: center;
        top: 0;
        margin: auto 0;
        left: 0;
        transform: unset;
    }
}

.modalnewcent2 {
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media (max-width:768px) {
    .modalnewcent2 {
        width: 100%;
        overflow: auto;
        position: fixed;
    }
}

.modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cl-modal-back);
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
}

    .modal i {
        font-size: 4rem;
        left: 0;
        padding: 1rem;
    }

    .modal:target {
        visibility: visible;
        opacity: 1;
    }

    .modal h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .modal p {
        font-size: 1rem;
    }

    .modal h3 {
        font-size: 1.1rem;
        margin: 0;
        text-align: center;
    }

.modal__content-error {
    border-radius: 5px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: var(--cl-white);
    padding-top: 1.8rem;
    border: 1px solid var(--cl-red);
    background-color: var(--cl-white);
    display: inline-flex;
    align-items: center;
}

    .modal__content-error h1 {
        display: flex;
        font-size: var(--font-h4);
        margin: 0;
        top: 0;
        position: absolute;
        background-color: var(--cl-red);
        width: 100%;
        color: var(--cl-white);
        left: 0;
        padding-left: 20px;
        height: 26px;
        align-items: center;
    }

    .modal__content-error i {
        font-size: 3rem;
        left: 0;
        padding: 1rem;
        color: red;
    }

.modal__content-warning {
    border-radius: 5px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding-top: 1.8rem;
    border: 1px solid var(--cl-warning);
    background-color: var(--cl-white);
    display: inline-flex;
    align-items: center;
}

    .modal__content-warning h1 {
        display: flex;
        font-size: var(--font-h4);
        margin: 0;
        top: 0;
        position: absolute;
        background-color: var(--cl-warning);
        width: 100%;
        color: var(--cl-white);
        left: 0;
        padding-left: 20px;
        height: 26px;
        align-items: center;
    }

    .modal__content-warning i {
        font-size: 3rem;
        left: 0;
        padding: 1rem;
        color: var(--cl-warning);
    }

.modal__content-ok {
    border-radius: 5px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding-top: 1.8rem;
    border: 1px solid #6ac100;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
}

    .modal__content-ok h1 {
        display: flex;
        font-size: var(--font-h4);
        margin: 0;
        top: 0;
        position: absolute;
        background-color: var(--cl-success);
        width: 100%;
        color: var(--cl-white);
        left: 0;
        padding-left: 20px;
        height: 26px;
        align-items: center;
    }

    .modal__content-ok i {
        font-size: 3rem;
        left: 0;
        padding: 1rem;
        color: var(--cl-success);
    }

.modal__content-loading {
    border-radius: 5px;
    position: relative;
    width: auto;
    max-width: 90%;
    background: var(--cl-white);
    padding: 1em 2em;
    border: 0;
    background-color: var(--cl-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width:768px) {

    .modal__content-warning {
        padding-top: 1.4rem;
        display: flex;
        height: 9rem;
        min-height: 9rem;
        align-items: center;
        justify-content: left;
    }

        .modal__content-warning i {
            font-size: 3rem;
            margin: 0 1rem;
        }

        .modal__content-warning h1 {
            font-size: 1rem;
            height: 21px;
            padding-left: 10px;
        }

        .modal__content-warning p {
            font-size: .8rem;
        }

    .modal__content-error {
        padding-top: 1.4rem;
    }

        .modal__content-error i {
            font-size: 3rem;
            margin-left: .3rem;
        }

        .modal__content-error h1 {
            font-size: 1rem;
            height: 21px;
            padding-left: 10px;
        }

        .modal__content-error p {
            font-size: .8rem;
        }

    .modal__content-ok {
        padding-top: 1.4rem;
    }

        .modal__content-ok i {
            font-size: 3rem;
            margin-left: .3rem;
        }

        .modal__content-ok h1 {
            font-size: 1rem;
            height: 21px;
            padding-left: 10px;
        }

        .modal__content-ok p {
            font-size: .8rem;
        }

    .modal__close {
        width: 20px;
    }
}

.modal__close {
    position: absolute;
    top: 0;
    right: 0;
}

.modal-body {
    padding: 20px 20px;
    height: 100%;
    position: relative;
    background: #efefef;
    flex: 1 1 auto;
    width: 700px;
    min-width: fit-content;
    border-radius: 10px;
}

    .modal-body .listed ul li {
        font-size: .85rem;
        color: #cf0d01;
    }

    .modal-body h3 {
        margin-bottom: .5rem;
        font-size: 1.4rem;
    }

@media (max-width:576px) {
    .modal-body h3 {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .modal-body .listed ul li {
        font-size: .8rem;
    }
}

.modal-body2 {
    padding: 40px 40px;
    height: 100%;
    background: #ebebeb;
    flex: 1 1 auto;
    width: 600px;
    min-width: fit-content;
    border-radius: 10px;
}

.modal-body3 {
    margin: auto;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--cl-white);
    z-index: 19841984;
    display: flex;
    align-items: center;
    box-shadow: 0px 8px 7px var(--cl-modal-back);
    min-width: 50%;
}

.modal-body-kvkk {
    padding: var(--font-primary);
    background: var(--cl-white);
    width: 600px;
    border-radius: 10px;
    box-shadow: 0 1px 10px var(--cl-modal-back);
}

    .modal-body-kvkk a {
        color: var(--cl-primary);
        font-size: var(--font-primary);
    }

    .modal-body-kvkk p {
        font-size: .9rem;
    }

    .modal-body-kvkk .kurumText {
        font-size: 1rem;
    }

.modal-body3 .uName {
    display: flex;
    width: 40%;
}

.modal-body3 .pW {
    display: flex;
    width: 40%;
}

.modal-body3 .sbmt {
    display: flex;
    width: 20%;
}

.modal-body3 ul li, .modal-body3 ul li u {
    font-size: .8rem;
    text-align: -webkit-left;
    list-style: disc;
}

@media (max-width: 992px) {
    .modal-body {
        padding: 20px 20px;
        min-width: fit-content;
        width: auto;
        display: block;
        text-align: center;
    }

    .modal-body2 {
        padding: 20px 20px;
        max-width: 100%;
        height: 100%;
        display: inline-block;
        text-align: center;
        width: max-content;
    }

    .modal-body3 {
        min-width: 90%;
    }

    .modal-body-kvkk {
        /* margin: 0px 10%; */
    }
}

/* Page Wrapper */


.wrapper {
    padding: 0 2%;
}

.colfix {
    display: flex;
    flex-direction: row;
    margin-left: -15px;
    margin-right: -15px;
}

.modal-body-kvkk .chkbxfix {
    align-self: start;
    margin-top: 3px;
}

@media (max-width:992px) {
    .colfix {
        flex-direction: row;
    }
}

@media (max-width:768px) {
    .colfix {
        flex-direction: column;
    }

    .modal-body-kvkk {
        /* margin: 0 7%; */
    }
}

@media (max-width: 576px) {
    .wrapper {
        padding: .3rem;
    }

    .tblfix {
        display: table !important;
    }

    .modal-body3 {
        /*margin: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        border-radius: 0;
        position: fixed;
        padding: 1rem;
        justify-content: center;*/
        padding: 1rem;
        justify-content: center;
        min-width: calc(100% - 2rem);
    }

    .modal-body-kvkk {
        margin: 0;
        width: calc(100% - 10%);
    }

        .modal-body-kvkk p {
            font-size: .8rem;
        }

        .modal-body-kvkk a {
            font-size: .8rem;
        }

        .modal-body-kvkk .kurumText {
            text-align: center;
        }
}



/*Login Scr*/

.brand-wrapper {
    margin-bottom: 19px;
}

    .brand-wrapper .logo {
        height: 37px;
    }

.hiddendiv {
}

.point {
    cursor: pointer;
}

.login-card {
    border-radius: 20px;
    box-shadow: 0px 6px 18px 0 rgb(0 0 0 / 24%);
    overflow: hidden;
}

.login-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-card .login-body {
    padding: 30px 30px;
    height: 100%;
    background: #ffffff;
    flex: 1 1 auto;
}

@media (max-width: 992px) {
    .login-card .login-body {
        padding: 20px 20px;
        max-width: 100%;
        height: 100%;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .login-card .login-body {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .login-card .login-body {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(45deg, #055c3c, #005b3a2b), url(../img/background-2.png);
    }

    .login-card-footer-text {
        color: #fff;
    }

    .login-card-footer-nav a {
        color: #ffe000 !important;
    }

    .login-card-description {
        color: #fff !important;
    }

    .login-card .bilkod p {
        color: #fff;
    }

    .login-card .imgs {
        width: 30rem;
        padding: .5rem 1rem;
        border-radius: 10px;
        mix-blend-mode: lighten;
    }

    .form-group {
        margin-bottom: 0;
    }
}

.login-card-description {
    font-size: 20px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.login-card form {
    max-width: 326px;
}

.login-card .form-control {
    border: 1px solid #d5dae2;
    padding: 15px 10px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: normal;
}

    .login-card .form-control input[type=date] {
        color: chocolate;
        background-color: #dc3545;
    }

.form-control:focus {
    color: #000000;
    background-color: #f1f7ff;
    outline: 0;
    box-shadow: 0px 0px 0px #014192;
    border: 1px solid #014192;
}

.form-control input[type=checkbox] {
    inset: var(--cl-primary);
}

    .form-control input[type=checkbox] + .form-control input[type=checkbox]:has(label) {
        cursor: pointer;
    }

    .form-control input:disabled {
        cursor: not-allowed;
    }

.login-card .form-control:focus {
    background-color: #ebf4ff;
}

.login-card .form-control::-webkit-input-placeholder {
    color: #919aa3;
    font-size: 13px;
}

.login-card .form-control::-moz-placeholder {
    color: #919aa3;
}

.login-card .form-control:-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::placeholder {
    color: #919aa3;
    font-size: 13px;
    font-family: Poppins, sans-serif;
}

.login-card .login-btn {
    padding: 9px 10px;
    /*background-color: #014192;*/
    background: -webkit-linear-gradient( 286deg, rgb(0 128 220) 0%, rgb(26 207 216) 100%);
    font-weight: 500;
    border-radius: 5px;
    line-height: 20px;
    color: #fff;
    width: 94% !important;
    display: flex;
    justify-content: center;
}

    .login-card .login-btn:hover {
        border: 1px solid #5093ca;
        background-color: #1391d2;
        color: #fff;
    }

.login-card .forgot-password-link {
    font-size: 14px;
    color: #919aa3;
    margin-bottom: 12px;
}

.login-card-footer-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .login-card-footer-text {
        margin-bottom: 5px;
    }

    .login-card-img {
        display: none;
    }

    .login-card .card-body {
    }

    .login-card-description {
        font-size: 1.4rem !important;
    }

    .login-card p {
        font-size: .8rem;
    }

    .login-card-footer-nav a {
        font-size: .8rem;
    }

    .login-card imgs {
        text-align: left;
    }
}

.login-card .footerwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.login-card-footer-nav a {
    font-weight: 500;
    color: #2f9800;
}

.login-card .bilkod {
    display: flex;
    justify-content: safe center;
    align-items: flex-end;
}

    .login-card .bilkod p {
        margin: 25px 0 -10px 0;
        font-size: .8rem;
        position: relative;
    }

@media (max-width:576px) {
    .login-card .footerwrap {
        flex-direction: column;
    }

    .login-card-footer-nav a {
        margin-bottom: 10px;
        font-size: .8rem;
    }
}

/*Ogrenci Section Begins*/

#ogrenci {
}

.navMenu {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    max-width: initial;
    display: block;
    vertical-align: -webkit-baseline-middle;
    top: 0;
    z-index: 1983;
    /*background: linear-gradient(to right, #006fb0, #00beef);*/
}

    .navMenu .sideMenuArea {
        display: flex;
        justify-content: center;
    }

    .navMenu .kurumInfo {
        font-weight: 500;
        font-size: 1rem;
        color: #fff;
        padding: 0 15px;
        height: 30px;
        display: flex;
        align-items: center;
    }

    .navMenu .kurumArea {
        display: flex;
        border-radius: 10px;
    }

        .navMenu .kurumArea .img-kurum {
            max-width: 100%;
            height: auto;
            background-color: #fff;
            margin-right: 1rem;
            border-radius: 0.25rem;
        }

            .navMenu .kurumArea .img-kurum img {
                max-width: 65px;
                height: 65px;
            }

    .navMenu .homeArea {
        display: block;
        color: #f9f9f9;
        border: 1px solid #fff;
        margin-right: .3rem;
        border-radius: 5px;
        background: #0070b1;
    }

        .navMenu .homeArea i {
            font-size: 1.2rem;
            padding: .6rem;
        }

    .navMenu .ogrenciTextArea {
        display: flex;
        flex-direction: column;
    }

        .navMenu .ogrenciTextArea .textName span {
            font-weight: 500;
            font-size: 1.3rem;
            color: #ffffff;
            white-space: nowrap;
        }

        .navMenu .ogrenciTextArea .textTerm span {
            font-weight: 500;
            font-size: 1rem;
            color: #ffffff;
            white-space: nowrap;
        }

@media (max-width:992px) {

    .navMenu .kurumArea {
        width: 70%;
    }

    .navMenu .ogrenciTextArea .textName span {
    }

    .navMenu .ogrenciTextArea .textTerm span {
    }
}

@media (max-width:768px) {
    .navMenu .ogrenciTextArea .textName span {
        font-size: 1rem;
        white-space: pre-wrap;
    }

    .navMenu .ogrenciTextArea .textTerm span {
        font-size: 1rem;
    }

    .navMenu .homeArea {
        color: #f2f2e2;
        border: 1px solid #007dbb;
        margin-right: .3rem;
        border-radius: 5px;
    }

        .navMenu .homeArea i {
            font-size: 1rem;
            margin: 0;
        }
}

.navMenu .ogrenciArea {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .navMenu .ogrenciArea .detailWrap {
        display: flex;
        flex-direction: column;
        margin-left: 1rem;
        white-space: nowrap;
    }

        .navMenu .ogrenciArea .detailWrap .textClass {
            margin: 0;
        }

            .navMenu .ogrenciArea .detailWrap .textClass span {
                font-weight: 500;
                font-size: .8rem;
                color: #ffffff;
                margin: 0;
            }

        .navMenu .ogrenciArea .detailWrap .textNum {
            margin: 0;
        }

            .navMenu .ogrenciArea .detailWrap .textNum span {
                font-weight: 500;
                font-size: .8rem;
                color: #ffffff;
                margin: 0;
            }

.navMenu .logoutArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
}

    .navMenu .logoutArea span {
        color: #f9f9f9;
        font-size: .8rem;
        text-align: -webkit-center;
    }

    .navMenu .logoutArea i {
        font-size: 2rem;
        display: block;
        color: #fff;
        margin: 2px auto 4px auto;
        top: 0;
        line-height: 20px;
    }

@media (max-width:576px) {
    .navMenu .logoutArea i {
        font-size: 1.4rem;
        display: block;
        margin: 0;
        width: 15px;
    }

    .navMenu .ogrenciArea .detailWrap {
        margin-left: 0;
    }
}

.navbar {
    position: unset;
    background: linear-gradient(to left, #3399d4, #014192);
    padding: 0.5rem 0rem;
}

@media (max-width:992px) {
    .navbar {
        flex-wrap: nowrap;
        padding: 2px;
        /* height: 75px; */
    }
}

@media (max-width:578px) {
    .navbar {
        /* height: 75px; */
    }
}


.navbar-dark .navbar-toggler {
    border-color: #87d0e4;
}

#nav-container {
    pointer-events: none;
    z-index: 1984;
}

    #nav-container .bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }

    #nav-container:focus-within .bg {
        visibility: visible;
        opacity: .6;
    }

    #nav-container * {
        visibility: visible;
    }

.button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 60px;
    width: 1.5rem;
    margin: 0 1rem;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.icon-bar {
    display: block;
    width: 75%;
    height: 2px;
    background: #e8e8e8;
    transition: .3s;
}


    .icon-bar + .icon-bar {
        margin-top: 3px;
    }

#nav-container:focus-within .button {
    pointer-events: none;
}

#nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0,2px,0) rotate(45deg);
}

#nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
}

#nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
    width: 100%;
    max-width: 200px;
    position: absolute;
    top: 70px;
    background: var(--cl-primary);
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: transform .3s;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    will-change: transform;
    contain: paint;
    display: none;
}

@media (max-width:992px) {

    #nav-container {
        margin: 0 .5rem 0 1rem;
    }

    #nav-content {
        position: fixed;
        max-width: 100%;
        height: 92%;
        height: -webkit-fill-available;
        background: #343a40;
        top: 63px;
        left: 0;
    }

    .button {
        margin: 0;
    }
}

#nav-content ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

    #nav-content ul li {
        padding: .25rem;
    }

        #nav-content ul li:hover {
            background-color: var(--cl-accent);
        }

#nav-content li a {
    padding: 5px 5px;
    display: block;
    transition: color .1s;
    color: var(--cl-white);
}

    #nav-content li a:hover {
        color: var(--cl-light);
    }

#nav-content li:not(.small) + .small {
    margin-top: auto;
}

.small {
    display: flex;
    align-self: center;
}

    .small a {
        font-size: 12px;
        font-weight: 400;
        color: #888;
    }

        .small a + a {
            margin-left: 15px;
        }

#nav-container:focus-within #nav-content {
    transform: translateY(10px);
    display: flex;
    margin-top: -1px;
    margin-left: 0;
}

@media (max-width:992px) {
    #nav-container:focus-within #nav-content {
        transform: translateY(7px);
        display: flex;
        margin-top: 0px;
    }
}

@media (max-width:768px) {
    #nav-container:focus-within #nav-content {
        transform: translateY(10px);
        display: flex;
        margin-top: 0;
        left: 0;
    }
}

@media (max-width:576px) {
    #nav-container:focus-within #nav-content {
        transform: translateY(0px);
        display: flex;
        margin-top: 2px;
        margin-left: 0;
    }
}

#ogrenci .login-card {
    background-color: #fff;
    border: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px 0 rgb(172 168 168 / 43%);
    overflow: hidden;
    width: 100%;
    max-width: initial;
    vertical-align: -webkit-baseline-middle;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 70vh;
    padding-bottom: 60px;
    /*height: 87vh;*/
}

    #ogrenci .login-card .sectitle {
        font-size: 1.2rem;
        font-weight: 600;
        align-self: center;
        padding-bottom: 0;
        margin-bottom: 0;
        text-transform: capitalize;
        color: #014192;
    }

    #ogrenci .login-card .sechead {
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: .5rem 0;
    }

        #ogrenci .login-card .sechead i {
            font-size: var(--font-h3);
            color: var(--cl-primary);
            align-self: center;
        }

        #ogrenci .login-card .sechead h6 {
            padding: 5px 0;
            margin: 0 0 0 .25rem;
            font-size: .85rem;
            word-break: break-word;
        }

        #ogrenci .login-card .sechead span {
            font-size: .8rem;
        }

@media (max-width:578px) {
    #ogrenci .login-card .sechead h6 {
        font-size: .8rem;
        overflow-wrap: break-word;
    }
}

#ogrenci .login-card .exHeader {
    display: flex;
    /*        background-image: url('../img/exHead.jpg');
        background-blend-mode: darken;*/
    background-color: #dc3545;
    color: #fff;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    margin-bottom: 20px;
    z-index: 1984;
    padding: 10px 35px;
}

    #ogrenci .login-card .exHeader h3 {
        font-size: 2rem;
        margin-bottom: 0;
    }

@media (max-width:576px) {
    #ogrenci .login-card .exHeader h3 {
        font-size: 1.3rem;
    }

    #ogrenci .login-card .exHeader h4 {
        font-size: 1rem !important;
    }

    #ogrenci .login-card .exHeader h5 {
        font-size: .9rem !important;
        font-weight: 500 !important;
    }

    #ogrenci .login-card .exHeader h6 {
        font-size: .8rem !important;
        font-weight: 500 !important;
    }
}

#ogrenci .login-card .exHeader h4 {
    margin-bottom: 0px;
    font-size: 1.2rem;
    font-weight: 400;
}

#ogrenci .login-card .exHeader h5 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

#ogrenci .login-card .exHeader h6 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

#ogrenci .login-card .exHeader p {
    font-weight: 400;
    font-size: .8rem;
    color: #fff;
    padding: 2px 0;
    margin: 0;
}

#ogrenci .login-card .exHeader i {
    font-size: 28px;
    line-height: unset;
    margin-right: 7px;
}

#ogrenci .login-card .exHeader .exTitle {
    display: flex;
    flex-direction: column;
}

#ogrenci .login-card .exHeader .exDetail {
    display: flex;
}



@media (max-width:768px) {
    #ogrenci .login-card .exHeader .exDetail {
        flex-direction: column;
    }
}

@media (max-width:425px) {
    #ogrenci .login-card .exHeader .exDetail {
        flex-direction: row;
    }
}

#ogrenci .login-card .exBody {
    display: flex;
    position: relative;
}

    #ogrenci .login-card .exBody .showDiv {
        display: none;
    }

#ogrenci .login-card .inputs {
    display: grid;
    align-items: center;
    justify-content: stretch;
    padding: 10px 5px;
    border-radius: 10px;
    border: 1px #dddddd solid;
}

    #ogrenci .login-card .inputs label {
        margin-bottom: 0px;
        align-self: center;
    }

    #ogrenci .login-card .inputs .form-group {
        font-size: 0.8rem;
        align-self: center;
        margin-right: 5px;
        display: inline-flex;
        justify-content: space-evenly;
    }

#ogrenci .login-card .seafld {
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

    #ogrenci .login-card .seafld .sWrap {
        display: flex;
    }

    #ogrenci .login-card .seafld .btns {
        display: flex;
        justify-content: flex-end;
    }

    #ogrenci .login-card .seafld .form-group {
        display: flex;
        font-size: var(--font-primary);
        align-self: center;
        margin-bottom: 0;
    }

    #ogrenci .login-card .seafld .sWrap .form-group input {
        border: 1px solid var(--cl-modal-back);
        background-color: var(--cl-white);
        border-radius: 5px;
        font-size: var(--font-primary);
        padding: 5px 5px;
    }

        #ogrenci .login-card .seafld .sWrap .form-group input::-webkit-input-placeholder {
            color: #014192;
        }

@media (max-width:576px) {
    #ogrenci .login-card .seafld .sWrap .form-group input::-webkit-datetime-edit {
        color: #014192;
    }

    #ogrenci .login-card .seafld.sWrap form-group input[type=date]::placeholder {
        color: #014192;
    }

    #ogrenci .login-card .seafld .sWrap .form-group input::-webkit-datetime-edit-fields-wrapper {
        display: inline-block;
        white-space: pre;
        -webkit-user-modify: read-only !important;
        padding: 1px 0px;
    }

    #ogrenci .login-card .seafld .sWrap .form-group input::-webkit-color-datetime-edit-text {
        color: #dc3545;
    }

    #ogrenci .login-card .seafld .sWrap .form-group input[type="date" i]::-webkit-calendar-picker-indicator {
        font-family: 'Font Awesome 5 Duotone';
        font-size: 1rem;
    }

        #ogrenci .login-card .seafld .sWrap .form-group input[type="date" i]::-webkit-calendar-picker-indicator:before {
            color: #ffffff;
            content: "\f80a";
        }
}

#ogrenci .login-card .form-group .ddlist {
    border: 1px solid var(--cl-modal-back);
    background-color: var(--cl-white);
    border-radius: 5px;
    font-size: var(--font-primary);
    padding: 5px 5px;
}

    #ogrenci .login-card .form-group .ddlist::selection {
        color: var(--cl-primary);
    }

#ogrenci .login-card .form-group input {
    border: 1px solid var(--cl-modal-back);
    background-color: var(--cl-white);
    border-radius: 5px;
    font-size: var(--font-primary);
    padding: 5px 5px;
}

@media (max-width:992px) {
    #ogrenci .login-card .form-group .ddlist {
        margin-right: 0;
        width: 100%;
        width: -moz-available;
        width: -webkit-fill-available;
        height: 2rem;
        margin: unset;
    }

    #ogrenci .login-card .form-group input, button {
        margin-right: 0;
        width: 100%;
        min-width: 100%;
        min-width: -webkit-fill-available !important;
        height: 2rem;
    }

        #ogrenci .login-card .form-group input[type=checkbox] {
            width: unset;
            min-width: unset !important;
            min-width: unset !important;
            height: unset;
        }
}

#ogrenci .login-card .form-group label {
    margin-bottom: 0;
    font-size: var(--font-primary);
    align-self: center;
    text-align: right;
    padding: 0 5px;
}

#ogrenci .login-card .seafld .srctitle {
    font-size: 1.4rem;
    font-weight: 600;
    align-self: center;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #014192;
}

#ogrenci .login-card .boxes {
    padding: 30px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#ogrenci .login-card form {
    max-width: 326px;
}

#ogrenci .login-card .form-control {
    border: 1px solid var(--cl-modal-back);
    background-color: var(--cl-white);
    padding: 4px 5px;
    font-size: var(--font-primary);
    line-height: 1.5;
    font-weight: normal;
    margin: 0;
    /*min-width: 100px;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef !important;
    cursor: not-allowed;
    opacity: 1;
}

#ogrenci .form-control:focus {
    color: var(--cl-dark);
    background-color: var(--cl-white);
    border: 1px;
    border-color: var(--cl-dark);
    outline: 0;
    box-shadow: 0 0 0 1px var(--cl-primary);
}

#ogrenci .login-card .form-control::-webkit-input-placeholder {
    color: #919aa3;
}

#ogrenci .login-card .form-control::-moz-placeholder {
    color: #919aa3;
}

#ogrenci .login-card .form-control:-ms-input-placeholder {
    color: #919aa3;
}

#ogrenci .login-card .form-control::-ms-input-placeholder {
    color: #919aa3;
}

#ogrenci .login-card .form-control::placeholder {
    color: #919aa3;
    font-size: 15px;
    font-family: Poppins, sans-serif;
}

#ogrenci .login-card .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    #ogrenci .login-card .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

        #ogrenci .login-card .switch input:checked + .slider {
            background-color: #014192;
        }

            #ogrenci .login-card .switch input:checked + .slider:before {
                -webkit-transform: translateX(20px);
                -ms-transform: translateX(20px);
                transform: translateX(20px);
                background-color: #fff;
            }

        #ogrenci .login-card .switch input:focus + .slider {
            box-shadow: 0 0 1px #2196F3;
        }

#ogrenci .login-card .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf4ff;
    border: 1px solid #014192;
    border-radius: 8px;
    -webkit-transition: .4s;
    transition: .4s;
}

    #ogrenci .login-card .slider:before {
        position: absolute;
        content: "";
        border-radius: 5px;
        height: 10px;
        width: 10px;
        left: 4px;
        bottom: 4px;
        background-color: #014192;
        -webkit-transition: .4s;
        transition: .4s;
    }

    #ogrenci .login-card .slider:after {
        background-color: #fff;
    }

    #ogrenci .login-card .slider .round {
        border-radius: 34px;
    }

    #ogrenci .login-card .slider .round {
        border-radius: 50%;
    }

#ogrenci .login-card .textinfo {
    font-weight: 600;
    font-size: 16px;
    color: #c9c9c9;
}

#ogrenci .login-card .boxes .icon-box {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding: 40px;
    width: inherit;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(360deg, var(--cl-light), var(--cl-white));
}

    #ogrenci .login-card .boxes .icon-box:hover {
        color: #ffffff;
        background: -webkit-linear-gradient(45deg, rgb(0 151 68) 0%, rgb(0 173 109) 100%);
        background: linear-gradient(45deg, rgb(0 151 68) 0%, rgb(0 173 109) 100%);
        box-shadow: 0px 4px 5px #00000026;
        border: unset;
    }

    #ogrenci .login-card .boxes .icon-box .fa, .fad {
        font-size: 64px;
        padding-bottom: 20px;
    }

    #ogrenci .login-card .boxes .icon-box h1 {
        font-size: 16px;
        font-weight: 600;
        color: #014192;
        margin-bottom: 0;
    }

    #ogrenci .login-card .boxes .icon-box a {
        font-size: 1rem;
        font-weight: 550;
        margin-bottom: 0;
        margin: 0 0 30px 0;
        padding: 0;
        color: inherit;
    }

        #ogrenci .login-card .boxes .icon-box a:hover {
            color: #ffffff;
        }

.bt {
    padding: 7px 12px;
    border-radius: 0.25rem;
    font-size: var(--font-primary);
    font-weight: 400;
    text-decoration: none;
    outline: none;
    border: 0;
    transition: .2s ease-out;
}

.bt-ok {
    background-color: #28a745;
    color: #fff;
}

    .bt-ok:hover {
        background-color: #28a745;
        color: #fff;
    }

.bt-uyari {
    background-color: #ffc300;
    color: #111;
}

    .bt-uyari:hover {
        background-color: #ffc300;
        color: #111;
    }

.bt-red {
    background-color: #d90015;
    color: #fff;
}

    .bt-red:hover {
        background-color: #d90015;
        color: #fff;
    }

.bt-primary {
    background: #0958a3;
    color: #fff;
}

    .bt-primary:hover {
        background-color: #014192;
        color: #fff;
    }

.bt-purple {
    background-color: #9123ff;
    color: #fff;
}

    .bt-purple:hover {
        background-color: #9123ff;
        color: #fff;
    }

.bt-orange:hover {
    background-color: #ff9400;
    color: #fff;
}

.bt-orange {
    background-color: #ff9400;
    color: #fff;
}

.btnsrc {
    background: #d41709;
    color: white;
    border: 1px solid #f44336;
    font-size: .8rem;
}

    .btnsrc:hover {
        background-color: #dc3545;
        color: white;
        border: 1px solid #f44336;
    }

.btnsrc2 {
    color: #fff;
    background: #014192;
    border: 1px solid #014192;
    font-size: .8rem;
}

    .btnsrc2:hover {
        background-color: #014192;
        color: white;
        border: 1px solid #014192;
    }

.btnins {
    background-color: #014192;
    color: #fff;
    font-size: .7rem;
    padding: 4px 8px;
    margin: 2px 0;
}

    .btnins:hover {
        background-color: #0083d8;
        color: #fff;
    }

.btnred {
    background-color: #cf0d01;
    color: #fff;
    border: 1px solid #cf0d01;
    font-size: .8rem;
    padding: 4px 8px;
    margin: 2px 0;
}

.btnok {
    background-color: #28a745;
    color: #fff;
    border: 1px solid #28a745;
    font-size: .8rem;
    padding: 4px 8px;
    margin: 2px 0;
}


@media (max-width: 992px) {
    .bt {
        width: 100%;
    }
}

@media (max-width:576px) {
    .btnred, .btnok {
        width: 100%;
    }
}

#ogrenci .login-card .secarea {
    background-color: var(--cl-primary-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--cl-gray);
    padding: 0.25rem 1rem;
}

    #ogrenci .login-card .secarea i {
        font-size: var(--font-h2);
        padding: 0;
        align-self: center;
        color: var(--cl-dark);
    }

    #ogrenci .login-card .secarea h1 {
        font-size: var(--font-h4);
        font-weight: 700;
        text-align: left;
        color: var(--cl-text);
        margin: 0;
        padding: 0.25rem 0;
    }


.secarea .backbtn {
    display: flex;
    align-self: center;
    flex-direction: row;
    gap: .5rem;
}

    .secarea .backbtn a {
        display: flex;
        font-size: var(--font-h2);
        color: var(--cl-primary);
    }

        .secarea .backbtn a i {
            font-size: 1rem;
            padding-right: .3rem;
            align-self: center;
            padding-left: 2rem;
            color: #0070b1;
        }

    .secarea .backbtn .badge {
        background-color: #dc3545;
        bottom: 3px;
        margin-left: -7px;
        color: #fff;
        font-size: .6rem;
        display: inline-flex;
        width: 14px;
        height: 14px;
        justify-content: center;
        border-radius: 10rem;
        font-style: normal;
        font-weight: 500;
        align-items: center;
    }

        .secarea .backbtn .badge:empty {
            display: none;
        }

    .secarea .backbtn span {
        font-size: 1rem;
    }

@media (max-width:992px) {

    .ogretmen-secarea {
        background-color: #00a057 !important;
    }

    .secarea .backbtn a {
        color: var(--cl-primary);
        margin: 0;
        padding: 0;
    }

    .secarea .backbtn .badge {
        left: 18px;
    }
}

.foosection {
    background: var(--cl-white);
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: 1px solid var(--cl-gray);
    z-index: 1983;
}

    .foosection .ftsection {
        height: 100%;
        display: flex;
        justify-content: center;
    }

        .foosection .ftsection:nth-of-type(2) {
            width: 100%;
        }

        .foosection .ftsection:nth-of-type(3) {
        }

    .foosection .footerimg {
        align-self: center;
        margin-left: 5px;
        padding: 10px;
        width: 170px;
    }

        .foosection .footerimg:last-child {
            width: 50px;
        }

    .foosection p {
        font-size: 12px !important;
        font-weight: 500 !important;
    }

@media (max-width: 992px) {
    .card {
    }

    .foosection p {
        display: none;
    }

    .foosection {
        bottom: 0;
        width: 100%;
        display: block;
        align-items: end;
        margin-top: unset;
    }

    #ogrenci .table-results {
        margin-top: 70px;
    }

    #ogrenci .login-card .exHeader {
        position: fixed;
        width: 100%;
        top: 0;
        height: 130px;
        justify-content: space-between;
    }

    #ogrenci .login-card .exBody {
        display: flex;
        position: relative;
        top: 0;
    }

    #ogrenci .login-card .secarea {
        background-color: var(--cl-primary-light);
        display: flex;
        position: relative;
        align-items: center;
        left: 0;
        right: 0;
        z-index: 1988;
        border-top: 0;
        border-bottom: 0;
    }

        #ogrenci .login-card .secarea h1 {
            color: var(--cl-primary);
            font-size: var(--font-h4);
            padding: 0;
        }

        #ogrenci .login-card .secarea i {
            color: var(--cl-primary);
            padding-left: 0;
            width: auto;
            font-size: var(--font-h3);
            margin-right: 0;
        }

        #ogrenci .login-card .secarea .backbtn i {
            font-size: var(--font-h4);
            color: var(--cl-dark);
        }

    #ogrenci .days {
        display: block !important;
        position: fixed;
        top: 125px;
        height: 43px;
        right: 0;
        left: 0;
        align-self: center;
        z-index: 1988;
        background-color: #ececec;
        width: 100%;
    }

        #ogrenci .days h3 {
            font-size: .9rem;
        }

    #ogrenci .months {
        display: none;
    }

    #ogrenci .login-card {
        position: absolute;
        padding: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        min-width: auto;
        border-radius: 0;
        z-index: 1982;
        margin-top: 75px;
    }

        #ogrenci .login-card .form-control {
            margin: 0;
            min-height: 35px;
            font-size: 13px;
            line-height: 1.5;
            font-weight: normal;
            max-height: 30px;
            margin-bottom: 10px;
        }

        #ogrenci .login-card .seafld {
            background-color: #f7f7f7;
            display: block;
            align-items: center;
            justify-content: space-around;
            margin: 0 -1rem 0 -1rem;
            padding: 1rem;
        }

            #ogrenci .login-card .seafld .form-group {
                margin-bottom: 0;
                display: block;
                font-size: 0.8rem;
                align-self: center;
                margin: 5px 0;
                width: 100%;
                min-width: 48%;
            }

                #ogrenci .login-card .seafld .form-group .sWrap input {
                    border: 1px solid #014192;
                    background-color: #ebf4ff;
                    border-radius: 5px;
                    font-size: .8rem;
                    padding: 5px 5px;
                    min-width: -webkit-fill-available;
                }

                #ogrenci .login-card .seafld .form-group:first-child {
                    margin-right: 1rem;
                }

            #ogrenci .login-card .seafld .sWrap {
                display: flex;
                /*margin-bottom: .5rem;*/
                width: -webkit-fill-available;
                gap: unset;
            }

            #ogrenci .login-card .seafld .form-group label {
                margin-bottom: .2rem;
                font-size: .8rem;
                white-space: nowrap;
                align-self: center;
                margin-right: 1rem;
                text-align: start;
            }

    .mobil-w100 {
        width: 100%
    }

    .navMenu {
        position: fixed;
        border-radius: 0;
        left: 0;
        top: 0;
        right: 0;
        overflow: visible;
    }

    .btnsrc {
        background: #d41709;
        color: white;
        border: 1px solid #d41709;
        font-size: .8rem;
    }

        .btnsrc:hover {
            background-color: #dc3545;
            color: white;
            border: 1px solid #f44336;
        }

    .btnsrc2 {
        color: #fff;
        background: #014192;
        border: 1px solid #014192;
        font-size: .8rem;
    }

        .btnsrc2:hover {
            background-color: #014192;
            color: white;
            border: 1px solid #014192;
        }

    .btnins {
        background-color: #014192;
        color: #fff;
        border: 1px solid #014192;
    }

        .btnins:hover {
            background-color: #0451b4;
            color: white;
        }
}

@media (max-width:768px) {

    .secarea .backbtn {
        gap: .35rem;
    }

    #ogrenci .login-card .secarea {
    }

    .secarea .backbtn a {
        margin: 0;
        padding: 0;
        font-size: var(--font-h3);
    }

    #ogrenci .login-card .secarea .backbtn i {
        padding: 0;
    }

    #ogrenci .login-card .secarea i {
        padding: 0;
    }
}


@media (max-width:576px) {
    .btnsrc {
        width: 100%;
    }

    .btnsrc2 {
        width: 100%;
    }

    .btnins {
        width: 100%;
    }

    #ogrenci .login-card .seafld .btns {
        display: flex;
        justify-content: space-between;
        margin-top: .5rem;
    }
}

.navMenu .form-control {
    border: 1px solid #d5dae2;
    margin: 0;
    min-height: 40px;
    font-size: 13px;
    line-height: 15;
    font-weight: normal;
}


.avatar-crop {
    position: relative;
    height: 65px;
    width: 65px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin: 0 1rem;
}

.avatar {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: auto;
    border-radius: 10px;
}

.navbar-icon-top .navbar-nav .nav-link > .fa {
    position: relative;
    width: 36px;
    font-size: 24px;
}

    .navbar-icon-top .navbar-nav .nav-link > .fa > .badge {
        font-size: 0.75rem;
        position: absolute;
        right: 0;
        font-family: sans-serif;
    }

.navbar-icon-top .navbar-nav .nav-link > .fa {
    top: 3px;
    line-height: 12px;
    color: azure;
}

    .navbar-icon-top .navbar-nav .nav-link > .fa > .badge {
        top: -10px;
    }

@media (min-width: 576px) {
    .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link {
        text-align: center;
        display: table-cell;
        height: 70px;
        vertical-align: middle;
        padding: 0;
    }

        .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa {
            display: block;
            width: 48px;
            margin: 2px auto 4px auto;
            top: 0;
            line-height: 24px;
        }

            .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa > .badge {
                top: -7px;
            }
}

@media (max-width: 768px) {
    #ogrenci .login-card .seafld {
        background-color: #efefef;
        display: block;
        align-items: center;
        margin-left: -15px;
        margin-right: -15px;
        justify-content: space-around;
        /* margin-top: 10px; */
    }

    #ogrenci .login-card .boxes {
        top: 0;
        padding: .2rem .2rem;
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
        flex-flow: wrap;
        flex-wrap: wrap;
        margin-bottom: .6rem;
        margin-top: 7px;
    }

    .avatar-crop {
        position: relative;
        height: 65px;
        width: 65px;
        overflow: hidden;
        display: flex;
    }

    .navMenu .textinfo {
        font-weight: 600;
        font-size: .8rem;
        color: #e7e7e7;
        text-align: left;
    }

        .navMenu .textinfo span {
            font-size: .8rem;
            font-weight: 500;
        }

    #ogrenci .login-card .boxes .icon-box {
        display: flex;
        position: relative;
        margin-bottom: calc(1% - 0px);
        padding: 0px;
        margin: 0.35em;
        width: 100%;
        transition: all ease-in-out 0.1s;
        border: 1px solid var(--cl-primary);
        border-radius: 0px;
        text-align: center;
        color: var(--cl-primary-dark);
        background: var(--cl-primary-light);
    }

        #ogrenci .login-card .boxes .icon-box h1 {
            padding-left: 20px;
            display: flex;
            align-items: center;
            color: #383838;
        }

        #ogrenci .login-card .boxes .icon-box a {
            font-size: var(--font-primary);
            font-weight: 400;
            display: flex;
            align-items: center;
            color: var(--cl-text);
            margin: 0 0 0 0px;
        }

        #ogrenci .login-card .boxes .icon-box .fa, .fad {
            font-size: 32px;
            padding: 0;
            margin: 0;
            margin-right: .5rem;
            display: flex;
            align-self: center;
            padding: 5px;
            height: auto;
            width: 50px;
            /* background-color: var(--cl-primary); */
            /* color: var(--cl-white); */
            place-content: center;
            align-items: center;
        }

    #ogrenci .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link {
        text-align: center;
        display: table-cell;
        height: 70px;
        vertical-align: middle;
        padding-top: 0;
        padding-bottom: 0;
    }

        #ogrenci .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa {
            display: block;
            width: 48px;
            margin: 2px auto 4px auto;
            top: 0;
            line-height: 24px;
        }

            #ogrenci .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa > .badge {
                top: -7px;
            }
}

@media (max-width:576px) {

    #ogrenci .login-card .secarea {
        position: sticky;
        top: 0;
        margin-bottom: 0;
        padding: 0.45rem 0.5rem;
    }

    #ogrenci .login-card .seafld {
    }

    #nav-container {
        /* margin-right: 0.4rem; */
    }

    .navMenu {
        height: 65px;
        display: block;
        position: fixed;
        width: 100%;
    }

    .avatar-crop {
        height: 50px;
        width: 50px;
    }

    #ogrenci .login-card .boxes {
        margin: -5px -5px;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .navMenu .navbar-icon-top ul {
        display: flex;
        flex-direction: row;
    }

    .navMenu .navbar-icon-top li {
        margin: 0px;
    }

        .navMenu .navbar-icon-top li:first-child) {
            margin-right: 0;
        }

    .navMenu.navbar-icon-top ul li a {
        font-size: .8rem;
    }
}

@media (min-width: 992px) {
    .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link {
        text-align: center;
        display: table-cell;
        height: 70px;
        vertical-align: middle;
        padding-top: 0;
        padding-bottom: 0;
        color: #f9f9f9;
        font-size: .8rem;
        padding: .5rem;
    }

        .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa {
            display: block;
            width: 24px;
            margin: 2px auto 4px auto;
            top: 0;
            line-height: 20px;
        }

    #ogrenci .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa > .badge {
        top: -7px;
    }
}

@media (min-width: 1200px) {
    .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link {
        text-align: center;
        display: table-cell;
        height: 70px;
        vertical-align: middle;
        padding-top: 0;
        padding-bottom: 0;
    }

        .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa {
            display: block;
            width: 48px;
            margin: 2px auto 4px auto;
            top: 0;
            line-height: 24px;
        }

            .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa > .badge {
                top: -7px;
            }
}

.kutupx {
    color: #111;
}

/*Table System Begins*/

/*Desktop Version not shown*/

/* Mobile Table Begins*/
@media (max-width:768px) {

    #ogrenci .days {
        top: 95px;
        height: 50px;
        padding: 0 5px;
        height: 50px;
    }

    #ogrenci .login-card {
        top: 65px;
        padding-bottom: 20px;
        padding-bottom: 60px;
        margin-top: 0px;
        /*min-height: 90vh;*/
    }

    .foosection {
        position: fixed;
        bottom: 0;
    }

    #ogrenci .table-general {
        width: 100%;
        margin-bottom: 1rem;
        color: #212529;
        font-size: 0.9rem;
        table-layout: auto;
        overflow-x: scroll;
        overflow-y: scroll;
        border-collapse: collapse;
    }

        #ogrenci .table-general td {
        }
}

.mw-100 {
    width: 100%;
}

#ogrenci .days {
    display: block;
}

#ogrenci .table-results-mobile {
    max-width: 100%;
    white-space: nowrap;
    margin-bottom: 1rem;
    color: #212529;
    font-size: 0.9rem;
    table-layout: auto;
    border-collapse: collapse;
    display: block;
    position: relative;
    top: 50px;
}

    #ogrenci .table-results-mobile p {
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 400;
        font-family: Poppins, sans-serif;
        margin: 0;
    }

    #ogrenci .table-results-mobile thead {
        display: block;
        float: left;
    }

        #ogrenci .table-results-mobile thead th {
            background-color: var(--cl-primary-dark);
            color: #fff;
            position: sticky;
            padding: 0 5px 0 10px;
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            height: 89px !important;
        }

            #ogrenci .table-results-mobile thead th:nth-of-type(1) {
            }

            #ogrenci .table-results-mobile thead th:nth-child(odd) {
                color: #ffffff;
                background: var(--cl-primary);
            }

    #ogrenci .table-results-mobile tbody {
        width: auto;
        position: relative;
        overflow-y: auto;
        display: block;
    }

        #ogrenci .table-results-mobile tbody tr {
            display: table;
            min-width: 100%;
            height: 89px !important;
            border: 1px solid #dddddd;
        }

        #ogrenci .table-results-mobile tbody td {
            vertical-align: middle;
            border-top: 0;
            border-bottom: 0 !important;
            text-align: -webkit-left;
            padding-left: 10px;
            align-self: center;
            width: auto;
            min-width: 100%;
            font-size: 0.8rem;
        }

        #ogrenci .table-results-mobile tbody tr th {
            padding-left: 10px;
        }

@media (max-width:576px) {
    #ogrenci .days {
        top: 95px;
        height: 50px;
    }
}

/*Web Table Begins*/

.table-container {
    height: auto;
    overflow-x: auto;
    padding: 0;
}

@media (max-width:767px) {
    .table-container {
        height: 70vh;
        overflow-x: auto;
        overflow-y: auto;
        padding: 0;
    }
}

#ogrenci .table-results {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--cl-text);
    font-size: var(--font-primary);
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border-collapse: collapse;
}

    #ogrenci .table-results thead {
        /* background-color: var(--cl-primary); */
        color: var(--dark);
    }

        #ogrenci .table-results thead tr {
            width: 100%;
            background: var(--cl-primary-light);
            border-bottom: 2px solid var(--cl-primary);
            color: var(--cl-dark);
            height: 1.8rem;
        }

            #ogrenci .table-results thead tr th {
                text-align: center;
                position: sticky;
                padding: 0.5rem;
                font-size: .9rem;
                font-weight: 500;
                border: 0;
            }

    #ogrenci .table-results tbody {
        height: 350px;
        overflow-x: scroll;
        display: table-footer-group;
    }

        #ogrenci .table-results tbody tr:nth-child(odd) {
            background: var(--cl-light-gray);
        }

        #ogrenci .table-results tbody tr td {
            vertical-align: baseline;
            border-top: 0;
            border-bottom: 0 !important;
            text-align: center;
            padding: 0.3rem;
            border: 1px solid var(--cl-primary-light);
            height: 7rem;
            font-size: var(--font-primary);
            width: 12rem;
        }

            #ogrenci .table-results tbody tr td:hover:not(.ogleTatili) {
                background: var(--cl-primary-light);
            }

.ogleTatili {
    vertical-align: middle !important;
    background-color: var(--cl-primary-light);
    color: var(--cl-text);
    font-size: var(--font-h4);
    font-weight: 600;
    text-align: center;
    height: 3rem !important;
}

#ogrenci .table-results tbody tr th {
    width: 5rem;
    background: var(--cl-primary-light);
    color: var(--cl-text);
    text-align: center;
}

.table-esinav {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-esinav tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-esinav tbody tr:hover {
            background-color: #0000000f;
        }

        .table-esinav tbody tr th {
            background: var(--cl-primary-light);
            color: var(--cl-text);
            padding: 2px;
            height: 2.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-esinav tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #bdbdbd;
        }

            .table-esinav tbody tr td p {
                font-size: .7rem;
                font-family: sans-serif;
            }

            .table-esinav tbody tr td a {
                font-size: .7rem;
            }

            .table-esinav tbody tr td span {
                font-size: .7rem;
            }


@media (max-width:576px) {

    .table-esinav tbody {
        display: block;
        width: 100%;
        height: 47vh;
        overflow: scroll;
    }

    .table-esinav tr:first-of-type {
        display: none;
    }

    .table-esinav tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 48%;
        max-height: 50%;
        margin: 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
    }

        .table-esinav tr td {
            text-align: end;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            max-width: initial;
        }

            .table-esinav tr td:last-of-type {
                padding: 0 !important;
                border: 0 !important;
                white-space: unset;
            }

            .table-esinav tr td:nth-child(1)::before {
                float: left;
                content: "Sınav No:";
            }

            .table-esinav tr td:nth-child(2)::before {
                float: left;
                content: "Sınav Türü:";
            }

            .table-esinav tr td:nth-child(3)::before {
                float: left;
                content: "Ders:";
            }

            .table-esinav tr td:nth-child(4)::before {
                float: left;
                content: "E-Sınav Adı:";
            }

            .table-esinav tr td:nth-child(5)::before {
                float: left;
                content: "Başlama Tarihi:";
            }

            .table-esinav tr td:nth-child(6)::before {
                float: left;
                content: "Bitiş Tarihi:";
            }

            .table-esinav tr td:nth-child(7)::before {
                float: left;
                content: "";
            }
}

.table-odev {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-odev tbody {
        display: block;
        overflow-wrap: break-word;
        height: 36vh;
        overflow-y: auto;
    }

        .table-odev tbody tr:hover {
            background-color: #0000000f;
        }

        .table-odev tbody tr th {
            background-color: #e1edf5;
            color: #0070b1;
            padding: 2px;
            height: 2.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-odev tbody tr:first-child {
            position: sticky;
            top: 0;
        }

        .table-odev tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #bdbdbd;
        }

            .table-odev tbody tr td p {
                font-size: .7rem;
                font-family: sans-serif;
                padding: 0;
                margin: 0;
            }

            .table-odev tbody tr td a {
                font-size: .7rem;
            }

            .table-odev tbody tr td span {
                font-size: .7rem;
            }


@media (max-width:576px) {

    .table-odev tbody {
        display: block;
        width: 100%;
        height: 50vh;
        overflow: scroll;
    }

    .table-odev tr:first-of-type {
        display: none;
    }

    .table-odev tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-evenly;
        overflow: scroll;
        width: 48%;
        min-height: 51%;
        max-height: 52%;
        margin: 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
    }

        .table-odev tr td {
            text-align: end;
            border-bottom: 1px solid #00000014 !important;
        }

            .table-odev tr td:last-of-type {
                padding: 0 !important;
                border: 0 !important;
                white-space: unset;
            }

            .table-odev tr td:nth-child(1)::before {
                float: left;
                content: "Ödev No:";
            }

            .table-odev tr td:nth-child(2)::before {
                float: left;
                content: "Öğretmen:";
            }

            .table-odev tr td:nth-child(3)::before {
                float: left;
                content: "Ders Adı:";
            }

            .table-odev tr td:nth-child(4)::before {
                float: left;
                content: "Ödev Türü:";
            }

            .table-odev tr td:nth-child(5)::before {
                float: left;
                content: "Dosya:";
            }

            .table-odev tr td:nth-child(6)::before {
                float: left;
                content: "Link:";
            }

            .table-odev tr td:nth-child(7)::before {
                float: left;
                content: "Teslim Tarihi:";
            }

            .table-odev tr td:nth-child(8)::before {
                float: left;
                content: "";
            }
}

.table-ygg {
    width: 100%;
    /* margin-bottom: 1rem; */
    table-layout: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-ygg tbody {
        display: block;
        overflow-wrap: break-word;
        overflow-y: auto;
        height: 35vh;
        min-height: 35vh;
    }

        .table-ygg tbody tr:hover {
            background-color: #0000000f;
        }

        .table-ygg tbody tr th {
            background-color: #e1edf5;
            color: #0070b1;
            padding: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-ygg tbody tr:first-child {
            position: sticky;
            top: 0;
            height: 1.5rem;
        }

        .table-ygg tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #bdbdbd;
            text-align: unset;
        }

            .table-ygg tbody tr td p {
                font-size: .7rem;
                font-family: sans-serif;
                padding: 0;
                margin: 0;
            }

            .table-ygg tbody tr td a {
                font-size: .7rem;
            }

            .table-ygg tbody tr td span {
                font-size: .7rem;
            }


@media (max-width:576px) {

    .table-ygg tbody {
        display: block;
        width: 100%;
        height: 20vh;
        min-height: 20vh;
    }

    .table-ygg tr:first-of-type {
        display: table;
    }

    .table-ygg tr {
        display: inline-flex;
        justify-content: flex-start;
        overflow: scroll;
        width: 98%;
        margin: 3px;
        padding: 3px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
        align-items: center;
    }

        .table-ygg tr td {
            text-align: end;
            border-bottom: 1px solid #00000014 !important;
        }
}

.table-sozbil {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-sozbil tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-sozbil tbody tr:hover {
            background-color: #0000000f;
        }

        .table-sozbil tbody tr th {
            background-color: #e1edf5;
            color: #0070b1;
            padding: 2px;
            height: 2.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-sozbil tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #bdbdbd;
        }

            .table-sozbil tbody tr td p {
                font-size: .7rem;
                font-family: sans-serif;
                padding: 0;
                margin: 0;
            }

            .table-sozbil tbody tr td a {
                font-size: .7rem;
            }

            .table-sozbil tbody tr td span {
                font-size: .7rem;
            }


@media (max-width:576px) {

    .table-sozbil tbody {
        display: block;
        width: 100%;
        height: 50vh;
        overflow: scroll;
    }

        .table-sozbil tbody tr td {
            padding: 1px 0;
        }

    .table-sozbil tr:first-of-type {
        display: none;
    }

    .table-sozbil tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-evenly;
        overflow: scroll;
        width: 48%;
        min-height: 60%;
        max-height: 70%;
        margin: 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
    }

        .table-sozbil tr td {
            text-align: end;
        }

            .table-sozbil tr td:last-of-type {
                padding: 0 !important;
                border: 0 !important;
                white-space: unset;
            }

            .table-sozbil tr td:nth-child(1)::before {
                float: left;
                content: "Sıra No:";
            }

            .table-sozbil tr td:nth-child(2)::before {
                float: left;
                content: "Sözleşme Tarihi:";
            }

            .table-sozbil tr td:nth-child(3)::before {
                float: left;
                content: "Sözleşme No:";
            }

            .table-sozbil tr td:nth-child(4)::before {
                float: left;
                content: "Ürün:";
            }

            .table-sozbil tr td:nth-child(5)::before {
                float: left;
                content: "Sözleşme Tut.:";
            }

            .table-sozbil tr td:nth-child(6)::before {
                float: left;
                content: "Peşinat:";
            }

            .table-sozbil tr td:nth-child(7)::before {
                float: left;
                content: "Taksit:";
            }

            .table-sozbil tr td:nth-child(8)::before {
                float: left;
                content: "Taksit Toplamı:";
            }

            .table-sozbil tr td:nth-child(9)::before {
                float: left;
                content: "Ödenmiş Tutar:";
            }

            .table-sozbil tr td:nth-child(10)::before {
                float: left;
                content: "Kalan Tutar:";
            }

            .table-sozbil tr td:nth-child(11)::before {
                float: left;
                content: "Durum:";
            }

            .table-sozbil tr td:nth-child(12)::before {
                float: left;
                content: "MEB:";
            }

            .table-sozbil tr td:nth-child(13)::before {
                float: left;
                content: "";
            }
}

.table-gorus {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-gorus tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-gorus tbody tr:hover {
            background-color: #0000000f;
        }

        .table-gorus tbody tr th {
            background-color: #e1edf5;
            color: #0070b1;
            padding: 2px;
            height: 2.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-gorus tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #a7a7a745;
        }

@media (min-width:992px) {
    .table-gorus tbody tr th {
        white-space: nowrap;
        padding-right: 25px;
    }

    .table-gorus tbody tr td {
        white-space: nowrap;
        padding-right: 25px;
    }

        .table-gorus tbody tr td:last-child {
            white-space: unset;
        }
}

.table-gorus tbody tr td p {
    font-size: .7rem;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

.table-gorus tbody tr td a {
    font-size: .7rem;
}

.table-gorus tbody tr td span {
    font-size: .7rem;
}

@media (max-width:576px) {
    .table-gorus tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-gorus tbody tr td {
            padding: 1px 0;
        }

    .table-gorus tr:first-of-type {
        display: none;
    }

    .table-gorus tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: start;
        overflow: scroll;
        width: 98%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
        background-color: #f1f1f1;
    }

    .table-gorus tbody tr:hover {
        background-color: #014192;
        color: #fff;
    }

    .table-gorus tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-gorus tbody tr td:last-child {
            text-align: justify;
            padding: 5px;
            border-bottom: 0;
        }


    .table-gorus tr td:nth-child(1)::before {
        float: left;
        content: "Sıra No:";
    }

    .table-gorus tr td:nth-child(2)::before {
        float: left;
        content: "Görüş Tarihi:";
    }

    .table-gorus tr td:nth-child(3)::before {
        float: left;
        content: "Öğretmen Adı-Soyadı:";
    }

    .table-gorus tr td:nth-child(4)::before {
        float: left;
        content: "Branşı:";
    }

    .table-gorus tr td:nth-child(5)::before {
        float: left;
        content: "Görüş Kategorisi:";
    }

    .table-gorus tr td:nth-child(6)::before {
        float: left;
        content: "";
        display: none;
    }
}

.table-kitap {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-kitap tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-kitap tbody tr:hover {
            background-color: #0000000f;
        }

        .table-kitap tbody tr th {
            background-color: #e1edf5;
            color: #0070b1;
            padding: 2px;
            height: 2.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-kitap tbody tr td {
            font-size: .7rem;
            padding: 3px;
            font-family: sans-serif;
            border: 0;
            border-bottom: 1px solid #a7a7a745;
        }

@media (min-width:992px) {
    .table-kitap tbody tr th {
        white-space: nowrap;
    }

    .table-kitap tbody tr td {
        white-space: nowrap;
    }

        .table-kitap tbody tr td:last-child {
            white-space: unset;
        }
}

.table-kitap tbody tr td p {
    font-size: .7rem;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

@media (max-width:576px) {
    .table-kitap tbody {
        display: block;
        width: 100%;
        height: 70vh;
        overflow: scroll;
    }

        .table-kitap tbody tr td {
            padding: 1px 0;
        }

    .table-kitap tr:first-of-type {
        display: none;
    }

    .table-kitap tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: start;
        overflow: scroll;
        width: 98%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
        background-color: #f1f1f1;
    }

    .table-kitap tbody tr:hover {
        background-color: #dcebff;
        color: #111;
    }

    .table-kitap tbody tr td {
        text-align: end;
        margin: 1px 0;
        padding: 5px 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-kitap tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-kitap tr td:nth-child(1)::before {
        float: left;
        content: "Sıra No:";
    }

    .table-kitap tr td:nth-child(2)::before {
        float: left;
        content: "Verilme Tarihi:";
    }

    .table-kitap tr td:nth-child(3)::before {
        float: left;
        content: "Öğretmen Adı-Soyadı:";
    }

    .table-kitap tr td:nth-child(4)::before {
        float: left;
        content: "Yazar:";
    }

    .table-kitap tr td:nth-child(5)::before {
        float: left;
        content: "Kitap Adı:";
    }

    .table-kitap tr td:nth-child(6)::before {
        float: left;
        content: "Sayfa Sayısı:";
    }

    .table-kitap tr td:nth-child(7)::before {
        float: left;
        content: "Yapılacak Sonuç:";
    }

    .table-kitap tr td:nth-child(8)::before {
        float: left;
        content: "Başlama Tarihi:";
    }

    .table-kitap tr td:nth-child(9)::before {
        float: left;
        content: "Bitirme Tarihi:";
    }

    .table-kitap tr td:nth-child(10)::before {
        float: left;
        content: "Okundu mu?:";
    }

    .table-kitap tr td:nth-child(11)::before {
        float: left;
        content: "Kontrol?:";
    }
}

.table-etut-listele {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    min-height: 30vh;
    max-height: 30vh;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-etut-listele tbody {
        display: block;
        overflow-wrap: break-word;
        height: 36vh;
        overflow-y: auto;
    }

        .table-etut-listele tbody tr:hover {
            background-color: #0000000f;
        }

        .table-etut-listele tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-dark);
            padding: 0.5rem;
            height: 2.5rem;
            font-size: var(--font-primary);
            font-weight: 700;
            border: 0;
            border-bottom: 1px solid var(--cl-gray);
        }

        .table-etut-listele tbody tr:first-child {
            position: sticky;
            top: 0;
        }

        .table-etut-listele tbody tr td {
            font-size: var(--font-primary);
            padding: 0.5rem;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
        }

@media (min-width:992px) {
    .table-etut-listele tbody tr th {
        white-space: nowrap;
    }

    .table-etut-listele tbody tr td {
        white-space: nowrap;
    }

        .table-etut-listele tbody tr td:last-child {
            white-space: unset;
        }
}

.table-etut-listele tbody tr td p {
    font-size: var(--font-primary);
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

.table-etut-listele tbody tr td a {
    font-size: var(--font-primary);
}

.table-etut-listele tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-etut-listele tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow-y: auto;
    }

        .table-etut-listele tbody tr td {
            padding: 1px 0;
        }

    .table-etut-listele tr:first-of-type {
        display: none;
    }

    .table-etut-listele tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 47%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-etut-listele tbody tr:hover {
        background-color: var(--cl-primary-light);
    }

    .table-etut-listele tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid var(--cl-light-gray);
        width: unset !important;
    }

        .table-etut-listele tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-etut-listele tr td:nth-child(1)::before {
        float: left;
        content: "Tarih:";
    }

    .table-etut-listele tr td:nth-child(2)::before {
        float: left;
        content: "Ders Saati:";
    }

    .table-etut-listele tr td:nth-child(3)::before {
        float: left;
        content: "Saat:";
    }

    .table-etut-listele tr td:nth-child(4)::before {
        float: left;
        content: "Ders:";
    }

    .table-etut-listele tr td:nth-child(5)::before {
        float: left;
        content: "Öğretmen:";
    }

    .table-etut-listele tr td:nth-child(6)::before {
        float: left;
        content: "Konu:";
    }

    .table-etut-listele tr td:nth-child(7)::before {
        float: left;
        content: "Kontenjan:";
    }

    .table-etut-listele tr td:nth-child(8)::before {
        float: left;
        content: "";
    }
}

.table-etut-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-etut-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-etut-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-etut-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 0.5rem;
            height: 2.5rem;
            font-size: var(--font-primary);
            font-weight: 700;
            border: 0;
            border-bottom: 1px solid var(--cl-primary);
        }

        .table-etut-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 0.5rem;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
        }

@media (min-width:992px) {
    .table-etut-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-etut-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-etut-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-etut-listesi tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-etut-listesi tbody tr td a {
    font-size: var(--font-primary);
}

.table-etut-listesi tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-etut-listesi tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-etut-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-etut-listesi tr:first-of-type {
        display: none;
    }

    .table-etut-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-etut-listesi tbody tr:hover {
        background-color: var(--cl-primary-light);
    }

    .table-etut-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid var(--cl-light-gray);
        width: unset !important;
    }

        .table-etut-listesi tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-etut-listesi tr td:nth-child(1)::before {
        float: left;
        content: "Etüt Türü:";
    }

    .table-etut-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Tarih:";
    }

    .table-etut-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Ders No:";
    }

    .table-etut-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Ders Saati:";
    }

    .table-etut-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Ders:";
    }

    .table-etut-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-etut-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Kontenjan:";
    }

    .table-etut-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Doluluk:";
    }

    .table-etut-listesi tr td:nth-child(9)::before {
        float: left;
        content: "Başvuru Var Mı?:";
    }
}

.table-odev-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-odev-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-odev-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-odev-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-odev-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid #a7a7a745;
        }

@media (min-width:992px) {
    .table-odev-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-odev-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-odev-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-odev-listesi tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-odev-listesi tbody tr td a {
    font-size: var(--font-primary);
}

.table-odev-listesi tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-odev-listesi tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-odev-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-odev-listesi tr:first-of-type {
        display: none;
    }

    .table-odev-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 40vh;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
        background-color: #f1f1f1;
    }

    .table-odev-listesi tbody tr:hover {
        background-color: #0000000f;
    }

    .table-odev-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-odev-listesi tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-odev-listesi tr td:nth-child(1)::before {
        float: left;
        content: "S.N:";
    }

    .table-odev-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Ödev Türü:";
    }

    .table-odev-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Ders:";
    }

    .table-odev-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-odev-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Şube:";
    }

    .table-odev-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Teslim:";
    }

    .table-odev-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Ödev Metni:";
    }

    .table-odev-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Dosya:";
    }

    .table-odev-listesi tr td:nth-child(9)::before {
        float: left;
        content: "Link:";
    }
}

.table-kitap-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-kitap-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-kitap-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-kitap-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid var(--cl-primary) !important;
        }

        .table-kitap-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid var(--cl-gray);
        }

@media (min-width:992px) {
    .table-kitap-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-kitap-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-kitap-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-kitap-listesi tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-kitap-listesi tbody tr td a {
    font-size: var(--font-primary);
}

.table-kitap-listesi tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-kitap-listesi tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-kitap-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-kitap-listesi tr:first-of-type {
        display: none;
    }

    .table-kitap-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 280px;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-kitap-listesi tbody tr:hover {
        background-color: var(--cl-primary-light);
    }

    .table-kitap-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-kitap-listesi tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-kitap-listesi tr td:nth-child(1)::before {
        float: left;
        content: "Sıra No:";
    }

    .table-kitap-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Veriliş Tarihi:";
    }

    .table-kitap-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Yazar:";
    }

    .table-kitap-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Kitap:";
    }

    .table-kitap-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Sayfa Sayısı:";
    }

    .table-kitap-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Başlama Tarihi:";
    }

    .table-kitap-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Bitiş Tarihi:";
    }

    .table-kitap-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Sonuç:";
    }
}

.table-veligorusme-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-veligorusme-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-veligorusme-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-veligorusme-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-veligorusme-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid #a7a7a745;
        }

@media (min-width:992px) {
    .table-veligorusme-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-veligorusme-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-veligorusme-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-veligorusme-listesi tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-veligorusme-listesi tbody tr td a {
    font-size: var(--font-primary);
}

.table-veligorusme-listesi tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-veligorusme-listesi tbody {
        display: block;
        width: 100%;
        overflow: scroll;
    }

        .table-veligorusme-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-veligorusme-listesi tr:first-of-type {
        display: none;
    }

    .table-veligorusme-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 37vh;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px #e4e4e4;
        border: 1px solid #b1b1b1;
        border-radius: 5px;
        background-color: #f1f1f1;
    }

    .table-veligorusme-listesi tbody tr:hover {
        background-color: #0000000f;
    }

    .table-veligorusme-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-veligorusme-listesi tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-veligorusme-listesi tr td:nth-child(1)::before {
        float: left;
        content: "S.N:";
    }

    .table-veligorusme-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-veligorusme-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Şube:";
    }

    .table-veligorusme-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Öğr No:";
    }

    .table-veligorusme-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Öğrenci:";
    }

    .table-veligorusme-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Talep Eden:";
    }

    .table-veligorusme-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Talep Tarihi:";
    }

    .table-veligorusme-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Durum:";
    }
}

.table-ogretmendusunce-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-ogretmendusunce-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-ogretmendusunce-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-ogretmendusunce-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid var(--cl-primary) !important;
        }

        .table-ogretmendusunce-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
            padding: 5px;
        }

@media (min-width:992px) {
    .table-ogretmendusunce-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-ogretmendusunce-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-ogretmendusunce-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-ogretmendusunce-listesi tbody tr td p {
    font-size: .7rem;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

.table-ogretmendusunce-listesi tbody tr td a {
    font-size: .7rem;
}

.table-ogretmendusunce-listesi tbody tr td span {
    font-size: .7rem;
}

@media (max-width:576px) {
    .table-ogretmendusunce-listesi tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-ogretmendusunce-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-ogretmendusunce-listesi tr:first-of-type {
        display: none;
    }

    .table-ogretmendusunce-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 98%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-ogretmendusunce-listesi tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-ogretmendusunce-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-ogretmendusunce-listesi tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-ogretmendusunce-listesi tr td:nth-child(1)::before {
        float: left;
        content: "Sıra No:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Tarih:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Şube:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Öğrenci:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Görüş Kategorisi:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Düşünce:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Veli Görsün:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(9)::before {
        float: left;
        content: "Öğrenci Görsün:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(10)::before {
        float: left;
        content: "Rehber Görsün:";
    }

    .table-ogretmendusunce-listesi tr td:nth-child(11)::before {
        float: left;
        content: "İdare Görsün:";
    }
}

.table-gorusmetalep-listesi {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-gorusmetalep-listesi tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-gorusmetalep-listesi tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .table-gorusmetalep-listesi tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid var(--cl-primary) !important;
        }

        .table-gorusmetalep-listesi tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid var(--cl-primary-light);
        }

@media (min-width:992px) {
    .table-gorusmetalep-listesi tbody tr th {
        white-space: nowrap;
    }

    .table-gorusmetalep-listesi tbody tr td {
        white-space: nowrap;
    }

        .table-gorusmetalep-listesi tbody tr td:last-child {
            white-space: unset;
        }
}

.table-gorusmetalep-listesi tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-gorusmetalep-listesi tbody tr td a {
    font-size: var(--font-primary);
}

.table-gorusmetalep-listesi tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-gorusmetalep-listesi tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-gorusmetalep-listesi tbody tr td {
            padding: 1px 0;
        }

    .table-gorusmetalep-listesi tr:first-of-type {
        display: none;
    }

    .table-gorusmetalep-listesi tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 98%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-gorusmetalep-listesi tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-gorusmetalep-listesi tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-gorusmetalep-listesi tbody tr td:last-child {
            border-bottom: 0;
            margin-top: 10px;
        }

    .table-gorusmetalep-listesi tr td:nth-child(1)::before {
        float: left;
        content: "Talep Tarihi:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(2)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(3)::before {
        float: left;
        content: "Şube:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(4)::before {
        float: left;
        content: "Öğrenci:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(5)::before {
        float: left;
        content: "Talep Mesajı:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(6)::before {
        float: left;
        content: "Durumu:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(7)::before {
        float: left;
        content: "Öğretmen Mesajı:";
    }

    .table-gorusmetalep-listesi tr td:nth-child(8)::before {
        float: left;
        content: "Görüşme Tarihi:";
    }
}

.table-devamsizlik {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-devamsizlik tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-devamsizlik tbody tr:hover {
            background-color: #0000000f;
        }

        .table-devamsizlik tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-devamsizlik tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid var(--cl-primary-light);
        }

@media (min-width:992px) {
    .table-devamsizlik tbody tr th {
        white-space: nowrap;
    }

    .table-devamsizlik tbody tr td {
        white-space: nowrap;
    }

        .table-devamsizlik tbody tr td:last-child {
            white-space: unset;
        }
}

.table-devamsizlik tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-devamsizlik tbody tr td a {
    font-size: var(--font-primary);
}

.table-devamsizlik tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-devamsizlik tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-devamsizlik tbody tr td {
            padding: 1px 0;
        }

    .table-devamsizlik tr:first-of-type {
        display: none;
    }

    .table-devamsizlik tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 48%;
        min-height: 44%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-devamsizlik tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-devamsizlik tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid var(--cl-light-gray);
        width: unset !important;
    }

        .table-devamsizlik tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-devamsizlik tr td:nth-child(1)::before {
        float: left;
        content: "Tarih:";
    }

    .table-devamsizlik tr td:nth-child(2)::before {
        float: left;
        content: "Ders No:";
    }

    .table-devamsizlik tr td:nth-child(3)::before {
        float: left;
        content: "Saat:";
    }

    .table-devamsizlik tr td:nth-child(4)::before {
        float: left;
        content: "Öğretmen:";
    }

    .table-devamsizlik tr td:nth-child(5)::before {
        float: left;
        content: "Tür:";
    }

    .table-devamsizlik tr td:nth-child(6)::before {
        float: left;
        content: "Tür Açıklama:";
    }

    .table-devamsizlik tr td:nth-child(7)::before {
        float: left;
        content: "Devamsızlık Türü:";
    }
}

.table-ogrenci-odev-kontrol {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .table-ogrenci-odev-kontrol tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .table-ogrenci-odev-kontrol tbody tr:hover {
            background-color: #0000000f;
        }

        .table-ogrenci-odev-kontrol tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 2px;
            height: 2.7rem;
            font-size: var(--font-primary);
            font-weight: 700;
            text-align: -webkit-left;
            text-align: left;
            text-transform: uppercase;
            border: 0 !important;
            border-bottom: 1px solid #cacaca !important;
        }

        .table-ogrenci-odev-kontrol tbody tr td {
            font-size: var(--font-primary);
            padding: 3px;
            border: 0;
            border-bottom: 1px solid var(--cl-primary-light);
        }

@media (min-width:992px) {
    .table-ogrenci-odev-kontrol tbody tr th {
        white-space: nowrap;
    }

    .table-ogrenci-odev-kontrol tbody tr td {
        white-space: nowrap;
    }

        .table-ogrenci-odev-kontrol tbody tr td:last-child {
            white-space: unset;
        }
}

.table-ogrenci-odev-kontrol tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.table-ogrenci-odev-kontrol tbody tr td a {
    font-size: var(--font-primary);
}

.table-ogrenci-odev-kontrol tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .table-ogrenci-odev-kontrol tbody {
        display: block;
        width: 100%;
        height: 40vh;
        overflow: scroll;
    }

        .table-ogrenci-odev-kontrol tbody tr td {
            padding: 1px 0;
        }

    .table-ogrenci-odev-kontrol tr:first-of-type {
        display: none;
    }

    .table-ogrenci-odev-kontrol tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 96%;
        min-height: 40%;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-ogrenci-odev-kontrol tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-ogrenci-odev-kontrol tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid var(--cl-light-gray);
        width: unset !important;
    }

        .table-ogrenci-odev-kontrol tbody tr td:last-child {
            border-bottom: 0;
        }

    .table-ogrenci-odev-kontrol tr td:nth-child(1)::before {
        float: left;
        content: "Öğrenci:";
    }

    .table-ogrenci-odev-kontrol tr td:nth-child(2)::before {
        float: left;
        content: "Teslim Tarihi:";
    }

    .table-ogrenci-odev-kontrol tr td:nth-child(3)::before {
        float: left;
        content: "";
    }

    .table-ogrenci-odev-kontrol tr td:nth-child(4)::before {
        float: left;
        content: "Dosya:";
    }
}

.table-calender {
    table-layout: auto;
}

    .table-calender .ajax__calendar_container {
        background: #ffffff;
        border: 1px solid #ccc;
        width: auto;
        box-shadow: 0px 3px 8px 0px #51515129;
    }

    .table-calender .ajax__calendar_dayname {
        height: 19px;
        width: 19px;
        text-align: center;
        padding: 0 2px;
        margin: 0 2px;
        cursor: pointer;
        font-size: .85rem;
        color: #014192;
        font-weight: 500;
    }

    .table-calender .ajax__calendar_today {
        cursor: pointer;
        padding-top: 0px;
        font-size: .85rem;
        color: #014192;
        font-weight: 500;
    }

    .table-calender .ajax__calendar_day {
        height: 19px;
        width: 19px;
        text-align: center;
        padding: 0 2px;
        margin: 0 2px;
        cursor: pointer;
        font-size: .85rem;
        font-weight: 400;
    }

    .table-calender .ajax_calender_other:first-child {
        font-weight: 600;
    }

    .table-calender .ajax__calendar_day:hover {
        background: #0070b124;
    }


.sinavdetay {
    margin-bottom: .5rem;
}

    .sinavdetay p {
        font-size: .9rem;
        margin: 4px 0;
    }


#ogrenci .table-general {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    #ogrenci .table-general thead {
        background-color: #014192;
        color: #fff;
        height: 1.7rem;
    }

        #ogrenci .table-general thead tr {
        }

            #ogrenci .table-general thead tr th {
            }

    #ogrenci .table-general tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        #ogrenci .table-general tbody tr {
        }

            #ogrenci .table-general tbody tr:hover {
                background-color: #0000000f;
            }

            #ogrenci .table-general tbody tr th {
                background-color: var(--cl-primary-light);
                color: var(--cl-primary);
                padding: 2px;
                height: 2rem;
                font-size: var(--font-primary);
                font-weight: 700;
                text-transform: uppercase;
                border: 0 !important;
                border-bottom: 1px solid #cacaca !important;
            }

            #ogrenci .table-general tbody tr td {
                font-size: var(--font-primary);
                padding: 3px;
                border: 0;
                border-bottom: 1px solid #bdbdbd;
            }

                #ogrenci .table-general tbody tr td p {
                    font-size: .7rem;
                    font-family: sans-serif;
                }

                #ogrenci .table-general tbody tr td a {
                    font-size: .7rem;
                }

                #ogrenci .table-general tbody tr td span {
                    font-size: .7rem;
                }

@media (max-width:578px) {
    #ogrenci .table-general {
        width: 100%;
        margin-bottom: 1rem;
        color: #212529;
        font-size: 0.9rem;
        display: block;
        table-layout: auto;
        overflow-x: scroll;
        overflow-y: scroll;
        border-collapse: collapse;
        border: 0;
    }

        #ogrenci .table-general tbody tr th {
            padding: .2rem !important;
            height: 2rem !important;
            font-size: var(--font-primary);
            text-align: left;
        }

        #ogrenci .table-general td {
        }
}


@media (max-width:678px) {

    input[type="date"] {
        position: relative;
    }

        input[type="date"]:before {
            content: attr(placeholder);
            pointer-events: none;
        }

        input[type="date"]:focus:before,
        input[type="date"]:not([value=""]):before {
            display: none;
        }
}


#ogrenci .table-ex {
    margin-bottom: 1rem;
    color: #212529;
    font-size: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border-collapse: collapse;
    border: 1px solid #cccccc;
}

    #ogrenci .table-ex thead tr th {
        background-color: #014192;
        color: #fff;
        text-align: center;
        font-size: 1rem;
        height: 2.5rem;
    }

    #ogrenci .table-ex tbody {
        display: block;
        overflow-y: auto;
        overflow-x: hidden;
        height: 670px;
    }

        #ogrenci .table-ex tbody tr:first-child {
            display: block;
            position: sticky;
            top: 0;
        }

        #ogrenci .table-ex tbody tr th {
            background-color: #014192;
            color: #fff;
            text-align: center;
            font-size: 1rem;
            height: 3rem;
            width: 3.1rem;
        }

        #ogrenci .table-ex tbody tr td {
            text-align: center;
            font-size: .9rem;
            height: 3rem;
            width: 3.1rem;
        }

            #ogrenci .table-ex tbody tr td:hover {
                background-color: #f44336;
                color: #fff;
            }



#ogrenci .tbldetail {
    background-color: lightblue;
    margin-top: 15px;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: .9rem;
    width: 100%;
}

    #ogrenci .tbldetail p {
        font-size: 0.8rem;
    }

.image-upload-wrap {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    border: 1px solid #014192;
    background-color: #e4ecf1;
    width: 100%;
    padding: 0;
}

    .image-upload-wrap ::-webkit-file-upload-button {
        background-color: #014192;
        color: #fff;
        border: 1px solid #014192;
        font-size: .8rem;
        padding: 6px 8px;
        cursor: pointer;
        border-radius: 0;
    }

    .image-upload-wrap .btnYukle {
        background-color: #014192;
        color: #fff;
        border: 1px solid #014192;
        font-size: .8rem;
        padding: 6px 8px;
        cursor: pointer;
        border-radius: 0;
    }

    .image-upload-wrap input[type=submit]:not(:disabled) {
        background-color: #014192;
        color: #fff;
        border: 1px solid #014192;
        font-size: .8rem;
        padding: 6px 8px;
        border-radius: 0;
    }

#ogrenci .odev-detay button input[type=checkbox] + label {
    font-size: .8rem;
    padding-left: 5px;
    margin-bottom: 0;
    color: #dc3545;
    font-weight: 500;
}

#ogrenci .odev-detay textarea {
    border: 1px solid #00000040;
    background-color: var(--cl-white);
    border-radius: 5px;
    font-size: var(--font-small);
    width: 100%;
    width: -webkit-fill-available;
    padding: 5px 5px;
}

#ogrenci .odev-detay oDetayStatic {
    font-weight: 700;
}


#ogrenci .odev-detay .eDosya {
    font-weight: 600;
    color: #014192;
}

#ogrenci .odev-detay p {
    font-size: .8rem;
    margin: 7px 0px 0;
}

#ogrenci .tbldetail2 td, .tbldetail2 th {
    padding: .35rem;
    vertical-align: middle;
    border-top: 0;
    border-bottom: 0 !important;
    text-align: left;
}

/*Tab + Accordion System Styles */

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 32px;
    border-bottom: 1px solid #bdbdbd;
    width: 100%;
}

    ul.tabs li {
        float: left;
        margin: 0;
        cursor: pointer;
        padding: 0px 11px;
        height: auto;
        line-height: 31px;
        border-top: 1px solid #bdbdbd;
        border-left: 1px solid #bdbdbd;
        border-bottom: 1px solid #bdbdbd;
        background-color: #0956b7;
        color: #fff;
        overflow: hidden;
        position: relative;
    }

.tab_last {
    border-right: 1px solid #333;
}

ul.tabs li:hover {
    background-color: #ccc;
    color: #333;
}

ul.tabs li.active {
    background-color: #fff;
    color: #333;
    border-bottom: 1px solid #fff;
    display: block;
    font-weight: 500;
}

.tab_container {
    /* border: 1px solid #333; */
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
    margin-top: -10px;
}

.tab_content {
    padding: 20px;
    display: block;
}

.tab_drawer_heading {
    display: none;
}

@media screen and (max-width:992px) {
    ul.tabs {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        color: #dc3545;
        border-top: 1px solid #a0a0a0;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        font-size: 1.2rem;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100%;
    }

    .d_active {
        background-color: #dc3545;
        color: #fff;
        width: 100%;
    }

    .tab_container {
        top: 0px;
        margin-top: -30px;
        padding-bottom: 20px;
    }
}

.altnav {
    display: flex;
    position: relative;
    align-self: center;
    margin-top: 1rem;
}

    .altnav .bx {
    }

        .altnav .bx a {
            width: 145px;
            height: 70px;
            color: #014192;
            background-image: linear-gradient(to top, rgb(230, 230, 230), rgb(232, 232, 232), rgb(235, 235, 235), rgb(237, 237, 237), rgb(239, 239, 239), rgb(241, 241, 241), rgb(244, 244, 244), rgb(246, 246, 246), rgb(248, 248, 248), rgb(250, 250, 250), rgb(253, 253, 253), rgb(255, 255, 255));
            border: 1px solid #bebebe;
            align-self: center;
            margin: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            border-radius: 5px;
            flex-direction: column;
        }

            .altnav .bx a:hover {
            }

    .altnav i {
        font-size: 1.5rem;
    }

    .altnav a p {
        margin: 5px 0 0;
    }

    .altnav hr {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        border: 0;
        height: 1px;
    }

@media screen and (max-width: 992px) {
    .altnav {
    }
}

@media (max-width: 768px) {
    .altnav {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }

        .altnav .bx a {
            width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
        }

        .altnav i {
            font-size: 2rem;
        }

        .altnav a p {
            padding-left: 0;
            font-size: .7rem;
            margin-top: 2px;
        }
}

@media (max-width:578px) {
    .altnav .bx a {
        width: 79px;
        height: 79px;
    }
}

.tblogrenmeharitasi {
    position: relative;
    width: -webkit-fill-available !important;
    margin-left: 5px;
    margin-top: 5px;
    border: 1px solid #aaaaaa;
}

    .tblogrenmeharitasi td {
        height: 2rem;
        padding: .3rem 0;
        text-align: center;
        white-space: normal;
        color: #000000;
        border: 1px solid #c3c3c3;
        font-size: 0.7rem !important;
        font-weight: 500;
    }

    .tblogrenmeharitasi tr:nth-child(even) {
        background: #ececec;
    }

    .tblogrenmeharitasi tr:hover {
        background: #e4ecf1;
    }

@media (max-width:767px) {

    .tblogrenmeharitasi td:nth-child(1) {
        width: 50% !important;
    }

    .tblogrenmeharitasi td:last-child {
        width: 11% !important;
    }
}

.table-new {
    position: relative;
    width: 100%;
    border: 1px solid #adadad;
}

    .table-new tr:first-child {
        position: sticky;
        top: 0;
        background: #d6f0ff;
        border: 1px solid #adadad;
        height: 2rem;
        box-shadow: 0px 2px #00000024;
    }

        .table-new tr:first-child:hover {
            background: unset;
        }

        .table-new tr:first-child th {
            font-size: .7rem;
            font-weight: 500;
        }

    .table-new td {
        height: 2rem;
        padding: .3rem 0;
        text-align: center;
        white-space: normal;
        color: #000000;
        font-size: 0.7rem;
        font-weight: 400;
    }

        .table-new td span {
            font-size: .7rem;
        }

        .table-new td:nth-child(3) {
            text-align: left;
        }

    .table-new tr:nth-child(even) {
        background: #ececec;
    }

    .table-new tr:hover {
        background: #e4ecf1;
    }

@media (max-width:767px) {

    .table-new td:nth-child(1) {
        width: 10%;
    }

    .table-new td:last-child {
    }
}


.duyuruModalWrap {
    display: flex;
    flex-direction: column;
}

    .duyuruModalWrap h6 {
        width: 130px;
        margin-bottom: 1rem;
        color: #014192;
    }

.duyuruModal {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.d_ModalCard {
    display: flex;
    padding: 1rem;
    background-color: #fff;
    border-radius: 5px;
    max-height: 150px;
    height: 100px;
    overflow: auto;
    -moz-box-shadow: inset 0px 1px 1px 0px #757575;
    -webkit-box-shadow: inset 0px 1px 1px 0px #757575;
    box-shadow: inset 0px 1px 1px 0px #757575;
}

    .d_ModalCard p {
        font-size: .9rem;
        margin: .1rem;
    }


@media (max-width:768px) {
    .duyuruModalWrap {
        flex-direction: column;
    }

        .duyuruModalWrap h6 {
            width: unset;
            margin-bottom: 0;
        }

    .duyuruModal {
        flex-direction: column;
        justify-content: center;
        align-items: normal;
    }

    .d_ModalCard {
        padding: .5rem;
    }
}


.odeme_wrapper {
    display: flex;
    flex-direction: row;
}

@media (max-width:576px) {
    .odeme_wrapper {
        justify-content: space-between;
    }
}

.odeme_bx_wrp {
    display: flex;
    margin-right: 1rem;
    align-items: center;
}

.odeme_bx1 {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #daffca;
}

.odeme_bx2 {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #fffdd5;
}

.odeme_bx3 {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #ffdbdb;
}

.odeme_wrapper p {
    padding: 0 0 0 .5rem;
    margin: 0;
    font-size: .8rem;
}

@media (max-width:576px) {
    .odeme_wrapper p {
        font-size: .7rem;
    }
}


.tblcheckout {
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border-collapse: collapse;
    float: right;
}

@media (max-width:768px) {
    .tblcheckout {
        float: unset;
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

.tblcheckout tbody {
    overflow-x: scroll;
    display: table-header-group;
    overflow-wrap: break-word;
}

.tblcheckout tr {
    border: 0;
    border-bottom: 1px solid #e4e4e4;
}

.tblcheckout td span {
    font-size: .8rem;
}

.tblcheckout span:last-child {
    font-weight: 500;
}

.tblcheckout td:first-child {
    width: 120px;
}

.tblcheckout td:last-child {
    width: 100px;
    padding-left: 10px;
    text-align: end;
}


.tblcheckout2 {
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border-collapse: collapse;
    width: 100%;
}

    .tblcheckout2 tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

    .tblcheckout2 tr {
        border: 0;
        border-bottom: 1px solid #e4e4e4;
    }

    .tblcheckout2 tr {
        display: flex;
        justify-content: space-between;
    }

        .tblcheckout2 tr th {
            font-weight: 500;
            color: #014192;
            width: 50%;
        }

    .tblcheckout2 td {
        font-size: .8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tblcheckout2 th:first-of-type {
        width: 120px;
        text-align: center;
    }

    .tblcheckout2 td:last-child {
        font-weight: 500;
    }

    .tblcheckout2 th:last-child {
        text-align: end;
    }

    .tblcheckout2 td:first-of-type {
        width: 120px;
    }


.tblnewGeneral {
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    width: 100%;
    border: 0;
}

    .tblnewGeneral tr {
    }

        .tblnewGeneral tr:first-child {
            position: sticky;
            top: 0;
        }

    .tblnewGeneral th {
        background-color: var(--cl-primary-light);
        color: var(--cl-primary);
        padding: 0.5rem;
        height: 2.5rem;
        font-size: var(--font-primary);
        font-weight: 700;
        border: 0;
        border-bottom: 1px solid var(--cl-primary);
    }

    .tblnewGeneral td {
        color: var(--cl-text);
        font-size: var(--font-primary);
        padding: 3px;
        border: 0;
        border-bottom: 1px solid var(--cl-gray);
    }

    .tblnewGeneral label {
        margin: 0;
    }

    .tblnewGeneral span, .tblnewGeneral a {
        font-size: var(--font-small);
        color: var(--cl-primary);
        text-decoration: underline;
    }

        .tblnewGeneral span, .tblnewGeneral a:hover {
            text-decoration: underline;
        }

    .tblnewGeneral tr:hover:not(:first-child) {
        background-color: var(--cl-gray);
    }

@media (max-width:576px) {

    .tblnewGeneral th {
        font-size: var(--font-primary);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 25px;
    }

    .tblnewGeneral td {
        font-size: var(--font-small);
        padding: 2px;
    }

        .tblnewGeneral td span {
            font-size: var(--font-small);
        }
}

.th-fix th {
    font-size: var(--font-primary);
    overflow: hidden;
    white-space: normal !important;
    text-overflow: unset !important;
    max-width: unset !important;
}


.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    font-size: 1rem;
    font-weight: bold;
    color: #e1294e;
    line-height: 30px;
}

/*.blink span {
        font-size: 1rem;
        font-weight: bold;
        color: #e1294e;
        line-height: 30px;
    }*/


.gap-1 {
    gap: .25rem;
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: 1rem
}



@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.gap-1 {
    gap: .5rem;
}

.gap-2 {
    gap: .75rem;
}

.gap-3 {
    gap: 1rem;
}

.flex_resp {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.bg_login {
    background: #fff;
    overflow-y: auto;
    border-radius: 30px;
    padding: 2rem
}

@media (max-width: 992px) {
    .flex_resp {
        flex-direction: column;
    }

    .bg_login {
        padding: 1rem;
        border-radius: 0;
    }
}

::selection {
    background: #014192;
    color: #fff;
}

.divDevamsizlik_container {
    display: flex;
    flex-direction: column;
}

.divDevamsizlik_head {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
    padding: 1rem 0;
}

    .divDevamsizlik_head p {
        margin: 0;
        padding: 0;
        white-space: nowrap;
        margin-right: 0.5rem;
        font-size: .85rem;
    }

        .divDevamsizlik_head p span {
            color: #0070b1;
        }

    .divDevamsizlik_head input[type=checkbox] + label {
        font-size: .8rem;
        padding-left: 5px;
        margin-bottom: 0;
        color: #dc3545;
        font-weight: 500;
    }

    .divDevamsizlik_head h1 {
        font-size: 1.2rem;
        margin: 0;
        padding-bottom: 0.5rem;
    }

.divDevamsizlik_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.content_wrapper {
    background-color: white;
    width: 100%;
    min-height: 40vh;
    height: 60vh;
    padding: 2rem;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: row;
    align-content: flex-start;
}

.content_box {
    background-color: #ffffff;
    border: 1px solid #00a762;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 19%;
    min-height: 165px;
}

    .content_box:hover {
        box-shadow: 0 5px 10px #11111121;
    }

    .content_box img {
        width: 100px;
        height: 130px;
        object-fit: cover;
        object-position: top;
    }

    .content_box p {
        margin: 0;
        padding: 0;
        text-align: center;
    }

.divYoklama {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}

    .divYoklama input[type="radio"] {
        opacity: 0;
        width: 0;
        height: 0;
        display: none;
    }

    .divYoklama .yoklama_sec {
        width: 30px;
        height: 30px;
        padding: 0.25rem;
        display: flex;
        justify-content: center;
        border: 1px solid #11111152;
        border-radius: 5rem;
        cursor: pointer;
    }

        .divYoklama .yoklama_sec label {
            cursor: pointer;
            width: 25px;
            height: fit-content;
            display: flex;
            justify-content: center;
            margin: 0;
            align-items: center;
        }

.ogr_var-hover {
    background-color: rgb(0 173 109);
    color: #fff;
    cursor: pointer;
}

.ogr_gec-hover {
    background-color: #ffda00;
    color: #111;
    cursor: pointer;
}

.ogr_yok-hover {
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
}

.divContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .5rem;
    flex-direction: column;
    text-align: center;
}

    .divContent > div:first-child {
        padding: 0.25rem 0;
    }

@media (max-width:992px) {

    .divMobilOnayla {
        display: flex;
        position: absolute;
        bottom: 0;
    }

    .content_box {
        width: 49%;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: .5rem;
        min-height: unset;
    }

        .content_box:nth-child(odd) {
            background: #00a96617;
        }

        .content_box:hover {
            background-color: #e4e4e4;
        }

        .content_box p {
            text-align: left;
        }

        .content_box > div:nth-of-type(2) p {
            text-align: left;
        }

    .content_wrapper {
        width: 100%;
        height: 60vh;
        padding: 1rem;
    }

    .divContent {
        width: 100%;
        flex-direction: row;
        margin: 0;
    }

    .content_box img {
        width: 80px;
    }

    .divDevamsizlik_head {
        justify-content: space-around;
    }

    .divYoklama {
        flex-direction: row;
    }
}

@media (max-width:768px) {
    .content_box {
        width: 100%;
        padding: .5rem;
        border: 0;
        border-bottom: 1px solid #24242438;
    }

        .content_box:last-child {
            border-bottom: 0;
        }

        .content_box img {
            display: none;
        }

    .content_wrapper {
        padding: .5rem;
        gap: 0;
        height: 65vh;
    }

    .divDevamsizlik_container {
        /* top: 45px; */
    }

    .divDevamsizlik_head {
        gap: 0;
        bottom: 0;
        justify-content: space-between;
        padding: .5rem;
    }

        .divDevamsizlik_head p {
            font-size: .8rem;
        }

    .divMobilOnayla {
        position: relative;
        padding: 15px;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 2px 0px #11111112;
        background: var(--white);
    }
}

@media (max-width: 576px) {
    .divDevamsizlik_head {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .divDevamsizlik_container {
        top: 33px;
    }
}

.overflow-y-260 {
    overflow-y: auto;
    height: 260px;
}

.overflow-y-30vh {
    overflow-y: auto;
    height: 30vh;
}

.overflow-y-35vh {
    overflow-y: auto;
    height: 35vh;
}

.overflow-y-40vh {
    overflow-y: auto;
    height: 40vh;
}

.overflow-y-50vh {
    overflow-y: auto;
    height: 50vh;
}

.table_modal {
    display: table;
    width: 100%;
    border: hidden;
}

    .table_modal tbody {
        max-height: 220px;
        overflow-y: auto;
        overflow-x: hidden;
        /*display: flow-root;*/
    }

        .table_modal tbody tr {
            border: 0;
            border-bottom: 1px solid #d7d7d7;
        }

            .table_modal tbody tr:nth-child(odd) {
                background: #0000000f;
            }

            .table_modal tbody tr:nth-child(even) {
            }


    .table_modal th, .table_modal td {
        padding: 3px;
    }

    .table_modal tbody tr:first-child {
        position: sticky;
        top: 0;
        border-bottom: 1px solid #d7d7d7;
        height: 2rem;
        background: #e1edf5;
    }

        .table_modal tbody tr:first-child th {
            font-size: .8rem;
            font-weight: 500;
            border: 0;
            white-space: nowrap;
        }

    .table_modal td {
        font-size: .75rem;
        padding: 2px;
        border: 0;
    }

        .table_modal td span {
            font-size: .75rem;
        }

.danismanlik {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: unsafe center;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin: 1rem auto;
}



.danismanlik-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1rem 0;
}

    .danismanlik-container .card-body {
        padding: 1rem;
    }

    .danismanlik-container .table-danisman {
        display: table;
    }

        .danismanlik-container .table-danisman tr {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--cl-light);
        }

            .danismanlik-container .table-danisman tr th {
                font-weight: 500;
                color: var(--cl-text);
                width: 35%;
            }

        .danismanlik-container .table-danisman td {
            text-align: left;
        }

        .danismanlik-container .table-danisman tr td:before {
            content: ": ";
        }

        .danismanlik-container .table-danisman td, .danismanlik-container .table-danisman th, .danismanlik-container .table-danisman thead th {
            padding: .25rem;
            border: unset;
            text-align: left;
            width: 75%;
        }

@media (max-width:768px) {
    .danismanlik-container .table-danisman tr th {
        width: 50%;
        font-size: var(--font-primary);
    }

    .danismanlik-container .table-danisman tr td {
        width: 50%;
        font-size: var(--font-primary);
    }
}

.danismanlik .bx {
    background-color: var(--cl-primary-light);
    background-image: linear-gradient(to top, rgb(230, 230, 230), rgb(232, 232, 232), rgb(235, 235, 235), rgb(237, 237, 237), rgb(239, 239, 239), rgb(241, 241, 241), rgb(244, 244, 244), rgb(246, 246, 246), rgb(248, 248, 248), rgb(250, 250, 250), rgb(253, 253, 253), rgb(255, 255, 255));
    border: 1px solid #bebebe;
    align-self: center;
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    height: 50px;
}

    .danismanlik .bx a {
        display: flex;
        width: 100%;
        height: 100%;
        font-size: var(--font-primary);
        align-items: center;
        justify-content: center;
    }

        .danismanlik .bx a:hover {
            background: var(--cl-primary);
            color: var(--cl-white);
            width: 100%;
        }

    .danismanlik .bx i {
        font-size: var(--font-h2);
        padding: 0;
        margin-right: .5rem;
    }

@media (max-width:992px) {
    .danismanlik {
        width: 100%;
        overflow-y: overlay;
        padding: 0.7rem 1rem;
        min-height: 100px;
        justify-content: flex-start;
        position: sticky;
        top: 30px;
        background-color: var(--cl-white);
        z-index: 1984;
        box-shadow: 1px 1px 5px 1px #00000014;
        margin: unset;
    }

        .danismanlik .bx {
            height: unset;
            width: 100%;
            justify-content: center;
        }

            .danismanlik .bx a {
                font-size: var(--font-xsmall);
                flex-direction: column;
                width: 70px;
                height: 70px;
                text-align: center;
            }

            .danismanlik .bx i {
                font-size: var(--font-h1);
                padding: 0;
                margin: 0;
                height: auto;
                margin-bottom: 0.35rem;
            }
}

.table-danismanlik-sec {
    width: 100%;
}

    .table-danismanlik-sec tbody {
        display: inline-table;
        width: 100%;
    }

        .table-danismanlik-sec tbody tr:hover:not(:first-child) {
            background-color: var(--cl-light-gray);
        }

        .table-danismanlik-sec tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 0.5rem;
            height: 2.5rem;
            font-size: var(--font-primary);
            font-weight: 700;
            border: 0;
            border-bottom: 1px solid var(--cl-primary);
        }

            .table-danismanlik-sec tbody tr th:last-child, .table-danismanlik-sec tbody tr td:last-child {
                text-align: right;
            }

        .table-danismanlik-sec tbody tr:first-child {
            position: sticky;
            top: 0;
        }

        .table-danismanlik-sec tbody tr td {
            font-size: var(--font-primary);
            padding: 0.5rem;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
        }

@media (min-width:992px) {
    .table-danismanlik-sec tbody tr th {
        white-space: nowrap;
    }

    .table-danismanlik-sec tbody tr td {
    }

        .table-danismanlik-sec tbody tr td:last-child {
            white-space: unset;
        }
}

.table-danismanlik-sec tbody tr td p {
    font-size: var(--font-small);
    padding: 0;
    margin: 0;
}

.table-danismanlik-sec tbody tr td a {
    font-size: var(--font-small);
}

.table-danismanlik-sec tbody tr td span {
    font-size: var(--font-small);
}

@media (max-width:576px) {
    .table-danismanlik-sec tbody {
        display: block;
        width: 100%;
        height: 55vh;
        overflow-y: auto;
    }

        .table-danismanlik-sec tbody tr td {
            padding: 1px 0;
        }

    .table-danismanlik-sec tr:first-of-type {
        display: none;
    }

    .table-danismanlik-sec tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 99%;
        min-height: auto;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-danismanlik-sec tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-danismanlik-sec tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-danismanlik-sec tbody tr td:last-child {
            border-bottom: 0;
            margin: 0.5rem 0.25rem;
        }

    .table-danismanlik-sec tr td:nth-child(1)::before {
        float: left;
        content: "S.N:";
    }

    .table-danismanlik-sec tr td:nth-child(2)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-danismanlik-sec tr td:nth-child(3)::before {
        float: left;
        content: "Şube:";
    }

    .table-danismanlik-sec tr td:nth-child(4)::before {
        float: left;
        content: "Öğr. No:";
    }

    .table-danismanlik-sec tr td:nth-child(5)::before {
        float: left;
        content: "Öğr. Ad-Soyad:";
    }

    .table-danismanlik-sec tr td:nth-child(6)::before {
        float: left;
        content: "Öğr. Cep Tel:";
    }

    .table-danismanlik-sec tr td:nth-child(7)::before {
        float: left;
        content: "Veli Ad-Soyad:";
    }

    .table-danismanlik-sec tr td:nth-child(8)::before {
        float: left;
        content: "Veli Cep Tel:";
    }

    .table-danismanlik-sec tr td:nth-child(9)::before {
        float: left;
        content: "";
    }
}

.table-rehberlik-bekleyen {
    width: 100%;
    border: 0;
}

    .table-rehberlik-bekleyen tbody {
        display: inline-table;
        width: 100%;
    }

        .table-rehberlik-bekleyen tbody tr:hover:not(:first-child) {
            background-color: var(--cl-light-gray);
        }

        .table-rehberlik-bekleyen tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 0.5rem;
            height: 2.5rem;
            font-size: var(--font-primary);
            font-weight: 700;
            border: 0;
            border-bottom: 1px solid var(--cl-primary);
        }

            .table-rehberlik-bekleyen tbody tr th:last-child, .table-rehberlik-bekleyen tbody tr td:last-child {
                text-align: right;
            }

        .table-rehberlik-bekleyen tbody tr:first-child {
            position: sticky;
            top: 0;
        }

        .table-rehberlik-bekleyen tbody tr td {
            font-size: var(--font-primary);
            padding: 0.5rem;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
        }

@media (min-width:992px) {
    .table-rehberlik-bekleyen tbody tr th {
        white-space: nowrap;
    }

    .table-rehberlik-bekleyen tbody tr td {
    }

        .table-rehberlik-bekleyen tbody tr td:last-child {
            white-space: unset;
        }
}

.table-rehberlik-bekleyen tbody tr td p {
    font-size: var(--font-small);
    padding: 0;
    margin: 0;
}

.table-rehberlik-bekleyen tbody tr td a {
    font-size: var(--font-small);
}

.table-rehberlik-bekleyen tbody tr td span {
    font-size: var(--font-small);
}

@media (max-width:576px) {
    .table-rehberlik-bekleyen tbody {
        display: block;
        width: 100%;
        height: 55vh;
        overflow-y: auto;
    }

        .table-rehberlik-bekleyen tbody tr td {
            padding: 1px 0;
        }

    .table-rehberlik-bekleyen tr:first-of-type {
        display: none;
    }

    .table-rehberlik-bekleyen tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 99%;
        min-height: auto;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-rehberlik-bekleyen tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-rehberlik-bekleyen tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-rehberlik-bekleyen tbody tr td:last-child {
            border-bottom: 0;
            margin: 0.5rem 0.25rem;
        }

    .table-rehberlik-bekleyen tr td:nth-child(1)::before {
        float: left;
        content: "Tarih:";
    }

    .table-rehberlik-bekleyen td:nth-child(2)::before {
        float: left;
        content: "Öğrenci:";
    }

    .table-rehberlik-bekleyen td:nth-child(3)::before {
        float: left;
        content: "Rehb. Türü:";
    }

    .table-rehberlik-bekleyen tr td:nth-child(4)::before {
        float: left;
        content: "Kategori:";
    }

    .table-rehberlik-bekleyen td:nth-child(5)::before {
        float: left;
        content: "Konu:";
    }

    .table-rehberlik-bekleyen tr td:nth-child(6)::before {
        float: left;
        content: "Görüşme Özeti:";
    }

    .table-rehberlik-bekleyen tr td:nth-child(7)::before {
        float: left;
        content: "";
    }
}


/* Danışmanlık Öğrenci Ödev Tablosu */


.ogrenci-danismanlik-odev {
    width: 100%;
    margin-bottom: 1rem;
    table-layout: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: 0 !important;
    border-collapse: collapse;
}

    .ogrenci-danismanlik-odev tbody {
        overflow-x: scroll;
        display: table-header-group;
        overflow-wrap: break-word;
    }

        .ogrenci-danismanlik-odev tbody tr:hover:not(:first-child) {
            background-color: #0000000f;
        }

        .ogrenci-danismanlik-odev tbody tr th {
            background-color: var(--cl-primary-light);
            color: var(--cl-primary);
            padding: 0.5rem;
            height: 2.5rem;
            font-size: var(--font-primary);
            font-weight: 700;
            border: 0;
            border-bottom: 1px solid var(--cl-primary);
        }

        .ogrenci-danismanlik-odev tbody tr td {
            font-size: var(--font-primary);
            padding: 0.5rem;
            border: 0;
            border-bottom: 1px solid var(--cl-light);
        }

@media (min-width:992px) {
    .ogrenci-danismanlik-odev tbody tr th {
        white-space: nowrap;
    }

    .ogrenci-danismanlik-odev tbody tr td {
    }

        .ogrenci-danismanlik-odev tbody tr td:last-child {
            white-space: unset;
        }
}

.ogrenci-danismanlik-odev tbody tr td p {
    font-size: var(--font-primary);
    padding: 0;
    margin: 0;
}

.ogrenci-danismanlik-odev tbody tr td a {
    font-size: var(--font-primary);
}

.ogrenci-danismanlik-odev tbody tr td span {
    font-size: var(--font-primary);
}

@media (max-width:576px) {
    .ogrenci-danismanlik-odev tbody {
        display: block;
        width: 100%;
        height: calc(100vh - 311px);
        overflow: scroll;
    }

        .ogrenci-danismanlik-odev tbody tr td {
            padding: 1px 0;
        }

    .ogrenci-danismanlik-odev tr:first-of-type {
        display: none;
    }

    .ogrenci-danismanlik-odev tr {
        display: inline-flex;
        flex-direction: column;
        overflow: scroll;
        width: 98%;
        min-height: 14vh;
        margin: 5px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
        justify-content: space-between;
    }

    .ogrenci-danismanlik-odev tbody tr:hover {
        background-color: var(--cl-primary-light);
    }

    .ogrenci-danismanlik-odev tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid var(--cl-light-gray);
        width: unset !important;
        font-size: var(--font-small);
        height: unset !important;
    }

        .ogrenci-danismanlik-odev tbody tr td:last-child {
            border-bottom: 0;
        }

    .ogrenci-danismanlik-odev tr td:nth-child(1)::before {
        float: left;
        content: "SN:";
    }

    .ogrenci-danismanlik-odev tr td:nth-child(2)::before {
        float: left;
        content: "Öğretmen Adı-Soyadı:";
    }

    .ogrenci-danismanlik-odev tr td:nth-child(3)::before {
        float: left;
        content: "Ders Adı:";
    }

    .ogrenci-danismanlik-odev td:nth-child(4)::before {
        float: left;
        content: "Ödev Türü:";
    }

    .ogrenci-danismanlik-odev td:nth-child(5)::before {
        float: left;
        content: "Ödev Metni:";
    }

    .ogrenci-danismanlik-odev td:nth-child(6)::before {
        float: left;
        content: "Teslim Tarihi:";
    }

    .ogrenci-danismanlik-odev td:nth-child(7)::before {
        float: left;
        content: "Yapıldı mı?:";
    }

    .ogrenci-danismanlik-odev td:nth-child(8)::before {
        float: left;
        content: "Öğt. Kontrol:";
    }
}


.ogrenci-container {
    padding: 0.25rem;
    margin: 1rem 0;
    border: 1px solid var(--cl-light);
    font-size: var(--font-small);
    background-color: var(--cl-primary-light);
}

    .ogrenci-container p {
        margin: 0;
        padding: 0;
    }

    .ogrenci-container img {
        width: 50px;
        height: auto
    }

.ajanda-hatirlatma-modal {
    background: #0000008c;
    color: #111;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1984;
}

.ajanda-hatirlatma-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 12px;
    margin: 0 3%;
}

.ajanda-hatirlatma-content {
    background: #ffffff;
    border-radius: 8px;
    min-width: 35%;
    padding: 14px 14px;
    color: #111;
    box-shadow: 0 5px 10px #1112;
}

    .ajanda-hatirlatma-content > div:first-child {
        padding: 0 0 10px 0;
    }

    .ajanda-hatirlatma-content h1 {
        font-size: 16px;
    }

        .ajanda-hatirlatma-content h1:before {
            content: '🕐';
            margin-right: 5px;
        }

.ajanda-hatirlatma-content-wrapper {
    display: flex;
    flex-direction: column;
    max-height: 320px;
    margin-bottom: 16px;
    overflow-y: scroll;
    gap: 8px;
    padding: 12px 0;
}

.ajanda-hatirlatma-etkinlik {
    display: flex;
    flex-direction: row;
    padding: 3px;
    margin-right: 5px;
    min-height: 30px;
    /*min-width: 600px;*/
    width: 97%;
    /*border: 1px solid #4092bc69;
    border-left: 4px solid #4092bc;*/
    align-items: center;
    /*justify-content: flex-start;*/
    border-radius: 4px;
    background: var(--cl-primary-light);
}

    .ajanda-hatirlatma-etkinlik div {
        display: flex;
        flex-direction: row;
        min-width: 120px;
        align-items: center;
        margin-right: 10px;
    }

        .ajanda-hatirlatma-etkinlik div:first-child {
            min-width: 20px;
            justify-content: center;
            border-right: 1px solid;
            margin-right: 7px;
            font-size: 13px;
            /*color: #036ea4;*/
            height: 25px;
        }

        .ajanda-hatirlatma-etkinlik div:last-child p {
            margin-left: 5px;
            max-width: 400px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            display: block;
        }

/* Klasik Sınav Listele Tablo */

.table-ks-listele {
    width: 100%;
    border: 0;
}

    .table-ks-listele tbody {
        display: inline-table;
        width: 100%;
    }

    .table-ks-listele tr:focus-visible {
        background: var(--cl-primary-light) !important;
        outline: 1px solid var(--cl-primary);
    }

    .table-ks-listele tbody tr:hover:not(:first-child) {
        background-color: var(--cl-light-gray);
    }

    .table-ks-listele tbody tr th {
        background-color: var(--cl-primary-light);
        color: var(--cl-primary);
        padding: 0.5rem;
        height: 2.5rem;
        font-size: var(--font-primary);
        font-weight: 700;
        border: 0;
        border-bottom: 1px solid var(--cl-primary);
    }

        .table-ks-listele tbody tr th:last-child, .table-rehberlik-bekleyen tbody tr td:last-child {
            text-align: right;
        }

    .table-ks-listele tbody tr:first-child {
        position: sticky;
        top: 0;
    }

    .table-ks-listele tbody tr td {
        font-size: var(--font-primary);
        padding: 0.5rem;
        border: 0;
        border-bottom: 1px solid var(--cl-light);
    }

@media (min-width:992px) {
    .table-ks-listele tbody tr th {
        white-space: nowrap;
    }

    .table-ks-listele tbody tr td {
    }

        .table-ks-listele tbody tr td:last-child {
            white-space: unset;
        }
}

.table-ks-listele tbody tr td p {
    font-size: var(--font-small);
    padding: 0;
    margin: 0;
}

.table-ks-listele tbody tr td a {
    font-size: var(--font-small);
}

.table-ks-listele tbody tr td span {
    font-size: var(--font-small);
}

@media (max-width:576px) {
    .table-ks-listele tbody {
        display: block;
        width: 100%;
        height: 55vh;
        overflow-y: auto;
    }

        .table-ks-listele tbody tr td {
            padding: 1px 0;
        }

    .table-ks-listele tr:first-of-type {
        display: none;
    }

    .table-ks-listele tr {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: scroll;
        width: 99%;
        min-height: auto;
        margin: 10px 3px;
        padding: 5px;
        box-shadow: 0px 3px var(--cl-light);
        border: 1px solid var(--cl-modal-back);
        border-radius: 5px;
        background-color: var(--cl-light);
    }

    .table-ks-listele tbody tr:hover:not(:first-child) {
        background-color: var(--cl-primary-light);
    }

    .table-ks-listele tbody tr td {
        text-align: end;
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid #00000014;
        width: unset !important;
    }

        .table-ks-listele tbody tr td:last-child {
            border-bottom: 0;
            margin: 0.5rem 0.25rem;
        }

    .table-ks-listele tr td:nth-child(1)::before {
        float: left;
        content: "Seç:";
    }

    .table-ks-listele td:nth-child(2)::before {
        float: left;
        content: "Tarih:";
    }

    .table-ks-listele td:nth-child(3)::before {
        float: left;
        content: "Sınav Adı:";
    }

    .table-ks-listele tr td:nth-child(4)::before {
        float: left;
        content: "Sınıf:";
    }

    .table-ks-listele td:nth-child(5)::before {
        float: left;
        content: "Ders:";
    }

    .table-ks-listele td:nth-child(6)::before {
        float: left;
        content: "Sınavı Açan:";
    }

    .table-ks-listele tr td:nth-child(7)::before {
        float: left;
        content: "";
    }
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown::placeholder {
    font-size: var(--font-primary);
}

#search {
    border: 1px solid var(--cl-modal-back);
    background-color: var(--cl-white);
    padding: 4px 5px;
    font-size: var(--font-primary);
    line-height: 1.5;
    font-weight: normal;
    margin: 0;
}

#dropdown-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1999;
    background: ghostwhite;
}

    #dropdown-list::-webkit-scrollbar {
        width: 10px;
    }

    #dropdown-list::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #dropdown-list::-webkit-scrollbar-thumb {
        background: #888;
    }

        #dropdown-list::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    #dropdown-list li {
        padding: 10px;
        cursor: pointer;
    }

        #dropdown-list li:hover {
            background-color: #f2f2f2;
        }


@media (max-width:992px) {
    #dropdown-list {
        width: calc(100vw - 30vw);
    }
}

@media (max-width:678px) {
    #dropdown-list {
        width: calc(85vw);
    }
}

.divKonuGirisi {
    /*padding: 1rem 2rem .5rem 2rem;*/
}

.teksatir {
    display: -webkit-box;
    max-width: 300px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tablo-ajanda-mobil {
    white-space: nowrap;
    margin-bottom: 1rem;
    table-layout: auto;
    border-collapse: collapse;
    display: table;
    position: relative;
    top: 50px;
    width: 100%;
}

    .tablo-ajanda-mobil thead {
        display: block;
        float: left;
    }

    .tablo-ajanda-mobil th {
        background-color: var(--cl-primary-dark);
        color: #fff;
        position: sticky;
        padding: 5px;
        display: flex;
        align-items: center;
        font-size: 0.85rem;
        height: 100px
    }

    .tablo-ajanda-mobil thead th:nth-child(odd) {
        color: #ffffff;
        background: var(--cl-primary);
    }

    .tablo-ajanda-mobil tbody {
        position: relative;
        overflow-y: auto;
        display: block;
    }

        .tablo-ajanda-mobil tbody tr {
            display: table;
            min-width: 100%;
            height: 100px;
            border: 1px solid #dddddd;
        }

        .tablo-ajanda-mobil tbody td {
            vertical-align: middle;
            text-align: -webkit-left;
            align-self: center;
            width: auto;
            min-width: 100%;
            font-size: 0.85rem;
            padding: 0 5px;
        }

    .tablo-ajanda-mobil b, .tablo-ajanda-mobil span {
        font-size: .85rem;
    }

    .tablo-ajanda-mobil tbody td div > div {
        font-size: .85rem;
    }

    .tablo-ajanda-mobil tbody tr th {
        padding-left: 10px;
    }


.tablo-genel {
        display: table;
        width: 100%;
    }

        .tablo-genel th {
            color: var(--cl-primary);
            padding: 4px;
            text-align: left;
        }

    .tablo-genel td {
        padding: 4px;
    }