﻿
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);


:root {
    color-scheme: light;
    --clr-primary-100: #3d7db3;
    --clr-white-100: #FFF;
    --clr-white-90: #fafafa;
    --clr-white-70: #EEE;
    --clr-black-90: #646464;
    --clr-heading: #000d2b;
    --clr-heading-top: #b3e0ff;
    --clr-heading-bottom: #F6F6F6;
    --shadow-normal: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/*
@media (prefers-color-scheme: dark) {
  :root 
    {
        color-scheme: dark;
        --clr-primary-100: #444;
        --clr-white-100: #444;
        --clr-white-90: #666;
        --clr-white-70: #888;
        --clr-black-90: #FFF;
        --clr-heading: #148597;
        --clr-heading-top: #444;
        --clr-heading-bottom: none;
        background-color: black;
        color: white;
    }
}
*/

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, var(--clr-white-70) 0%, var(--clr-white-100) 100%);
    font-size: 15px;
    color: var(--clr-black-90);
}

h2 {
    color: #000d2b;
    font-size: 28px;
    position: relative;
    margin-bottom: 20px;
}

    h2:first-letter {
        /*font-weight: bold;*/
    }

    h2::before {
        content: '';
        display: inline-block;
        width: 2rem;
        height: 2px;
        background-color: #84c433;
        margin: 0 10px 8px 0;
        position: absolute;
        bottom: -20px;
        left: 50%;
    }

    h2::after {
        content: '';
        display: inline-block;
        width: 2rem;
        height: 2px;
        background-color: #84c461;
        margin: 0 0 8px 10px;
        position: absolute;
        bottom: -20px;
        right: 50.5%;
    }

.ptb-20 {
    padding: 20px;
}

.mtb-20 {
    margin: 0px 0;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2em;
}

    p b {
        white-space: nowrap;
    }

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

ul li {
    font-size: .9em;
    font-weight: 400;
    line-height: 1.9em;
}

small.text-sm {
    font-size: 12px;
}

.components li {
    position: relative;
    font-size: .9em;
    font-weight: 400;
    line-height: 1.3em;
}

    .components li a span {
        /*position: absolute;*/
        left: 50px;
        transition: 0.3s all;
        color: #143868;
    }

    .components li a:hover span {
        left: 40px;
        color: #143868;
    }

.hidden {
    display: none;
}

.navbar {
    padding: 0 0 0 20px;
    background: var(--clr-white-100);
    color: #fff;
    border: none;
    border-radius: 10px;
    z-index: 99998;
}
    .navbar .nav-item {
        padding: 14px 0;
    }
.custom-nav-link {
    padding: 0 0 !important;
}

    .navbar-nav .nav-item:hover {
        /*padding:3px;*/ /*background: rgba(0, 0, 0, 0.3);*/
    }

a.btn {
    /* padding: .375rem .4rem !important; */
}

.btn-register {
    border: none;
    padding: 25px 30px !important;
    background: rgb(19,175,240);
    background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
    background: linear-gradient(205deg, rgb(131 194 48) 0%, rgb(6 29 80) 100%);
    background: linear-gradient(55deg, #2e69e7 0%, #64bb46 100%);
}

    .btn-register:hover {
        /* opacity: 0.9; */
        transition: .5s;
        color: #FFFFFF !important;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
    }

.logoname span {
    display: none;
}

.nav-item {
    margin-right: 10px;
    /*padding: 14px 0px;*/
}

.navbar-nav .nav-item .nav-link {
    white-space: nowrap;
    padding: 10px 10px;
    white-space: nowrap;
    font-weight: 500;
    margin-right: 3px; /* padding: 25px 0; */ /* color: #FFFFFF; */
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
}

.dropdown-item {
    opacity: 1;
    display: block;
    background: #f7f7f7;
    color: #2a2a2a !important;
    padding: 0px 20px !important;
    height: 35px;
    line-height: 31px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
    margin-right: 6px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #000d2b !important;
}

.nav-link {
    color: #2a2a2a !important;
}

    .nav-link i {
        color: #84c433 !important;
    }

.dropdown-menu {
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / 1%);
    border-radius: 0rem;
    padding: 0;
}


.dropdown-item:focus, .dropdown-item:hover {
    background: #fff;
    color: #84c433 !important;
    padding-left: 25px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}

.line {
    /*width: 100%;     height: 1px;     border-bottom: 1px dashed #7098a7;     margin: 10px 0;*/
    /* border: 1px solid #bdbdbd; */
    /*border-top: 1px solid #3a3f48;*/
}

input[type="checkbox"] {
    margin-right: 5px;
}

.badge-orange {
    background-color: Orange !important;
    color: #FFF !important;
}

    .badge-orange:hover {
        background-color: #cc7a00 !important;
    }

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #0C1E35;
    background: linear-gradient(178deg, #ffffff 0%, #ebf9fe 100%);
    color: #fff;
    /* transition: all 0.2s; */
    /*background-image: url(https://mdbootstrap.com/img/Photos/Others/sidenav4.jpg);*/
    /* background-image: url(../images/sidenavbg.png); */
    /* z-index: 0; */
    background-size: cover;
}

    #sidebar:after {
        content: '';
        position: absolute;
        top: 0;
        /*background-color: rgb(61 125 179 / 71%);*/
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    #sidebar.active {
        margin-left: -250px;
    }

    #sidebar .sidebar-header {
        padding: 10px;
        /* background-color: #0c1e35; */
        text-align: center;
    }

    #sidebar .small {
        font-size: 100%;
        font-weight: 500;
        color: #143868;
    }

    #sidebar ul.navigation-urls {
    }

.sidebar-header img {
    height: 50px;
}

.sidebar-header p {
    color: #646464;
    font-size: 12px !important;
    text-align: center;
    margin: 0;
    margin-top: 10px;
    font-weight: 500;
}

#sidebar ul.navigation-urls li:first-child {
    margin-top: 5px;
}

#sidebar ul.navigation-urls li.seperator {
    margin-top: 3px;
    margin-bottom: 3px;
    border-bottom: solid 2px rgb(20 56 104 / 50%);
}

