@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');

html, body {
  font-family: "Avenir", "Nunito Sans", Lato, sans-serif;
  font-size: 1em;
  /*background-color: #eee;*/
}


/*Sign-in page*/

/*Background image*/
/*
#user-sign-out{
  height: 100vh;
  padding-top: 80px;
  width: 100%;
  background-image: url("/style/fire.svg");
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  background-position: 90px 0px;
}*/

/*Background texts*/
/*
#user-sign-out h1{
  color: rgb(68, 84, 106);
  margin: 0px;

  font-weight: 200;
  font-size: 5em;
}

#user-sign-out h1 img{
  width: 100px;
  margin-top: -15px;
}

#user-sign-out h1 span{
  font-size: 0.2em;
  font-weight: 200;
}

#user-sign-out h2{
  padding-top: 15px;
  color: rgb(68, 84, 106);
  margin: 0px;
  text-align: center;
  font-weight: 200;
  font-size: 2em;
  font-style: italic;
}

#user-sign-out p {
  color: rgb(68, 84, 106);
  font-size: 0.8em;
}
*/
/* Navigation */
/*Nav image*/
#user-sign-in .navbar-header img {
  height: 40px;
  width: 39px;
  margin-top: -9px;
  display: inline-block;
}

/*Navbar text*/
#user-sign-in .navbar-header span{
  font-family:'Open Sans', sans-serif;
  display: inline-block;
  margin-top: 1px;
  padding-left: 5px;
  padding-right: 8px;
  font-size: 17px;
  font-weight: 400;
  color: rgb(68, 84, 106);
}

#user-sign-in .navbar-header span:hover{
  color: #AAA;
}

#user-sign-in .navbar {
  background-color: #fff;
  /*box-shadow: 0 1px 6px 1px #eee; */
  /*box-shadow: 0px 0px 10px 0px rgba(204,204,204,0.8)*/;
  box-shadow: 0px 0px 5px 1px rgba(240, 240, 240, 0.4);
}

#user-sign-in .navbar-header span:hover{
  color: #AAA;
}

/*Navbar buttons*/
.navbar .btn {
  margin: 8px;
  color: white;
  font-weight: 600;
  margin-right: 0px;
}

/*File upload button*/
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
    background-color: #00B16A;
}

.inputfile + label:hover {
  background-color: #008952;
}

.inputfile + label svg{
 vertical-align: middle;
 fill: white;
 margin-top: -2px;
}

/*Navbar dropdown menu*/
.navbar .dropdown {
  margin: 7px;
  vertical-align: middle;
  display: inline-block;
}

.navbar #user_name{
  text-anchor: middle;
  dominant-baseline: central;
}

.navbar .moreOptions{
  margin-left: -3px;
}

.navbar #dropdownMenuButton{
  cursor: pointer;
}

.navbar #moreOptionsButton{
  cursor: pointer;
  height: 36px;
  width: 30px;
}

.navbar #moreOptionsButton span{
  margin-top: 9px;
  margin-left: 5px;
}

.navbar .dropdown-menu {
  top: 50px;
  right: 0px;
  padding: 0px;
  border: 0px;
  box-shadow: 0 0px 12px rgba(0, 0, 0, .175);
  overflow: hidden ;
  width: 170px;
}

/* Fix to allow nDisplay to take precedence */
.dropdown-item {
  display: block;
}

.navbar .dropdown-item {
  color: rgb(68, 84, 106);
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 1em;
  padding: 6px;
  font-weight: 500;
  cursor: default;
}

.navbar .dropdown-item:hover {
  background-color: #eee;
}

.navbar .dropdown-item:last-of-type{
  border-bottom: 0px;
}

.navbar #sign-out {
  cursor: pointer;
}

.navbar .dropdown-item a {
  color: rgb(68, 84, 106);
  text-decoration: none;
  width: 100%;
  display: block;
}

.dropdown-item.toggle-switch {
  text-align: left;
  padding-left: 20px;
}

.dropdown-item.toggle-switch .switch {
  float: right;
  margin-right: 8px;
}

#pdf_export_item {
  cursor: pointer;
}

#edit-author-button {
  cursor: pointer;
}

#share_schema {
  cursor: pointer;
}

