@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html
{
    scroll-behavior: smooth;
}

.nav-header{
    position: fixed;
    width: 280px;
    height: 72px;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.nav-header .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.nav-header .logo a img{
    width: 45px;
    height: 45px;
    margin: 10px;
}
.nav-header .logo a h3{
    font-size: 1.8em;
    color: black;
}

.burger-control {
    cursor: pointer;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    font-size: 1.4rem;
    padding: 2px 0.5rem 0;
    border-radius: 2px; }
    @media only screen and (max-width: 1023px) {
      .nburger-control {
        right: -45px; } }
    @media only screen and (max-width: 767px) {
      .burger-control {
        right: -2.75rem; } }
    @media only screen and (max-width: 575px) {
      .burger-control {
        right: -3rem; } }
  
  .icon-burger {
    display: inline-block;
    left: 0px;
    position: relative;
    top: 3px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 26px;
    z-index: 999; }
  
  .icon-burger .bars {
    background: #eb8153;
    display: block;
    height: 3px;
    border-radius: 3px;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  
  .icon-burger .bars:nth-child(1) {
    width: 20px; }
  
  .icon-burger .bars:nth-child(2) {
    width: 26px; }
  
  .icon-burger .bars:nth-child(3) {
    width: 22px; }
  
  .icon-burger:hover {
    cursor: pointer; }
  
  .icon-burger:hover .bars {
    width: 26px; }

.icon-burger.is-active .bars:nth-child(1),
.icon-burger.is-active .bars:nth-child(3) {
    width: 10px;
    height: 2px; }

.icon-burger.is-active .bars:nth-child(2) {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    width: 22px;
    height: 2px; }

.icon-burger.is-active .bars:nth-child(1) {
    -webkit-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg); }

.icon-burger.is-active .bars:nth-child(3) {
    -webkit-transform: translateY(-4px) rotate(-45deg);
    transform: translateY(-4px) rotate(-45deg); }


.side-bar {
  width: 17.5rem;
  padding-bottom: 0;
  height: calc(100% - 72px);
  position: fixed;
  top: 4.5rem;
  padding-top: 0;
  z-index: 4;
  background-color: #fff;
  transition: all .2s ease;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.02); 
  overflow-y:scroll;

}  
.side-bar::-webkit-scrollbar{
    background-color: #DAE2F3;
    width: 4px;
    top: 0px;
    height: 322px;
    transform: rotate(180deg);
    
}
.side-bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
.side-bar::-webkit-scrollbar-thumb{
    background: #939090;
}
.side-bar::-webkit-scrollbar-thumb:hover{
    background: #656363;
}
.side-bar .welcome {
    text-align: center;
    padding: 20px 0px;
    position: relative; 
}
.side-bar .welcome .name {
    margin-bottom: 2px; 
}
.side-bar .welcome .name .hello{
    font-weight: 400;
}
.side-bar .welcome .email {
    margin-bottom: 0;
    font-size: 12px; 
}

.side-bar .side-menu{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 15px;
}

.side-bar .side-menu .menu-label{
    list-style-type: none;
    margin: 10px 25px 0;
    padding: 1.5625rem 0 10px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05rem;
    border-top: 1px solid #eaeaea;
    color: #999999;

}

