/* fonts ============================================================ */
@font-face {
  font-family: reevo;
  src: url("font/Lalezar-Regular.ttf");
  font-display: swap;
}
/* set root vars ====================================================*/
:root {
  /* colour scheme */
  --color-one: rgba( 9, 21, 64, 1);
  --color-onea: rgba( 9, 21, 64, 0.95);
  --color-two: rgba( 118, 146, 255, 1); /* used as select */
  
  --color-threea: rgba( 171, 210, 250, 0.5);
   
  --color-five: rgba( 27, 44, 193, 1); /* blue */ 
  --color-six: rgba(150,150,150, 0.3); /* nonactive */
  --color-seven: rgba(80,80,80, 1); /* nonactive */
  --color-eight: rgba(200,200,200, 1); /* nonactive */ 
  --color-nine: rgba(81,81,81,1); /* upload list element non actine */
  
  
  
  
  /* text */
  --color-text: rgb( 220, 220, 220 ); /* standard color */
  --color-textHigh: rgb( 9, 21, 64 ); /* highlight color */
  --color-lessText: rgb( 120, 120, 120 ); /* less important color */
  --color-disText: rgb( 70, 70, 70 ); /* disabled color */
  /* main colors */
  --color-three: rgb( 171, 210, 250 ); /* used as highlight */
  --color-four: rgb( 61, 81, 140 ); /* bold color */
  /* status tag on top app menu */
  --color-yes-back: rgb( 0, 200, 0 );
  --color-yes: rgb( 0, 100, 0 );
  --color-no-back: rgb( 200, 200, 200 );
  --color-no: rgb( 100, 100, 100 );
  /* background highlights */
  --color-bkone: rgba( 40, 40, 40, 0.5 );
  --color-bkTwo: rgba( 0, 0, 0, 0.3 );
  /* button back colors */
  --color-active: rgb( 171, 210, 250 );
  --color-standard: rgb( 70, 70, 70 );
  --color-inActive: rgb( 50, 50, 50 );
 
  
}
/* text styles ======================================================*/
.attentionText {
  color: yellow;
  font-weight: bold;
  font-size: 16pt;
  margin: 30px 0 30px 0;
}
/* disabled =========================================================*/
button:disabled, button[disabled] {
  cursor: not-allowed !important;
  color: var(--color-disText);
  background-color: var(--color-inActive);
}
/* tags =============================================================*/
body {
  margin: 0;
  padding: 0;
  font-family: Poppins,Helvetica,Arial,sans-serif;
  background-color: rgb( 0, 0, 0 );
  color: var( --color-text );
}
a {
    color: inherit; /* blue colors for links too */
    text-decoration: none; /* no underline */
}
h1 {
  font-family: reevo;
  font-size: 4rem;
  margin: 5px auto 15px auto;
  color: #0038ff;
  line-height: 1;
}
h2 {
  display: block;
  font-family: reevo;
  font-size: 3rem;
  margin: 30px auto 15px auto;
  color: #0038ff;
  line-height: 1;
  
}
ul {
  margin: 5px auto 5px auto;
}
button {
  cursor: pointer;
}
iframe {
  width: 100%;
  height: 600px;
}
section {
  position: relative;
  opacity: 1;
  transition: opacity 2s;
  
}
header {
  position: relative;
  z-index: 2;
}
main {
  position: relative;
  z-index: 1
}
/* top main page menu ===================================================*/
.menuContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.menuContainer > div {
  display: flex;
  text-align: center;
  padding: 0 1vw 0 1vw;
  height: 100px;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.menuContainer > div:first-child {
  border-left: none;
}
.menuContainer > div:hover {
  background: linear-gradient(to bottom, var(--color-three), transparent );
}
.menuContainer img {
  min-width: 28px;
  width: 3vw;
}
#appsList {
  display: block;
  height: 20px;
}
#appCon {
  padding-top: 10px;
}
#appCon:hover {
  
  background-color: var(--color-four);
  
}
#appid {
  
  height: 20px;
 
}
/* logo =============================================================*/
.logo div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;  
}
.logo img {
  min-width: 75px;
  max-width: 150px;
  width: 6vw !important;
  max-height: 100px;
}
.logo b {
  font-size: 16pt;
}
/* top app menu =====================================================*/ 
#mainMenu {
  position: absolute;
  display: none;
  background-color: var( --color-four );
  padding: 20px;
  border-radius: 10px;
  color: var( --color-text);
  overflow: hidden;
  z-index: 1000;
  left: 10%;
  right: 10%;
}
#mainMenu > div {
  max-height: 500px;
  overflow-y: scroll;
  scrollbar-width: none;  /* Firefox */
}
#mainMenu > div > div  {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px; 
  border-bottom: 1px solid rgba( 255, 255, 255, 0.1);
}
#mainMenu > div > div:last-child  {
  border-bottom: none;
}
#mainMenu > div > div:hover {
  background-color: var( --color-three );
}
#mainMenu img {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
}
#mainMenu a {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 10px;
  flex-grow: 1;
  vertical-align: middle;
}
#mainMenu .sub {
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
  
}
#mainMenu .yesSub {
  background-color: var( --color-yes-back );
  color: var( --color-yes );
}
#mainMenu .noSub {
  background-color: var( --color-no-back );
  color: var( --color-no );
}
.select {
  position: relative;
  background: linear-gradient(to bottom, var(--color-two), transparent ) !important;
  
  z-index:101;
}
/* footer text =======================================================*/
.footer {
  text-align: center;
  padding: 3%;
}
/* main content blocks ==============================================*/
.contentBlock {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  
}
.evenSplit {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  
}

