
body{
  margin: 0px;
  font-family: "Noto Sans" !important;
  overflow-x: hidden;
  background-color: var(--special1-gray);

}

:root{
  --red: #ec0000;
  --white: #ffffff;
  --light2-gray: #FFFCF9;
  --special1-gray: #f2f2f2;
  --light1-gray: #DADDD8;
  --gray: #9FA4A9;
  --dark1-gray: #353535;
  --dark2-gray: #212121;
  --dark3-gray: #191919;
  --black: #000100;
  --hover: rgb(107, 107, 107);
  --part-screen: 1200px;
  --blue: rgb(7, 129, 198);
  --dark-blue: rgb(6, 111, 172);
  --dark-gray-transparency: rgba(34, 34, 34, 1);
}

*:disabled{

  cursor: not-allowed;

}

.main_container{

  background-color: var(--special1-gray);
  width: 100%;
  height: 100%;
  flex-grow: 2;
  flex-direction: column;
  z-index: -1;

}
.bg_image{

  width:100%;
  height: 90vh;
  background-color: black;
  background-image: url(http://zubatomic.com/projects/aieditor/images/backgroundImage.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}
.main_title{

  height: 90vh;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.floating{

  background: transparent;
  border: none;
  font-weight: bold;
  opacity: 0.7;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  position: fixed;
  padding-top: 10px;
  transition: opacity 0.2s;
  cursor: pointer;
  bottom: 10px;
  right: 10px;
  z-index: 3;

}
.floating_button{
  position: fixed;
  right: 10px;
  top:120px;
  border-radius: 50%;
  padding: 20px;
  background-color: rgba(62, 159, 213, 0.79);
  border: 2px solid rgba(0, 181, 230, 0.88);
  z-index: 999999;
}
.floating i{

  margin-right: 10px;

}
.floating:focus{

  outline: none;

}
.floating:hover{

  opacity: 0.85;

}
.ai_box{

  width: calc(100% - 80px);
  margin: 20px;
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  padding: 20px;
  align-items: stretch;
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.2), 0px 2px 1px -1px rgba(0,0,0,0.2);

}
.ai_box canvas{

  display: flex;
  height: 15vw;
  background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Colored_neural_network.svg/1200px-Colored_neural_network.svg.png);
  background-size: contain;
  width: 15vw;
  min-width: 150px;
  min-height: 150px;

}
.ai_box > div{

  display: flex;
  flex-direction: column;
  flex-grow: 2;
  padding: 5px;

}
.ai_title{

  font-size: 25px;
  font-weight: bold;
  width: 100%;

}

.open_editor{

  display: flex;
  padding: 10px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 80px;
  font-weight: bold;
  font-size: 30px;
  font-family:"Noto Sans";
  transition: 0.4s ease all;
  outline: none;
  justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 5px;
  border: 2px solid rgba(64,64,64,0);

}

a{

  text-decoration: none;

}

.open_editor:hover{

  opacity: 1;
  background-color: rgba(0,0,0,0.6);
  border: 2px solid  rgba(50, 137, 251, 0.8);
  color: rgba(50, 137, 251, 0.8);
}
.subtitle{

  display: flex;
  color: white;
  font-size: 25px;
  margin-top: 20px;
  text-align: center;
  font-family: "Noto Sans" !important;

}
.title{

  display: flex;
  font-size: 50px;
  text-align: center;
  font-family: "Noto Sans" !important;
  color: white;

}

.navbar{

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: var(--dark2-gray);
  width: 100%;
  z-index: 2;
  position: fixed;
  background-color: transparent;
}

.navbar_mini{
  font-family: "Noto Sans" !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  background-color: var(  --dark-gray-transparency);
  width: 100%;
  position: relative;

}
.navbar a{

  color: var(--light1-gray);

  display: flex;
  font-size: 15px;

}

.navbar_item i{

  margin-right: 10px;

}

.navbar_item{
  margin: 10px;

  padding: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
  background-position: center;
  background: transparent;
  transition: background 0.2s;

  border-radius: 20px;
  font-weight: bold;
}

.sep{

  display: flex;
  flex-grow: 1;

}
.navbar_item:hover {

  background: var(--hover);

}

.navbar_item_mini i{

  margin-right: 10px;

}
.navbar_item{

 display: flex;
 justify-content: center;
 align-items: center;
 cursor: pointer;

}
.navbar_item_mini{
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light1-gray);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px;
  margin: 10px;
  transition: 0.2s all ease-in;
  border-radius: 5px;
  cursor: pointer;
  border: solid 2px rgba(76, 213, 250, 0);
}
.normal_navbar_button{
  background: transparent;
}


