﻿
@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: 14px;
    font-weight: 300;
    line-height: 1.7em; /*text-align: justify;*/
}

    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: #bdbdbd;
    }

    .components li a:hover span {
        left: 40px;
        color: #cccccc;
    }

.hidden {
    display: none;
}

.navbar {
    padding: 0 0 0 20px;
    background: var(--clr-white-100);
    color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.35) !important;
    z-index:99998;
}

.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;
    outline: none;
}

.dropdown-item {
    opacity: 1;
    display: block;
    background: #f7f7f7;
    color: #2a2a2a !important;
    padding-left: 20px;
    height: 40px;
    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;
}

.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;
    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: 80%;
        font-weight: 500;
        color: #c0c0c0;
    }

    #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: 2px;
        transition: color 0.3s;
        background: #143868;
        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;
    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: #f0f0f0;
        /* text-shadow: 1px 1px 3px #DDD; */
        font-weight: 500;
    }

    #sidebar ul.navigation-urls li a.active svg {
        color: #84c433;
        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;
}

    #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%;
}

.btn-filter {
    border: 1px solid #5f759152;
    border-radius: 25px;
    outline: none;
    text-align: left;
    font-size: 10px;
    font-weight: 400;
    background: var(--color-light);
    color: var(--color-black);
    line-height: inherit;
    width: 100%;
    height: 25px !important;
    padding: 4px 10px;
    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;
        }
}

.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: #84c433;
}

.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: #FFF;
    background: linear-gradient(55deg, #1a3b5b 0%, #0c1e35 100%);
    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: 20px;
    /*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: 5px !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;
        box-shadow: 0 0 5px rgba(0,0,0,0.7);
    }

    .badge.badge-large.clicked {
        color: #66c2ff;
    }

.badge.badge-dark-500 {
    color: #EEE;
    background-color: #555;
    box-shadow: 0px -3px 6px rgba(0,0,0,0.4);
    transition: 0.3s all;
    background-color: #000d2b;
}

.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;
}

    #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;
    }
}

.comment-span {
    position: relative;
}

.comment-box {
    width: 200px !important;
}

.comment-btn {
    position: absolute;
    left: 199px;
    top: 8px; /*height: 37px;     width: 40px !important;*/
    border-radius: 0;
}

.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;
}

.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: #fff;
    background-color: #000d2b;
    border-color: #00e600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        color: #fff;
        transition: .5s;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
        background-color: #000d2b;
        border-color: #00e600;
    }

.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;
    }
}

@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;
}


.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;
}