.blank {
  height: 200px;
}
.strech {
  align-items: stretch;
}
.center {
  align-items: center;
  text-align: center;
}
.inline {
  display: inline-block !important;
}
.contentPadding {
  padding: 2% 8% 2% 8%;
}
.noMargin {
  margin: 30px 0 0 0 !important;
  padding: 0 !important;
}
.noMargin a {
  margin: 0 !important;
}
.sectionHalf {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 100px;
  margin: 1% ;
  z-index: 1;
  overflow: hidden;
}
.sectionHalf h1, .sectionHalf h2 {
  text-align: center;
  max-width: 700px;
}
.sectionHalf p {
  vertical-align: middle;
  text-align: center;
  margin: auto;
  max-width: 550px;
  padding: 0 10px 0 10px;
}
.sectionHalf a, .list a, button, .sectionFull a, .customButtons > button, .customButtons > div, .customSearchInput {
  display: block;
  position: relative;
  text-align: center;
  margin: 10px auto 10px auto;
  max-width: 250px;
  background-color: var( --color-standard );
  color: var( --color-lessText );
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  transition: 1s all;
  box-shadow: 0 0 5px 2px rgba( 30, 30, 30, 0.5 );
}
.sectionHalf a:hover, .list a:hover, button:hover:enabled, .sectionFull a:hover, .customSearchInput:hover, .customButtons > div:hover {
  background-color: var(--color-active);
  color: var( --color-textHigh );
}
.sectionFull {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.imageContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.imageContainer img {
  flex-grow: 1;
  min-height: 100px;
  min-width: 100px;
  margin: 2%;
  max-height: 150px;
  max-width: 150px;
}
/* background colors ================================================*/
.titleFade {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient( 45deg, rgba(0,0,0, 1) 10%, transparent 80%), linear-gradient( -45deg, rgba(0,0,0, 1) 10%, transparent 80%);
  z-index: 1;
}
.titleBack {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center top;
  background-size: contain;
  opacity: 0.3;
  z-index: 0;
}
.materialBack {
  background-image: url("/images/pages/material-background.jpg");
}
.textureBack {
  background-image: url("/images/pages/texture-background.jpg");
}
.partBack {
  background-image: url("/images/pages/part-background.jpg");
}
.backR {
  background: linear-gradient( -45deg, rgba(200,200,200, 0.2), transparent );
}
.backT {
  background: linear-gradient( -45deg, rgba( 70, 70, 70, 0.8), rgba( 50, 50, 50, 0.9)  );
}
.backRN {
  background: rgba(100, 100,100, 0.8);
}
.backL {
  background-image: linear-gradient( 45deg, rgba(200,200,200, 0.2), transparent );
}
.backRT {
  background-image: linear-gradient( to top, black 80%, transparent);
}
.backTop {
  background-image: linear-gradient( to top, rgba(200,200,200, 0.2), transparent );
}
.backBott {
  background-image: linear-gradient( to bottom, rgb(50,50,50) 50%, transparent );
}
.backBot {
  background-image: linear-gradient( to bottom, rgba(100,100,100, 1) 50%, transparent );
}
.backBottt {
  background-image: linear-gradient( to bottom, rgba(200,200,200, 0.2), transparent );
}
/* video backgrounds ================================================*/
.vidContainer {
  position: relative;
  opacity: 1;
  overflow: hidden;
  z-index: 0;
  height: 200px;
  text-align: center;
}
.vidContainer video {
  opacity: 1;
  margin: auto;
 
}
.vHome {
  background-image: 
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/home.gif");
}
.vTexture {
  background-image:
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/texture.gif");
}
.vMaterial {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( to left, rgba(0,0,0, 1), transparent 60%), 
    linear-gradient( to right, rgba(0,0,0, 1), transparent 60%), 
    linear-gradient( to top, rgba(0,0,0, 1), transparent 60%),
    linear-gradient( to bottom, rgba(0,0,0, 1), transparent 60%);
  z-index: 1;
}
.vPart {
  background-image:
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/part.gif");
}
.vDecal {
  background-image:
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/decal.gif");
}
.vEnvironment {
  background-image:
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/environment.gif");
}
.vProduct {
  background-image:
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/product.gif");
}
.vPackaging {
  background-image: 
    linear-gradient( to top, rgba( 0, 0, 0, 1), transparent 90%),
    linear-gradient( to left, rgba( 0, 0, 0, 1), transparent 60%), 
    linear-gradient( to right, rgba( 0, 0, 0, 1), transparent 60%), 
    url("/video/product.gif");
}
/* image background ==================================================*/
.material-circle {
  background-image: url("/images/icon/reevo3D/material-circle.svg");
}
.texture-circle {
  background-image: url("/images/icon/reevo3D/texture-circle.svg");
}
.part-circle {
  background-image: url("/images/icon/reevo3D/part-circle.svg");
}
.product-circle {
  background-image: url("/images/icon/reevo3D/product-circle.svg");
}
.packaging-circle {
  background-image: url("/images/icon/reevo3D/packaging-circle.svg");
}
.decal-circle {
  background-image: url("/images/icon/reevo3D/decal-circle.svg");
}
.environment-circle {
  background-image: url("/images/icon/reevo3D/environment-circle.svg");
}
.edit-square {
  background-image: url("images/icon/zwicon-v11/svg/edit/edit-square.svg");
}
.content-note {
  background-image: url("images/icon/zwicon-v11/svg/content/note.svg");
}
.interface-trash {
  background-image: url("images/icon/zwicon-v11/svg/interfaces/trash.svg");
}
.interface-add-to-list {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/add-to-list.svg");
}
.interface-add-note {
  background-image: url("images/icon/zwicon-v11/svg/interfaces/add-note.svg");
}
/* app list ===================================================*/
.list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: stretch;
}
.list > div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 300px;
 
  text-align: center;
  padding: 20px;
  margin: 5px 10px 5px 10px;
  overflow: hidden;
}
.list > div > img {
  width: 40px !important;
  display: inline-block;
  background-color: rgba( 50, 50, 50, 0.8);
  padding: 15px;
  border-radius: 50%;
}
#appList > div {
  background-image: linear-gradient( to top, var(--color-bkone), transparent );
  border-radius: 30px;
}
.softwareList {
  
 
  display: flex;
 
  justify-content: center;
}
.softwareList > div {
  flex-grow: 1;
  flex-shrink: 1;
  margin: 10px;
}
.softwareList img {
  width: 50px;
  margin: 5px;
}
.softwareList b {
  display: block;
}
.listColumn {
  margin: 10px 0 10px 0;
  padding: 20px;
  border-radius: 10px;
}
.dataTable {
  margin: 10px 0 10px 0;
  padding: 20px;
  border-radius: 10px;
}
.dataTable > div {
  height: 200px;
  overflow-y: scroll;
  scrollbar-width: none;
}
.dataTable > div > table {
  width: 100%;
  border-spacing: 0 5px;
}
.dataTable > div > table > tbody > tr > td {
  padding: 10px;
  border: none;
}
.dataTable div > table > tbody > tr > td:last-child {
  border-radius:  0 10px 10px 0;
  text-align: right;
}
.dataTable div > table > tbody > tr > td:first-child {
  border-radius:  10px 0 0 10px;
  text-align: right;
}
.dataTable button {
  
  margin: auto;
 
}
/* app spec data list */
.styleList {
  background-image: linear-gradient( to bottom, var(--color-bkone), transparent );
  border-radius: 30px;
}
.detailList {
  display: flex;
  max-width: 800px;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;

}
.detailList > div {
  margin: 0 3% 20px 3%;
  min-width: 150px;
  width: 15%;
  text-align: center;
  
}
.detailList img {
  margin: auto;
  width: 100%;
}
.detailList p {
  color: var(--color-lessText);
  margin: 0;
}
/* subscription list ==========================================*/
#subscriptionList > div {
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
  display: flex;
  flex-direction: row;
  padding: 2.5%;
  min-width: 250px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  
}
#subscriptionList > div > div {
  flex-grow: none;
  flex-shrink: none;
}
#subscriptionList > div > div:first-child {
  padding-right: 10px;
}
#subscriptionList .sub_image {
  display: block;
  background-color: rgba( 50, 50, 50, 0.8);
  padding: 20%;
  border-radius: 50%;
  width: 8vw;
  min-width: 30px;
  max-width: 60px;
  box-sizing: border-box;
}
#subscriptionList .sub_title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: left !important;
}
#subscriptionList .sub_description {
  text-align: left !important;
  color: var( --color-lessText ) !important;
}
#subscriptionList .sub_features {
  color: var( --color-lessText ) !important;
}
#subscriptionList .price {
  margin: 0;
  text-align: left;
}
#subscriptionList .price_symbol {
  font-size: 14px;
  color: rgb( 120, 120, 120 );
}
#subscriptionList .price_amount {
  font-size: 28px;
}
#subscriptionList .price_duration {
  vertical-align: 50%;
  font-size: 14px;
  color: rgb( 120, 120, 120 );
}
/* subscription total ==========================================*/
#subscriptionTotal {
  background-image: linear-gradient( to left, transparent, var(--color-bkone), transparent );
  margin: 5px 10px 0 10px;
  overflow: hidden;
}
#subscriptionTotal > div {
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 10px;
}
#checkout {
  display: inline-block;
  vertical-align: middle;
}
#subscriptionTotal .price {
  margin: 0;
  font-size: 36px;
}
#subscriptionTotal .price_symbol {
  font-size: 14px;
  color: var( --color-lessText );
}
#subscriptionTotal .price_amount {
  font-size: 46px;
}
#subscriptionTotal .price_duration {
  vertical-align: 20px;
  font-size: 14px;
  color: var( --color-lessText );
}
#payment-form, #update-form {
  display: none;
}
#payment-form table {
  width:100%;
  margin: auto;
  border-collapse: collapse; 
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
}
#payment-form tbody tr td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px var(--color-no) solid; 
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
}
#payment-form tbody tr th {
  padding: 20px;
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
}
#payment-form thead tr th {
  padding: 20px;
  border-bottom: 1px var(--color-no) solid; 
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
}
#payment-form tfoot tr th {
  padding: 10px;
  text-align: center;
  border-bottom: 1px var(--color-no) solid; 
  background-image: linear-gradient( 270deg, var(--color-bkone), transparent );
}
#payment-form p {
  margin: 10px auto 10px auto;
}
#paymentSuccess {
  display: none;
}
.badgeContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 50px;
}
.badge {
  flex-grow: 1;
  display: inline-block;
  margin: 1%;
  padding: 3%;
  text-align: center;
  border-radius: 10px;
}
.badgeLabel {
  display: block;
  color: var(--color-lessText);
  font-size: 14pt;
  margin-bottom: 10px;
}
.badgeLabel video {
  vertical-align: middle;
  
}
.bageLowerText {
  color: var(--color-lessText);
  font-size: 10pt;
}
.bageUpperText {
  color: var(--color-lessText);
  vertical-align: top;
  font-size: 10pt;
}
.bageMainText {
  font-weight: 600;
  font-size: 48px;
}
.badge img {
  position: relative;
  height: 70px;
  max-width: 70px;
  background-position: center center;
  background-repeat: no-repeat;
}
.speaker {
  background-image: url("images/icon/zwicon-v11/svg/media/volume-low.svg");
}
.camera {
  background-image: url("images/icon/zwicon-v11/svg/media/camera.svg");
}
.cameraNone {
  background-image: url("images/icon/zwicon-v11/svg/media/camera-none.svg");
}
.microphone {
  background-image: url("images/icon/zwicon-v11/svg/media/microphone.svg");
}
.localStorage {
  background-image: url("images/icon/zwicon-v11/svg/device/hard-drive.svg");
}
.onlineStorage {
  background-image: url("images/icon/zwicon-v11/svg/device/server-stack.svg");
}
.badge .img span {
  position: absolute;
  display: block;
  background-color: rgba( 255, 0, 0, 0.8 );
  padding: 4px;
  border-radius: 5px;
 
  top: 0;
  left: 0;
}
.badge .img span:last-child {
  top: initial;
  left: initial;
  
  bottom: 0;
  right: 0;
  
}
.badge button {
  margin-bottom: 0;
}
/* image sizes ================================================*/
.one {
  display: block;
  opacity: 0.8;
  height: 300px;
  margin: auto;
  padding: 10px;
}
.three {
  display: block;
  max-width: 300px; 
  max-height: 300px; 
  margin: auto;
}
.four {
  display: block;
  max-width: 400px; 
  max-height: 200px; 
  margin: auto;
}
/* inputs =====================================================*/
/* custom checkbox */
.toggleSwitch {
  position: relative;
  background-color: var(--color-inActive);
  overflow: hidden;
  padding: 0;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  max-width: 500px;
  min-width: 200px;
  margin: 20px auto 20px auto;
}
.toggleSwitch label {
  flex-grow: 1;
  margin: 0;
  font-size: 18px;
  padding: 10px;
  z-index: 101;
}
.toggleSwitch input[type=checkbox] {
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 102;
  cursor: pointer;
}
.toggleSwitch div {
  position: absolute;
  background-color: var( --color-two );
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  z-index: 100;
  border-radius: 10px;
  transition: all 0.5s ease-in;
  
}
.toggleSwitch input[type=checkbox]:checked + div {
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  transition: all 0.5s ease-in-out;
}
/* custom checkbox */
.customCheckbox {
  position: relative;
  display: block;
  margin-top: 5px;
  text-align: right;
}
.customCheckbox > label {
  color: rgb( 120, 120, 120 );
  vertical-align: middle;
}
.customCheckbox > input[type="checkbox"] {
  appearance: none;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  border-radius: 5px;
  background-color: rgb( 70, 70, 70 );
  transition: background-color 1s ease-out;
  cursor: pointer;
} 
.customCheckbox > input[type="checkbox"]:checked {
  background-color: rgb( 118, 146, 255 );
  transition: background-color 1s ease-out;
}
.customCheckbox label:has( ~ input[type="checkbox"]:checked ) {
  color: rgb( 118, 146, 255 );
  transition: background-color 1s ease-out;
}
.customCheckbox label:has(~ input[type="checkbox"]:disabled ) {
  color: green;
}
.customCheckbox > input[type="checkbox"]:hover {
  border: 2px solid var( --color-three );
}
.customCheckbox > input[type=checkbox][disabled]:hover {
  border-color: darkgreen;
}
.customCheckbox > input[type="checkbox"]:disabled {
  background-color: green;
  cursor: not-allowed;
}
/* custom input */
.customform {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 10px;
}
.customform > div {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
}
.customform input[type=text] {
  width: 100%;
  height: 50px;
  margin: 5px;
  box-sizing: border-box;
  padding: 0 0 0 10px;
  border: none;
  border-radius: 10px;
}
.customform button {
  margin: 5px;
  flex-grow: 1;
  border: none;
  border-radius: 10px;
 
}
.customform button:hover {
  background-color: var(--color-three);
}
/* custom search */
.customSearch {
  position: relative;
  z-index: 101;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 10px 0;
  
}
.customSearchInput {
  position: relative;
  flex-grow: 3;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: auto 50%;
  cursor: text;
  padding: 0 0 0 40px;
  min-width: 250px;
  max-width: none;
  margin: 10px 10px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
.customSearchInput span:nth-child(1) {
  display: block;
  padding: 0 0 0 10px;
  margin: 10px 0 10px 10px;
  cursor: text;
  color: white;
  outline: none;
}
.customSearchInput span:nth-child(2) {
  display: none;
  padding: 0 26px 0 0;
  color: rgba( 255, 255, 255, 0.4);
  user-select: none;
  background-image: url("/images/icon/zwicon-v11/svg/select/cursor-square.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}
.customSearchInput:focus-within {
  background-color: var(--color-three);
}
.customButtons {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 10px 10px 0 0;
}
.customButtons > button {
  flex-grow: 1;
  margin: 0;
  background-image: url("images/icon/zwicon-v11/svg/file/file-upload.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 70%;
  min-width: 150px;
  max-width: none;
  border: none;
}
.customButtons > div {
  flex-grow: 1;
  position: relative;
  text-align: right;
  overflow: hidden;
  margin: 0 0 0 10px;
  padding: 0;
  min-width: 150px;
  background-image: url("images/icon/zwicon-v11/svg/file/file-import.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 70%;
  max-width: none;
  cursor: pointer;}
.customButtons > div input[type=file] {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.customButtons > div > button {
  display: inline-block; 
  background-color: rgba(61,61,61,1);
  border-radius: 8px;
  padding: 8px;
  margin: 5px;
  min-width: 50px;
  position: relative;
  font-size: 2vw;
  color: white;
  overflow: hidden;
  z-index: 3;
}
/* loader =====================================================*/
.loaderContainer {
  position: relative;
  padding: 0 !important;
  opacity: 1;
  z-index: 1000;
}
.loaderContainer > img {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
}
.smallLoader {
  border: 4px solid var(--color-standard);
  border-top: 4px solid rgb(0,0,255);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  box-shadow: 0 0 5px 2px rgba( 30, 30, 30, 0.5 ), 0 0 5px 2px rgba( 30, 30, 30, 0.5 ) inset;
  animation: spin 2s linear infinite;
  opacity: 0.0;
}
.largeLoader {
  border: 4px solid var(--color-standard);
  border-top: 4px solid rgb(0,0,255);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  box-shadow: 0 0 5px 2px rgba( 30, 30, 30, 0.5 ), 0 0 5px 2px rgba( 30, 30, 30, 0.5 ) inset;
  animation: spin 2s linear infinite;
}
.opp {
  
  opacity: 1.0;
  
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}
/* chart =======================================================*/
.spacePaddingMax {
  padding: 5px;
  border-radius: 10px;
  margin: 5px 0 5px 0;
}
.chartLabel {
  margin: 20px 0 0 0 !important;
  max-width: none !important;
}
.bar {
  position: relative;
  background-color: rgba( 255, 255, 255, 0.2 );
  height: 20px;
  margin: 20px 40px 20px 40px;
  z-index: 1;
  min-width: 200px;
}
.gauge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba( 0, 0, 255, 0.8 );
  z-index: 2;
  border-right: dashed 1px white;
}
.gaugeMax {
  position: absolute;
  color: white !important;
  z-index: 5;
  padding: 0;
  margin: 0;
  right: 0;
  top: -20px;
}
.gaugeLevel {
  position: absolute;
  color: white !important;
  z-index: 5;
  margin: 0;
  padding: 0 0 0 5px;
  border-left: dashed 1px white;
  bottom: -20px;
}
/* pop menu =============================================================================================== */
.popMenuDisable {
  display: none !important;
}
.popMenu {
  position: absolute;
  left: 10%;
  right: 10%;
  display: block;
  color: black;
  z-index: 9999;
  overflow: hidden;
  border-radius: 10px;
}
.popMenu > div {
  background-color: white;
  padding: 5%;
  margin: 10px;
  box-shadow: 0 0 5px 2px rgba( 30, 30, 30, 0.5 );
}
.popMenu > button {
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
}
.popMenu table {
  width:100%;
  margin: auto;
  border-collapse: collapse; 
}
.popMenu tbody tr td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px var(--color-no) solid; 
}
.popMenu tbody tr th {
  padding: 10px;
  text-align: center;
}
.popMenu thead tr th {
  padding: 10px;
  border-bottom: 1px var(--color-no) solid; 
}
/* ======================================================================================================== */
/* help =================================================================================================== */
/* manager ================================================================================================ */
.manager {
  position: relative;
  z-index: 750;
  text-align: left;
  border-radius: 10px;
  padding: 30px 20px 30px 30px;
}
.smallManager {
  padding: 1% 1% 1% 1%;
  margin: 0 6% 1% 6%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color:  rgba(0,0,0,0.5);
}
.toolsMenus {
  position: relative;
}
.presetMenu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  background-color: var(--color-standard);
  border-radius: 10px;
  margin: 0 10px 0 0;
}
.presetMenu p {
  margin-left: 20px;
  font-size: 18px;
  
}
.assetList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  z-index: 500;
}
#materialSelectionList, #materialUploadList, 
#textureSelectionList, #textureUploadList, 
#partSelectionList, #partUploadList,
#decalSelectionList, #decalUploadList,
#productSelectionList, #productUploadList,
#environmentSelectionList, #environmentUploadList {
  max-height: 400px;
  overflow-y: scroll;
  margin: 20px;
  scrollbar-width: none;
}
.assetItemContainer {
  position: relative;
  flex-grow: 1;
  border-radius: 10px;
  margin: 5px;
 
}
.assetItemContainer > span {
  display: block;
  padding: 10px;
  margin: 0 0 5px 0;
}
.assetGroup {
  position: relative;
  border-radius: 10px;
  padding: 2%;
  background-color: var(--color-inActive);
  margin-bottom: 10px;
  
}
.assetGroup > span {
  display: block;
  margin-bottom: 10px;
  
}
.assetGroup > span > .tools {
  margin-left: 10px;
  display: inline-block;
 
}
.assetShadowContainer {
  position: relative;
}
.assetShadowLeft {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  background: linear-gradient(to right, var(--color-inActive), transparent);
  z-index: 100; 
}
.assetShadowRight {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  background: linear-gradient(to left, var(--color-inActive), transparent);
  z-index: 100; 
}
.assetContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  background: linear-gradient(to top, rgb( 40, 40, 40 ) 50%, transparent);
  padding: 0 30px 0 30px;
}
.asset {
  position: relative;
  display: inline-block;
  z-index: 99;
  margin: 5px;
}
.asset > span {
  display: block;
  text-align: center;
  color: var(--color-lessText);
  margin-bottom: 10px;
  max-width: 200px;
}
.asset > img {
  position: relative;
  height: 14vw;
  min-width: 100px;
  min-height: 100px;
  max-width: 200px;
  max-height: 200px;
  width: auto;
  z-index: 150;
  cursor: pointer;
}
.asset > .loaderContainer {
  margin: 20px;
}
.tools > button {
  padding: 0;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background-color: rgba(51,51,51,1);
  margin: 5px;
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-family: Arial;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  cursor: pointer;
  transition: 1s background-color; 
}
.tools > button:hover, .tools > .button:hover, #propertycPanel > div > ul > li:hover {
  background-color: var(--color-three);
}
.assetImageContainer {
  position: relative;
  margin: auto;
  display: inline-block;
  width: 100%;
}
.assetImageContainer > .tools, .asset > .tools {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 151;
}
.assetImageContainer img {
  position: relative;
  height: 14vw;

  max-width: 220px;
  max-height: 220px;
  width: auto;
  z-index: 150;
  cursor: pointer;
  
 
}
.counter, .selector {
  display: inline-block;
  background: var(--color-standard);
  padding: 15px;
  border-radius: 10px;
  font-size: 20px;
  color: var(--color-text);
  margin: 0 10px 0 0;
}
.selector > select {
  background-color: transparent;
  color: var(--color-text);
  border: none;
  font-size: 20px;
  outline: none;
}
.selector > select > option {
  background-color: transparent;
  
  border: none;
  font-size: 20px;
  outline: none;
}
#countShowing {
  display: inline-block;
}
#countTotal {
  display: inline-block;
  text-align: top;
}
#editorCanvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom:0;
  z-index: 1;
  
}
/* property panel */
#propertyPanel {
  background-color: var(--color-one);
  width: 100%;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  margin: 0.2vw 0.2vw 0.2vw 0.2vw;
  border-radius: 10px;
}
#propertycPanel {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5%;
  color: white;
}
#propertycPanel > div {
  position: relative;
  flex-grow: 1;
  padding: 20px;
  margin: 10px;
  background-image: linear-gradient(to top, transparent 20%, var(--color-four));
  border-radius: 5px;
}
#propertycPanel > div > b {
  display: inline-block;
  margin: 0 75px 10px 0;
}
#propertycPanel > div > table {
  width: 100%;
  border-collapse: collapse;
}
#propertycPanel > div > table > tbody > tr {
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
}
#propertycPanel > div > table > tbody > tr:nth-child(even) {
  background-color: rgba(118, 146, 255, 0.2);
}
#propertycPanel > div > table > tbody > tr > td {
  position: relative;
  padding: 10px 10px 10px 33px;
  background-image: url("images/icon/zwicon-v11/svg/edit/edit-square.svg");
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 20px 20px;
  caret-color: white;
  font-family: Arial;
  max-width: 300px;
  outline: none;
}
#propertycPanel > div > table > tbody > tr:hover {
  background-color: var(--color-two);
}
#propertycPanel > div > ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
#propertycPanel > div > ul > li {
  background-image: url("images/icon/zwicon-v11/svg/edit/edit-square.svg");
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 20px 20px;
  caret-color: white;
  font-family: Arial;
  border: none;
  border-radius: 5px;
  color: white;
  padding: 10px 10px 10px 33px;
  margin: 0 5px 0 0;
  transition: 0.5s all ease-in-out;
}
.seperator {
  background-image: none !important;
  padding: 0 !important;
  width: 20px;
  text-align: center;
}
#propertycPanel > div > ul > li:focus, #propertycPanel > div > table > tbody > tr:focus { 
  background-color: var(--color-two);
  outline: none;
}
#suggestMenu {
  margin: 2px 0 0 0;
  position: absolute;
  padding: 10px;
  background-color: var(--color-two);
  left: 0;
  z-index: 10000;
  list-style-type: none;
  color: white;
  max-height: 100px;
  overflow-y: scroll;
  border-radius: 5px;
}
#suggestMenu li {
  margin: 5px;
}
#propertycPanel > div > .tools {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99;
}
/* ======================================================================================================== */
/* assetEditor ================================================*/
.assetEditor {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb( 0, 0, 0 );
  text-align: center;
  padding: 0;
  margin:0;
}