#sidebar ul.navigation-urls li a {
    color: #bdbdbd;
    padding: 8px;
    display: inline-block;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

    #sidebar ul.navigation-urls li a svg {
        width: 30px;
        height: 30px;
        text-align: center;
        font-size: 14px;
        line-height: 35px;
        text-align: center;
        display: inline-block;
        margin-right: 10px;
        border-radius: 15px;
        transition: color 0.3s;
        /*background: #c7effd;*/
        padding: 8px;
    }

#sidebar ul.navigation-urls li:hover a svg {
    /*color: #84c433;*/
    /*text-shadow: 0px 0px 10px rgb(132 196 51 / 52%);
    animation: skew-y-shakeing 0.82s cubic-bezier(.36,.07,.19,.97) both;*/
    transform: translate3d(0, 0, 0);
    perspective: 1000px;
}

@keyframes skew-y-shakeing {
    0% {
        transform: skewY(-15deg);
    }

    5% {
        transform: skewY(15deg);
    }

    10% {
        transform: skewY(-15deg);
    }

    15% {
        transform: skewY(15deg);
    }

    20% {
        transform: skewY(0deg);
    }

    100% {
        transform: skewY(0deg);
    }
}





#sidebar ul.navigation-urls li a:hover {
    /*color: #fff !important;*/
    /*background-color: rgba(61, 125, 179, 0.3) !important;*/
    background-color: #f5f5f8;
    box-shadow: none;
    text-shadow: none;
}


#sidebar ul.navigation-urls li a.active {
    color: var(--clr-primary-100);
    background-color: #f1f1f2;
    /*background-color: rgba(61, 125, 179, 0.3) !important;*/
    /* border-radius: 25px 0px 0px 25px; */
    /* text-shadow: 1px 1px 3px #333; */
    /* text-shadow: none; */
    /* box-shadow: none; */
    box-shadow: none;
    text-shadow: none;
}

    #sidebar ul.navigation-urls li a.active span {
        color: #143868;
        /* text-shadow: 1px 1px 3px #DDD; */
        font-weight: 500;
    }

    #sidebar ul.navigation-urls li a.active svg {
        /* color: #ffffff; */
        text-shadow: 0px 0px 10px rgb(132 196 51 / 52%);
    }


    #sidebar ul.navigation-urls li a.active:hover {
        color: var(--clr-primary-100) !important;
        /*background-color: #f1f1f2 !important;*/
        box-shadow: none;
        text-shadow: none;
    }

#sidebar ul.navigation-urls li.active > a, a[aria-expanded="true"] {
    color: #fff;
    /*background-color: rgb(61 125 179);*/
}

#idSidebarUser {
    padding: 10px;
    border-radius: 50px;
    height: 40px;
    width: 40px;
}

a[data-toggle="collapse"] {
    position: relative;
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #3d7db3;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 0px;
        margin-bottom: 0px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #3d7db3 !important;
    color: #fff !important;
}

.pimg {
    width: 100%;
    text-align: center;
}

    .pimg img {
        width: 70px;
        height: 70px;
        border-radius: 70%;
        margin-bottom: 1rem;
        border: 5px solid var(--clr-heading);
    }

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px); /*padding:5px;*/
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    background: #f8f9fa;
}

    #content.active {
        width: 100%;
        height: auto;
    }

#idPageContent {
    height: 100%;
    position: relative;
}

    #idPageContent h2::after {
        /*text-align: center !important;*/
        right: 86.5% !important;
        display: none;
    }

    #idPageContent h2::before {
        /*text-align: center !important;*/
        left: 0% !important;
        width: 4rem;
    }

    #idPageContent.active {
    }

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
/* DESKTOP VIEW */
@media (min-width: 1024px) {
    #idSidebarCollapse {
        display: none;
    }

    #idSidebarUser {
        display: none;
    }
}
/* MOBILE VIEW */
@media (max-width: 1023px) {
    h2 {
        font-size: 22px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 14px !important;
    }

    #sidebar {
        margin-left: -250px;
    }

        #sidebar.active {
            margin-left: 0;
        }

    #content {
        width: 100%;
    }

        #content.active {
            left: 250px;
            width: 100vw;
        }

}

/* MAIN CSS */
.main {
    /*     padding-top:5px;     margin-bottom: 5px;     border: 1px solid #efefef;     */
    padding: 20px;
    background: #ffffff29;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 0 !important;
    border: 0;
}

.form-group {
    margin-bottom: 0.7rem !important;
    font-size: 13px !important;
}

    .form-group:has(label) {
        margin-bottom: 0.2rem !important;
    }

.alumni-field {
    /*display: inline-block !important;*/
}

    .alumni-field a:hover {
        border: 1px solid #66b953;
    }

