.sbd-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  display: none;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  left: 0px;
  top: 0px;
  z-index: 300;
  display: none;
  font-size: 14px;
  font-family: open_sansregular;
}

.modal-panel {
  position: absolute;
  top: 20px;
  left: 110px;
  width: calc(100% - 220px);
  height: calc(100% - 40px);
  background: white;
  display: none;
}

.modal-panel.fixed {
  position: absolute;
  top: 20px;
  left: calc((100vw - 900px) / 2);
  width: 900px;
  height: calc(100% - 40px);
  background: white;
  display: none;
}

.modal-panel.fixed-small {
  position: absolute;
  top: 20px;
  left: calc((100vw - 800px) / 2);
  width: 800px;
  height: calc(100% - 40px);
  background: white;
  display: none;
}

.modal-panel-small {
  position: absolute;
  top: 20px;
  left: calc(50% - 300px);
  width: 600px;
  height: calc(100% - 40px);
  background: #3e3e3e;
  display: none;
}

.modal-panel .panel-top-bar,
.modal-panel-small .panel-top-bar {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 90px;
  color: black;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

.modal-panel .panel-scroll-container {
  width: 100%;
  height: calc(100% - 90px);
  position: absolute;
  top: 90px;
  left: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}

.modal-panel-small .panel-scroll-container {
  width: 100%;
  height: calc(100% - 90px);
  position: absolute;
  top: 90px;
  left: 0px;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
}

.modal-panel .panel-scroll-container .subtitle,
.modal-panel-small .panel-scroll-container .subtitle {
  height: 30px;
  line-height: 30px;
  margin-bottom: 10px;
  font-family: open_sanssemibold;
  letter-spacing: 3px;
  color: black;
}

.input-row {
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin-bottom: 10px;
}
.input-label {
  height: 30px;
  line-height: 30px;
  width: 120px;
  margin-right: 10px;
}

.modal-panel .panel-top-bar .title-container,
.modal-panel-small .panel-top-bar .title-container {
  margin-left: 40px;
  margin-top: 15px;
  position: relative;
  height: 52px;
}

.modal-panel .panel-top-bar .title-container .modal-title,
.modal-panel-small .panel-top-bar .title-container .modal-title {
  height: 100%;
  line-height: 52px;
  width: 400px;
  display: inline-block;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: open_sanssemibold;
}

.modal-left-panel {
  width: 50%;
  height: 100%;
  background-color: white;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 20px;
  overflow: auto;
}

.modal-right-panel {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  overflow-x: auto;
}

/*
#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
 -webkit-transform: rotate(45deg);
 -moz-transform: rotate(45deg);
 -o-transform: rotate(45deg);
 transform: rotate(45deg);
}

#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
 -webkit-transform: rotate(-45deg);
 -moz-transform: rotate(-45deg);
 -o-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(1) {
 left: 4px;
 top: 7px;
}

#nav-icon.open span:nth-child(2) {
 left: calc(50% - 4px);
 top: 7px;
}

#nav-icon.open span:nth-child(3) {
 left: -50%;
 opacity: 0;
}

#nav-icon.open span:nth-child(4) {
 left: 100%;
 opacity: 0;
}

#nav-icon.open span:nth-child(5) {
 left: 4px;
 top: 14px;
}

#nav-icon.open span:nth-child(6) {
 left: calc(50% - 4px);
 top: 14px;
}
*/

/* ==========================================================================
  ALERT BOX
   ========================================================================== */

.alert-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.alert-container {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.alert-box {
  position: relative;
  width: 400px;
  height: auto;
  border-radius: 3px;
  background: white;
  color: white;
  font-family: open_sansregular;
}

.alert-title {
  font-family: open_sanssemibold;
  margin-bottom: 10px;
  font-size: 18px;
}

.alert-message {
  font-family: open_sansregular;
  font-size: 16px;
  margin-bottom: 20px;
}

.alert-icon {
  position: absolute;
  top: -25px;
  left: 175px;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  text-align: center;
  color: white;
  line-height: 50px;
  font-size: 16px;
  border-radius: 50px;
  overflow: hidden;
}

.alert-content {
  width: 100%;
  padding-top: 40px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.alert-content .alert-title {
  font-size: 18px;
  font-family: open_sanssemibold;
  text-align: center;
}

.alert-content .alert-message {
  font-size: 18px;
  font-family: open_sansregular;
  text-align: center;
  color: black;
}

.alert-btns {
  margin-top: 20px;
  width: 100%;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.alert-btn {
  text-align: center;
  height: 30px;
  line-height: 30px;
  margin-bottom: 5px;
  color: white;
  border-radius: 3px;
  letter-spacing: 2px;
  font-size: 14px;
  font-family: open_sanssemibold;
  text-transform: uppercase;
  cursor: pointer;
}

.alert-btn:hover {
  opacity: 0.5;
}

.alert-button-1 {
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  color: black;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.alert-button-2 {
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  background: #eee;
  color: black;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.alert-box-x {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/close_white.png);
  cursor: pointer;
}

/* ==========================================================================
     INVOICES
      ========================================================================== */

.invoice-row {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.invoice-row:hover {
  background-color: white;
  box-shadow: -3px 3px 10px #ccc;
  z-index: 100;
}

.invoice-row .invoice-desc {
  flex-grow: 1;
  line-height: 40px;
  height: 40px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: open_sansregular;
  padding-left: 20px;
}

.invoice-row .invoice-price {
  flex-basis: 100px;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 40px;
  height: 40px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: open_sanssemibold;
  padding-right: 20px;
  border-left: 1px solid #eee;
  text-align: right;
}

.invoice-row .invoice-icon {
  flex-basis: 40px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-right: 1px solid #eee;
  text-align: center;
}

#link-btn-0 {
  text-decoration: none;
}

/* ==========================================================================
   BOOST MODAL
   ========================================================================== */

   .boost-overlay {
    position: absolute;
    top:0px;
    left:0px;
    width:100vw;
    height:100vh;
    background-color: rgba(0,0,0,0.5);
    z-index:999;
    display:none;
  }

  .boost-flex {

    width:100vw;
    height:100vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .boost-window {
    width:480px;
    height:575px;
    background:white;
    box-sizing: border-box;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 48px;
    position: relative;
  }

  .boost-close-btn {
    width:40px;
    height:40px;
    position: absolute;
    top:16px;
    right:16px;
    cursor: pointer;
  }

  .boost-ad-campaign {
    text-align: center;
  }

  .boost-tutorial {
    margin-top:20px;
  }

  .boost-tutorial a {
    color: #00A567;
    text-decoration: underline;

  }

  .boost-get-started {
    margin-top:20px;
    text-align: center;
  }

  .boost-get-started-btn {
    display: inline-block;
    text-align: center;
    color:white;
    font-family: open_sansregular;
    font-size:16px;
    line-height: 30px;
    width: 140px;
    height: 30px;
    background: #00A567;
    border-radius: 3px;
    cursor: pointer;

  }