#mycustom {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #cdcccc;
}
#mycustom button {
    background: none;
    border: none;
    font-size: 30px;
    padding: 30px 30px;
    border-right: 1px solid #cdcccc;
}

.siteToggler{
    border-right: 1px solid #cdcccc;
}

.menu-button {
  display: block;
  width: 30px;
  margin: 30px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
  position: relative;
}
.menu-button.button-7 {
  transform: rotate(180deg);
}
.menu-button s {
  display: block;
  height: 2px;
  width: 30px;
  background: #000;
  transition: transform 0.5s ease-in-out;
}
.menu-button s:before, .menu-button s:after {
  display: block;
  width: inherit;
  height: 2px;
  left: 0;
  background: inherit;
  content: "";
  position: absolute;
  transition: transform 0.5s ease-in-out;
}
.menu-button s:before {
  bottom: 400%;
}
/*.menu-button s:after {
  top: 400%;
}*/

.menu-button.open.button-7 {
  transform: rotate(90deg);
}
.menu-button.open s {
  transform: rotate(90deg);
}
.menu-button.open s:before {
    transform: translateX(5px) translateY(-2.5px) rotate(45deg);
}
.menu-button.open s:after {
    transform: translateX(5px) translateY(10.5px) rotate(-45deg);
}

.site-branding {
    display: flex;
    align-items: center;
}
.site-branding img {
    width: 213px;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 300px;
    position: fixed;
    top: 63px;
    left: 0;
    height: 100vh;
    z-index: 999;
    border-right: 1px solid rgb(250 250 250 / 20%);
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -300px;
}

#sidebar ul.components {
    border-bottom: 1px solid rgb(250 250 250 / 20%);
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: #e6e6e6;
    text-decoration: none;
}

#sidebar ul.components p {
    margin: 0;
    padding: 15px 10px 10px 10px;
    color: #4fbeed;
    border-bottom: 1px solid rgb(250 250 250 / 20%);
    font-weight: 600;
    margin-bottom: 10px;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

.fsrightmenu{
    background: #ffffff;
}

.fsrightmenu ul li a {
    color: #333333 !important;
}

.fsrightmenu ul.components p{
    border-bottom: 1px solid #cdcccc !important;
}

.fsrightmenu{
    border-right: 1px solid #cdcccc !important;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
.customslider {
    height: 100vh;
    position: relative;
}
.customslider img{
    width: 100%;
    height: 100%;
}
.customslider:before {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    background: #0e0e15a3;
    content: '';
}

.mainecontainer {
    position: relative;
}

#content {
    width: calc(100% - 300px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -300px;
        background: #fff;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
    .customslider{
        height: auto;
    }
    #sidebar ul li a{
        color: #333333;
    }
    #sidebar ul.components p {
        border-bottom: 1px solid #cdcccc;
    }
}