form .form-control {
    border: 1px solid #5f759152;
    text-align: left;
    font-size: 12px;
    border-radius: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.DropDownList {
    border: 1px solid #5f759152 !important;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    line-height: inherit;
    width: 100%;
    height: auto;
    padding: 0.35rem 0.3rem;
    border: none;
    outline: none;
    color: var(--color-black);
    background: var(--color-light);
    text-transform: unset;
    text-rendering: optimizeLegibility;
    width: 100%;
}

.comment-post {
    border: 1px solid #5f759152 !important;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    line-height: inherit;
    width: 100%;
    height: 35px;
    padding: 0.35rem 0.35rem;
    border: none;
    outline: none;
    color: var(--color-black);
    background: var(--color-light);
    text-transform: unset;
    text-rendering: optimizeLegibility;
    width: 100%;
    margin: 10px;
}

.btn-filter {
    border: 1px solid #5f759152;
    border-radius: 4px;
    outline: none;
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    background: var(--color-light);
    color: var(--color-black);
    line-height: inherit;
    width: 100%;
    height: 30px !important;
    padding: 2px 0px;
    text-transform: unset;
    text-rendering: optimizeLegibility;
}

.button.form-control {
    background-color: #000d2b;
    border-color: #84c431;
    text-align: center;
    color: #fff;
    margin-top: 30px;
    padding: 0.625em;
    font-size: .85em;
    letter-spacing: .1em;
    font-weight: bold;
}

.form-group.active select {
    background: #e8f0fe;
    box-shadow: unset;
    border-radius: 25px;
    border: 1px solid #78a9c6 !important;
}

    .form-group.active select::before {
        content: '\25BA'
    }


.heading {
    border-radius: 5px 5px 0 0;
    padding: 10px; /*background-image: linear-gradient(to bottom, var(--clr-heading-top), var(--clr-heading-bottom));*/
}

    .heading h3 {
        font-size: 22px;
        color: var(--clr-heading);
    }

.fixed-box {
    padding: 15px;
    height: 300px;
    background: #ffffff29;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 0;
    border: 0; /*border-left: 7px solid #062242;     border-right: 7px solid #062242;*/ /*margin-right: 30px;*/
    background-image: url(../images/regular-table-bottom.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}

.fixed-box-img {
    width: 25px; /* padding: 6px; */ /* border-radius: 50px; */ /* background: #010610; */
    margin-right: 6px;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .news-head h3 {
        margin: 0;
    }

.image {
    /*background: blue;*/ /*padding: 10px;*/
    position: relative;
    z-index: 1; /*box-shadow: 0px 0px 15px rgba(0,0,0,0.1);*/ /*background-color: #fff;*/
}

.fluid-box {
    background-image: url(../images/regular-table-bottom.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}

    .fluid-box ul {
        margin-left: 10px !important;
    }

.patient-box {
    /*background-color: var(--clr-primary-100);     padding: 15px 10px;     box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);*/
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: #fff; /*border-radius: 10px;*/ /*background-image: url(../images/service-bg.jpg);     background-position: right top;     background-repeat: no-repeat;     background-size: cover;     transition: all .3s;*/
}

    .patient-box .icon {
        margin-left: 0px;
        margin-bottom: 30px;
        background-repeat: no-repeat;
        width: 50px;
        height: 50px;
        transition: all .3s;
    }

    .patient-box h4 {
        transition: all .3s;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #061d50;
        color: #4f5b66;
    }

    .patient-box p {
        transition: all .3s;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .patient-box:hover h4, .patient-box:hover p, .patient-box:hover .text-button a {
        color: #fff;
    }

    .patient-box:hover {
        background-image: url(../images/pro-table-top.png);
        background-position: right top;
        background-repeat: no-repeat;
        background-size: cover;
        transition: all .3s;
    }

.fixed-box:hover {
    background-image: url(../images/pro-table-bottom.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}

/*RESPONSIVE TABLE CSS**************/
table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
}

    table tr {
        background-color: #f8f8f8;
        border: 1px solid #ddd;
        padding: .5em;
    }

        table tr:hover {
            background-color: #fDfDfD;
        }

    table td {
        padding: 0.65em 0.30em;
        text-align: center;
        font-size: 13px;
    }

    table th {
        padding: 0.625em;
        font-size: .85em;
        text-align: center;
        color: #ffffff;
        font-weight: 500;
        background-color: #0c1e35;
        letter-spacing: .1em;
        text-transform: capitalize;
    }

    table tr a {
        margin: 0px 2px;
        color: #3d7db3;
        font-weight: 500;
        font-size: 11px !important;
    }

.tablefooter {
    text-align: right;
}

    .tablefooter table {
        width: auto !important;
        float: right;
    }

        .tablefooter table tr {
            color: #FFF;
            background-color: #3d7db3;
        }

            .tablefooter table tr a {
                color: #FFF;
            }

        .tablefooter table td {
            width: 40px !important;
        }

            .tablefooter table td:hover, .tablefooter table td:hover a {
                color: #3d7db3;
                background-color: #CCC;
            }


.responsive-grid tbody tr:nth-child(2n+1) {
    background-color: #EEE !important;
}

@media screen and (max-width: 768px) {
    table {
        border: 0;
    }

        table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

    .ajax__calendar_days table thead {
        position: relative !important;
    }

    .scroll-table table td {
        font-size: .7em !important;
    }

    table td::before {
        /*       * aria-label has no advantage, it won't be read inside a table       content: attr(aria-label);       */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }

    .scroll-table div {
        overflow: scroll;
        max-height: 300px;
    }

    .scroll-table th:last-child {
        top: 0%;
        z-index: 9999;
        position: sticky;
        top: 0;
        right: 0px;
        width: 40%;
        padding: 5px 5px;
    }

    .scroll-table td:last-child {
        top: 0%;
        z-index: 9999;
        position: sticky;
        top: 0;
        right: 0px;
        width: 40%;
        padding: 5px 10px;
        background: white;
    }

    .nav-item {
        padding: 0px;
    }

    p b {
        white-space: initial;
    }

    .responsive-grid tbody tr:first-child {
        display: none;
    }

    .responsive-grid td {
        border: none !important;
        display: block;
        position: relative;
        padding: 0 0 5px 10px !important;
        margin-left: 0;
        text-align: left;
    }

        .responsive-grid td::before {
            content: attr(data-label);
            position: absolute; /* Top/left values mimic padding */
            left: 6px;
            width: 10px;
            padding-right: 10px;
            white-space: nowrap;
            font-weight: 600;
            background-color: #fff0e6;
        }
    #btnGoTop {
        bottom: 70px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.tbtn {
    background-color: #bedce7;
    font-size: 12px;
    border-radius: 0;
    padding: 5px;
    cursor: pointer;
}

.highlight {
    list-style-type: disclosure-closed;
    line-height: 30px;
    padding-left: 1rem;
    padding-right: 0.5rem;
}

    .highlight span {
        font-weight: bold;
    }

.pagination {
    position: fixed;
    bottom: 0;
    right: 5%;
}

    .pagination .page-link {
        border: 1px solid #898989;
        color: #3d7db3;
        border-radius: 0;
    }
/*GALLERY CSS********************/
.image-title {
    background-color: #FFF;
    padding: 5px;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
    color: #000d2b;
    height: 45px;
    overflow: hidden;
    font-size: 13px;
}

#imgTitle {
    position: absolute;
    bottom: 15px;
    padding: 0 20px;
    font-size: 28px;
    margin: 0 auto;
    background: rgba(0,0,0,0.7);
    color: #FFF;
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
}

    .img-wrapper img {
        width: 100%;
    }

    .img-wrapper a img {
        width: 10px;
    }

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

    .img-overlay i {
        color: #fff;
        font-size: 3em;
    }

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    #overlay img {
        margin: 0;
        width: 80%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
        padding: 5%;
    }

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

    #nextButton:hover {
        opacity: 0.7;
    }

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

    #prevButton:hover {
        opacity: 0.7;
    }

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

    #exitButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }

    #overlay img {
        width: 60%;
    }

    #prevButton {
        font-size: 3em;
    }

    #exitButton {
        font-size: 3em;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