#make-schema-public {
  cursor: pointer;
}

#make-schema-private {
  cursor: pointer;
}

#view-schema-public-url {
  cursor: pointer;
}

#share-schema-community {
  cursor: pointer;
}

#full_user_name{
  color: #999;
  font-size: 0.9em;
  font-weight: 300;
  border-bottom: none;
}

#full_user_name:hover{
  background-color: #fff;
}

/* Storage usage */
#storage_usage_item {
  color: #999;
  font-size: 0.9em;
  font-weight: 300;
  padding-top: 0px;
}

#storage_usage_item:hover{
  background-color: #fff;
}

/*Get more storage*/
#go_premium {
  color: #d3394c;
  cursor: pointer;
}

/*Switch*/
/* The switch - the box around the slider */
.navbar .switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 0px;
}

/* Hide default HTML checkbox */
.navbar .switch input {display:none;}

/* The slider */
.navbar .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.navbar .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.navbar input:checked + .slider {
  background-color: #2196F3;
}

.navbar input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.navbar input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.navbar .slider.round {
  border-radius: 20px;
}

.navbar .slider.round:before {
  border-radius: 50%;
}


/*Dashboard page*/
#document-list-view-tab {
  margin-top: 60px;
  margin-bottom: 60px;
}

/*Document tiles*/
#document_list div {
  margin-top: 10px;
}

#document_list div div {
  border-radius: 7px;
  position: relative;
  padding-left: 15px;
  height: 120px;
  background-color: #fff;
  padding-right: 10px;
  box-shadow: 0px 0px 5px 0px rgba(204, 204, 204, 0.3);
  vertical-align: bottom;
  border: 1px solid #e7e7e7;
}


#document_list div div button {
  position: absolute;
  right: 5px;
  top: 7px;
  display: none;
  background-color: rgba(0,0,0,0);
}

.document_list_item_title {
  color: rgb(68, 84, 106);
  position: absolute;
  bottom: 15;
  width: 90%;
  /* white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
  /* white-space: -pre-wrap;      /* Opera 4-6 */
  /* white-space: -o-pre-wrap;    /* Opera 7 */
  /* white-space: pre-wrap;       /* css-3 */
  /* word-wrap: break-word;     /* Internet Explorer 5.5+ */
  /* white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
  word-break: normal;
  white-space: normal;
}

/*Document tile hover properties*/
#document_list div div:hover{
  background-color: rgb(68, 84, 106);
  cursor: pointer;
}

#document_list div div:hover span{
  color: #fff;
  cursor: pointer;
}

#document_list div div:hover button{
  display: block;
}

#document_list div div button:hover span {
 color: #ccc;
}

/*Add new document button*/
#document_list_add {
  line-height: 120px;
  text-align: center;
  color: rgb(68, 84, 106);
  font-weight: 500;
}

#document_list_add:hover {
  color: #fff;
}

/*Bin page*/
#bin-view-tab {
  margin-top: 60px;
  margin-bottom: 60px;
}

#archive_text {
  position: fixed;
  text-align: center;
  font-size: 150px;
  color: #ccc;
  top: 37vh;
  z-index: 0;
  left: 33vw;
  cursor: default;
  -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 */
}

#search-platform-query {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 5px;
  outline: 0;
  width: 350px;
}

#search-platform-button {
  height: 34px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 7px;
  border: none;
  margin-left: 10px;
  color: #fff;
  background-color: rgb(68, 84, 106);
}

#explore-view-tab {
  margin-top: 70px;
  margin-bottom: 60px; 
}

#explore-view-tab h1 {
  color: rgb(68, 84, 106);
}

#explore-no-results {
  font-size: 22px;
  margin-left: 0;
  margin-top: 30px;
  line-height: 1.8em;
}

/*Document tiles*/
#bin_list div {
  margin-top: 10px;
}

#bin_list div div {
  border-radius: 7px;
  position: relative;
  padding-left: 15px;
  height: 120px;
  background-color: #ccc;
  padding-right: 10px;
  box-shadow: 0px 0px 5px 0px rgba(204, 204, 204, 0.3);
  vertical-align: bottom;
  border: 1px solid #e7e7e7;
  z-index: 2;
}

