.orange-color {
  color: #ff6947 !important;
}
.orange-color:hover {
  text-decoration: none;
  color: #ff6969;
}

.dark-blue-color {
  color: #2e4369;
  text-decoration: none;
}

.navbar-holder {
  width: 220px;
  position: absolute;
  top: 0px;
  height: 100%;
  background: #14253e;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  -o-transition: all ease-in-out 500ms;
  transition: all ease-in-out 500ms;
}

.navbar-holder.shrink {
  width: 55px;
}

.navbar-holder.shrink .navbar-head span {
  display: none;
}

.navbar-holder.shrink .navbar-item-span {
  display: none;
}

.navbar-holder .navbar-head {
  text-align: left;
  padding: 10px 15px;
}
.navbar-holder .navbar-body ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.navbar-holder .navbar-body ul li {
  cursor: pointer;
  min-height: 32px;
  color: #f2f3f6;
  padding: 5px 25px;
  -webkit-transition: 200ms all;
  -moz-transition: 200ms all;
  -ms-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  font-size: 15px;
}

.navbar-holder .navbar-body ul li .fas {
  margin-right: 10px;
  width: 19px;
}
.navbar-holder .navbar-body ul li:hover {
  min-height: 32px;
  color: #00a4df;
  background: #2e4369;
}

.navbar-holder .navbar-body ul li.active {
  min-height: 32px;
  border-left: 2px solid #00c6ff;
  color: #00c6ff;
  background: #2e4369;
}

#top-nav {
  width: 100%;
  height: 80px;
  background: white;
  border-bottom: 1px solid #e2e6e8;
  padding: 15px;
}

#top-nav h1,
#top-nav h2,
#top-nav h3,
#top-nav h4,
#top-nav h5,
#top-nav h6 {
  margin: 0;
}

#view-frame {
  width: calc(100% - 220px);
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  overflow: scroll;
  background: #f2f5f7;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  -o-transition: all ease-in-out 500ms;
  transition: all ease-in-out 500ms;
}

#view-frame.expanded {
  width: calc(100% - 55px);
}

@media (max-width: 768px) {
  #view-frame {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    overflow: scroll;
    background: #f2f5f7;
  }

  .navbar-holder {
    width: 100%;
    z-index: 10;
    left: -100%;
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -ms-transition: 300ms all;
    -o-transition: 300ms all;
    transition: 300ms all;
  }

  .navbar-holder.open {
    left: 0;
  }
}

.floating-button {
  position: absolute;
  z-index: 1000;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  height: 50px;
  width: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.npsds {
  padding-left: 0px;
  padding-right: 0px;
}

.nmsds {
  margin-left: 0px;
  margin-right: 0px;
}

.pointer {
  cursor: pointer;
}

.loader-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
  z-index: 0;
}

.loader-backdrop.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
  z-index: 1500;
}

.loader-backdrop table {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}

.loader-backdrop td {
  vertical-align: middle;
  text-align: center;
}

.brand-button {
  border-radius: 20px !important;
  background: #14253e !important;
  color: white !important;
}

.brand-button.active {
  font-size: 16px;
  font-weight: bolder;
}

.button-rounder {
  -webkit-border-radius: 20px !important;
  -moz-border-radius: 20px !important;
  border-radius: 20px !important;
}

.modal {
  overflow: scroll !important;
}

.report-title {
  color: #5b7fbd;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

input:checked + .slider {
  background-color: #ff6947;
}

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

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

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

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

#items-sort-list {
  list-style-type: none;
}

#items-sort-list li {
  margin: 0px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid white;
  color: white;
  text-transform: capitalize;
  background-color: #93d4d6;
  cursor: move;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

ul.steps-container {
  align-content: center;
  align-items: center;
  counter-reset: stepCount;
  display: flex;
  justify-content: space-around;
  margin: 20px 0px; /* for codepen */
}

li.step {
  background: dodgerblue;
  color: white;
  content: " ";
  display: flex;
  flex-grow: 1;
  height: 0.3em;
  line-height: 1em;
  margin: 0;
  position: relative;
  text-align: right;
  z-index: 2;
  transition: 0.4s;
}

