

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
  }
  
  .clear{
      clear:both;
  }
  
  .redtext{
      color:#FF0000;
  }
  
  span{
      margin-bottom:5px;
      margin-top:5px;
      display: inline-block;
      cursor:default;
  }
  
  input[type=text],input[type=password]{
      width:100%;
      height:30px;
      font-size:16px;
  }
  
  .color_box{
      border:1px solid black;
  }
  
  .color_box:hover{
      border:1px solid white;
  }
  
  .hoverable{
      border:1px solid #606060;
      cursor:pointer;
  }
  
  .hoverable:hover{
      border:1px solid black;
  }
  
  .hoverable_icon{
      cursor:pointer;
      opacity:0.7;
  }
  
  .hoverable_icon:hover{
      opacity:1;
  }
    
  
  .button_base{
      cursor:pointer;
  }
  
  .art_box{
      width:40px;
      height:40px;
      float:left;
      margin:5px;
      padding:5px;
      text-align:center; 
      background-repeat: no-repeat;  
      background-position: center; 
      background-size: contain ;
      display: inline-block;
      cursor:pointer;
  }
  
  #art_box_container{
      height:100%;  
  }
  
  .art_box:hover{
      background-color:#BABABA;
  }
  
  button{
          -webkit-appearance: button;
              text-rendering: auto;
                  letter-spacing: 1px;
      word-spacing: normal;
      background:#efefef;
      border: 1px solid #bebebe;
      border-radius: 2px;
      color:#222;    
      text-decoration: none;
      text-align:center;
      padding:5px;
      padding-right:20px;
      padding-left:20px;  
      display: inline-block;
      height:40px;
  }
  
  button:hover{
      background:#cecece;
      cursor:pointer;
  }
  
  
  button.black{
      background:#202020;
      color:#dedede;
  }
  
  button.black:hover{
      background:#404040;
  }
  
  button.selected{
      background:#909090;
  }
  
  button.small{
      padding:2px;
      padding-right:5px;
      padding-left:5px;  
      height:unset;
      margin-left:4px;
  }
  









  
.developpedbylink{
    text-decoration: none;
    color:#888;
    font-size:14px;
}


.operator_selector{
    opacity:0.4;
    cursor:pointer;
}

.operator_selector:hover{
    opacity:1;
}

.clickable{
    cursor: pointer;
}

.clickable:hover{
    text-decoration: underline;
}



.public_design_thumb{
    margin:10px;
    width:200px;
    height:300px;
    overflow:hidden;
    background-size:auto 300px;
    background-position:top;
    background-repeat:no-repeat;
    position:relative;
    float:left;
    cursor: pointer;
}

.thumb_label{
    visibility: hidden;
    width:100%;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    height:27px;
    color:#dedede;
    font-weight: bold;
    position:absolute;
    padding-top: 8px;
    bottom:141px;
}


.public_design_thumb:hover .thumb_label{
    visibility: visible;
}







.main_menu_button:hover{
    opacity:1;
    color:#f3f3f3;
}

#button_main_menu_save:hover{
       opacity:1;
    color:#f3f3f3; 
}

.main_menu_button.selected{
    color:#303030;
    background:#fff;
    border-left:4px solid #7aceff;
    opacity:1;
}

.main_menu_button.selected img {
    filter: invert(1);
}

.main_menu_text{
    text-align:center;
    width:100%;
}


.text_button{
    float:left;
    height:30px;
    width:60px;
    margin-right:10px;
    border:1px solid black;
    padding-top:10px;
    cursor:pointer;
}

.text_button:hover{
    background:#909090;
}





.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: black;
    display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: red;
}








::-webkit-scrollbar {
    width: 20px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); 
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: rgba(50,50,50,0.3); 
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(0,0,0,0.1); 
}

#camera_controller{
  visibility: hidden;
  opacity: 0;
}

#viewer:hover #camera_controller{
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s linear;
}

#viewer:hover #viewer_bar{
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s linear;
}


#viewer_bar{
  visibility: hidden;
  opacity: 0;
}

#uploaded_file_list{
    overflow:auto;
    height:calc(100% - 60px);
}