#bin_list div div button {
  position: absolute;
  color: #666;
  background-color: rgba(0, 0, 0, 0);
}

#bin_list .document_list_item_title {
  color: #666;
}

#bin_list .document_list_item_title:hover {
  cursor: default;
}

.bin_item_delete {
  right: 48px;
  top: 7px;
}

.bin_item_restore {
  position: absolute;
  right: 5px;
  top: 7px;
}

#bin_list #delete-bin-button {
  background-color: #d3394c;
  line-height: 120px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

/*Document tile hover properties*/
#bin_list div div:hover{
  background-color: rgb(68, 84, 106);
  cursor: default;
}

#bin_list div div:hover span{
  color: #fff;
  cursor: pointer;
}

#bin_list div div button:hover span {
 color: #ccc;
}

#bin_list #delete-bin-button:hover {
  background-color: #c43546;
  cursor: pointer;
}

#explore-results div {
  margin-top: 15px;
  margin-bottom: 5px;
}

#explore-results div div {
  border-radius: 7px;
  position: relative;
  padding-left: 15px;
  height: 120px;
  background-color: #fff;
  padding-right: 10px;
  box-shadow: 0px 0px 5px 0px rgba(204, 204, 204, 0.3);
  vertical-align: bottom;
  border: 1px solid #e7e7e7;
  z-index: 2;
}

#explore-results .explore-result-title {
  color: rgb(68, 84, 106);
  position: absolute;
  top: 15px;
  width: 90%;
  word-break: normal;
  white-space: normal;
}

#explore-results .explore-result-author {
  font-size: 0.9em;
  color: #888;
  position: absolute;
  text-align:right;
  padding-right: 3px;
  bottom: 10px;
  width: 90%;
  word-break: normal;
  white-space: normal;
}

#explore-results .explore-result-title:hover {
  cursor: pointer;
}

/*Document tile hover properties*/
#explore-results div div:hover{
  background-color: rgb(68, 84, 106);
  cursor: pointer;
}

#explore-results div div:hover span{
  color: #fff;
  cursor: pointer;
}

#explore-results div div button:hover span {
 color: #ccc;
}

/*Document page*/
.document_wrapper {
  margin-top: 50px;
  overflow-x: hidden;
}

.document_wrapper.document_wrapper_file {
  position: fixed;
  height:calc(100vh - 50px);
  left: 0;
  right: 0;
  top: 50px;
  overflow-y: auto;
  width: 50%;
  margin-top: 0px;
}

.pdf_wrapper {
  padding-right: 5px;
  margin: 50px 0 0 50%;
  position: fixed;
  left: 0;
  top: 0;
  height: calc(100vh - 50px);
  width: 50%;
  border-left: 3px solid #ccc;
}

#pdf_view_close {
  position: fixed;
  margin-left: -30px;
  margin-top: 0px;
  color: #fff;
  background-color: #ccc;
  padding: 4px 4px 4px 7px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
}

#pdf_view_close:hover {
  background-color: #d3394c;
}

#pdf_view_box {
  text-align: center;
}

.img_center_helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

#pdf_view_box img {
  vertical-align: middle;
  max-height: 90%;
  max-width: 90%;
}


/*Document title*/
#document-author {
  color: #999;
  position: fixed;
  font-size: 0.9em;
  text-align: right;
}

#document-author div{
  position: absolute;
  right: 40px;
  width: 150px;
  top: 3px;
}

#document-author-name {
  color: rgba(68, 84, 106,0.7);
  font-size: 1.2em;
  font-weight: 500;
}

#document_save_status, #status, #file_loading_status {
  display: inline-block;
  margin-top: 25px;
  font-size: 0.9em;
  color: gray;
  font-weight: 400;
  padding-bottom: 3px;
}

#title {
  font-size: 1.7em;
  padding-bottom: 2px;
}

#document_title {
  width: 100%;
  /*vertical-align: top;*/
  padding: 0px;
  resize: none;
  overflow: none;
  border: none;
  color: rgb(68, 84, 106);
  font-weight: 300;
}

#title:after {
  content: "";
  display: block;
  border: 0.4px solid rgba(89,92,92, 0.6);
  width: 9%;
  margin-top: 8px;
  margin-bottom: 12px;
}

