.autoship-widget-iframe {
  border: none;
  width: 100%;
  height: 100%;
}

#autoship-select-frequency-dialog, #autoship-select-next-occurrence-dialog {
  display: none;
  position: fixed;
  top: 100px;
  right: 100px;
  height:400px;
  width: 400px;
  background: white;
  border: 1px solid black;
  z-index: 10000;
}

#autoship-customer-bot {
  position: relative;
  height: 350px;
  width: 100%;
  border: 1px solid gray;
}

.autoship-schedule-cart {
  position: relative;
  width: 100%;

  .frequency-title {
    white-space: nowrap;

    h3 {
      width: 60%;
      display: inline-block;
      margin-right: 0;
      margin-left: 0;
      white-space: normal;
    }

    .next-occurrence {
      width: 40%;
      display: inline-block;
      margin-right: 0;
      margin-left: 0;
      white-space: normal;
    }
  }

  table.autoship-schedule-cart-items {
    border: none;

    td {
      border: none;
    }
  }

  .autoship-schedule-cart-item {
    margin-top: 5px;
    margin-bottom: 5px;

    img {
      width: 25px;
    }
  }
}

.autoship-schedule-options {
  margin: 20px 0;

  .frequency-type-label {
    font-weight: bold;
  }

  .autoship-old-price {
    color: grey;
    text-decoration: line-through;
    font-style: italic;
  }

  .autoship-discounted-price {
    color: red;
  }

  select {
    display: inline;
  }

  select.autoship-frequency-select {
    .current-frequency {
      font-weight: bold;
    }
  }

  .loading {
    display: none;
  }

  .autoship-frequency {
    display: none;
  }

  .autoship-frequency.active {
    display: block;
  }

}

.autoship-schedule-options.hidden {
  display: none;
}

.autoship-schedule-options.loading {
  > * {
    display: none;
  }
  .loading {
    display: block;
  }
}