.side-bar .side-menu .menu-icon{
    display: flex;
    justify-content: space-between;
    color: #000;
    text-decoration: none;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 25px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.side-bar .side-menu .menu-icon .icon{
    color: #969BA0;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    padding: 0 1rem 0 0;
    position: relative;
    top: 0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 1;
}
.side-bar .side-menu > li > a .menu-name {
    flex-grow: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}
.side-bar .side-menu > li > a:hover .menu-name {
    transform: translateX(10px);

}

.side-bar .side-menu .menu-icon .arrow{
    color: #969BA0;
}
.showMenu .arrow{
    transform: rotate(90deg);
}
.dropdown-list{
    display: flex;
    flex-direction: column;
    margin-left: 60px;
}

.dropdown-list a{
    text-decoration: none;
    color: inherit;
}
.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header */

header{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    background: #fff;
}
header .header-content{
    height: 100%;
    width: calc(100% - 280px);
}
nav{
    height: 4.5rem;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .left-nav .search-groupe{
    display: flex;
}
nav .left-nav input{
    border-radius: 0.5rem;
    border: 0;
    background: #f7f7f7 !important;
    height: 40px;
    padding: 0 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
nav .left-nav input:focus-visible{
    outline: 0 !important ;
}
nav .left-nav .search-groupe .search-btn{
    background: #f7f7f7;
    padding: 0 15px;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
nav .left-nav .search-groupe .search{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #7e7e7e;
    height: 40px;
}
nav .right-nav ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .right-nav ul li{
    padding: 0 1rem;
}
nav .right-nav ul .notification a{
    text-decoration: none;
}
nav .right-nav ul .notification a i {
    font-size: 24px;
    color: #000;
}
nav .right-nav .profile-nav{
    border-left: 1px solid #EEEEEE;
    padding-left: 30px;
}
nav .right-nav .profile-nav img{
    width: 39px;
    height: 39px;
    border-radius: 0.5rem;
    margin-right: 10px;
}

nav .right-nav ul .profile-nav a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
nav .right-nav ul .profile-nav a .profile-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
nav .right-nav .profile-nav .profile-info span{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    display: block;
}
nav .right-nav .profile-nav .profile-info small{
    display: block;
    font-size: 12px;
    color: #89879f;
    font-weight: 400;
    line-height: 1.2;
}

.sub-head{
    padding: 5px 40px;
    height: 3rem;
    display: flex;
    background-color: #fff;
    align-items: center;
    border-top: 1px solid #EEEEEE;
}
.sub-head .sub-left h5{
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}


/* Content Body */

.content-body{
    min-height: 798px;
    padding-top: 7.6rem;
    background: #f7f7f7;
    width: calc(100% - 280px);
    margin-left: auto;

}
.content-body .container{
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
    border-radius: 20px;

}
table thead td{
    font-weight: 600;
    border-radius: 30px;
}
table tr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    
}
table tr:last-child{
    border-bottom: none;
}
table tbody tr:hover{
    background: #eb8153;
    color:rgb(253, 253, 253);
    border-radius: 10px;
}

table tr td{
    padding: 10px;
}
table tr td:last-child{
    text-align: end;
    width: 18%;
}
table tr td{
    text-align: center;
}
.btnView{
    padding: 2px 5px;
    background: #eb8153;
    color: rgb(253, 253, 253);
    border-radius: 8px;
    text-decoration: none;
}
table tbody tr:hover .btnView {
    background: rgb(253, 253, 253);
    color:#eb8153;
}

form{
    background: #fff;
    padding: 10px;
    box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgb(82 63 105 / 5%);
    border-radius: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
}
form p{
    margin: 10px;
}
form input[type=text]{
    border-radius: 10px;
    color: #6e6e6e;
    height: 50px;
    border: 2px solid #EEEEEE;
    padding: 20px;
    margin: 10px;
    width: 500px;
}
form input[type=text]:hover{
    border: 2px solid #eb8153;
}
form .DescriptionConf{
    border-radius: 10px;
    color: rgb(110, 110, 110);
    border: 2px solid rgb(238, 238, 238);
    padding: 20px;
    margin: 10px;
    width: 500px;
    height: 140px;
    resize: none;
}
form .chk{
    display: flex;
    justify-content: start;
}
form input[type=button]{
    border-radius: 10px;
    background: #eb8153;
    color: #fff;
    width: 100px;
    height: 45px;
    margin: 10px;
    border: none;
    transition: all 0.5s;
}
form input[type=button]:hover{
    border: 1px solid #eb8153;
    background: #fff ;
    color: #eb8153;
}

form input[type=submit]{
    border-radius: 10px;
    background: #eb8153;
    color: #fff;
    width: 100px;
    height: 45px;
    margin: 10px;
    border: none;
    transition: all 0.5s;
}
form input[type=submit]:hover{
    border: 1px solid #eb8153;
    background: #fff ;
    color: #eb8153;
}


.setup{
    border-bottom: 2px solid #EEEEEE;
}
.controlbtn{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
}
.controlbtn .ctrl{
    text-decoration: none;
    border: 1px solid #eb8153;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    background: #eb8153;
    transition: all .5s;
}
.controlbtn .ctrl:hover{
    color:#eb8153;
    background:#fff;
}
.setup .details h3{
    color: #eb8153;
    margin-bottom: 30px;
}
.setup .details input[type="text"]{
    border-radius: 10px;
    color: #6e6e6e;
    height: 50px;
    border: 2px solid #EEEEEE;
    padding: 20px;
    margin: 10px;
    width: 600px;
    
}
.setup .details select{
    border: 1px solid #eb8153;
    border-radius: 10px;
    padding: 10px;
    background: #eb8143;
    color: #fff;
    margin: 10px;
    width: 120px;
}
.setup .details .sectiondetails{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background: #fff;
    box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgb(82 63 105 / 5%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0px;
}
.setup .details input[type=button]{
    border-radius: 10px;
    background: #eb8153;
    color: #fff;
    width: 100px;
    height: 45px;
    margin: 10px;
    border: none;
    transition: all 0.5s;
}
.setup .details .chk{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 30px 0px 10px;
}
.setup .details input[type=button]:hover{
    background: #fff;
    color: #eb8153;
    border: 1px solid #eb8153 ;
}

.description{

}
.plainManager{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.plainManager li{
    list-style-type: none;
    border-radius: 20px;
    padding: 40px;
    margin: 10px;
    text-decoration: none;
    background: #fff;
    color: #000;
    box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgb(82 63 105 / 5%);
}
.conferenceHost table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    padding: 0 10px;
    background: #fff;
    border-radius: 20px;
}
.conferenceHost table tbody td{
    text-align: center;
}
.conferenceHost table tbody td a{
    text-decoration: none;
    color: #000;
}
.conferenceHost table tbody td .action{
    padding: 5px 15px;
    background: #eb8143;
    color: rgb(253, 253, 253);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.5s;
}
.conferenceHost table tbody td .action:hover{
    background: rgb(253, 253, 253);
    color:#eb8143;
    border: 1px solid #eb8143;
}
.conferenceHost table tbody td .edit{
    padding: 5px 15px;
    background: #28a745;
    color: rgb(253, 253, 253);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.5s;
}
.conferenceHost table tbody td .edit:hover {
    background: rgb(253, 253, 253);
    color:#28a745;
    border: 1px solid #28a745;
}
.conferenceHost table tbody td .delete{
    padding: 5px 15px;
    background: #dc3545;
    color: rgb(253, 253, 253);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.5s;
}
.conferenceHost table tbody td .delete:hover {
    background: rgb(253, 253, 253);
    color:#dc3545;
    border: 1px solid #dc3545;
}