.normal_navbar_button:hover {

  background: var(--hover);


}
.test_navbar_button{
  background: rgba(76, 213, 250, 0.43);
}
.train_navbar_button{
  background: rgba(0, 207, 21, 0.43);
  padding-left: 30px;
  padding-right:30px;
}
.test_navbar_button:hover{
  border-radius: 20px;
  background: transparent;
  border: solid 2px rgba(76, 213, 250, 0.43);
}
.train_navbar_button:hover{
  border-radius: 20px;
  background: transparent;
  border: solid 2px rgba(0, 207, 21, 0.43);
}
@media only screen and (max-width: 500px) {

  .navbar_item{

    width:100%;

  }
  .navbar{

    flex-direction: column;

  }

}
.parameter_label{
  text-transform:uppercase;
  padding: 10px;
  font-size: 16px;
  color: rgb(7, 175, 219);
}
.right{

  align-self: flex-end;

}

.styled_boxes{

  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: white;
  width: 100%;
  max-width: var(--part-screen);

}

.style_box{

  border-radius: 5px;
  padding: 10px;
  display: flex;
  margin-right: 10px;
  margin-bottom: 20px;
  width: 30%;
  display: flex;


}

.style_box .icon{

  font-size: 15px;
  display: flex;
  margin-right: 30px;
  font-size: 40px;
  color: var(--blue);
}

.style_box .box_title{

  font-size: 18px;
  padding: 5px;
  display: flex;

}
.box_content{
  padding: 5px;
  font-size: 14px;
}
.boxContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_content{

  z-index: 3 !important;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.window{

  position: absolute;
  left: 0;
  overflow-y: auto;
  height: calc(100vh - 123px);
  left: 100vw;
  width: 100vw;
  box-sizing: border-box;
  padding: 20px;

}

.window .windowTitle{

  font-size: 26px;
  text-align: center;

}

.window.locked .windowTitle{

  color: black;
  text-shadow: 3px 3px 5px black;
  font-size: 40px;
  position: absolute;
  background-color: rgba(255, 0, 0, 0.5);
  width: 100%;
  left: 0px;
  top: 0px;
  height: calc(100% - 155px);
  background-color:rgb(45, 45, 45);
}

.parallaxExampleImage{

  width: 100vw;
  height: 400px;
  background-image: url(https://i1.wp.com/www.kingtumblr.com/wp-content/uploads/2018/07/Mind-Blowing-Wallpaper-HD-1.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-size: 50px;

}

.containerProfile{

  padding: 150px;
  padding-top: 30px;
  box-sizing: border-box;
  position: relative;

}

@media only screen and (max-width: 650px) {

  .containerProfile{

    padding: 20px;
    padding-top: 30px;
    box-sizing: border-box;
    position: relative;

  }

}

.profileInfo{

  width: 100%;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;

}
.profileInfo .user_data{

  display: flex;
  flex-direction: row;
  width: 100%;

}
.profileInfo .profile_image{

  min-width: 150px;
  min-height: 150px;
  max-width: 500px;
  max-height: 500px;
  width: 20vw;
  height: 20vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 100%;

}

.profileInfo .profile_name{

  font-size: 30px;
  font-weight: bold;

}
.profileInfo .profile_desc{

  font-style: italic;
  margin-top: 10px;

}
.footer{

  height: 300px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

}

.a{

  color: #ccccff;

}

.nnBoxes{

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: left;


}

.titlennBoxes{

  margin: 15px;
  margin-top: 30px;
  font-size: 22px;

}

.explore_nns{

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

}

.nnBox{

  display: flex;
  width: 250px;
  margin: 15px;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
  transition: transform 0.1s;

}

.nnBox:hover{

  transform: scale(1.02);

}

.nnBox .nnCollaborators{

  color: var(--dark1-gray) !important;
  font-size: 15px;

}

.nnBox .nnContainer{

  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  background-color: #eeeeee;

}
.nn_picture{

  height: 600px;

}
.nnBox .nnContainer .nnTitle{

  font-size: 22px;
  color: black;
  font-weight: bold;

}

.nnBox .nnImage{

  width: 100%;
  height: 200px;

  background-image: url(https://miro.medium.com/max/3840/1*uQ6lObWq4JCyGvAV60UuQQ.png);
  background-size: cover;
  background-position: center;

}

.navbar_mini_save{

  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  margin-right: 30px;

}

.navbar_mini_save i{

  cursor: pointer;

}
.main_input_container{

  display: flex;
  flex-direction: row;

}
.main_input{

  padding: 12px;
  border: none;
  width: 60%;
  outline: none;
  box-sizing: border-box;

}
.main_input_container .main_input{

  border: none;
  border-radius: 0px;
  padding: 6px 12px;

}

.main_input_container .icon{

  background-color: var(--blue);
  padding: 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;

}
.main_input_container .icon:hover{

  background-color: var(--dark-blue);
  transform: scale(1.05);

}
.remove_button{

  background-color: #dc3545;
  border: 1px solid #dc3545;
  padding: 10px;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;

}
.add_button{

  background-color: #28a745;
  border: 1px solid #28a745;
  padding: 10px;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;

}
.collaborators{

  margin-top: 10px;
  background-color: white;
  height: 350px;
  display: flex;
  min-width: 260px;
  width: calc(60% + 60px);
  flex-direction: column;
  overflow-y: auto;

}
.collaborator{

  background-color: white;
  padding: 10px;
  width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--light1-gray);
  align-items: center;

}

#nnDesc{

  resize: vertical;
  max-height: 100px;
  font-family: "Noto Sans";

}

#saveButton{
  transition: color 0.2s;
}

