.tabber ul {
  display: flex;
}

.toolbox ul.dial .ico-column01 {
  border-bottom: 1px solid #545454;
}

.toolbox ul.dial li {
  border: none;
}

.maker .toolbox ul.ico-column03 {
  margin: 0;
  list-style: none;
  /*display: flex;*/
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid #545454;
  box-sizing: border-box;
  overflow-y: scroll;
  position: relative;
  height: 400px;
}

.maker .toolbox ul.ico-column03 li {
  /*width: calc(100% / 3);*/
  width: 100%;
  border-bottom: 1px solid #545454;
  border-right: 1px solid #545454;
}

.maker .toolbox ul.ico-column03 li img {
  cursor: pointer;
}

.maker .toolbox ul.ico-column02 {
  margin: 0;
  list-style: none;
  display: flex;
  margin: 0;
}

.maker .toolbox ul.ico-column02 li:first-child {
  border-right: 1px solid #545454;
}

.maker .toolbox ul.ico-column02 li {
  width: calc(100% / 3);
  border-bottom: 1px solid #545454;
}

.maker .toolbox ul.ico-column02 li:last-child {
  width: calc(100% * 2 / 3);
}

.maker .toolbox ul.ico-column03 li img {
  cursor: pointer;
}

.maker .toolbox ul.ico-column02 li img {
  cursor: pointer;
}

span.bulbstringth_flash_note {
  color: #f80073;
  line-height: 1.4;
}

.chooser {
  width: 22%;
}

.twod ul li, .threed ul li, .icedrop ul li {
  width: 20%;
}

/* NEW CSS TYRONE */

.side-bar-btn {
  width: 100%;
  border-radius: 2px;
}

.project-li {
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
}

.active-project {
  background-color: #099;
  border-radius: 2px;
  color: #FFF;
  margin-bottom:5px;
}

.user-icon {
  width: 20px;
}

#login,#password-reset, #register {
  display: none;
  width: 100%;
  height: 100%;
  background: #fafafa;
  position: fixed;
  z-index: 9999;
  padding-bottom: 50px;
  overflow-y: scroll;
}
#login > .form-container {
  width: 400px;
  margin: 100px auto 0px;
}
#password-reset > .form-container {
  width: 400px;
  margin: 50px auto 0px;
}
.form-container > h1 {
  text-align: center;
}
.link-div {
  margin-top: 40px;
}

#register {
  display: none;
  width: 100%;
  height: 100%;
  background: #fafafa;
  position: fixed;
  z-index: 9999;
}
#register > .form-container {
  width: 400px;
  margin: 100px auto 0px;
}

.go-to-forgot-password {
  color:#333;
  cursor: pointer;
}

.go-to-login-btn{
  cursor: pointer;
}


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 100px; /* 30px from the bottom */
  z-index: 99999;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.error-snack {
  background-color: red;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* SPINNER */
.plan-list-loader {
  display: none;
  margin-left: calc(50% - 15px);
  border: 8px solid #f3f3f3;
  border-top: 8px solid #eccc1d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  background-color: #FFF;
}

.user-info-loader {
  display: none;
  margin-left: calc(50% - 15px);
  border: 8px solid #f3f3f3;
  border-top: 8px solid #eccc1d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

.user-password-loader {
  display: none;
  margin-left: calc(50% - 15px);
  border: 8px solid #f3f3f3;
  border-top: 8px solid #eccc1d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

.loader {
  display: none;
  position: fixed;
  margin-left: calc(50% - 60px);
  margin-top: 200px;
  z-index: 999999;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #eccc1d;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-error-text {
  color: red;
}

.product-item-img {
  width: 50px !important;
  display: inline-block;
}
.product-item-name {
  display: inline;
  font-size: 12px;
}
.product-items {
  cursor: pointer;
}
.product-items:hover {
  background: #FFF;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* 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 Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 350px;
}

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

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