.assetTopBar {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 3;
  border-radius: 10px;
  padding: 20px;
}
.assetTopBar > div {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.assetTopBar > div:first-child, .assetTopBar > div:last-child  {
  flex: none;
}

.close {
  position: absolute;
  right: 0;
  top: 50px;
  border-radius: 10px 0 0 10px;
  z-index: 3;
  padding: 0 50px 0 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
}
.closeMap {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 0 10px 10px 0;
  z-index: 3;
  padding: 0 10px 0 50px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
}


#fileNav {
  position: absolute;
  bottom: 0;
  display: flex;
  border-radius: 0 10px 10px 0;
  z-index: 3;
  align-items: center;
  margin: 0 0 15% 0;
  padding: 0 10px 0 50px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
}
#fileNav button {
  margin-left: 10px;
}
#assetEditorName {
  margin: 0 30px 0 0;
  padding: 10px 30px 10px 50px;
  background-position: left center;
  background-size: auto 80%;
  background-repeat: no-repeat;
  font-size: 1.5rem;
}

#assetName {
  margin: 0 30px 0 0;
}
#texturePreview {
  position: absolute;
  border: solid red 1px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.assetTopBar button {
  display: inline-block;
  margin-right: 10px;
  z-index: 3;
}
.assetBotBar {
  position: absolute;
  display: block !important;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  border-radius: 10px;
  height: 60px;
}
.assetBotBar > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; 
}
.assetBotBar > div > div:first-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.assetBotBar > div > div > div {
  position: relative;
  flex-grow: 3;
}
.assetBotBar > div > div > div:last-child, .assetBotBar > div > div > div:first-child {
  position: relative;
  display: block;
  flex-grow: 1;
}
.assetBotBar > div > div > div > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px 10px 10px;
}
.assetBotBar > div > div:last-child {
  margin: 10px;
}
.screenLoaderContainer {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#assetEditorCommandContainer {
  flex-grow: 3;
  display: flex;
}
#assetEditorCommandContainer > div {
  flex-grow: 1;
  
}
/* navigation layers ======================================================================================================== */
#layerList {
  max-height: 200px;
  overflow-y: scroll;
  scrollbar-width: none;
}
#layerList > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start; 
  align-items: center;
  margin-bottom: 5px;
}
#layerList > div > img {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  background-color: var(--color-bkTwo);
}
#layerList > div > div {
  width: 30px;
  height: 70px;
  margin-right: 10px;
  background-color: var(--color-bkTwo);
}
/* map pack list in materials================================================================================================ */
.mapPackMenu > .mapMenuContent {
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  max-height: 400px;
  scrollbar-width: none;
}
.mapPackMenu > .mapMenuContent > div {
  padding: 10px;
  margin: 5px;
  flex-grow: 1;
  border-radius: 10px;
}
.mapPackMenu > .mapMenuContent > div > b {
  display: block;
  padding: 20px;
  text-shadow: 0 0 5px rgb(20,20,20);
}
.mapPackMenu > .mapMenuContent > div > div {
  padding-left: 50px;
  margin: auto;
  display: block;
 
  
}
.mapPackMenu > .mapMenuContent > div > div > img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin-left: -50px;
  border: 4px white solid;
  box-shadow: 0 0 20px rgb(50,50,50);
}
.mapMenu {
  position: relative;
}
.mapMenu > .mapMenuContent {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: scroll;
  max-height: 300px;
  scrollbar-width: none;
  border-radius: 10px;
}
.mapMenu > .mapMenuContent > img {
  width: 50%;
  min-width: 100px;
  flex-grow: 1;
  flex-shrink: 1;
}
.mapMask, .colorMask {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  margin: 5px;
  text-align: right;
  height: 26px;
}
.mapMask > img {
  position: absolute;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  left: 0;
  z-index: 1;
  background-color: var(--color-bkTwo);
}
.mapMask > button {
  position: relative;
  margin: 0;
  z-index: 2;
  font-size: 14px;
  padding: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  
}
.colorMask > input {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: none;
  z-index: 1;
}
.colorMask > span { 
  position: relative;
  display: block;
  z-index: 2;
  padding: 10px;
  background-color: var(--color-bkTwo);
  margin: 10px auto 10px auto;
}
/* selection list ========================================================================================================== */
.drop {
  display: block;
  position: relative;
  text-align: center;
  margin: 10px auto 10px auto;
  max-width: 200px;
  background-color: var( --color-standard );
  color: var( --color-lessText );
  padding: 15px 40px 15px 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  transition: 1s all;
  box-shadow: 0 0 5px 2px rgba( 30, 30, 30, 0.5 );
  cursor: pointer;
  user-select: none;
  background-image: url("images/icon/zwicon-v11/svg/interfaces/hamburger-menu.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.drop:hover {
  background-color: var(--color-active);
  color: var( --color-textHigh );
}
#selecionCommands {
  position: absolute;
  z-index: 1000;
  left: 0;
  border-radius: 10px;
  margin-top: 5px;
  display: none;
  padding: 5px;
  background-color: var(--color-bkone);
}
#selecionCommands > div {
  padding: 20px;
  max-height: 500px;
  overflow-x: scroll;
  scrollbar-width: none;
}
#selecionCommands > div > div {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 10px 0;
}
#selecionCommands > div > div > img {
  display: block;
  margin: auto;
  width: 175px;
}
#selecionCommands > div > div > p {
  display: block;
  width: 175px;
}
/* help section ============================================================================================================ */
.helpContainer {

  display: flex;
 
}
.helpContainer > div:last-child {
  flex-grow: 1;
}
.helpContainer > div:first-child {
  padding-right: 20px;
}
/* select tools 
.selectTools {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 100;
  padding: 10px 0 10px 50px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius: 0 10px 10px 0;
}
#commandTitle {
  display: block;
  font-size: 16pt;
  margin-bottom: 10px;
}
#commandContainer {
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: none;
}
#commandContainer > div {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
}
#commandContainer > div > b {
 display: block; 
 margin-bottom: 5px;
}
#commandContainer > div > div {
 display: inline-block; 
}
#commandContainer label {
 font-size: 10pt;
  vertical-align: middle;
}
#commandContainer input {
  
  vertical-align: middle;
}

*/
/**/
.mainTitle img {
  width: 60px;
  height: 60px;
  background-color: rgba(50, 50, 50, 0.8);
  padding: 20px;
  border-radius: 50%;
  margin-right: 20px;
}
.mainTitle p {
  font-weight: 500;
  font-size: 18px;
}
.subscribeButton {
  
  margin-top: 50px !important;
  background-color: var(--color-five) !important;
  color: white !important;
  font-size: 18px !important;
  font-weight: 600;
  
  
}
.subscribeButton:hover {
  background-color: var(--color-three) !important;  
  
}
/* preview tools for texture editor */
#globalCommands {
  position: absolute;
  right: 0;
  top: 150px;
  z-index: 100;
  padding: 0 50px 10px 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius: 10px 0 0 10px;
}
#selectCommands {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 100;
  padding: 0 10px 10px 50px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius: 0 10px 10px 0;
}
.labeltest {
  position: absolute;
  z-index: 100;
  padding: 0 10px 10px 10px;
  border-radius: 0  0 10px 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
}
.labeltest > div, #globalCommands > div {
  position: relative;
}
.labeltest p {
  font-size: 18px;
  font-weight: 500;
  margin: 30px auto 30px auto ;
  vertical-align: middle;
  display: block;
  writing-mode: vertical-rl;
 text-orientation: sideways;
}
.labeltest button, #globalCommands button, #selectCommands button {
  margin: 10px 0 0 0;
  padding: 15px;
  background-position: center center;
  background-size: 80% 80%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.labeltest input[type=range] {
  writing-mode: vertical-lr;
  direction: rtl;
  vertical-align: middle;
}

