@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono");

:root {
    --primary-first: #5457C1;
    --primary-second: #A20067;
    --primary-third: #0097A;
    --secondary-first: #999999;
    --secondary-second: #4A4A4A;
    --secondary-third: #FDCD60;
    --white: #ffffff;
    --black: #2A2A2A;
}
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem!important;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    text-align: left;
    background: #fff;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
a {
    color: var(--primary-first);
    text-decoration: none!important;
    background-color: transparent;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

.container-fluid{
    padding-left: 70px;
    padding-right: 70px;
}

/*--- login form ---*/
.form-wrap{
    width: 480px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin:4% auto;
}
.form-content{
    display: block;
    width: 100%;
    padding: 25px;
    background: #fff;
    text-align: left;
    border-radius: 15px;
    border: 1px solid #e0e6ed;
    -webkit-box-shadow: 0 4px 6px 0 rgb(85 85 85 / 9%), 0 1px 20px 0 rgb(0 0 0 / 8%), 0px 1px 11px 0px rgb(0 0 0 / 6%);
    -moz-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.09019607843137255), 0 1px 20px 0 rgba(0, 0, 0, 0.08), 0px 1px 11px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px 0 rgb(85 85 85 / 9%), 0 1px 20px 0 rgb(0 0 0 / 8%), 0px 1px 11px 0px rgb(0 0 0 / 6%);
}
.form-wrap  .form-content h1 {
    font-size: 32px;
    color: #3b3f5c;
}
.form-wrap  .form-content > p {
    font-size: 13px;
    color: #888ea8;
    font-weight: 400;
    margin-bottom: 35px;
}
.form-wrap  .form label {
    font-size: 10px;
    font-weight: 400;
    color: #3b3f5c;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.form-control {
    border: 1px solid #bfc9d4;
    color: #3b3f5c;
    font-size: 15px;
    padding: 8px 10px;
    letter-spacing: 1px;
    height: calc(1.4em + 1.4rem + 2px);
    border-radius: 6px;
}

button.btn {
    align-self: center;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: normal;
    white-space: normal;
    text-shadow: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}
