
:root {
    	--cm-text-color: #292220;
	--cm-base-color: #FFFFFF;
	--cm-point-color: #FFC107;
		--cm-base-color-bb: #7d7d7d;	
	--cm-base-color-b: #e1e1e1;
	--cm-base-color-d:  #e1e1e1;
	--cm-base-color-dd:  #7d7d7d;
	--cm-point-color-bb: #ffff61;	
	--cm-point-color-b: #ffe92f;
	--cm-point-color-d:  #e1a300;
	--cm-point-color-dd:  #7d3f00;
	--cm-point-color-v:  #ffff0a;
	--cm-point-color-t:  rgba(255, 193, 7, 0.22);
  --cm-point-color-r: #acff07;
  --cm-point-color-r-t: rgba(172, 255, 7, 0.22);
  --cm-base-color-t:  rgba(255, 255, 255, 0.22);
	--cm-text-color-t:  rgba(41, 34, 32, 0.22);
	--cm-base-color-auto: #000000;
	--cm-text-color-auto: #ffffff;
	--cm-point-color-auto: #000000;
	--cm-base-color-auto-t: #00000026;
	--cm-text-color-auto-t: #ffffff26;
	--cm-point-color-auto-t: #00000026;
  --cm-point-color-auto-tt: #00000060;

    --cm-default-font: SUIT-Regular;
  --cm-title-font: SUIT-Regular;
  --cm-ani: 0.6s;
  --cm-radius: 5px;
  --cm-padding: 10px;
  --cm-form-basecolor: #fbfbfb;
  --cm-form-basecolor-t: #fbfbfb75;
  --cm-form-textcolor: #1d1d1d;
}

  header#header {
  left: 0;
  width: 0px;
  z-index: 99;
  pointer-events: none;
  }
  header ~ section#body {
  margin: 0;
  }

.custommenu-wrapper {
  flex-direction: column;    align-items: flex-start;
      justify-content: center}

.custommenu {
  flex-direction: column;
  width: auto;
  height: auto;
  left: 120px;
  font-size: 13px;
  border: 0px solid var(--cm-text-color-t);
  border-radius: 5px;
  justify-content: center;
  }

.custommenu-item {
  padding: 10px;
  margin: 3px 0 3px 0;
  width: 100%;
}

.custommenu-folder::before {
  margin-right: 10px;
}



.custommenu-icon {
    width: 20px;
  height: 20px;
  }

.custommenu-icon i,
.custommenu-icon .material-icons {
  font-size: 20px;
}

.custommenu-divider {
  height: 0px;
  width: 100%;
  border-bottom: 1px solid var(--cm-text-color-t);
}

.custommenu-get-background{
  background-image: url('https://cozeepot.ivyro.net:443/data/site/design_background.png');
}

.cm-window.custommenu-wrapper .custommenu {
    flex-wrap: wrap;
  width: 140px;
  height: auto;
    border-radius: 5px;
  box-sizing: content-box;
  border: 0px solid var(--cm-text-color);
  padding-top: 30px;
  box-shadow: 
    inset 1px 1px 0 var(--cm-base-color-bb),
    inset -1px -1px 0  var(--cm-base-color-dd),
    inset 2px 2px 0  var(--cm-base-color-b),
    inset -2px -2px 0  var(--cm-base-color-d),
    2px 2px 2px rgba(0, 0, 0, 0.25);
  background: var(--cm-base-color);
  flex-direction: row;
  animation: window_open var(--cm-ani);
}
.cm-window .custommenu .custommenu-item.custommenu-sub {
  display: none;
}

.cm-window .custommenu-subwindow .custommenu-item.custommenu-sub {
  display: flex;
}

.cm-window .custommenu.custommenu-subwindow {
    flex-wrap: wrap;
  left: calc(150px + 120px);
    animation: window_open var(--cm-ani);
}

@keyframes window_open {
  0%{
    padding-top: 0px;
    opacity: 0;
  }
  100%{
    padding-top: 30px;
    opacity: 1;
  }
}

.cm-window .custommenu .custommenu-item {
  flex-direction: column;
  
  justify-content: center;
      width: calc(50% - (3px * 2));
  }

.cm-window .custommenu-item:hover .custommenu-name {
  text-shadow: none;
}

.cm-window .custommenu .custommenu-item .custommenu-name {

  width: auto;
  flex-shrink: 0;
  line-height: normal;
  -webkit-line-clamp: 2;
  word-break: auto-phrase;
  max-height: 3em;
  text-align: center;
  white-space: normal;
}

.cm-window .custommenu-icon {
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  margin-bottom: 2px;
}

.cm-window .custommenu .custommenu_header_d {
  display: flex;
  position: absolute;
  background: var(--cm-point-color);
  height: 24px;
  width: calc(100% - 18px);
  padding: 0 6px;
  top: 3px;
  border-radius: 5px 5px 0 0;
  border: 0;
  background: #FFC107;
  color: var(--cm-point-color-auto);
  font-size: 11px;
  font-weight: bold;
  align-items: center;
  
  font-family: var(--cm-title-font);
}

.cm-window .custommenu .custommenu_header_d::before {
  font-family: 'Material Icons';
  content: 'arrow_right';
  font-size: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

.cm-window .custommenu .custommenu_header_d::after {
  content: 'cozeepot';
  font-size: 14px;
}

.cm-window .custommenu-item:hover .custommenu-name {
  background: var(--cm-point-color);
  color: var(--cm-point-color-auto);
}

.cm-window .custommenu-folder .custommenu-icon::after {
  font-family: 'Font Awesome 5 Free'; 
  content: '\f0d7';
  font-weight: 900; 
    position: absolute;
  right: -8px;
  top: -5px;
  background: #292220;
  border-radius: 100%;
  border: 2px solid #fff;
  color:#fff;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-window .custommenu-folder.active .custommenu-icon::after,
.cm-window .custommenu-folder.open .custommenu-icon::after {
  content: '\f0d8';
}

.cm-window .custommenu-folder::before {
  display: none;
}