#globalCommands input[type=range] {
  direction: rtl;
  vertical-align: middle;
}
.labeltest .buttonRange {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  top: 0;
  left: 45px;
  background: var(--color-standard);
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  
}
#globalCommands .buttonRange {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  top: 0;
  right: 45px;
  background: var(--color-standard);
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
}

#selectCommands .commandMenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 45px;
  background: var(--color-standard);
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  padding: 20px;
}
#selectCommands .commandMenu > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
#selectCommands .commandMenu > div:last-child {
  margin-bottom: 0;
}
#selectCommands .commandMenu > div > label {
  white-space: nowrap;
  margin-right: 10px;
}
#selectCommands .commandMenu .buttonGroup {
  display: flex;
}
.buttonGroup > button {
  margin: 10px 10px 0 0 !important;
}
#selectCommands .rangeContainer, #brushControl .rangeContainer { 
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#selectMenu {
  display: flex;
  justify-content: flex-end;
}
#actionMenu {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  padding: 10px;
}
#actionMenu > div {
  display: flex;
  flex-direction: row;
  padding: 10px;
}
#actionMenu > div > div {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  
}
#actionMenu button, #brushControl button {
  margin: 0;
  display: inline-block !important;  
}
#actionMenu label {
  margin-top: 5px;
  display: inline-block !important;
  font-size: 10px;
}
#actionMenu b {
  margin: 20px 0 0 10px;
  display: block;
  text-align: left;
  font-size: 14px;
}
#actionMenu b:first-child {
  margin: 0 0 0 10px;
  
}