.btn-primary {
    color: #fff !important;
    background-color: #1b55e2!important;
    border-color: #1b55e2;
}
.btn-primary:hover, .btn-primary:focus {
    color: #fff !important;
    background-color: #1b55e2;
    box-shadow: none;
    border-color: #1b55e2;
    /*-webkit-transform: translateY(-3px);*/
    /*transform: translateY(-3px);*/
}
.btn-gray {
    color: #000 !important;
    background-color: #c4c4c4!important;
    border-color: #c4c4c4;
}
.btn-gray:hover, .btn-gray:focus {
    color: #000 !important;
    background-color: #c4c4c4;
    box-shadow: none;
    border-color: #c4c4c4;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
.btn-sm {
    padding: 8px 15px!important;
    font-size: 14px!important;
}

.form-wrap  .division {
    text-align: center;
    font-size: 13px;
    margin: 35px 0 30px 0;
}

.form-wrap  p.forgot-password{
    font-size: 14px;
    color: #3b3f5c;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 30px;
}
.form-wrap  p.forgot-password a{
    color: #1b55e2;
    text-decoration: none;
    border-bottom: 1px solid;
}

/*--- header start ---*/
.header-topbar{
    padding: 5px;
}
.header-topbar a h6{
    font-size: 14px;
    margin:5px 0;
    color:var(--black);
}

.header-bottom{
    background: #f7f7f7;
    padding: 8px 0;
}
.header-bottom h6{
    margin: 0;
    line-height:34px;
}
.header-bottom .right-nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.right-nav .flex-column{
    margin: 0 10px;
    padding-right: 15px;
    border-right: solid 1px var(--black);
}
.right-nav .flex-column:last-child{
    border-right: 0;
    padding: 0;
    margin: 0;
}
.right-nav .flex-column a{
    color:var(--black);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.navbar-header {
    /*height: 60px;*/
    padding: 0;
    background-color: var(--primary-first);
    align-items: stretch;
    justify-content: flex-start;
}
.nav{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}
.navbar-header .burger-menu {
    margin-left: 10px;
    color: var(--white);
    display: flex;
    align-items: center;
}
.navbar-header .burger-menu i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}

.navbar-header .navbar-brand {
    display: flex;
    align-items: center;
    padding-left: 15px;
    margin-right: 0;
    /*order: 1;*/
}
.navbar-brand {
    display: inline-block;
    padding-top: 0.33594rem;
    padding-bottom: 0.33594rem;
    margin-right: 1rem;
    font-size: 1.09375rem;
    line-height: inherit;
    white-space: nowrap;
}
.le-logo {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    margin-top: -4px;
}
.le-logo:hover, .le-logo:focus {
    color: var(--white);
    text-decoration: none;
}
.le-logo span {
    display: inline-block;
    font-weight: 300;
    margin-left: 5px;
    color: var(--white);
}

.le-logo-sidebar span {
    display: inline-block;
    font-weight: 300;
    margin-left: 5px;
    color: var(--primary-first);
}

.navbar-menu-wrapper {
    /*order: 3;*/
    width: 260px;
    position: fixed;
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    background-color: var(--white);
    overflow: hidden;
    z-index: 1060;
    transform: translateX(-260px);
    transition: all 0.4s;
}
.navbar-menu-header {
    height: 55px;
    padding: 0 15px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(72, 94, 144, 0.16);
}
.navbar-menu-header a:last-child {
    color: #7987a1;
}
.navbar-menu-header .feather-x {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}
.navbar-menu {
    flex-direction: column;
    padding: 25px 0;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-menu .nav-label {
    font-size: 10px;
    font-weight: 600;
    font-family: -apple-system, Roboto, sans-serif;
    letter-spacing: .7px;
    color: #8392a5;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.pd-l-20 {
    padding-left: 20px;
}
.navbar-menu .nav-item.with-sub {
    position: relative;
}
.navbar-menu .nav-item.active .nav-link {
    position: relative;
    color: var(--secondary-second);
}
.navbar-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    padding: 0 20px;
    color: var(--secondary-second);
    transition: all 0.2s ease-in-out;
}
.nav-link {
    color: #596882;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link span{
    color: #000;
    border-radius: 50%;
    position: absolute;
    width: 21px;
    height: 21px;
    right: -16px;
    top: -16px;
    background: #FDCD60;
    font-size: 7px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
}

.navbar-menu .nav-item.active.with-sub .nav-link::after {
    border-color: var(--primary-second);
}
.navbar-menu .nav-item.with-sub .nav-link::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #8392a5;
    border-bottom: 1.5px solid #8392a5;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: auto;
    transition: all 0.2s ease-in-out;
}
.navbar-menu .nav-item.with-sub {
    position: relative;
}
.navbar-menu-sub {
    position: relative;
    min-width: 200px;
    list-style: none;
    padding: 0 15px 3px 24px;
    border-left: 1px solid rgba(72, 94, 144, 0.16);
    margin-top: 10px;
    margin-left: 28px;
    z-index: 1000;
    display: none;
}
.navbar-menu-sub .nav-sub-link {
    color: #1b2e4b;
    white-space: nowrap;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.navbar-menu-sub .nav-sub-link:hover {
    color: var(--primary-second);
}
.navbar-menu .nav-item + .nav-item {
    margin-top: 10px;
}

.navbar-header .navbar-right {
    padding: 0 15px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar-header .navbar-right .dropdown {
    margin-left: 15px;
}
.dropup, .dropright, .dropdown, .dropleft {
    position: relative;
}
.dropdown-notification .dropdown-link.new-indicator {
    color: var(--black);
}
.dropdown-notification .dropdown-link.new-indicator i{
    font-size: 22px;
    color:var(--white)
}
.dropdown-notification .dropdown-link:hover, .dropdown-notification .dropdown-link:focus {
    color: var(--primary-first);
}
.dropdown-message .dropdown-link svg, .dropdown-notification .dropdown-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}
.dropdown-notification .dropdown-link.new-indicator span {
    display: flex;
    width: 15px;
    height: 15px;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -2px;
    background-color: #dc3545;
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    font-family: sans-serif;
    line-height: 2;
    border-radius: 100%;
}
.navbar-header .navbar-right .dropdown-notification .dropdown-menu {
    margin-top: 17.5px;
    margin-right: -53px;
}
.navbar-header .navbar-right .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.dropdown-notification .dropdown-menu.dropdown-menu-right {
    margin-right: -20px;
}
.dropdown-notification .dropdown-menu {
    width: 300px;
    padding: 0;
    margin-right: -20px;
    box-shadow: none;
}
.dropdown-menu {
    border-color: rgba(131, 146, 165, 0.27);
    box-shadow: 0 0 8px 2px rgb(28 39 60 / 4%);
    padding: 5px;
}
.dropdown-profile .dropdown-menu.dropdown-menu-right::before {
    left: auto;
    right: 15px;
}
.dropdown-profile .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 25px;
    border-bottom: 10px solid rgba(72, 94, 144, 0.16);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.dropdown-profile .dropdown-menu.dropdown-menu-right::after {
    left: auto;
    right: 16px;
}
.dropdown-profile .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8.5px;
    left: 26px;
    border-bottom: 9px solid #fff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    color: var(--black);
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-message .dropdown-header, .dropdown-notification .dropdown-header {
    padding: 12px 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #1b2e4b;
    border-bottom: 1px solid rgba(72, 94, 144, 0.16);
    margin-bottom: 5px;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.76562rem;
    color: #7987a1;
    white-space: nowrap;
}
.dropdown-message .dropdown-item, .dropdown-notification .dropdown-item {
    transition: none;
    border-radius: 0.25rem;
    white-space: normal;
    padding: 8px 10px;
    margin: 0 5px;
    width: auto;
}
.dropdown-item {
    padding: 0.25rem 1rem;
}
.dropdown-notification .dropdown-item:hover, .dropdown-notification .dropdown-item:focus {
    background-color: rgba(229, 233, 242, 0.5);
}
.dropdown-notification .dropdown-footer {
    margin-top: 5px;
    border-top: 1px solid rgba(72, 94, 144, 0.16);
    padding: 10px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    font-family: -apple-system, Roboto, sans-serif;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.dropdown-notification .dropdown-footer a {
    color: #8392a5;
    transition: all 0.2s ease-in-out;
}
.dropdown-notification .dropdown-footer a:hover, .dropdown-notification .dropdown-footer a:focus {
    color: #1b2e4b;
}
.navbar-header .navbar-right .dropdown-notification .dropdown-menu::before {
    right: 48px;
}
.dropdown-notification .dropdown-menu.dropdown-menu-right::before {
    left: auto;
    right: 20px;
}
.dropdown-notification .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 25px;
    border-bottom: 10px solid rgba(72, 94, 144, 0.16);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.navbar-header .navbar-right .dropdown-notification .dropdown-menu::after {
    right: 49px;
}
.dropdown-notification .dropdown-menu.dropdown-menu-right::after {
    left: auto;
    right: 21px;
}
.dropdown-notification .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8.5px;
    left: 26px;
    border-bottom: 9px solid #fff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}

.navbar-header .navbar-right .dropdown:last-child {
    margin-left: 15px;
}
.dropdown-profile .dropdown-link {
    display: flex;
    align-items: center;
}
.dropdown-toggle::after {
    content: none;
}

.date-time{
    margin-right: 10px;
}
.date-time span{
    color:var(--white);
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    line-height: 16px;
}
.date-time i{
    color:var(--white);
    font-weight: 300;
    font-style: normal;
}
.avatar {
    position: relative;
    box-sizing: border-box;
}
.avatar img {
    width: 40px;
    height: 40px;
    border: 0.5px solid #FEFEFE;
    object-fit: cover;
}
.avatar-profile{
    margin-left: 10px;
}
.avatar-profile h5{
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color:var(--white);
}
.rounded-circle {
    border-radius: 50% !important;
}
img {
    vertical-align: middle;
    border-style: none;
}

.avatar-online::after {
    background-color: #10b759;
}
.avatar-offline::after, .avatar-online::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #fff;
}

.dropdown-profile .dropdown-menu.dropdown-menu-right {
    margin-right: -10px;
}
.dropdown-menu-right p{
    line-height: 22px;
}
.dropdown-profile .dropdown-menu {
    border-color: rgba(72, 94, 144, 0.16);
    width: 230px;
    padding: 25px;
    margin-top: 14.5px;
    box-shadow: none;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.tx-13 {
    font-size: 13px;
}
.mg-b-15 {
    margin-bottom: 15px;
}
.avatar-lg {
    width: 64px;
    height: 64px;
}
.tx-semibold {
    font-weight: 600;
}
.tx-color-03 {
    color: #8392a5;
}
.mg-b-25 {
    margin-bottom: 25px;
}
.mg-l-15 {
    margin-left: 15px;
}
.media-body {
    flex: 1;
}

ul.admin-block{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
ul.admin-block li{
    margin: 0;
    padding: 0;
    display: inline-block;
}
ul.admin-block li a{
    margin: 0;
    padding: 0;
    display: block;
    color:var(--primary-second);
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
}

.dropdown-profile .dropdown-item + .dropdown-item {
    margin-top: 10px;
}
.dropdown-profile .dropdown-item {
    padding: 0;
    display: flex;
    align-items: center;
    color: #1b2e4b;
    line-height: 18px;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
    color:var(--primary-first)
}
.dropdown-divider {
    height: 0;
    margin: 15px 0;
    overflow: hidden;
    border-top: 1px solid #e3e7ed;
}

.backdrop {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 21, 32, 0.7);
    z-index: 40;
    transition: all 0.4s;
}
@media (prefers-reduced-motion: reduce) {
    .backdrop {
        transition: none; }
}
.backdrop.show {
    visibility: visible;
    opacity: 1;
}

.search-wrap{
    display: flex;
}
.search{
    display: flex;
    align-items: center;
}
.search-form{
    width: 260px;
    margin-right: 10px;
}
.button-area{
    width: 75%;
    display: flex;
    align-items: center;
}
.button-area button{
    margin:10px 0px;
}
.search-form-control{
    border: 1px solid #c4c4c4;
    height: 40px;
    background: #fff;
    font-weight: 400;
    border-radius: 5px;
    font-size: 15px;
    /*color: #bfc9d4;*/
    letter-spacing: 1px;
    padding: 0px 15px 0px 15px;
}
/*--- header end ---*/

/*--- search bar ---*/
.search-bar{
    background: var(--white);
    padding: 20px 0;
}

.search-bar .time{
    border: 1px solid #c4c4c4;
    box-sizing: border-box;
    border-radius: 5px;
    padding:8px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #C4C4C4;
}

/*--- section ---*/
section{
    background: #A9CCD8;
}
.section-title{
    background: #dfdfdf;
    display: flex;
    padding: 0 50px;
    margin-top: 2px;
}

.section-title .title{
    background: #3F6E7D;
    display: block;
    width: 100%;
    border-radius: 3px;
    position: relative;
}
.section-title .title h6{
    color: var(--white);
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 0;
    text-align: center;
}
.section-title .title h5{
    display: flex;
    position: absolute;
    right: 10px;
    top: 6px;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color:var(--white);
}

.facilitator-notes{
    background: #dfdfdf;
    padding: 2px 0;
    margin: 2px 0;
    display: flex;
}
.column-number {
   width: 5%;
}
.column-number h5{
    margin:0 13px 62px 13px;
}
.column-number h6{
    margin:0px 13px 0px 13px;
}

.column-time{
    background: #5D92A4;
    border: 1px solid #3D7082;
    box-sizing: border-box;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0 5px;
    font-size: 16px;
    color:var(--white);
}

.column-notes{
    background: #5D92A4;
    border: 1px solid #3D7082;
    box-sizing: border-box;
    border-radius: 5px;
    margin:0 2px;
    width: 100%;
}
.column-notes textarea,.column-notes textarea:focus{
    background: #A9CCD8;
    color:var(--white);
}
.column-notes textarea::placeholder{
    color:var(--white);
    font-size: 14px;
}

.column-line{
    width: 10px;;
    border-radius: 15px;
}
.red{
    background: #BD3930;
}
.green{
    background: #30BD3E;
}
.yellow{
    background: #E9D41D;
}
.column-icon{
    margin-left: 2px;
}
.column-icon a{
    display: block;
    color:var(--black);
    font-size: 20px;
    width: 36px;
    text-align: center;
}
.column-icon a:nth-child(2){
    margin: 9px 0;
}

.action-button{
    text-align: center;
}
.action-button a{
    color:var(--black);
    font-size: 16px;
    margin:2px 5px;
}

.column-facilitator{
    width: 70%;
}
.column-producer{
    width: 30%;
}

.column-facilitator,.column-producer{
    background: #5D92A4;
    border: 1px solid #3D7082;
    box-sizing: border-box;
    border-radius: 5px;
    margin:0 2px;
}
.column-facilitator textarea,.column-facilitator textarea:focus,
.column-producer textarea,.column-producer textarea:focus{
    background: #5d92a4;
    color:var(--white);
}
.column-facilitator textarea::placeholder,
.column-producer textarea::placeholder{
    color:var(--white);
    font-size: 14px;
}

.column-image{
    background: #5D92A4;
    border: 1px solid #3D7082;
    box-sizing: border-box;
    border-radius: 5px;
    margin:0 2px;
    padding: 6px;
    width: 30%;
}
.column-image h6{
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--white);
}
.column-image .image-block{
    position: relative;
    margin: 2px;
}
.column-image .image-block i{
    font-size: 40px;
    color: var(--black);
}
.column-image .image-block span{
    font-size: 10px;
    position: absolute;
    right: 5px;
    top: 8px;
    color:var(--white);
}

/*--- right sidebar modal ---*/
#modal_chat .modal-content,#modal_edit .modal-content{
    background: rgba(50, 50, 50, 0.9);
}
.modal-header{
    padding: 10px;
    color:var(--white);
}
.modal-title{
    font-size: 15px;
}
.modal-open .modal {
    padding-right: 0!important;
}
.modal .modal-dialog-aside{
    height: 100%;
    margin:0;
    transform: translate(0);
    transition: transform .2s;
}
.modal .modal-dialog-aside .modal-content{
    height: inherit;
    border:0; border-radius: 0;
}
.modal .modal-dialog-aside .modal-content .modal-body{
    overflow-y: auto
}
.modal.fixed-left .modal-dialog-aside{
    margin-left:auto;
    transform: translateX(100%);
}
.modal.fixed-right .modal-dialog-aside{
    margin-right:auto;
    transform: translateX(-100%);
}
.modal.show .modal-dialog-aside{
    transform: translateX(0);
}