.news-box {
    cursor: pointer;
    position: relative;
    padding: 5px;
    border-bottom: solid 1px var(--clr-white-70);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s all;
}

    .news-box:first-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .news-box:hover {
        background-color: rgb(0 13 43); /* box-shadow: 0px 0px 5px #CCC inset; */
        color: #a99d9d;
        background-color: rgba(0,0,0,0.05);
        color: #1f1d1d;
    }

.news-title {
    padding: 5px 5px;
    margin: 0px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    height: 28px;
    width: 85%;
    font-weight: 400;
}

.news-date {
    font-size: 12px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: 600;
}

.feedback-button {
    position: fixed;
    right: 30px;
    bottom: 0px;
    z-index: 9999;
    box-shadow: 0px -3px 6px rgba(0,0,0,0.4);
    transition: 0.3s all;
    border-radius: 5px 5px 0px 0px !important;
    background-color: #000d2b;
    border-color: #84c431;
    color: white;
}

    .feedback-button:hover {
        padding-bottom: 7px;
        padding-top: 7px;
        background-color: #000d2b;
        border-color: #84c431;
    }

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link {
    padding-left: 1rem;
}

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
        text-decoration: none;
    }

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

.footer-bottom {
    background: #14192b;
    border-top: 1px solid #142b35;
    padding: 10px 0;
}

    .footer-bottom .copy-text {
        /*font-family: 'Raleway', sans-serif;*/
        color: #848484;
        font-size: 14px;
    }

        .footer-bottom .copy-text a {
            color: #84c433;
            transition: .3s ease;
            margin-left: 5px;
        }


        .footer-bottom .copy-text p {
            margin-bottom: 0;
            padding: 0px 0;
            text-align: center;
        }

    .footer-bottom .get-text ul li {
        float: left;
    }

        .footer-bottom .get-text ul li a {
            color: #848484;
            font-size: 14px;
            margin-right: 5px;
            font-family: 'Raleway', sans-serif;
        }

footer-bottom .get-text ul li a:hover {
    color: #48c7ec;
    transition: .3s ease;
}

.fa {
    color: #66c2ff;
}

.btn .fa {
    color: #84c431;
}

.blog h6 {
    color: #84c433;
}

.blog a {
    color: #ffffff;
    transition: all 0.2s linear;
}

    .blog a:hover {
        color: #84c433;
    }

.blog img {
    border-radius: 5px;
    padding: 0;
}


.memberphoto {
    height: 50px;
}

.cal_Theme1 {
    z-index: 999999999;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

    .cal_Theme1 .ajax__calendar_container {
        background-color: #3d7db3 !important; /*#DEF1F4;*/
        border: solid 1px #77D5F7;
        padding-right: 5px;
        z-index: 1;
    }

    .cal_Theme1 .ajax__calendar_header {
        background-color: #ffffff;
        margin-bottom: 4px;
    }

    .cal_Theme1 .ajax__calendar_title, .cal_Theme1 .ajax__calendar_next, .cal_Theme1 .ajax__calendar_prev {
        color: #004080;
        padding-top: 3px;
    }

    .cal_Theme1 .ajax__calendar_body {
        background-color: #ffffff;
        border: solid 1px #77D5F7;
    }

    .cal_Theme1 .ajax__calendar_dayname {
        text-align: center;
        font-weight: bold;
        margin-bottom: 4px;
        margin-top: 2px;
        color: #004080;
    }

    .cal_Theme1 .ajax__calendar_day {
        color: #004080;
        text-align: center;
    }

    .cal_Theme1 .ajax__calendar_hover .ajax__calendar_day, .cal_Theme1 .ajax__calendar_hover .ajax__calendar_month, .cal_Theme1 .ajax__calendar_hover .ajax__calendar_year, .cal_Theme1 .ajax__calendar_active {
        color: #004080;
        font-weight: bold;
        background-color: #DEF1F4;
    }


    .cal_Theme1 .ajax__calendar_today {
        font-weight: bold;
    }

    .cal_Theme1 .ajax__calendar_other, .cal_Theme1 .ajax__calendar_hover .ajax__calendar_today, .cal_Theme1 .ajax__calendar_hover .ajax__calendar_title {
        color: #bbbbbb;
    }

/*-----------------------------------------------
-----------------CUSTOM CSS----------------------
-----------------------------------------------*/
.list-group-item {
    padding: 0.45rem 1.25rem !important;
}

.carousel-inner {
    padding: 0 !important;
}

.carousel-item img {
    /*width: 100%;
    height: 500px;
    object-fit: cover;*/
}

fieldset legend {
    font-size: 1rem;
    font-weight: 400;
    padding: 4px;
    padding-left: 10px;
    color: #000d2b;
    background: #daeefd;
    box-shadow: 0px 2px 3px #EEE;
}

    fieldset legend::before {
        content: " » ";
    }

.table-none {
    width: initial;
    border: none !important;
}

    .table-none tr {
        border: none !important;
        background: transparent;
    }

    .table-none:hover {
        background: #FFF;
    }

.cal_Theme1 .ajax__calendar_container {
    width: 180px !important;
    z-index: 999;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.1rem;
}

.user-institute {
    background-image: url(../images/regular-table-bottom.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
    background-color: white;
    padding: 10px;
    /*background: #ffffff29;*/
    /*box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);*/
    border-radius: 5px !important;
    border: 0;
    margin-bottom: 1rem;
}

    .user-institute p {
        font-size: 14px;
    }

.pointer {
    cursor: pointer;
    transition: 0.3s all;
}

    .pointer:hover {
    }

@media (max-width: 1023px) {
    .mobile-hide {
        display: none;
    }

    .navbar-nav .nav-link {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.l-radio {
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0 0 8px 0;
    -webkit-tap-highlight-color: transparent;
}

    .l-radio:hover, .l-radio:focus-within {
        background: rgba(159, 159, 159, 0.1);
    }

    .l-radio input {
        vertical-align: middle;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        background: none;
        border: 0;
        box-shadow: inset 0 0 0 1px #87c243;
        appearance: none;
        padding: 0;
        margin: 0;
        transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
        pointer-events: none;
    }

        .l-radio input:focus {
            outline: none;
        }

        .l-radio input:checked {
            box-shadow: inset 0 0 0 6px #87c243;
        }

    .l-radio span {
        vertical-align: middle;
        display: inline-block;
        line-height: 20px;
        padding: 0 8px;
        font-size: 12px;
    }

.nav-tabs-ic {
    margin-bottom: 5px;
}

    .nav-tabs-ic .nav-item {
        position: relative;
    }

    .nav-tabs-ic .nav-link {
        background: #000d2b;
        color: white !important;
        background: #e0e0e0;
        color: #2f2d2d !important;
    }

    .nav-tabs-ic .nav-item.active {
        font-weight: bold;
        color: #000 !important;
        border-bottom: solid 1px #84c433 !important;
    }

        .nav-tabs-ic .nav-item.active a {
            cursor: default !important;
        }

    .nav-tabs-ic .nav-item span.badge {
        position: absolute;
        top: -3px;
        right: -3px;
    }

input[type=radio] ~ label, input[type=checkbox] ~ label {
    padding-left: 5px;
    display: inline !important;
    cursor: pointer;
}


/* DASHBOARD SLIDER */
.card {
    /*box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);*/
    border-radius: 15px !important;
    border: 0;
}

.slideshow-card {
    overflow: hidden;
    background-color: white;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 5px !important;
    border: 0;
    height: 100%;
}

    .slideshow-card .slideshow {
        position: relative;
        background: #fffffff1;
    }

    /* Slides */
    .slideshow-card .slides {
        display: none;
        padding: 50px 10px;
        text-align: center;
    }

    /* Next & previous buttons */
    .slideshow-card .prev, .slideshow-card .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -20px;
        padding: 16px;
        color: #143868 !important;
        font-weight: bold;
        font-size: 20px;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "prev button" to the left */
    .slideshow-card .prev {
        position: absolute;
        left: 0;
    }
    /* Position the "next button" to the right */
    .slideshow-card .next {
        position: absolute;
        right: 0;
        border-radius: 3px 0 0 3px;
    }

        /* On hover, add a black background color with a little bit see-through */
        .slideshow-card .prev:hover, .slideshow-card .next:hover {
            background-color: #dfe7f6;
            color: #2c58a0 !important;
        }

    /* The dot/bullet/indicator container */
    .slideshow-card .dot-container {
        text-align: center;
        padding: 5px;
        background: #dfe7f6;
    }

    /* The dots/bullets/indicators */
    .slideshow-card .dot {
        height: 5px;
        width: 5px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    /* Add a background color to the active dot/circle */
    .slideshow-card .active {
        background-color: #717171;
    }

    /* Add an italic font style to all quotes */
    .slideshow-card q {
        font-style: italic;
    }

    /* Add a blue color to the author */
    .slideshow-card .author {
        text-align: center;
        color: cornflowerblue;
    }
/* DASHBOARD SLIDER ENDS */

#idMemberInfo {
    padding-top: 22px !important;
}

    #idMemberInfo div {
        position: relative;
        padding-bottom: 15px;
    }

        #idMemberInfo div svg {
            width: 20px;
            text-align: center;
            color: #84c433;
            margin-right: 5px;
        }

        #idMemberInfo div span.header {
            position: absolute;
            right: 0;
            font-size: 10px;
            font-style: italic;
        }

        #idMemberInfo div span.text {
            font-size: 14px;
        }

        #idMemberInfo div span.header::before {
            content: "(";
        }

        #idMemberInfo div span.header::after {
            content: ")";
        }