#brushControl {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 100;
  padding: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius:10px;
}
#selectHistory {
  position: relative;
  scrollbar-width: none;
  max-height: 300px;
  overflow-y: scroll;
  margin-top: 30px;
}
#selectHistory > div {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 5px;
}
#selectHistory > div[draggable=false] {
  background-color: red;
}
#selectHistory > div > div {
  margin: 0 10px 0 0;
  background-position: center center;
  width: 20px;
  height: 20px;
}
#selectHistory > div > button {
  margin: 0;
}

#selectHistoryMenu {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  padding: 20px;
  width: auto;
}
#selectHistoryMenu > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
  padding: 5px;
}
#selectHistoryMenu > div:last-child {
  margin-bottom: 0;
}
#selectHistoryMenu label, #brushControl label {
  white-space: nowrap;
  font-size: 12px;
}
#selectHistoryMenu .buttonGroup {
  display: flex;
}
#selectHistoryMenu .buttonGroup > button {
  margin: 10px 10px 0 0 !important;
}

.labeltest > div > div > label, #globalCommands > div > div > label {
  margin: 10px;
}

#brushControl {
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: 100;
  padding: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius:10px;
}

.imageHold {
  max-width: 300px;
  max-height: 300px;
  background-color: black;
}

#imageDistort {
  margin-top: 10px;
  max-height: 200px;
  overflow-y: scroll;
  padding: 10px;
}
/* radio group */
.radioGroup {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items:stretch;
}