.half_half_screen{

  display: flex;
  flex-direction: row;


}

.half_one{

  display: flex;
  flex-direction: row;
  flex: 1 1 0;
  justify-content: center;
  /*align-items: center;*/

}
.centerBoy{

  width: 85%;
  position: relative;

}
.half_one .centerBoy>div{

  width: 100% !important;

}

.half_one .centerBoy input,
.half_one .centerBoy select,
.half_one .centerBoy textarea{

  width: 100%;

}

.half_two{

  display: flex;
  flex-direction: row;
  flex: 1 1 0;
  justify-content: center;


}

.dataset_screen{

  display: flex;
  flex-direction: row;

}

.dataset_config input,
.dataset_config select,
.dataset_config textarea{

  width: 100%;

}

.dataset_config{

  width: 600px;
  min-width: 600px;
  padding-top: 20px;

}

.cover{

  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.3s;

}

.popup{

  display: none;
  position: absolute;
  width: 80vw;
  max-height: 80vh;
  overflow-y: auto;
  left: 10vw;
  top: -300px;
  transition: top 0.3s;
  background-color: #ffffff;
  word-wrap: break-word;

}

.up_animation{

  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  display: none;
  transform: scale(0.9);
  padding-left: 20px;
  margin-left: 5px;
  border-left: 1px solid var(--gray);

}

.error{

  transition: border 0.1s;
  border: solid 1px var(--red);
  box-sizing: border-box;

}

.jsonOptions{

  margin-top: 10px;
  display: flex;
  flex-direction: row;

}


.jsonOption{

  padding: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  margin: 10px;
  cursor: pointer;

  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */

}

.jsonOption *{
  cursor: pointer;
}

#jsonReadError{
  color: red;
}

.preInstructions{

  margin-top:25px;
  opacity: 1;
  transform: scale(1);
  display: block;

}

#currentBatch{
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  box-sizing: border-box;
  min-width: 450px;
}

.dataFrame{

  width: 20%;
  border: 1px black solid;
  width: calc(20% - 10px);
  margin: 3px;
  background-color: var(--special1-gray);
  height: 300px;

}

.arrow_button{

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 30px;
  cursor: pointer;
  transition: background-color 0.3s;

}
.arrow_button:hover{
  background-color: rgba(255, 255, 255, 0.6);
}
.dataset_viewer_parent{
  padding: 30px;
  padding-left: 20px;
}
.dataset_viewer{
  display: flex;
  flex-direction: row;
  padding-left: 25px;
}

/* WC Checkbox */

/* Customize the label (the container) */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkboxContainer>.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  transition: background-color 0.3s;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  background-color: var(--blue);
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
  background-color: var(--blue);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkboxContainer>.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#structure{
  padding: 0px;
}

.splitScreen{
  display: flex;
  flex-direction: row;
  overflow-x:hidden;
  overflow-y:hidden;
  height: calc(100vh - 123px);
}