.button_camera_view{
    text-align:center;
    border:1px solid #999;
    width:45px;
    padding:4px;
    cursor:hand;
    margin-top:2px;
    color:#555;
    font-size:12px;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.button_camera_view:hover{
   border:1px solid #777;
   background:#999;
   color:#000;
}




.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    cursor:pointer;
  }
  .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  

  



.button_color_picker{
    width:68px; 
  /*  height: 32px;   */
  /*  border:1px solid #BABABA;   */
  cursor : pointer;
  margin:auto;
}

.button_color_picker_inner{
  width:58px;
  height: 22px;
  margin:4px;
  border:1px solid #BABABA; 
  cursor : pointer;
}

.input{
  border:1px solid #dadada;
  padding:2px;
  padding-top:5px;
  padding-bottom:5px;
  background:none;
}

.input:focus{
  background:#fdfdfd;
  border:1px solid #404040;
}

.input_number{
  text-align: right;
}



.combo{
  height:28px;
  margin-top:5px;
  margin-bottom:5px;
  font-size:14px;
  width:100%;
}

.combo option{
  padding:5px 0;
  -webkit-appearance: menulist-button;
 height: 50px;
}




.combobox_item  {
  background:#fff;
  /*  border-bottom:1px solid #cacaca;    */
  padding-bottom:4px;
}

.combobox_option{
  width:100%;
  height:30px;
  overflow:hidden;
  font-size:14px;
  color:#606060;
  
}

.combobox_item.hover{
  background:#FFCACA;
}

.combobox_item.selected{
  background:#CACAFF;
}

.combobox_list{
  width:400px;
  height:300px;
  background: #FDFDFD;
  border:1px solid #cacaca;
  z-index:110;
  position:fixed ; 
  top:0;
  left:0;
  padding:10px;
  overflow:auto;
}

.combobox_item:nth-child(even) {
  background: #f1f1f1;
}


.combobox_header{
  height:26px;
  border:1px solid #cacaca;
  background:#ffffff;
  font-size:14px;
}

.combobox_header:hover{
  border:1px solid #909090;
}

.combobox_header_button{
  float:right;
  width:20px;
  height:20px;
  background-image: url(/3d/view/themes/style1/combobox_down.png);
  margin-top:4px;
}


.combobox_header_text{
  float:left;
  margin-top:4px;
  margin-left:4px;
}


.file_upload{
  display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  opacity: 0;
  cursor:pointer;
}

.file_upload_button{
  border: 1px solid #202020;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  background:#202020;
  color:white;
  text-align:center;
}

.file_upload_button:hover{
  background:#808080;
}

.model_switch_button{
  width:40px;
  height:40px;
  float:left;
  opacity:0.1;
  
  padding-left:5px;
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center; 
}

.model_switch_button:hover:not(.model_switch_button_selected){
  cursor:pointer;
  opacity: 0.2;    
}

.model_switch_button_selected{
  opacity:1;
}

.vertical_text{
  -webkit-transform: rotate(90deg);   
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}


.overlay{
    width:100%;
    height:100%;
    z-index:99;
    background:rgba(0, 0, 0, 0.8);
    position:fixed ; 
    top:0;
    left:0;
    display:none;
}

.window_container{
    width:400px;
    height:400px;
    background:#fff;
    overflow: hidden; 
    z-index:100;
    position:fixed ; 
    top:0;
    left:0;
    overflow:hidden;
}

.window_content{
    padding:20px;   
}

.window_content_tab{
    overflow:hidden; 
    height:calc(100% - 20px);
}

.tab_container{
    overflow:auto;
    height:calc(100% - 100px);   
}

.window_close_button{
    color:#101010;
    float:right;
    cursor : pointer;
    padding:5px;
    margin:2px;
    width:18px;
    height:18px;
    font-weight:bold;
    text-align:center;
    position:absolute;
    top:0px;
    right:0px;
}

.window_close_button:hover{
    background:#bababa;
}

.window_header{
    background:#f8f8f8;
    height:36px;
    margin-bottom:10px;
}

.window_header_title{
    text-align: center;
    letter-spacing: 2px;
    padding-top:10px;
}

.tab_link{
    float:left;
    cursor : pointer;
    padding:10px;
    padding-right:20px;
    color:#707070;
}