li.step::before {
  color: white;
  background: dodgerblue;
  border-radius: 50%;
  counter-increment: stepCount;
  content: counter(stepCount);
  height: 2em;
  left: -2em;
  line-height: 2em;
  position: absolute;
  text-align: center;
  top: -0.85em;
  width: 2em;
  transition: 0.4s;
}

li.step.active {
  background-color: lightblue;
}

li.step.active ~ li {
  background-color: lightblue;
}

li.step.active ~ li::before {
  background-color: lightblue;
}

li.step:last-child {
  flex-basis: 0;
  flex-grow: 0;
  flex-shrink: 1;
  /* Shorthand: flex: 0 1 0; */
}

.shop-list-item {
  min-height: 272px;
}

.shop-thumbnail {
  padding: 0;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-transition: 200ms all;
  -moz-transition: 200ms all;
  -ms-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  cursor: pointer;
}

.shop-thumbnail:hover h4 {
  padding: 40px 0px;
}

.shop-thumbnail h4 {
  min-height: 150px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  margin: 0px;
  padding: 30px 10px;
  -webkit-transition: 200ms all;
  -moz-transition: 200ms all;
  -ms-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.shop-thumbnail small {
  color: white;
}

.mr-1 {
  margin-right: 5px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 20px;
}

.shop-section {
  border-top: 1px solid #e2e6e8;
  width: 100%;
  -webkit-transition: all ease 200ms;
  -moz-transition: all ease 200ms;
  -ms-transition: all ease 200ms;
  -o-transition: all ease 200ms;
  transition: all ease 200ms;
  height: 100px;
}

.shop-section .section-icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: 50px;
  display: inline-block;
  width: 50px;
  background: white;
  text-align: center;
  justify-content: center;
  vertical-align: text-bottom;
  padding: 15px;
  margin-right: 15px;
  font-size: 20px;
  color: #2e4369;
}

.shop-section.active .section-icon,
.shop-section:hover .section-icon {
  background: #f2f5f7;
}

.shop-section .header {
  cursor: pointer;
  padding: 20px;
  -webkit-transition: all ease 200ms;
  -moz-transition: all ease 200ms;
  -ms-transition: all ease 200ms;
  -o-transition: all ease 200ms;
  transition: all ease 200ms;
}

.shop-section:hover {
  background: white;
}

.shop-section .section-title {
  width: calc(100% - 90px);
  display: inline-block;
}

.shop-section small {
  color: #5d7079;
}

.shop-section .option-content {
  display: none;
  -webkit-transition: all ease 200ms;
  -moz-transition: all ease 200ms;
  -ms-transition: all ease 200ms;
  -o-transition: all ease 200ms;
  transition: all ease 200ms;
  padding-bottom: 20px;
}

.shop-section.active {
  border: none;
  height: auto;
  background: white;
  margin: 24px 0px;
  -webkit-box-shadow: 0 1px 10px #e2e6e8;
  -moz-box-shadow: 0 1px 10px #e2e6e8;
  box-shadow: 0 1px 10px #e2e6e8;
}

.shop-section.active + .shop-section {
  border-top-width: 0;
}

.shop-section.active .option-content {
  display: block;
}

.floating-options {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  text-align: center;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 15px;
  right: 15px;
  background: #14253e;
  cursor: pointer;
}

.floating-options:hover {
  background: #2e4369;
}

.floating-options .dropdown-toggle {
  padding: 10px;
}

.canvas-width {
  width: 100%;
  height: 150px;
}

.canvas-most-sold {
  width: 100%;
  height: 250px;
}

.balance-report-container {
  padding: 30px 20px 10px;
}

.reports-header {
  padding: 15px;
  background: white;
  border-bottom: 1px solid #ccc;
}

.report-row-heading {
  background: #14253e;
  color: white;
}

.nmt {
  margin-top: 0;
}

.verification-requirements-list {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