.radioGroup > div {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding:5px;
}

.radioGroup label {
  text-wrap: nowrap;
}

.radioGroup input {
  padding: 0;
  margin:0 10px 0 0;
  
}

/* toggle button */
.toggleButton {
  margin: 10px 0 0 0;
  overflow: hidden;
  background-position: center center;
  background-size: 80% 80%;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  background-color: var(--color-standard);
  transition: 1s all;
}
.toggleButton:hover {
  background-color: var(--color-active);
}
.toggleButton input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;

}
/* color button */
.colorButton {
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 30px;
  box-shadow: 0 0 5px 2px rgba(30, 30, 30, 0.5);
  border-radius: 10px;
  background-position: center center;
  background-size: 80% 80%;
  background-repeat: no-repeat;
}
.colorButton input[type=color] {
  opacity: 0;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
}
/* button icons */
.eye {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/eye.svg");
}
.color {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/palette.svg");
}
.eye:has( > input[type=checkbox]:checked ) {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/eye-slash.svg");
}
.trash {
   background-image: url("/images/icon/zwicon-v11/svg/interfaces/trash.svg");
}
.brightness-up {
  background-image: url("/images/icon/brightness-up.svg");
}
.environment-rotate {
  background-image: url("/images/icon/zwicon-v11/svg/rotate/rotate-axis-y.svg");
}
.global-mesh-intensity {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/table.svg");
}
.map-scale {
  background-image: url("/images/icon/zwicon-v11/svg/resize/resize.svg");
}
.anim-speed {
  background-image: url("/images/icon/zwicon-v11/svg/media/film.svg");
}
.texture-color {
  background-image: url("/images/icon/texture-color.svg");
}
.texture-greyscale {
  background-image: url("/images/icon/texture-greyscale.svg");
}
.texture-metalness {
  background-image: url("/images/icon/texture-metalness.svg");
}
.texture-roughness {
  background-image: url("/images/icon/texture-roughness.svg");
}
.texture-normal {
  background-image: url("/images/icon/texture-normal.svg");
}
.texture-displacement {
  background-image: url("/images/icon/texture-displacement.svg");
}
.texture-bump {
  background-image: url("/images/icon/texture-bump.svg");
}
.texture-emissive {
  background-image: url("/images/icon/texture-emissive.svg");
}
.texture-ao {
  background-image: url("/images/icon/texture-ao.svg");
}
.texture-transmission {
  background-image: url("/images/icon/texture-transmission.svg");
}
.texture-specular {
  background-image: url("/images/icon/texture-specular.svg");
}
.texture-addaction {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/add-item-alt.svg");
}
.texture-input-source {
  background-image: url("/images/icon/zwicon-v11/svg/arrow/arrow-square-up.svg");
}
.texture-input-size {
  background-image: url("/images/icon/zwicon-v11/svg/resize/resize-alt.svg");
}
.texture-input-size-org {
  background-image: url("/images/icon/resize-org.svg");
}
.texture-input-size-1k {
  background-image: url("/images/icon/resize-1k.svg");
}
.texture-input-size-2k {
  background-image: url("/images/icon/resize-2k.svg");
}
.texture-input-size-4k {
  background-image: url("/images/icon/resize-4k.svg");
}
.texture-input-size-8k {
  background-image: url("/images/icon/resize-8k.svg");
}
.texture-input-rotation {
  background-image: url("/images/icon/zwicon-v11/svg/rotate/rotate-shape.svg");
}
.texture-input-transform {
  background-image: url("/images/icon/zwicon-v11/svg/transform/transform-left.svg");
}
.texture-input-crop {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/crop.svg");
}
.texture-input-seamposition {
  background-image: url("/images/icon/zwicon-v11/svg/arrow/collapse-alt.svg");
}
.texture-input-seammask {
  background-image: url("/images/icon/zwicon-v11/svg/arrow/expand-alt.svg");
}
.texture-input-seammask-erase {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/eraser.svg");
}
.texture-input-seammask-clear {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/delete.svg");
}
.texture-input-seammask-add {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/pen.svg");
}
.texture-input-colorsample {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/palette.svg");
}
.texture-input-colorsample-include {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/plus-circle.svg");
}
.texture-input-colorsample-exclude {
  background-image: url("/images/icon/zwicon-v11/svg/interfaces/minus-circle.svg");
}
.texture-input-colorsample-clear {
  background-image: url("/images/icon/zwicon-v11/svg/design-tool/eraser.svg");
}

  
  