.editor{

  width: 250px;
  background-color: var(--dark3-gray);
  position: relative;
  overflow-y: auto;

}

.properties{
  width: 300px;
  background-color: var(--dark1-gray);
  position: relative;
  overflow-y: auto;
}

#propertiesContainer{
  padding: 0px 20px 20px 20px;
  color: white;
}

#layers{

}

.editorTitle{
  color: white;
  margin: 10px;
  text-align: center;
}

.layer{

  padding: 10px;
  background-color: var(--dark2-gray);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  /* margin: 5px; */

}
.layer:hover, .layer.selected{

  background-color: var(--dark1-gray);

}
.addLayer{
  margin-top: 15px;
}
.dark{

  background-color: var(--dark3-gray);
  color: var(--light2-gray);

}

.fancySelect{

}

.fancyOptions{
  opacity: 0;
  transition: opacity 0.4s;
}

.layerOption{

  padding: 15px;
  background-color: var(--dark3-gray);
  margin-top: 10px;
  cursor: pointer;
  margin-bottom: 10px;

}

.removeIcon{

  cursor: pointer;
  transform: scale(1);
  transition: transform 0.1s;

}

.removeIcon:hover{

  transform: scale(1.1);

}

.dragging{

  background-color: var(--gray) !important;
  color: var(--black) !important;

}
.overarchingContainer{

  margin-bottom: 15px;

}
.selectMenu{

  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.3s, opacity 0.3s;

}

.select{

  cursor: pointer;

}

.selectItem{

  background-color: var(--dark3-gray);
  padding: 10px;
  transition: background-color 0.3s;
  width: 150px;
  font-family: "Noto Sans";
  font-size: 20px;
  color: var(--light2-gray);
  cursor: pointer;

}
.selectItem:hover{

  background-color: var(--dark1-gray);

}
.selectItem .selected{

  background-color: var(--dark2-gray);

}

.editorError{
  color: red;
}

.viewer{
  width: calc(100% - 550px);
}

.blackTitle{
  font-size: 23px;
  margin-bottom: 25px;
}

.text{
  margin-bottom: 10px;
}

.exportScreen{

  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  height: calc(100% - 40px);

}

.exportScreen h2{

  text-align: center;

}

.exportSubscreen:last-child{

  border-right: none;

}

.exportSubscreen{

  display: flex;
  border-right: 3px solid black;
  flex-direction: column;
  flex-grow: 1;

}
.trainedModelsWrapper{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
}
.trainedModel:hover{

  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;

}
.trainedModel{

  display: flex;
  padding: 15px;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  margin: 20px;
  margin-left: 0px;

  font-weight: normal;

  transition: background-color 0.3s;
}

.trainedModel.selected{

  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.2);

}

.importButton{

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: black;
  color: #dedede;
  border: none;
  font-size: 20px;
  margin: 20px;
  margin-left: 0px;

  font-weight: bold;

}

.blackButton{

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: black;
  color: #dedede;
  border: none;
  font-size: 20px;
  margin: 10px 5px 10px 5px;

  font-weight: bold;

}

.selectedModelInfo{
  padding-left: 30px;

}

.selectedModelText{

  display: flex;
  flex-direction: row;
  font-size: 20px;
  margin: 10px 0px 10px 0px;

}

.trainedModelViewer{

  display: flex;
  flex-grow: 1;
  justify-content: center;

}

.selectedModelText span{
  font-weight: bold;
  margin-left: 8px;
}

.exportModelWrapper{

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;

}

.exportModelFuncWrapper{

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.exportModelJSON{

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.exportModelFunc{

  flex-grow: 1;
  display: flex;
  flex-direction: row;

}

.modelCol{

  display: flex;
  flex-direction: column; /*Big brain*/
  justify-content: space-around;
  align-items: stretch;
  flex-grow: 1;

}

#trainedModelTester{
  text-align: center;
}

.finalDeletionConfirmation{
  display:none;
  font-size: 20px;
  padding: 50px;
  margin-top:60px;
  margin-bottom:50px;
  transform: scale(0.6);

  transition: transform 0.5s;
}

.finalDeleteCan{
  /* display: none; */
  position: fixed;
  z-index: 999999;
  font-size: 200px;
  top: 60px;
  left: calc(50vw - 40px);
  transform: scale(0);

  transition: transform 2s, font-size 3s, left 3s, top 3s;
}
