.cms-header{
  grid-area: header;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
 
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  padding: 0 16px;
 
  background: rgba(22,22,23,0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
 
 
.cms-main{
  padding-top: 36px;
}
 
.cms-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  color: #e8e8ed;
  opacity: .95;
  text-decoration: none;
}
.cms-brand__logo img{
  height: 22px;
  width: auto;
  display: block;
  /* filter: invert(1); */
}
.cms-brand__title{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  display: none;
}
 
.cms-header__actions{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
 
.cms-icon-btn{
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  height: 44px;
  display: inline-flex;
  align-items: center;
}
.cms-icon-btn svg{
  width: 15px;
  height: 44px;
  fill: #fff;
  opacity: .85;
  transition: opacity .2s;
}
.cms-icon-btn:hover svg{ opacity: 1; }
 
.cms-burger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 44px;
}
.cms-burger svg{
  width: 16px;
  height: 16px;
  fill: #fff;
}
 
.cms-nav-toggle{ display: none; }
 
.cms-sidebar{
  color: #fff;
}
 
.cms-navigation{
  padding: 12px 0;
}
 
.cms-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.cms-menu li{ margin: 0; }
.cms-menu a{
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #fff;
  opacity: .92;
  text-decoration: none;
  transition: opacity .2s;
}
.cms-menu a:hover{ opacity: 1; }
.cms-menu a.active{
  font-weight: 600;
  opacity: 1;
}
 
.cms-menu ul{
  list-style: none;
  margin: 0;
  padding-left: 16px;
}
 
.cms-main{
  grid-area: main;
  min-width: 0;
}
 
@media (max-width: 1023px){
 
  .cms-layout{
    grid-template-columns: 1fr;
    grid-template-rows: 44px 1fr;
    grid-template-areas:
      "header"
      "main";
  }
 
 
  .cms-nav-toggle:checked ~ .cms-sidebar{
    display: block;
  }
 
  .cms-main{
    padding-top: 44px;
  }
}
 
@media (min-width: 1024px){
 
  .cms-sidebar{
    top: 0px;
    overflow: auto;
  }
 
 
}


.cms-header{
  justify-content: center;     
  gap: 18px;                   
}


.cms-sidebar{
  display: flex;
  align-items: center;
}


.cms-navigation{
  padding: 0;
}


.cms-menu{
  display: flex;              
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;                  
}


.cms-menu ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 0;            
}


.cms-menu li{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  text-transform: lowercase;
}


.cms-menu a{
  padding: 0 14px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .01em;
  text-transform: capitalize;
}




.cms-menu a,
.cms-brand__title{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "SF Pro Display", system-ui, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;      
  font-size: 12.5px;      
  letter-spacing: .02em;   
  color: #f5f5f7;         
}


.cms-menu a.active{
  font-weight: 500;
  opacity: 1;
}


.cms-menu a:hover{
  opacity: .85;
}