.float-left {
    float: left;
}

.clear {
    clear: both;
}

.overflow-hidden {
    height: 270px;
    overflow: hidden;
}

#idMemberImages .image a img {
    border: solid 3px var(--clr-white-90);
}


.badge.badge-large {
    padding: 6px 12px !important;
    font-size: 12px;
    font-weight: normal !important;
    transition: 0.3s all;
}

    .badge.badge-large:hover {
        /*color: #FFF;*/
        color: #000000;
        box-shadow: 0 0 5px rgba(0,0,0,0.7);
    }

    .badge.badge-large.clicked {
        color: #66c2ff;
    }
.badge.badge-liked {
    padding: 6px 12px !important;
    font-size: 12px;
    font-weight: normal !important;
    transition: 0.3s all;
}

.badge.badge-liked:hover {
    /*color: #FFF;*/
    color: #000000;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
}
    .badge.badge-liked.clicked {
        color: red;
    }

.badge.badge-dark-500 {
    /*color: #EEE;*/
    background-color: #555;
    transition: 0.3s all;
    /*background-color: #000d2b;*/
    background-color: #f1f1f2;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-pilli-btn a {
    border-radius: 4px;
    padding: 10px 10px;
    margin-bottom: 8px;
    font-weight: 600;
    margin-right: 1rem;
    background-size: 200% auto;
}

.badge-pill-btn a:hover {
    background-position: right center; /* change the direction of the change here */
    text-decoration: none;
}

