.navbar-meu-wrapper span.mdi.mdi-menu {
    color: white;
}

.popover-content {
    padding: 6px 14px;
}

.popover-footer {
    padding: 6px 14px;
    background-color: #f7f7f7;
    border-top: 1px solid #ebebeb;
    text-align: right;
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.table-white {
    background: white;
}

.page-link {
    color: #3a61ea;
}

.page-link.active,
.active>.page-link {
    background-color: #3a61ea;
    border-color: #3a61ea;
}

.table th {
    background: #f5f5f5;
}

.container-shareInformation,
.container-fieldsCoupon {
    padding: 15px;
    background: white;
}

.forms-holder em {
    color: red;
}



table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting:after,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_asc:after,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_asc_disabled:after,
table.dataTable thead>tr>td.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:after {
    font-size: 1.3em;
}

.brand-logo-login {
    border-bottom: 1px solid #3a61ea;
    color: white;
    padding: 17px;
    font-size: 1.4em;
    font-weight: 400;
    margin: -3rem -3rem 2rem -3rem;
    color: #fff;
    background: linear-gradient(to right, #4782ff, #3a61ea);
}

.departmentBredPic {
    position: relative;
    width: 630px;
    height: 200px;
    background-color: #111;
    cursor: pointer;
    border: 1px solid lightgray;
    box-shadow: 3px 3px lightgrey;
}

.departmentBredPic:hover .profilepic__content {
    opacity: 1;
}

.departmentBredPic:hover .profilepic__image {
    opacity: .5;
}

.sliderImgPic {
    position: relative;
    background-color: #111;
    cursor: pointer;
    border: 1px solid lightgray;
    box-shadow: 3px 3px lightgrey;
}

.sliderImgPic:hover .profilepic__content {
    opacity: 0.6;
}

.sliderImgPic:hover .profilepic__image {
    opacity: 0.5;
}
.popupImgPic {
    position: relative;
    background-color: #111;
    cursor: pointer;
    border: 1px solid lightgray;
    box-shadow: 3px 3px lightgrey;
}

.popupImgPic:hover .profilepic__content {
    opacity: 0.6;
}

.popupImgPic:hover .profilepic__image {
    opacity: 0.5;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #3a61ea;
    color: white;
}

.dropdown .dropdown-menu .dropdown-item:hover .mdi.text-primary {
    color: white !important;
}

.navbar .navbar-brand-wrapper .navbar-brand img {
    width: 99px;
}

.navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini img {
    width: 70px;
}

.card {
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
}


.card-1 {
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.card-1 .card-heading {
    /* background: url("../images/bg-head-02.jpg") center center/cover no-repeat;
	*/
    padding-top: 210px;
}

.card-1 .card-body {
    padding: 0 90px;
    padding-top: 55px;
    padding-bottom: 65px;
}

@media (max-width: 767px) {
    .card-1 .card-body {
        padding: 0 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

svg {
    /* width: 100px;
    display: block; */
    /* margin: 40px auto 0;
	*/
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

p {
    text-align: center;
    margin: 20px 0 60px;
    font-size: 1.25em;
}

p.success {
    color: #73af55;
}

p.error {
    color: #d06079;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.form-control,
select.form-control {
    font-size: 0.875rem;
    border: 1px solid #dfdfdf
}

select.form-control {
    color: #212529;
}

.modal-700 {
    max-width: 700px;
}

.modal-600 {
    max-width: 600px;
}

.modal-500 {
    max-width: 500px;
}

.btn-customFile {
    cursor: pointer;
}

.btn-action {
    border: 1px solid #333;
    margin-right: 5px;
}

.btn-action-noBorder {

    margin-right: 5px;
    border: 0;
}

.badge {
    font-size: 0.83rem
}

.badge-1 {
    background: #e1a7a7;
    color: #ffffff;
}

.badge-2 {
    background: #9bc99b;
    color: #ffffff
}

.badge-3 {
    background: #e1f0ff;

    color: #3a61ea;
    font-size: 0.83rem
}

.table.table-AQAR td {
    text-align: center;
}

.modal-body-white {
    background: white
}

.left-tabs .nav-link.active {
    border-top: 1px solid #dee2e6 !important;
    border-right: 1px solid transparent !important;
    border-bottom: 1px solid #dee2e6 !important;
    border-left: 1px solid #dee2e6 !important;
}

.icon-link .mdi {
    font-size: 1.5rem;
}

.al-center {
    text-align: center;
}

.holder-previewLink {
    margin-top: -1.9rem;
    margin-bottom: 1.5rem;
}

.btn-removeLinkPreview {
    border: 0;
    font-size: 15px;
    outline: 0;
}

.wrapper-previewLink {
    background: #f5f5f5;
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
}

.table th {
    background: #f5f5f5;
    text-align: center
}



.table td.td-action {
    text-align: center
}

.table td.al-center {
    text-align: center
}

.table-withSrNo th:first-child {
    width: 75px;
}

.table-withSrNo td:first-child {
    width: 75px;
    text-align: right
}

/* Photo Gallery*/
.list-horizontal {
    padding: 0;
    margin: 0
}

.list-horizontal li {
    display: inline-block;
    margin-right: 10px
}

.btn-year {
    border: 1px solid;
    padding: 6px 36px;
    border-radius: 5px;
    background-color: #16a2b9;
    color: #fff;
    text-transform: uppercase;
}

.btn-year:hover {
    color: white
}

.btn-year.active {
    background-color: #064065;
}

.gallery {
    position: relative;
    width: 200px;

    display: inline-block;
    overflow: hidden;
    z-index: 0;
}

.gallery a {
    color: #333;
}

.gallery .viewGallery {
    background-color: green;
    color: #fff;
    display: inline-block;
    padding: 5px 25px 0;
    text-decoration: none;
    position: absolute;
    left: 25%;
    transform: translateY(400px);
    transition: all .3s ease 0s;
}

.gallery .desc {
    padding: 15px;
    text-align: center;
}

.gallery:hover .viewGallery {
    transform: translateY(100px);
}

.stack,
.nostack {
    border: 5px solid #fff;
    float: left;
    height: 110px;
    width: 160px;
    margin: 20px;
    position: relative;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.stack img,
.nostack img {
    width: 100%;
    height: 100%;
}

.stack:before,
.stack:after {
    content: "";
    height: 110px;
    width: 160px;
    position: absolute;
    z-index: -1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: 5px solid #fff;
}

.stack:before {
    background: #eff4de;
    top: 0px;
    left: -10px;
    transform: rotate(-5deg);
}

.stack:after {
    background: #768590;
    top: 5px;
    left: 0px;
    transform: rotate(4deg);
}


.firstImage:after {
    display: block;
    content: "Preview Gallery";
    padding: 8px 15px;
    margin: auto;
    background: #064065;
    position: absolute;
    top: 10%;
    left: 6%;
    color: #fff;
    transform: translateY(400px);
    transition: all .3s ease 0s;
    text-align: center
}

.firstImage:hover:after {
    transform: translateY(30px);
}
.firstImageForCollegeNews:after {
    display: block;
    content: "Preview Paper";
    padding: 8px 15px;
    margin: auto;
    background: #064065;
    position: absolute;
    top: 10%;
    left: 6%;
    color: #fff;
    transform: translateY(400px);
    transition: all .3s ease 0s;
    text-align: center
}

.firstImageForCollegeNews:hover:after {
    transform: translateY(30px);
}

.desc {
    text-decoration: underline;
}

.form-group em {
    color: red
}

.btn-gradient-light {
    border: 1px solid #bbb;
}

/* upload file links classes */
.input-link {
    border-right: 1px solid #a6b1d7;
}

.btn-upload-delete {
    color: #dc2169 !important;
    border: 1px solid #a6b1d7 !important;
    border-left: 1px solid #333;
    background: #ffffff;
}

.btn-upload-delete i {
    font-size: 19px;
    padding: 4px;
}

.btn-upload-file {
    color: #56669d !important;
    /*background: #ebf4ff;*/
    background: #fff;
    border: 1px solid #a6b1d7 !important;

}

.btn-upload-file i {
    font-size: 21px;
    padding: 4px;
}

/*dropzone area */
form.dropzone {
    /*background-image: linear-gradient(45deg, #f0f0f0 25%, #f88e8e00 25%, transparent 50%, #f0f0f0 50%, #f0f0f0 75%, transparent 75%, #fff);
    background-size: 50px 50px;*/
}

form.dropzone .dz-message {
    margin-top: 3.5em
}

form.dropzone .dz-button {
    position: relative;
}

form.dropzone .dz-button:after {
    content: '\f093';
    position: absolute;

    font-family: 'FontAwesome';
    font-size: 21px;
    left: 50%;
    top: -26px;
}

/*photo gallery details*/
.thumbnail-singleImage {
    width: 200px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: 5px solid #fff;
}

/*slider button*/
.custom-toggle .btn {
    margin-top: 0;
    height: 30px !important;
    min-height: 30px !important
}

.toggle.btn-danger,
.btn-success {
    width: 59.938px;
    border-radius: 20px;

}


.custom-toggle .btn-success {
    background: #32d4bc;
    border: 1px solid #32d4bc;
}

.custom-toggle .btn-success:hover {
    background: #32d4bc;
    border: 1px solid #32d4bc;
}

.custom-toggle .btn-danger {
    background: #fff;
    border: 1px solid #3a61ea;
    color: #3a61ea;
}

.custom-toggle .toggle-group .btn-danger {
    border: 0
}

.custom-toggle .toggle-group .btn-danger:hover {
    border: 0
}

.custom-toggle .btn-danger:hover {
    background: #fff;
    border: 1px solid #3a61ea;
    color: #3a61ea
}

.toggle.btn-success .toggle-handle {
    background-color: #fff;
    padding: 0 21px;
    border-radius: 31px;
    border: 1px solid #32d4bc;
}

.toggle.btn-danger .toggle-handle {
    background-color: #3a61ea;
    padding: 0 21px;
    border-radius: 31px;
    border: 1px solid #3a61ea;
}

.toggle-group .btn-success,
.toggle-group .btn-danger {
    padding: 8px;

}

a.btn.btn-gradient-primary.btn-action-noBorder.btn-icon-text.btn-sm {
    margin-top: 0px;
}

button.btn.btn-gradient-primary.btn-action-noBorder.btn-icon-text.btn-sm {
    margin-top: 0px;
}

/* AQAR documents */
/* AQAR documents */
.number-documents {
    display: block;
}

.metric-indicator {
    display: inline-block;
    background: #dff0f6;
    padding: 5px 8px;
    margin-right: 5px;
    font-weight: bold;
}

.aprroval-meesage {
    display: inline-block;
    background: #c0c0c0;
    padding: 5px 8px;
    margin-right: 5px;
    font-weight: bold;
}

.aprroved-meesage {
    display: inline-block;
    background: #5dc5b6;
    padding: 5px 8px;
    color: #fff;
    margin-right: 5px;
    font-weight: bold;
}

.rejected-meesage {
    display: inline-block;
    background: #d52c2c;
    padding: 5px 8px;
    margin-right: 5px;
    color: #f1dddd;
    font-weight: bold;
}

.blank-section {
    padding: 15px 0;
    color: #babcc0
}

.toggle-handle {
    cursor: pointer
}

.toggle-handle-custom {
    width: auto;
    height: auto
}

.toggle-handle i::before,
.toggle-handle[aria-expanded="false"] i:before {
    content: "\f078"
}

.toggle-handle[aria-expanded="true"] i::before {
    content: "\f077"
}

.multiselect {
    padding: 3% 0% 6% !important;
}

.multiselect-native-select .btn-group {
    border-radius: 0.1875rem !important;
    width: 100% !important;
}


.tab-link {
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    display: block;
    float: left;
    /* width: 50%; */
    padding: 12px 20px;
    background: #eee;
}

article.tab {
    padding: 20px;
    border: 1px solid lightgray;
}

article.tabAQAR {
    padding: 20px;
    border: 1px solid lightgray;
}


#tab-B:not(:checked)~label:nth-of-type(1) {
    /* Style tab one selected */
    background: #3b64ec;
    color: white;
}

#tab-B:checked~label:nth-of-type(2) {
    /* Style tab two selected */
    background: #3b64ec;
    color: white;
}


#tab-D:not(:checked)~label:nth-of-type(1) {
    /* Style tab one selected */
    background: #3b64ec;
    color: white;
}

#tab-D:checked~label:nth-of-type(2) {
    /* Style tab two selected */
    background: #3b64ec;
    color: white;
}

.tab {
    clear: both;
    display: none;
}

.tabAQAR {
    clear: both;
    display: none;
}


input:nth-of-type(2):not(:checked)~.tab:nth-of-type(1),
input:nth-of-type(2):checked~.tab:nth-of-type(2) {
    display: block;
}

input:nth-of-type(2):not(:checked)~.tabAQAR:nth-of-type(1),
input:nth-of-type(2):checked~.tabAQAR:nth-of-type(2) {
    display: block;
}


.rmv {
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    border: 1px solid rgb(247 5 5);
    display: inline-block;
    background: rgb(247 5 5);
    margin: -8px 0px 0px -12px;
    position: absolute;
}

.rmv:hover {
    background: rgba(255, 0, 0, 0.7);
}


.radiobtn {
    position: relative;
    display: block;
}

.radiobtn label {
    display: block;
    background: #eaedf9;
    color: #000000;
    border-radius: 2.5px;
    padding: 7px 10px 0px 10px;
    border: 2px solid #b6c3ef;
    margin-bottom: 15px;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 77px;
    word-break: break-word;
    text-align: center;
}

.radiobtn label:after,
.radiobtn label:before {
    content: "";
    position: absolute;
    left: 11px;
    top: -8px;
    width: 20px;
    height: 20px;
    border-radius: 25px;
    background: #cdd5f1;
}

.radiobtn label:before {
    background: transparent;
    transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    width: 0;
    height: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}

.radiobtn input[type=radio] {
    display: none;
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.radiobtn input[type=radio]:checked+label {
    background: #a5b9ff;
    -webkit-animation-name: blink;
    animation-name: blink;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    border-color: #b6c3ef;
}

.radiobtn input[type=radio]:checked+label:after {
    background: #7091ff;
}

.radiobtn input[type=radio]:checked+label:before {
    width: 20px;
    height: 20px;
}

@-webkit-keyframes blink {
    0% {
        background-color: #a5b9ff;
    }

    10% {
        background-color: #a5b9ff;
    }

    11% {
        background-color: #9db1f8;
    }

    29% {
        background-color: #9db1f8;
    }

    30% {
        background-color: #a5b9ff;
    }

    50% {
        background-color: #9db1f8;
    }

    45% {
        background-color: #a5b9ff;
    }

    50% {
        background-color: #9db1f8;
    }

    100% {
        background-color: #a5b9ff;
    }
}

@keyframes blink {
    0% {
        background-color: #a5b9ff;
    }

    10% {
        background-color: #a5b9ff;
    }

    11% {
        background-color: #9db1f8;
    }

    29% {
        background-color: #9db1f8;
    }

    30% {
        background-color: #a5b9ff;
    }

    50% {
        background-color: #9db1f8;
    }

    45% {
        background-color: #a5b9ff;
    }

    50% {
        background-color: #9db1f8;
    }

    100% {
        background-color: #a5b9ff;
    }
}


/* Chatbot */
.botIcon {
    /* bottom: 15px;
        left: 15px;
        position: fixed;
        z-index: 9999; */
    z-index: 9999;
    transition: .2s;
    position: fixed;
    bottom: 1.2rem;
    right: 1.5rem;
}

.iconInner {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background: #a64bf4;
    background: -webkit-linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: -o-linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: -moz-linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background-position: 50%;
    background-size: 300%;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.7em;
    height: 2em;
    justify-content: center;
    width: 2em;
}

.botSubject,
.messages,
.showBotSubject .botIconContainer,
.showMessenger .botIconContainer {
    display: none;
}

.botIcon .Messages,
.botIcon .Messages_list {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.chat_close_icon {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 12px;
    z-index: 9;
}

.chat_on {
    background-color: #8a57cf;
    bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 45px;
    padding: 9px;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 45px;
    z-index: 10;
}

.chat_on_icon {
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.botIcon .Layout {
    -webkit-animation: appear .15s cubic-bezier(.25, .25, .5, 1.1);
    -ms-animation: appear .15s cubic-bezier(.25, .25, .5, 1.1);
    animation: appear .15s cubic-bezier(.25, .25, .5, 1.1);
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    background-color: rgb(63, 81, 181);
    bottom: 20px;
    border-radius: 10px;
    box-shadow: 5px 0 20px 5px rgba(0, 0, 0, .1);
    box-sizing: content-box !important;
    color: rgb(255, 255, 255);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-height: 30px;
    max-width: 300px;
    min-width: 50px;
    opacity: 0;
    pointer-events: auto;
    position: fixed;
    -webkit-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1), min-width .2s cubic-bezier(.25, .25, .5, 1), max-width .2s cubic-bezier(.25, .25, .5, 1), min-height .2s cubic-bezier(.25, .25, .5, 1), max-height .2s cubic-bezier(.25, .25, .5, 1), border-radius 50ms cubic-bezier(.25, .25, .5, 1) .15s, background-color 50ms cubic-bezier(.25, .25, .5, 1) .15s, color 50ms cubic-bezier(.25, .25, .5, 1) .15s;
    -ms-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1), min-width .2s cubic-bezier(.25, .25, .5, 1), max-width .2s cubic-bezier(.25, .25, .5, 1), min-height .2s cubic-bezier(.25, .25, .5, 1), max-height .2s cubic-bezier(.25, .25, .5, 1), border-radius 50ms cubic-bezier(.25, .25, .5, 1) .15s, background-color 50ms cubic-bezier(.25, .25, .5, 1) .15s, color 50ms cubic-bezier(.25, .25, .5, 1) .15s;
    transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1), min-width .2s cubic-bezier(.25, .25, .5, 1), max-width .2s cubic-bezier(.25, .25, .5, 1), min-height .2s cubic-bezier(.25, .25, .5, 1), max-height .2s cubic-bezier(.25, .25, .5, 1), border-radius 50ms cubic-bezier(.25, .25, .5, 1) .15s, background-color 50ms cubic-bezier(.25, .25, .5, 1) .15s, color 50ms cubic-bezier(.25, .25, .5, 1) .15s;
    z-index: 999999999;
    transition: .2s;
    position: fixed;
    bottom: 1.2rem;
    right: 1.5rem;
}

.botIcon .Layout-open {
    border-radius: 10px;
    color: #fff;
    height: 500px;
    max-height: 500px;
    max-width: 300px;
    overflow: hidden;
    -webkit-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1.1), min-width .2s cubic-bezier(.25, .25, .5, 1.1), max-width .2s cubic-bezier(.25, .25, .5, 1.1), max-height .2s cubic-bezier(.25, .25, .5, 1.1), min-height .2s cubic-bezier(.25, .25, .5, 1.1), border-radius 0ms cubic-bezier(.25, .25, .5, 1.1), background-color 0ms cubic-bezier(.25, .25, .5, 1.1), color 0ms cubic-bezier(.25, .25, .5, 1.1);
    -ms-transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1.1), min-width .2s cubic-bezier(.25, .25, .5, 1.1), max-width .2s cubic-bezier(.25, .25, .5, 1.1), max-height .2s cubic-bezier(.25, .25, .5, 1.1), min-height .2s cubic-bezier(.25, .25, .5, 1.1), border-radius 0ms cubic-bezier(.25, .25, .5, 1.1), background-color 0ms cubic-bezier(.25, .25, .5, 1.1), color 0ms cubic-bezier(.25, .25, .5, 1.1);
    transition: right .1s cubic-bezier(.25, .25, .5, 1), bottom .1s cubic-bezier(.25, .25, .5, 1.1), min-width .2s cubic-bezier(.25, .25, .5, 1.1), max-width .2s cubic-bezier(.25, .25, .5, 1.1), max-height .2s cubic-bezier(.25, .25, .5, 1.1), min-height .2s cubic-bezier(.25, .25, .5, 1.1), border-radius 0ms cubic-bezier(.25, .25, .5, 1.1), background-color 0ms cubic-bezier(.25, .25, .5, 1.1), color 0ms cubic-bezier(.25, .25, .5, 1.1);
    width: 100%;

}

.botIcon .Layout-expand {
    display: none;
    height: 400px;
    max-height: 100vh;
    min-height: 300px;
}

.showBotSubject.botIcon .Layout-expand {
    display: block;
}

.botIcon .Layout-mobile {
    bottom: 10px
}

.botIcon .Layout-mobile.Layout-open {
    min-width: calc(100% - 20px);
    width: calc(100% - 20px);
}

.botIcon .Layout-mobile.Layout-expand {
    border-radius: 0 !important;
    bottom: 0;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
}

.botIcon .Messenger_messenger {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.botIcon .Messenger_header,
.botIcon .Messenger_messenger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.botIcon .Messenger_header {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(22, 46, 98);
    color: rgb(255, 255, 255);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 40px;
    padding-left: 10px;
    padding-right: 40px;
}

.botIcon .Messenger_header h4 {
    -webkit-animation: slidein .15s .3s;
    -ms-animation: slidein .15s .3s;
    animation: slidein .15s .3s;
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 16px;
    opacity: 0;
}

.botIcon .Messenger_prompt {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.botIcon .Messenger_content {
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 80px;
}

.botIcon .Messages {
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.botIcon .Input {
    background-color: #fff;
    border-top: 1px solid #e6ebea;
    color: #96aab4;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 15px;
    padding-top: 17px;
    position: relative;
    width: 100%;
}

.botIcon .Input-blank .Input_field {
    max-height: 20px;
}

.botIcon .Input_field {
    background-color: transparent;
    border: none;
    outline: none;
    padding-left: 20px;
    padding-right: 45px;
    resize: none;
    width: 80%;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px !important;
}

.botIcon .Input_button-emoji {
    right: 45px;
}

.botIcon .Input_button {
    background-color: transparent;
    border: none;
    bottom: 15px;
    cursor: pointer;
    height: 25px;
    outline: none;
    padding: 0;
    position: absolute;
    width: 25px;
}

.botIcon .Input_button-send {
    right: 15px;
}

.botIcon .Input-emoji .Input_button-emoji .Icon,
.botIcon .Input_button:hover .Icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.botIcon .Input-emoji .Input_button-emoji .Icon path,
.botIcon .Input_button:hover .Icon path {
    fill: #2c2c46;
}

.Icon svg {
    height: auto;
    width: 100%;
}

.chat-message p {
    margin: 0px 0 0px;
}

/* .msg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.msg.user {
    -webkit-box-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.msg+.msg {
    margin-top: 15px;
} */

span.responsText {
    color: #000;
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
    max-width: calc(100% - 50px);
    word-break: break-all;
}

.msg.user span.responsText {
    margin-left: 0;
    margin-right: 10px;
}

span.avtr {
    display: inline-block;
    width: 30px;
}

span.avtr figure {
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding-bottom: 100%;
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes appear {
    0% {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes slidein {
    0% {
        opacity: 0;
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media only screen and (max-width: 412px) {
    .botIcon .Layout-open {
        width: 250px;
    }
}

.AIButton {
    text-align: center;
    color: #000000 !important;
    text-decoration: none;
    /* -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite; */
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 3px #ffffff;
    border: none;
}

.AIButton:hover {
    background-color: #e2e1e1 !important;
    border-color: 0 0 3px #e2e1e1 !important;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #b3b0b0;
        -webkit-box-shadow: 0 0 3px #b3b0b0;
    }

    50% {
        background-color: #d3d0d0;
        -webkit-box-shadow: 0 0 40px #d3d0d0;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #b3b0b0;
        -webkit-box-shadow: 0 0 3px #b3b0b0;
    }

    50% {
        background-color: #d3d0d0;
        -webkit-box-shadow: 0 0 40px #d3d0d0;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #b3b0b0;
        -webkit-box-shadow: 0 0 3px #b3b0b0;
    }

    50% {
        background-color: #d3d0d0;
        -webkit-box-shadow: 0 0 40px #d3d0d0;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff;
    }
}

@keyframes glowing {
    0% {
        background-color: #b3b0b0;
        -webkit-box-shadow: 0 0 3px #b3b0b0;
    }

    50% {
        background-color: #d3d0d0;
        -webkit-box-shadow: 0 0 40px #d3d0d0;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff;
    }
}


.AIImagecontainer {
    position: relative;
    /* margin-top: 50px; */
    width: 500px;
    height: 300px;
    margin: 10px;
}

.AIImagecontainer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.AIImagecontainer:hover .overlay {
    display: block;
    background: rgba(0, 0, 0, .3);
}

.AIImagecontainer img {
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
}



.AIImagecontainer .button {
    position: absolute;
    width: 100%;
    left: 0;
    top: 139px;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.AIImagecontainer .button a {
    width: 200px;
    padding: 12px 48px;
    text-align: center;
    color: white;
    border: solid 2px white;
    z-index: 1;
    margin: 5px;
}

.AIImagecontainer:hover .button {
    opacity: 1;
}

#generateAIImagesPleaseWait {
    display: none;
}

.imgfaculty {
    border: 6px solid #e0e0e0;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 30%);
}

.custom {
    text-align: inherit !important;
    margin: 0px !important;
    font-size: initial !important;
}

em {
    color: red;
}

/* Menu Structure Addition */
#menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu-list ol {
    list-style-type: none;
    padding-left: 30px
}

#menu-list li {
    width: 382px
}

#menu-list .card-body {
    padding: .5rem 1rem
}

#menu-list .card h6 {
    line-height: inherit
}

.menu-list-holder {
    height: 250px;
    overflow: auto;
}

.menu-list-holder ul {
    list-style-type: none;
}

.menu-list-holder li {
    margin-bottom: 3px
}

.menu-list-holder li input[type='checkbox'] {
    margin-right: 5px
}

.btn-holder {
    padding-top: 10px
}

.menu-accordion .card-body {
    padding: 1rem;
}

.ui-state-highlight {
    height: 1.5em;
    line-height: 1.2em;
}

#menu-list li.menu-highlight {
    border: 1px dashed rgb(0, 140, 255) !important;
    background: #f5f5f5;
}

#metric-dropdown-values {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

#metric-dropdown-values option {
    width: 250px;
}


.nav-pills {
    border-bottom: 1px solid #ebedf2;
    padding-bottom: 1rem;
}

.nav-pills .nav-link {
    border: 1px solid #ebedf2;
    padding: .5rem 2rem;
}

.nav-pills .nav-item {
    margin-right: 1rem;
}

.nav-pills.nav-pills-vertical {
    border-bottom: 0;
}

.nav-pills.nav-pills-vertical .nav-item {
    margin-right: 0;
    margin-bottom: 1rem;
}

.nav-pills.nav-pills-custom {
    border-bottom: 0;
}

.nav-pills.nav-pills-custom .nav-link {
    border-radius: 20px;
    padding: .5rem 2.5rem;
    background: #fcfcfd;
    color: #000000;
}

.nav-pills.nav-pills-custom .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
    background: linear-gradient(to right, #ffbf96, #fe7096);
    color: #ffffff;
}

/* gradient pills */
.nav-pills-primary .nav-link {
    color: #b66dff;
}

.nav-pills-primary .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#da8cff), to(#9a55ff));
    background: linear-gradient(to right, #da8cff, #9a55ff);
}

.nav-pills-secondary .nav-link {
    color: #c3bdbd;
}

.nav-pills-secondary .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#e7ebf0), to(#868e96));
    background: linear-gradient(to right, #e7ebf0, #868e96);
}

.nav-pills-success .nav-link {
    color: #080808;
}

.nav-pills-success .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#4782ff), to(#3a61ea));
    background: linear-gradient(to right, #4782ff, #3a61ea);
}

.nav-pills-info .nav-link {
    color: #198ae3;
}

.nav-pills-info .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(99%, #047edf));
    background: linear-gradient(to right, #90caf9, #047edf 99%);
}

.nav-pills-warning .nav-link {
    color: #fed713;
}

.nav-pills-warning .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#f6e384), to(#ffd500));
    background: linear-gradient(to right, #f6e384, #ffd500);
}

.nav-pills-danger .nav-link {
    color: #fe7c96;
}

.nav-pills-danger .nav-link.active {
    background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
    background: linear-gradient(to right, #ffbf96, #fe7096);
}

.nav-pills-light .nav-link {
    color: #f8f9fa;
}

.nav-pills-light .nav-link.active {
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e4e4e9));
    background: linear-gradient(to bottom, #f4f4f4, #e4e4e9);
}

.nav-pills-dark .nav-link {
    color: #3e4b5b;
}

.nav-pills-dark .nav-link.active {
    background: linear-gradient(89deg, #5e7188, #3e4b5b);
}


.nav-pills .nav-link {
    background: lightgray;
    border: 0;
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #0d6efd;
}

.flex-column,
.nav-tabs.nav-tabs-vertical,
.nav-tabs.nav-tabs-vertical-custom,
.nav-pills.nav-pills-vertical,
.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}


.timelineContainer {
    width: 80%;
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.timelineContainer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: #CCD1D9;
    z-index: 1
}


.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline-block-right {
    float: right;
}

.timeline-block-left {
    float: left;
    direction: rtl
}

.markerRight {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: #dfa27f;
    z-index: 9999;
    margin-left: -12px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
    font-size: 15px;
}

.markerLeft {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: #dfa27f;
    z-index: 9999;
    font-size: 15px;
    margin-right: -12px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
}

.timeline-content {
    width: 95%;
    padding: 0 15px;
    color: #666
}

.timeline-content h3 {
    margin-top: 5px;
    padding: 0px;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    color: #524f4f;
}

.timeline-content span {
    font-size: 15px;
    color: #a4a4a4;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.5em;
    word-spacing: 1px;
    color: #3c3939;
    text-align: justify;
    margin: 0px;
}

.timeline-content .pClassLTR {
    direction: ltr !important;
}

.timeline-content img {
    margin: 10px 0px 25px;
}


@media screen and (max-width: 768px) {
    .timelineContainer:before {
        left: 8px;
        width: 2px;
    }

    .timeline-block {
        width: 100%;
        margin-bottom: 30px;
    }

    .timeline-block-right {
        float: none;
    }

    .timeline-block-left {
        float: none;
        direction: ltr;
    }
}


.c-toggle-switch__title {
    margin-bottom: 10px;
    color: #676767;
}

.c-toggle-switch__input {
    display: none;
}

.c-toggle-switch__label {
    cursor: pointer;
    background: white;
    box-shadow: inset 0 0 0 3px #ccc;
    width: 70px;
    height: 30px;
    display: block;
    border-radius: 500px;
    position: relative;
    transition: border 0.3s ease-in-out;
}

.c-toggle-switch__label .c-toggle-switch__label-text {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

.c-toggle-switch__label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: inset 0 0 0 3px #3a61ea;
    width: 70px;
    height: 30px;
    display: block;
    border-radius: 500px;
    transition: transform 0.3s ease;
    transition-property: opacity;
}

.c-toggle-switch__label:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    background: #ccc;
    border-radius: 50%;
    transform: scale(0.4) translateY(-50%);
    transform-origin: 30% 0;
    transition: transform 0.3s ease;
    transition-property: transform, background, left;
}

.c-toggle-switch__input:checked+.c-toggle-switch__label:after {
    opacity: 1;
}

.c-toggle-switch__input:checked+.c-toggle-switch__label:before {
    transform: scale(0.4) translateX(90px) translateY(-50%);
    background: #3a61ea;
}

.mp-cust-tab li {
    width: 15% !important;
}

.mp-cust-tab li a {
    padding: 0.5rem 0.7rem !important;
}

.mp-cust-tab li a .badge-danger {
    border: 1px solid #8397f9;
    background: #8397f9;
    color: #ffffff;
}

.badge-dashboard {
    margin-left: 36px;

}

.btn-base{    background: #f2edf3;
    border: 1px solid #8e8e8e;
} .btn-white{    background: #fff;
    border: 1px solid #8e8e8e;
}
.faculty-info-sets{text-align: left; margin:20px 0; border:1px solid #ddd; padding:15px; }
.faculty-info-sets h2{font-size: 1.5rem;}