/*Zoom path*/
#zoom_path_div {
  color: rgb(68, 84, 106);
}

.path_item {
  cursor: pointer;
}

.zoom_path_separator {
  color: #ccc;
  font-size: 0.7em;
  margin-right: 5px;
}

#zoom_path_div:after {
  content: "";
  display: block;
  border: 0.4px solid rgba(89,92,92, 0.3);
  width: 80%;
  margin-top: 5px;
  margin-bottom: 12px;
}

/*Document body*/
#body {
  margin-left: -5px;
  margin-bottom: 30px;
}

/*List items*/
.transparent_textarea {
  background-color: #fff;
  background-color: rgba(0,0,0,0);
  border: 0;
  display: inline-block;
  outline: none;
  overflow-x: hidden;
  overflow-y: hidden;
  resize: none;
  width: calc(100% - 85px);
}

/* Firefox fix line height*/
.transparent_textarea:before {
  color: #fff;
  color: rgba(0,0,0,0);
  content: ".";
  display: inline-block; /* For Firefox */
  margin-left: -4px;
}

.transparent_textarea br {
  display: none;
}

.transparent_textarea div {
  display: inline-block;
}


.transparent_textarea b {
  font-family: "avenir-heavy", "Avenir", "Nunito Sans", Lato, sans-serif;
  font-weight: 600;
}

.transparent_note_textarea {
  background-color: rgba(0,0,0,0);
  border: 0;
  border-left: 1.5px solid rgba(89,92,92,0.3);
  display: block;
  outline: none;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-left: 5px;
  resize: none;
  width: calc(100% - 85px);
}

.transparent_note_textarea b {
  font-family: "avenir-heavy", "Avenir", "Nunito Sans", Lato, sans-serif;
  font-weight: 600;
}

ul {
  /*position: relative;*/
  padding-left: 22px;
}

.li_node {
  padding-bottom: 1px;
  /*padding-top: 1px*/
  margin-top: 4px;
  margin-bottom: 4px;
  padding-left: 15px;
  list-style-type:none;
  /*background-image:url("/style/bullet.png");
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: 0px 7px;*/
  /*position: relative;*/
}

.node_item {
  position: relative;
}

.node_item_dot {
  position: absolute;
  z-index: 5;
  left: -15px;
  top: 7px;
  cursor: pointer;
  -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 */
}

.export_dot {
  position: absolute;
  z-index: 4;
  left: -12px;
}

.expand {
  width: 20px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  /* left: 15px; */
  /* left: 22px; */
  left: -35px;  /* Because now the expand sign is inside <li>. */
  -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 */
}

/*File tags*/
.node_file {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  margin-right: 6px;
  margin-left: 0px;
}

.file_tag {
  display: inline-block;
  color:#FD7F62;
  border-radius: 5px;
  border: 1.5px solid #FD7F62;
  padding-right: 5px;
  padding-left: 5px;
  position: relative;
}

.node_file_delete {
  display: none;
  vertical-align: middle;
  margin-left: 3px;
  color:#FD7F62;
}

.node_file_delete:hover {
  color:#c16049;
}

.file_tag:hover {
  background-color:#FD7F62;
  color: #fff;
}

.progress_bar {
  left: 0px;
  position: absolute;
  background-color: #FD7F62;
  height: 100%;
}

/*.current_root_node:after {
  content: "";
  display: block;
  border: 1px solid rgba(89,92,92, 0.2);
  width: 9%;
  margin-top: 8px;
  margin-bottom: 12px;
}*/

/* Zooming root formatting*/
.current_root_node {
  margin-top: 5px;
}

.current_root_node .transparent_textarea {
  width: 80%;
  /*vertical-align: top;*/
  padding: 0px;
  resize: none;
  overflow: none;
  border: none;
  color: rgb(68, 84, 106);
  font-weight: 300;
  font-size: 1.3em;
}

.current_root_node svg {
  display: none;
}

.current_root_node .export_dot {
  display: none;
}

.current_root_node .node_file {
  vertical-align: top;
}

/* Item colour coding*/
.node_item_level_0 {
  fill: #FD7F62;
}

.node_item_level_1 {
  fill: #80D8E2;
}

.node_item_level_2 {
  fill: #BAE962;
}

.node_item_level_3 {
  fill: #FDC83F;
}