.badge-btn0 {
    background-image: linear-gradient(70deg, #f6d365 0%, #fda085 51%, #f6d365 100%);
    color: #2c58a0;
}

.badge-btn1 {
    background-image: linear-gradient(70deg, #fbc2eb 0%, #a6c1ee 51%, #fbc2eb 100%);
    color: #2c58a0;
}

.badge-btn2 {
    background-image: linear-gradient(70deg, #84fab0 0%, #8fd3f4 51%, #84fab0 100%);
    color: #2c58a0;
}

.badge-btn3 {
    background-image: linear-gradient(70deg, #f0ecc4 0%, #c2e9fb 51%, #a1c4fd 100%);
    color: #2c58a0;
}

.badge-btn4 {
    background-image: linear-gradient(70deg, #ffecd2 0%, #fcb69f 51%, #ffecd2 100%);
    color: #2c58a0;
}

.badge-btn5 {
    background-image: linear-gradient(70deg, #a1c4fd 0%, #c2e9fb 51%, #a1c4fd 100%);
    color: #2c58a0;
}

.badge-btn6 {
    background-image: linear-gradient(70deg, #CDDC39 0%, #edc5dc 51%, #fda184 100%);
    color: #2c58a0;
}


.text-black-50 {
    color: rgb(20 56 104) !important;
}

.badge-group .badge.badge-pill {
    /*border-right: solid 2px #333;*/
    border-radius: 0;
}

    .badge-group .badge.badge-pill:first-child {
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
    }

    .badge-group .badge.badge-pill:last-child {
        border-right: none;
        border-top-right-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }

#idPopupRightPage {
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
    position: fixed;
    top: 0px;
    right: 0;
    width: 350px;
    height: 100vh;
    margin-top: 45px;
    z-index: 99999;
    transform: translateX(0%);
    transition: 0.3s transform;
    overflow: auto;
    border-radius:25px 0px;
}

    #idPopupRightPage.hide {
        transform: translateX(200%);
    }

    #idPopupRightPage .hide, #idPopupRightPage .comment-item.hide {
        display: none;
    }

    #idPopupRightPage .comment-item .user-box {
        overflow: auto;
    }

    #idPopupRightPage .close {
        position: absolute;
        top: 10px;
        right: 5px !important;
        font-size: 14px;
        border: solid 1px #84c494;
        border-radius: 2px;
        padding: 4px 5px 4px 6px;
    }

    #idPopupRightPage .nav-link {
        font-weight: bold;
        border-radius: 35px;
        padding: 0.3rem 1rem;
        margin: 0.5rem 0;
    }

        #idPopupRightPage .nav-link.active {
            color: #84c461 !important;
            border-color: inherit;
        }

    #idPopupRightPage .nav-item {
        margin-right: 0;
    }

    #idPopupRightPage ul {
        background-color: #ffffff !important;
    }

#idPopupRightPageTitle {
    padding: 5px;
    padding-left: 1rem; /* height: 30px; */
    overflow: hidden;
    font-weight: 600;
    color: #000d2b;
}


@media (max-width: 575px) {
    #idPopupRightPage {
        width: 100%;
    }

    .img-wrapper a img {
        height: unset !important;
    }

    .search-container {
        display: none; /* hide search bar on small screens */
    }
}

.comment-span {
    position: relative;
}

.comment-box {
    width: 200px !important;
}

.comment-btn {
    position: absolute;
    left: 213px;
    top: 9px;
    /*height: 37px;     width: 40px !important;*/
    border-radius: 7px;
}

.user-box {
    color: #777; /*margin: 2px 5px;*/
    padding: 5px;
    padding-left: 1rem; /*background: #FAFAFA;*/
    border-radius: 3px; /*border: solid 1px #DDD;*/
    transition: 0.3s all;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .user-box:hover {
        color: #666;
        background: #ececec;
        border-color: #5e5c5c;
    }

    .user-box .user-image {
        cursor: pointer;
        margin-right: 5px;
    }

        .user-box .user-image img {
            margin-right: 5px;
            float: left;
            width: 50px;
            height: 50px;
            border-radius: 25px;
            border: solid 1px #DDD;
        }

    .user-box .user-data {
    }

        .user-box .user-data .name {
            font-size: 14px;
            font-weight: 500;
            padding-right: 5px;
            height: 20px;
            color: #000d2b;
        }

        .user-box .user-data .datetime {
            font-size: 10px;
            height: 20px;
            color: #84c461;
        }

        .user-box .user-data .comment {
            /*margin-left: 35px;*/
            font-size: 12px;
        }

.border-success-light {
    border-color: #98e6ab !important;
}

.bg-success-light {
    background-color: #98e6ab !important;
    background: linear-gradient( 271deg, #f5f5f5 0%, #ebf8fe 100%);
}

.border-info-light {
    border-color: #77deee !important;
}

.bg-info-light {
    background-color: #77deee !important;
}

.border-warning-light {
    border-color: #ffd966 !important;
}

.bg-warning-light {
    background-color: #ffd966 !important;
}

/*uday css*/
.logo {
    height: 50px !important; /*max-width: 400px !important;*/
}

.login-form1 {
    box-shadow: var(--shadow-large);
    background: white;
    border-radius: 5px;
    overflow: hidden;
    padding: 50px 80px;
    padding: 30px 40px;
}

.form-btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    width: 100%;
}

.btn-round {
    color: #fff;
    background-color: #000d2b;
    border-color: #84c431;
    padding: 0.35rem 1.25rem; /*border-radius: 2rem;*/
    font-size: 1rem;
}

    .btn-round:hover {
        color: #fff;
        background-color: #0b2e7e;
        border-color: #84c431;
    }

.btn-primary {
    color: #000000;
    /* background-color: #ffffff; */
    /*border-color: #dadada;*/
    border-color: #ffffff;
    /* transition: all 0.3s; */
    /*padding: 2px 10px !important;*/
    background: linear-gradient(271deg, #f5f5f5 0%, #ebf8fe 100%);
}

    .btn-primary:hover {
        color: #fff;
        transition: .5s;
        /* -webkit-transform: translateY(5px); */
        -ms-transform: translateY(5px);
        /* transform: translateY(5px); */
        background-color: #ffffff;
        border-color: #ffffff;
        color: #143868;
    }

.striped {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    width: 100%;
}

.striped-text {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: #dadce0;
    margin: 0 1rem;
}

.striped-line {
    flex: auto;
    flex-basis: auto;
    border: none;
    outline: none;
    height: 2px;
    background: #dadce0;
}

.method {
    width: 100%;
}

.method-control {
    margin-bottom: 1rem;
}

.method-action {
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0.8rem 1.25rem;
    outline: none;
    border: 2px solid #f1f5f9;
    border-radius: 2rem;
    color: var(--color-black);
    background: var(--color-white);
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease;
}

    .method-action i {
        color: #187dde;
        margin-right: 0.5rem;
        font-size: 20px;
    }

    .method-action:hover {
        background: #f1f5f9;
    }

.navbar-light .navbar-nav .nav-link:hover {
    color: #84c433 !important;
}

.navbar-light .navbar-nav .nav-link.btn-register:hover {
    color: #FFF !important;
}


.news-main h4 {
    color: #000d2b;
}

.news-main small {
    color: #84c433;
    font-size: 12px;
    font-weight: 600;
}

.box-2 p {
    color: #343a40;
    font-weight: 400;
    text-align: center;
    margin-top: -20px;
}

#idPopupRightPage li {
    margin-left: 1rem;
}

.btn-info {
    color: #fff;
    background-color: #000d2b;
    border-color: #63ba49;
    transition: all 0.3s;
}

    .btn-info:hover {
        transition: .5s;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
        background-color: #000d2b;
        border-color: #63ba49;
    }

fieldset .nav-item {
    margin-right: 10px;
}


#image-gallery {
    padding-left: 0 !important;
}