.tab_link:hover{
    background:#dedede;
}

.tab_link.selected{
    background:#909090;color:#F1F1F1;
}

.tab_content{
    padding:10px;
}


.design_thumb{
    float:left;
    padding:10px;
    margin:10px;
    border:1px solid #dedede;
    color:#888;
}

.design_thumb:hover{
    border:1px solid #000000;
}

.design_thumb .hidden{
    opacity:0;
}

.design_thumb:hover .hidden{
    opacity:1;
}






#confirmation_dialog button{
    width:100px;
}

.dialog_message{
    margin-bottom:20px;
}



.empty_box{
    /*  border:1px solid #BABABA;   */
    position:relative;
    cursor : pointer;
    float:left;
}

.empty_box:after{
    content:"";
    position:absolute;
    border-top:1px solid red;
    width:61.5px;
    transform: rotate(20.1deg);
    transform-origin: 0% 0%;
}

.empty_color_box{
    /*  border:1px solid #BABABA;   */
    position:relative;
    cursor : pointer;
    float:left;
}

.empty_color_box:after{
    content:"";
    position:absolute;
    border-top:1px solid red;
    width:56.57px;
    transform: rotate(45deg);
    transform-origin: 0% 0%;
}

.panel{
    width:200px;
    height:200px;
    background: #FDFDFD;
    border:1px solid #cacaca;
    z-index:110;
    position:fixed ; 
    top:0;
    left:0;
    padding:4px;
}

.popup_header {
    height:28px;
    width:100%;
    border-bottom:1px solid #BEBEBE;
    background:#f8f8f8;
    text-align:center;
    margin-bottom:10px;
    cursor: move; 
} 

.button_move_camera_target{
    width:20px;
    height:20px;
}

.children_float_left *{
    float:left;
}

.float_left{
    float:left;
}

.float_right{
    float:right;
}


.padding_2{   padding:2px;  }
.padding_4{   padding:4px;  }
.children_padding_4 *{  padding:4px;}
.children_margin_4 >*{  padding:4px;}



.menu_line{
    float:left;
    border:1px solid #e3e3e3;
    padding:10px;
    margin:5px;
}

.menu_line_text{
    margin-bottom:5px;
}

.menu_line_button{
    float:left;
    width:32px;
    height:32px;
    background:#404040;
    cursor:pointer;
    margin:1px;
}

.menu_line_button:hover{
    background:#646464;
}



.main_menu_button,#button_main_menu_save{
    padding-left:13px;
    padding-right:8px;
    width:50px;
    height:80px;
    color:#d5d5d5;
    font-weight:thin;
    font-size:11px;
    letter-spacing: 0.5px;
    cursor:hand;
    opacity:0.7;
    border-left:4px solid transparent;
    float:left;
}


/*************************************************************************************************************/
.link_button{
    color:#808080;
    cursor : pointer;
    font-weight: bold;
}

.link_button:hover{
    color:#020202;
}

/*************************************************************************************************************/

.control_button{
    opacity:0.4;
    background:none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width  : 48px;
    height : 48px;
    cursor : pointer;
    color  : #000000;
    float:left;
}

.control_button:hover{
    opacity:1;
}
/*************************************************************************************************************/





.icon_button{
    opacity:0.6;
    background:none;
    background-repeat: no-repeat;
    background-position: center center;
    width  : 41px;
    height : 41px;
    padding:2px;
    padding-right:6px;
    padding-left:6px;
    cursor : pointer;
    color  : #000000;
    margin-bottom: 4px;
}

.icon_button:hover{
    /*  background-color:#BABABA;   */
    background:none;
    background-repeat: no-repeat;
    background-position: center center;
    opacity:1;
}

.icon_text_button {
    text-align: center;
    cursor:pointer;
    color:#000000;
    font-weight:bold;
    border:1px solid #909090;
}

.icon_text_button .icon{
    background-repeat: no-repeat;
    background-position: center center;
    width :32px;
    height:32px;
    padding:4px;
    margin:auto;
}

.icon_text_button:hover{
    background:#BABABA;
}


.icon_button_selected{
    opacity:0.3;
}
/*************************************************************************************************************/