/* Highlight circle styles */
#focus_node_highlight {
  overflow: visible;
  position: absolute;
  left: -10px;
  top: 5px;
}

.highlight_item_level_0 {
  stroke: #FD7F62;
}

.highlight_item_level_1 {
  stroke: #80D8E2;
}

.highlight_item_level_2 {
  stroke: #BAE962;
}

.highlight_item_level_3 {
  stroke: #FDC83F;
}

/* Drag and Drop formmating*/
body.dragging, body.dragging * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor:    -moz-grabbing;
  cursor:         grabbing;
}

.dragged {
  position: absolute;
  opacity: 0.8;
  z-index: 2000;
}

ul#root_node_children li.placeholder {
  position: relative;
  /** More li styles **/
  list-style-type:none;
}

ul#root_node_children li.placeholder:before {
  position: absolute;
  /** Define arrowhead **/
  /*content: "";
  width: 0;
  height: 0;
  margin-top: -5px;
  left: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: #FD7F62;
  border-right: none; */
  content: "";
  width: 85%;
  height: 2px;
  background-color: rgba(50,50,50,0.3);
  top: -4px;
}

/* Dash Board Drag and Drop*/
div#document_list li.placeholder {
  position: relative;
  /** More li styles **/
  list-style: none;
  border-left: 1px solid transparent;
  float: left;
}

div#document_list li.placeholder:before {
  position: absolute;
  /** Define arrowhead **/
  /*position: absolute; */
  content: "";
  width: 0;
  height: 130px;
  top: 15px;
  left: -1px;
  border-left: 2px solid rgba(50,50,50,0.3);
}

/* Utility */
#notification_container {
  width: 300px;
  position: fixed;
  top: 56px;
  right: 40px;
  z-index: 2500;
}

.notif_error {
  position: relative;
  padding: 7px 20px;
  border-radius: 5px;
  color: white;
  background-color: #d3394c;
  margin: 12px 0px;
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 1);
}

.notif_message {
  position: relative;
  padding: 7px 20px;
  border-radius: 5px;
  color: rgb(68, 84, 106);
  background-color: #fff;
  margin: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(180, 180, 180, 0.8);
}

.notif_close_button {
  font-size: 1.5em;
  cursor: pointer;
  position: absolute;
  bottom: 0px;
  right: 7px;
  /*margin-top: -5px;
  margin-right: -13px;
  float: right;*/
  /*font-size: 0.8em;
  text-align: right;
  padding-bottom: 5px;
  display: block;
  top: 5px;
  cursor: pointer;*/
}

.image_thumbnail {
  max-width: 80%;
  max-height: 150px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

#grey_back_drop{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal confirm box */
/* Background */
.modal_confirm_box {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.2s;
}

/* Modal Content */
.modal_confirm_box_content {
  display: none;
  color: rgb(68, 84, 106);
  background-color: #fefefe;
  margin: auto;
  padding: 15px;
  padding-bottom: 10px;
  width: 32%;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  /*-webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  position: fixed;
  top: 0px;*/
}

.modal_confirm_box_content .btn{
  float: right;
  color: #fff;
  font-weight: 500;
  padding: 4px 20px;
  border-radius: 7px;
  font-size: 0.9em;
}

.modal_confirm_box_content #model_cancel_btn {
  background-color: #ccc;
}

.modal_confirm_box_content #model_yes_btn {
  margin-left: 10px;
  background-color: #d3394c;
}

/* Background */
.modal_confirm_box2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.2s;
}

/* Modal Content */
.modal_confirm_box_content2 {
  display: none;
  color: rgb(68, 84, 106);
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  padding-bottom: 10px;
  width: 40%;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  /*-webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  position: fixed;
  top: 0px;*/
}

.modal_confirm_box_content2 .btn{
  float: right;
  color: #fff;
  font-weight: 500;
  padding: 4px 20px;
  border-radius: 7px;
  font-size: 0.9em;
}

.modal_confirm_box_content2 #model_cancel_btn2 {
  background-color: #bbb;
}

.modal_confirm_box_content2 #model_yes_btn2 {
  margin-left: 10px;
  background-color: #00B16A;
}