/*Member-search-page*/

.filter-group {
    display: flex;
    align-items: center;
}


.card-filter {
    margin-right: 1rem;
    width: 25%;
}

.Search-btn {
    padding: 1rem
}

.member-card {
    margin: auto;
    box-shadow: 0 0 10px 4px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    transition: .5s transform;
}

    .member-card img {
        width: 80px;
        border-radius: 50px;
    }

    .member-card:hover {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
    }

.member-card-counter {
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(102 185 83);
    color: #FFF;
    font-size: 10px;
    line-height: 1.2rem;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 5px 0px;
}

.heading-main {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000d2b;
}

.member-card-box {
    margin-left: 20px;
}

    .member-card-box p {
        color: rgb(100 105 115);
        font-weight: 400;
        margin-bottom: 5px;
        line-height: 1.2;
    }

.member-card-icon a {
    font-size: 1.4rem;
    color: #84c433;
}

.filter-span {
    padding: 3px 10px;
    background: #e0e0e0;
}

    .filter-span a {
        margin-left: 2px;
    }

@media screen and (max-width: 768px) {
    .heading-main {
        font-size: 16px;
    }

    .member-card-box p {
        font-size: 12px;
    }

    .form-label label {
        display: none;
    }

    .card-filter {
        /*min-width: 25%;*/
        /*margin-right: 6px;*/
    }

    .filter-group {
        /*display: inline-block;*/
        overflow: hidden;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    /*.name-box {
        position: absolute;
        right: 0px;
        top: 18px;
        max-width: 40%;
    }*/

    .event-img img {
        height: 100% !important;
        width: 100% !important;
    }

    .event-text h4 {
        font-size: 18px !important;
        margin-top: 10px !important;
    }

    #tile-1 .slider {
        display: none !important;
    }
    #btnGoTop {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 375px) {
    h2 {
        font-size: 18px !important;
    }
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: unset;
    -ms-flex-positive: 1;
    flex-grow: unset;
}

.profile-card-5 {
    margin-top: 20px;
}

    .profile-card-5 .btn {
        border-radius: 2px;
        text-transform: uppercase;
        font-size: 12px;
        padding: 7px 20px;
    }

    .profile-card-5 .card-img-block {
        width: 100%;
        margin: 0 auto;
        position: relative;
        top: -20px;
        text-align: center;
    }

        .profile-card-5 .card-img-block img {
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.63);
            max-width: 220px;
            height: 220px;
            object-fit: cover;
        }

    .profile-card-5 h5 {
        color: #000d2b;
        font-weight: 600;
    }

    .profile-card-5 p {
        font-size: 14px;
        font-weight: 300;
    }

    .profile-card-5 .btn-primary {
        background-color: #4E5E30;
        border-color: #4E5E30;
    }

/*members-tabs*/

body {
    background-color: #f1f1f2;
}

.tile {
    width: 100%;
    margin: 25px auto;
}

#tile-1 .tab-pane {
    padding: 15px;
    min-height: 80px;
}

#tile-1 .nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
    margin-left: 0 !important;
}

    #tile-1 .nav-tabs li {
        margin: 0px !important;
    }

        #tile-1 .nav-tabs li a {
            position: relative;
            margin-right: 0px !important;
            padding: 10px 15px !important;
            font-size: 16px;
            border: none !important;
            color: #333;
        }

    #tile-1 .nav-tabs a:hover {
        background-color: #fff !important;
        border: none;
    }

#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background-color: #98ce55;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear;
}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #84c433 !important;
}

.card-text .label {
    display: inline !important;
    font-weight: 600;
    /*display: block !important;*/
}

    .card-text .label::after {
        content: " : ";
        font-weight: 400;
    }

.card-title {
    margin: 0 !important;
    font-size: 14px;
    color: #173a6a;
}

.card h4 {
    font-size: 16px;
    padding: 8px 10px;
    margin-bottom: 0;
    /*background: linear-gradient(271deg, #f5f5f5 0%, #ebf8fe 100%);*/
    border-radius:20px;
}

.card-body {
    padding: 8px 8px;
}