.modal-header .close{
    text-shadow: none;
    color:var(--white);
    opacity:1;
}

/*--- comment section ---*/
.comment-q,.comment-a{
    display: flex;
    border-radius: 3px;
    background:#c4c4c4;
    padding: 5px;
    margin-bottom: 5px;
}
.comment-q .avatar, .comment-a .avatar{
    display: flex;
    color:var(--white);
}
.comment-q .avatar img, .comment-a .avatar img{
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.comment-q .avatar h6{
    font-size: 14px;
    color:var(--black);
    line-height: 20px;
    margin: 5px 0 0 10px;
}
.comment-a .avatar h6{
    font-size: 12px;
    color:var(--black);
    line-height:18px;
    margin: 5px 0 0 10px;
}
.font-12{
    font-size: 12px;
}
.comment-q .dropdown a{
    line-height: 30px;
    color:var(--black);
}
.dropdown-menu a{
    line-height: 18px!important;
    font-size: 12px;
}

.comment-a{
    background:#8d8d8d!important;
    margin-left: 45px;
}

.input-container {
    display: grid;
    grid-template-columns:auto 25px;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
}
input-container.comment-a{
    background: #c4c4c4;
    margin-left: 0px;
}
input-container.comment-q{
    background: #8d8d8d;
    margin-left: 45px;
}
.textarea-container textarea{
    width: 100%;
    border: none;
    background: transparent;
    resize: none;
}
.textarea-container textarea:focus{
    border: none;
    outline: none;
}
.send {
    border: none;
    color:var(--black);
    font-size: 20px;
    height: 25px;
    width: 25px;
}

.edit-form label{
    color: var(--white);
    font-size: 24px;
    margin: 0;
}
.edit-form input,.edit-form textarea{
    background: #c4c4c4;
}

.image-edit-container{
    border-radius: 3px;
    background: #c4c4c4;
    padding: 10px;
    display: flex;
}
.edit-image-block{
    position: relative;
    margin:3px;
}
.edit-image-block i{
    font-size: 55px;
    color: var(--black);
}
.edit-image-block span{
    position: absolute;
    right: 5px;
    top: 10px;
    color:var(--white);
    font-size: 12px;
}


/*---  facilitator/participant---*/
.facilitator-participant-block{
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    padding: 5px;
}
.facilitator-participant-block h1{
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #6B6B6B;
    padding: 100px 0;
    text-align: center;
}

/*--- widget card ---*/
.widget {
    background: #c4c4c4;
    padding: 10px 0 0 0;
    margin: 15px 0;
    position: relative;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
}
.widget .widget-content .header {
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 23px;
    background: transparent;
}

.widget .widget-content .task-action {
    display: flex;
    float: right;
}
.widget .widget-content .task-action a{
    text-decoration: none;
    font-size: 13px;
    padding: 5px 0 0 5px;
    font-weight: 400;
}
.widget .widget-content .task-action .dropdown.custom-dropdown a.dropdown-toggle i {
    color: #111;
}
.widget .widget-content .task-action .dropdown.custom-dropdown a.dropdown-toggle span {
    color: #111;
    font-weight: 600;
}
/*.widget .widget-content .task-action .dropdown.custom-dropdown .dropdown-menu {*/
/*padding: 8px 8px;*/
/*min-width: 10rem;*/
/*border-radius: 6px;*/
/*top: 5px !important;*/
/*left: 20px!important;*/
/*}*/
/*.dropdown:not(.custom-dropdown-icon) .dropdown-menu {*/
/*z-index: 899;*/
/*box-shadow: rgb(113 106 202 / 20%) 0px 0px 15px 1px;*/
/*}*/

.image-block{
    margin: 0 auto;
    text-align: center;
}
.image-block img{
    width: 115px;
}
.image-block h5{
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
}
.content-block{
    padding: 15px;
}
.content-block p{
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.57);
}