.modal_confirm_box_content #textual-request-save {
  margin-left: 10px;
  background-color: #00B16A;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 7px;
  border: none;
  color: #fff;
  float: right;
  font-size: 0.9em;
}

.modal_confirm_box_content #textual-request-cancel {
  background-color: #d3394c;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 7px;
  border: none;
  color: #fff;
  float: right;
  font-size: 0.9em;
}

#textual-request-input {
  width: 270px;
  margin-bottom: 10px;
}

/* Share schema box */
#share_schema_box_content {
  display: none;
  background-color: #fefefe;
  margin: auto;
  padding: 15px;
  padding-bottom: 10px;
  width: 32%;
  border-radius: 8px;
  color: rgb(68, 84, 106);
  box-shadow: 0px 0px 10px 0px rgba(180, 180, 180, 0.8);
}

#shareButton, #share_cancel_btn {
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 7px;
  border: none;
  color: #fff;
  float: right;
  font-size: 0.9em;
}

#shareButton {
  background-color: #00B16A;
  margin-left: 10px;
}

#share_cancel_btn {
  background-color: #d3394c;
}

#shareWithEmail {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 5px;
  outline: 0;
}

/* Name box */
#textual-request-input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 5px;
  outline: 0;
}

/* The Close Button */
#modal_confirm_box_close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#modal_confirm_box_close:hover,
#modal_confirm_box_close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*@-webkit-keyframes slideIn {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes slideIn {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}*/

@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

/* Modal video tutorial */
.video {
  cursor: pointer;
  width: 100%;
}

.modal_video {
  height: 75%;
  margin-top: 80px;
  max-height: 720px;
  max-width: 1280px;
  width: 90%;
}

.modal_video_body {
  padding: 0;
}

.video_close {
  background-color: #ccc;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  padding: 5px;
  position: absolute;
  right: -15px;
  top: -18px;
}

.video_close:hover {
  color: #d3394c;
}

.video_close span {
  padding-bottom: 1px;
  padding-left: 2px;
}

/* Toolbox */ 
.toolbox_container {
  display: inline-block;
}

.toolbox-float {
  height: 24px;
  border-radius: 12px;
}

.toolbox-float.dot {
  width: 24px;
  cursor: pointer;
}

.toolbox-float .arrow {
  color: #777;
  top: 4px;
  left: 2px;
}

.toolbox-float.bar {
  color: #777;
}

.toolbox-bar-button {
  position: relative;
  display: inline-block;
  min-width: 30px;
  padding: 0px 6px 0px 6px;
  cursor: pointer;
}

.toolbox-bar-button-divider {
  display: inline-block;
  padding: 1px 0px;
}

.blurredElement {
   /* Any browser which supports CSS3 */
  filter: blur(2px);

  /* Webkit in Chrome 52, Safari 9, Opera 39, and earlier */
  -webkit-filter: blur(2px);
}


#top-level-google-sign-in-button {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(255,255,255,0);
  position: fixed;
  z-index: 2000;
}

.google-button-wrapper {
  padding: 50px;
  z-index: 3000;
  top: 22%;
  display: block;
  position: fixed;
  left: 50%;
  margin-left: -350px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 1px 1px 15px 0px rgba(173,173,173,1);
  border-radius: 10px;
  width: 700px;
}

.google-button-wrapper h1{
  font-weight: 100;
  color: rgb(68, 84, 106);
  display: inline-block;
  font-size: 53px;
  margin: 0px;
  margin-left: 10px;
}

.google-button-wrapper h2{
  font-weight: 100;
  font-size: 30px;
  color: rgb(68, 84, 106);
  text-align: center;
  margin-bottom: 40px;
}

.google-button-wrapper h2 span{
  color: rgb(236, 93,87);
}

.google-button-wrapper img {
  width: 50px;
  vertical-align: top;
  margin-left: 170px;
}

.google-button-wrapper .google-sign-in {
  background-color: #eee;
  margin-left: 115px;
}

.google-button-wrapper .google-sign-in span{
  margin-right: 20px;
}


.nDisplay {
  display: none;
}

.navbar .divider-vertical {
  height: 24px;
  width: 1px;
  margin: 12 15 0 5px;
  border-left: 1px solid #bcbcbc;
  display: inline-block;
  float: left;
}