.birthday-card {
    padding: 10px;
    /* border-top: 1px solid #eaeaea; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.b-count {
    font-size: 14px;
    font-weight: 600;
    color: #143868;
    margin-right: 5px;
}

.text-sm {
    font-size: 11px;
}

.member-social-icon {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: normal;
    border: 2px solid #ffffff;
    border-radius: 35px;
    transition: .3s;
    background: #000d2b;
    text-align: center;
    display: none;
}

    .member-social-icon:hover {
        color: var(--primary);
    }

member-social-icon .fa {
    color: #84c431;
}

.row-inner div {
    padding-left: 2px;
    padding-right: 0;
}

    .row-inner div:first-child {
        padding-left: 15px;
    }

    .row-inner div:last-child {
        padding-right: 15px;
    }

.form-group .title.text-right {
    position: absolute;
    left: -20px;
    width: 30px;
    text-align: right;
}

.alert {
    background-color: #333;
    color: white;
    border-radius: 4px;
    padding: 20px;
    opacity: 0.9;
    max-width: 300px;
    width: 100%;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.6s, box-shadow 0.3s;
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
}

    .alert:hover {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0,0,0,0.6)
    }

    .alert strong {
        display: block;
        font-size: 19px;
    }

    .alert.alert-danger {
        background-color: #f44336;
        color: white;
    }

    .alert.alert-success {
        background-color: #04AA6D;
    }

    .alert.alert-info {
        background-color: #2196F3;
    }

    .alert.alert-warning {
        background-color: #ff9800;
    }

    .alert .alert-closebtn {
        margin-left: 15px;
        color: white;
        font-weight: bold;
        float: right;
        font-size: 22px;
        line-height: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .alert .alert-closebtn:hover {
            color: #777;
        }


/*blog-post*/

/* Recent News */
.recent-news {
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    background: #fff;
}

    .recent-news.blog-lg {
        box-shadow: none;
    }

        .recent-news.blog-lg .info-bx {
            border: 0;
            padding: 20px 0 0 0;
        }

    .blog-post .post-title,
    .recent-news .post-title {
        font-size: 18px;
        margin-top: 0px;
        margin-bottom: 6px;
        /* font-family: roboto; */
        line-height: 34px;
    }

    .recent-news .info-bx {
        padding: 20px;
        border: 1px solid #EEEEEE;
    }
    .recent-news .post-details {
        font-size: 12px;
    }

.comments-bx {
    margin-left: auto;
    color: #000;
}

    .comments-bx i {
        margin-right: 5px;
    }

.post-extra {
    display: flex;
    border-top: 1px solid #EEEEEE;
    padding-top: 20px;
    margin-top: 20px;
}

.media-post {
    /*border-bottom: 1px solid #EEEEEE;*/
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.media-post,
.post-tag {
    margin-bottom: 5px;
    padding: 0;
}

    .media-post svg {
        color: #143868;
        margin-right: 5px;
    }

    .media-post li {
        list-style: none;
        display: inline-block;
        font-size: 13px;
        text-transform: capitalize;
        font-family:;
        margin-right: 10px;
    }

        .media-post li a {
            color: var(--primary);
            vertical-align: middle;
            cursor: pointer;
        }

            .media-post li a i {
                margin-right: 5px;
                font-size: 13px;
            }

    .post-tag li {
        display: inline-block;
        font-size: 14px;
        margin-bottom: 5px;
        list-style: none;
    }

.post-title a {
    color: #061538;
}

.blog-post p,
.recent-news p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #242424;
}

.user-Logo {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    /* margin-right: 1rem; */
    object-fit: fill;
    /* margin-left: 29px; */
}

.sidebar-sticky {
    position: fixed;
    right: 0;
    top: 9%;
    width: 305px;
    z-index: 999;
    /* transform: translateY(-50%); */
    padding-right: 1rem;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: 0px;
    top: 44px;
}

.owl-theme .owl-nav {
    margin-top: -20px !important;
}

    .owl-theme .owl-nav [class*=owl-] {
        font-size: 40px !important;
        margin: 0px 15px;
    }

/*#btn_0 {
    border: 0;
    background: #f0fbfe;
    padding: 0px 10px;
    color: #143868;
}*/

.birthday-btn {
    width: 90px;
    margin: auto;
    margin-bottom: 8px;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #000000;
    background-color: #eaf6fb !important;
    border-color: #e3e3e3;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none !important;
    color: #000000;
    text-decoration: none;
}

.owl-prev,
.owl-next {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

    .owl-prev:focus,
    .owl-next:focus {
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }


#content.fullwidth {
    width: 100%;
}

.search-container {
    flex: 1;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 8px 40px 8px 40px; /* icon space */
    border-radius: 50px;
    border: 1px solid #dee2e6;
    /*background-color: #f8f9fa;*/
    font-size: 14px;
    transition: all 0.3s ease;
    color: #333;
}

    .search-input:focus {
        background-color: #fff;
        border-color: #0d6efd;
        box-shadow: 0 0 6px rgba(13, 110, 253, 0.25);
        outline: none;
    }

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus ~ .search-icon {
    color: #0d6efd;
}

/* === Notification Bell === */
.nav-link .badge {
    font-size: 10px;
}
.btn-link {
    font-size: x-small;
    text-decoration: none !important;
}
.post-card {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 16px;
    transition: box-shadow 0.2s ease;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.12);*/
}


.post-title {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 2px;
   color:black;
}

.post-card img.img-fluid {
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.h4, h4 {
    font-size: 16px;
}
.btn-create-post {
    background-color: #fff !important;
    border: 2px solid #ccc !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    color: #444 !important;
    box-shadow: none !important;
    width: 98% !important;
    height: 30px !important;
    padding: 2px;
    font-size: 16px;
}

    .btn-create-post:hover,
    .btn-create-post:focus,
    .btn-create-post:active {
        background-color: #fff !important;
        color: #444 !important;
        box-shadow: none !important;
    }
.modal-open {
    overflow: auto;
}
/* Modern modal look */
.modal-content {
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Option hover animation */
.post-option {
    transition: all 0.2s ease-in-out;
    border: 1px solid #eee;
}

    .post-option:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        text-decoration: none;
    }

/* Adjust icon spacing for Bootstrap 4 */
.me-3 {
    margin-right: 1rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.custom-close {
    cursor: pointer;
    opacity: 0.8; 
    transition: opacity 0.2s ease-in-out;
}
.custom-close:hover {
        opacity: 1;
 }
.posttype {
    position: absolute;
    font-weight: 600 !important;
    top: 0px;
    right: 10px;
    background: #c7effd;
    padding: 1px 8px;
    font-size: 12px;
    border-radius: 0px 0px 9px 9px;
}


.icon-dashboard {
    color: #007bff;
}
/* Blue */
.icon-profile {
    color: #28a745;
}
/* Green */
.icon-news {
    color: #ffc107;
}
/* Yellow */
.icon-events {
    color: #17a2b8;
}
/* Teal */
.icon-meets {
    color: #6f42c1;
}
/* Purple */
.icon-donations {
    color: #fd7e14;
}
/* Orange */
.icon-referrals {
    color: #20c997;
}
/* Mint Green */
.icon-jobs {
    color: #6610f2;
}
/* Indigo */
.icon-congratulate {
    color: #e83e8c;
}
/* Pink */
.icon-search {
    color: #0dcaf0;
}
/* Cyan */
.icon-chat {
    color: #198754;
}
/* Dark Green */
.icon-offers {
    color: #ffc107;
}
/* Gold */
.icon-promotes {
    color: #fd7e14;
}
/* Orange */
.icon-board {
    color: #6c757d;
}
/* Grey */
.icon-gallery {
    color: #20c997;
}
/* Mint Green */
.icon-password {
    color: #343a40;
}
/* Dark Grey */
.icon-signout {
    color: #dc3545;
}
/* Red */

.post-option {
    border: 1px solid #e5e5e5!important;
    background-color: #fafafa!important;
    transition: all 0.2s ease!important;
    border-radius:15px!important;
}
.post-option:hover {
    background-color: #f0f0f0!important;
    transform: translateY(-2px)!important;
}

#btnGoTop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    #btnGoTop:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }

    #btnGoTop.show {
        display: block;
        opacity: 1;
    }

    #btnGoTop.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