.widget-footer{
    text-align: right;
    padding:10px 15px;
}
.widget-footer a{
    color:#000;
}
.widget-footer .dropdown-menu-right a{
    text-decoration: none;
    font-size: 13px;
    padding: 5px 0 0 5px;
    font-weight: 400;
}

.yellow-border{
    border-top:solid 12px #E9D418;
}
.green-border{
    border-top:solid 12px #32DDB4;
}


/*--- footer ---*/
footer{
    padding:30px 70px 20px 70px;
    margin-top: 30px;
    background: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}
.footer-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-menu ul li{
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.footer-menu ul li a{
    margin:0 50px;
    padding: 0;
    display: inline-flex;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 25px;
    color: #484848;
}
.footer-menu ul li a:hover{
    color:var(--primary-first);
}
.footer-menu ul li a:first-child{
    margin-left: 0;
}

.social-link{
    margin-left: auto;
    display: flex;
}
.social-link ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-link ul li a{
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
}
.social-link ul li a i{
    color: #737272;
    font-size: 26px;
}
.social-link ul li a i:hover{
    color:var(--primary-first);
}

/*--- mobile responsive start ---*/
@media screen and (min-width: 1366px) {
    .container {
        max-width: 1240px !important;
    }
}
@media screen and (min-width: 1200px){
    .navbar-menu-wrapper {
        padding: 0 30px;
    }
    .navbar-menu .nav-item + .nav-item {
        margin-left: 30px;
    }
    .navbar-header .navbar-right {
        width: 550px;
    }
    .navbar-header .navbar-right .dropdown:last-child {
        margin-left: 30px;
    }
}

@media screen and (min-width: 992px){
    .modal .modal-dialog-aside{
        width: 600px;
        max-width:80%;
    }
    .navbar-header .navbar-right .dropdown-notification .dropdown-menu {
        margin-top: 19.5px;
    }
    .navbar-header .navbar-right .dropdown:last-child {
        margin-left: 20px;
        display: flex;
        line-height: 40px;
    }
    .navbar-header .navbar-right {
        padding: 0 20px 0 0;
    }
    .navbar-menu .nav-item + .nav-item {
        margin-top: 0;
        position: relative;
        margin-left: 25px;
    }
    .navbar-menu-sub {
        position: absolute;
        top: 41.5px;
        left: -25px;
        background-color: #fff;
        padding: 20px 25px;
        border: 1px solid rgba(192, 204, 218, 0.53);
        margin-top: 0;
        margin-left: 0;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .navbar-menu .nav-item.with-sub .nav-link::after {
        margin-left: 6px;
    }
    .navbar-menu .nav-link {
        font-weight: 400;
        padding: 0;
    }
    .navbar-menu .nav-link img{
        margin-right: 5px;
    }
    .d-lg-none {
        display: none !important;
    }
    .pd-lg-l-25 {
        padding-left: 25px;
    }
    .navbar-menu {
        align-items: center;
        flex-direction: row;
        padding: 0;
    }
    .navbar-menu-header {
        display: none;
    }
    .le-logo {
        font-size: 24px;
    }
    .navbar-menu-wrapper {
        width: 100%;
        padding: 0 70px;
        height: 100px;
        position: relative;
        background-color: var(--white);
        overflow: visible;
        display: flex;
        transform: none;
        z-index: auto;
    }
    .navbar-header .burger-menu {
        display: none;
    }
    .navbar-header .navbar-brand {
        width: 280px;
        height: 60px;
        padding: 0 0 0 70px;
    }
}
@media screen and (min-width: 767px){
    .navbar-header .burger-menu {
        margin-left: 20px;
    }
    .navbar-header .navbar-right {
        padding-right: 70px;
    }
    .navbar-header .navbar-right .dropdown {
        margin-left: 15px;
    }
    .dropdown-message .dropdown-link svg, .dropdown-notification .dropdown-link svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.25px;
    }
    .navbar-header .navbar-right .dropdown-notification .dropdown-menu {
        margin-right: -20px;
    }
    .navbar-header .navbar-right .dropdown-notification .dropdown-menu::before {
        right: 20px;
    }
    .navbar-header .navbar-right .dropdown-notification .dropdown-menu::after {
        right: 21px;
    }
}
@media screen and (max-width: 991.98px) {
    footer {
        padding: 30px 15px 25px 15px;
    }
    .navbar-header .navbar-right {
        padding-right: 15px;
    }
    .navbar-menu .nav-label {
        width: 100%;
    }
    .navbar-menu .nav-item.active .nav-link {
        color: var(--primary-first);
        display: block;
        width: 100%;
    }
    .navbar-menu {
        flex-direction: row;
    }
    .sidebar-show .backdrop {
        opacity: 1;
        visibility: visible;
        left: 0px;
    }
    .navbar-menu .nav-link {
        color: var(--primary-first);
        font-weight: 300;
        margin: 10px 0;
    }
    .navbar-menu .nav-link img{
        margin-right: 15px;
        width: 25px;
        height: 25px;
    }
    .navbar-menu .nav-item + .nav-item {
        display: block;
        width: 100%;
        position: relative;
    }
    .nav-link span {
        right: 40px;
        top: 0px;
    }
    .navbar-menu {
        flex-direction: none;
    }
    .navbar-nav-show {
        overflow: hidden;
    }
    .navbar-nav-show .navbar-menu-wrapper {
        transform: translateX(0);
        height: 100%;
    }
    .navbar-nav-show .backdrop {
        opacity: 1;
        visibility: visible;
        left: 260px;
    }
    .sidebar-show {
        overflow: hidden;
        position: relative;
    }
    .sidebar-show .sidebar {
        left: 0;
        box-shadow: 0 0 50px rgba(28, 39, 60, 0.06); }
    .sidebar-show .off-canvas-pusher {
        position: static;
    }
    .sidebar-show .off-canvas {
        display: none;
    }
    .sidebar-show .backdrop {
        opacity: 1;
        visibility: visible;
        left: 260px;
    }
    .le-logo {
        font-size: 20px;
        color:var(--white)
    }
    .le-logo-sidebar {
        font-size: 20px;
        color: var(--primary-first);
    }
}

@media screen and (max-width: 640px){
    .le-logo {
        font-size: 15px;
        color:var(--white)
    }
    .navbar-header .navbar-brand {
        padding-left: 10px;
    }
    .avatar {
        width: 30px;
        height: 30px;
    }
    .avatar-profile {
        margin-right: 10px;
    }
    .avatar-profile h5 {
        display: none;
    }
    .avatar-profile h6 {
        font-size: 12px;
    }
    .avatar-profile {
        margin-left: 0px;
    }
    .bottom-content h2 {
        font-size: 20px;
        line-height: 26px;
    }
    .heading-title h1 {
        font-size: 22px;
        line-height: 26px;
    }
    .footer-menu ul li a {
        margin: 0 10px;
    }
}
/*--- mobile responsive end ---*/

.dropdown-toggle::after {
 display:none!important;
}
.btn{
    padding: 0.375rem 0.75rem!important;
    padding-top: 0.375rem!important;
    padding-right: 0.75rem!important;
    padding-bottom: 0.375rem!important;
    padding-left: 0.75rem!important;
}
[contenteditable=true]{
    background-color: transparent!important;
}