/* line 1, partials/_element-reset.scss */
html, body {
  height: 100%;
  font-family: "Open sans", sans-serif;
}

/* line 6, partials/_element-reset.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* line 10, partials/_element-reset.scss */
a {
  cursor: pointer;
  color: #3abdc1;
  text-decoration: underline;
}

/* line 16, partials/_element-reset.scss */
p, span {
  font-size: 14px;
  line-height: 24px;
  color: #4a4a4a;
}

/* line 22, partials/_element-reset.scss */
label {
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* line 3, partials/__radio.scss */
input[type='radio'].fancy {
  display: none;
}
/* line 6, partials/__radio.scss */
input[type='radio'].fancy + label {
  position: relative;
  display: block;
  padding-left: 35px;
  cursor: pointer;
  line-height: 18px;
}
/* line 13, partials/__radio.scss */
input[type='radio'].fancy + label .indicator {
  position: absolute;
  top: -5px;
  left: 0;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  border: 1px solid #979797;
}
/* line 23, partials/__radio.scss */
input[type='radio'].fancy + label .indicator.multi-line {
  top: 5px;
}
/* line 28, partials/__radio.scss */
input[type='radio'].fancy + label .indicator:after {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background: #1EB2B6;
  content: '';
  display: none;
}
/* line 46, partials/__radio.scss */
input[type='radio'].fancy:checked + label .indicator:after {
  display: block;
}
/* line 55, partials/__radio.scss */
input[type='radio'].fancy:disabled + label .indicator {
  background: #F2F2F2;
  border: #B7B7B7;
}
/* line 59, partials/__radio.scss */
input[type='radio'].fancy:disabled + label .indicator:after {
  background: #3FD3D7;
}

/* line 3, partials/__checkbox.scss */
input[type='checkbox'].fancy {
  display: none;
}
/* line 6, partials/__checkbox.scss */
input[type='checkbox'].fancy + label {
  position: relative;
  display: block;
  padding-left: 40px;
  cursor: pointer;
  line-height: 30px;
}
/* line 13, partials/__checkbox.scss */
input[type='checkbox'].fancy + label .indicator {
  position: absolute;
  top: 2px;
  left: 0;
  width: 27px;
  height: 27px;
  background: white;
  border: 1px solid #979797;
  box-sizing: content-box;
}
/* line 23, partials/__checkbox.scss */
input[type='checkbox'].fancy + label .indicator:after {
  position: absolute;
  top: 1px;
  left: 8px;
  width: 6px;
  height: 14px;
  background: #FFFFFF;
  border: solid #F1723D;
  border-width: 0 6px 6px 0;
  transform: rotate(45deg);
  content: '';
  display: none;
  box-sizing: content-box;
}
/* line 44, partials/__checkbox.scss */
input[type='checkbox'].fancy:checked + label .indicator:after {
  display: block;
}
/* line 53, partials/__checkbox.scss */
input[type='checkbox'].fancy:disabled + label .indicator {
  background: #F2F2F2;
  border: #B7B7B7;
}
/* line 57, partials/__checkbox.scss */
input[type='checkbox'].fancy:disabled + label .indicator:after {
  background: #F2F2F2;
  border: solid #FF814B;
  border-width: 0 6px 6px 0;
}

/* line 1, partials/__tooltip.scss */
.info-tooltip {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: #BBBBBB;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
/* line 11, partials/__tooltip.scss */
.info-tooltip span {
  font-family: 'Georgia', serif;
  font-size: 15px;
  line-height: 15px;
  color: white;
  position: absolute;
  left: 50%;
  margin-left: -2px;
}
/* line 21, partials/__tooltip.scss */
.info-tooltip:hover, .info-tooltip.clicked, .info-tooltip:focus {
  text-decoration: none;
}

/* line 26, partials/__tooltip.scss */
.tooltip.bottom {
  opacity: 1;
}
/* line 29, partials/__tooltip.scss */
.tooltip.bottom > .tooltip-inner {
  background: white;
  box-shadow: #353535 1px 5px 30px;
  border-radius: 5px;
  color: #353535;
  padding: 20px 30px;
  text-align: center;
  width: 320px;
  max-width: 320px;
}
/* line 40, partials/__tooltip.scss */
.tooltip.bottom > .tooltip-arrow {
  border-bottom-color: white;
}

/* line 7, partials/_buttons.scss */
input[type='submit'].btn-primary, input[type='button'].btn-primary, button.btn-primary {
  background: #F1723D;
  color: white;
  border-radius: 0;
  border: none;
  text-shadow: none;
  width: 100%;
  line-height: 45px;
  font-size: 16px;
  font-family: "Open sans", sans-serif;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 24, partials/_buttons.scss */
input[type='submit'].btn-primary.btn-green, input[type='button'].btn-primary.btn-green, button.btn-primary.btn-green {
  background: #83C44E;
}
/* line 28, partials/_buttons.scss */
input[type='submit'].btn-primary:focus, input[type='button'].btn-primary:focus, button.btn-primary:focus {
  border-color: #3abdc1;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(58, 189, 193, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(58, 189, 193, 0.6);
}
/* line 36, partials/_buttons.scss */
input[type='submit'].btn-primary:focus, input[type='submit'].btn-primary:hover, input[type='submit'].btn-primary:active, input[type='button'].btn-primary:focus, input[type='button'].btn-primary:hover, input[type='button'].btn-primary:active, button.btn-primary:focus, button.btn-primary:hover, button.btn-primary:active {
  background: #FF814B;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  outline: 0 none;
}
/* line 46, partials/_buttons.scss */
input[type='submit'].btn-primary:active, input[type='button'].btn-primary:active, button.btn-primary:active {
  background: #F1723D;
}
/* line 52, partials/_buttons.scss */
input[type='submit'].btn-checkout, input[type='button'].btn-checkout, button.btn-checkout {
  padding: 10px;
  line-height: 5px;
}
/* line 56, partials/_buttons.scss */
input[type='submit'].btn-checkout:active, input[type='button'].btn-checkout:active, button.btn-checkout:active {
  background: #F1723D;
}
/* line 61, partials/_buttons.scss */
input[type='submit'].btn-checkout span strong, input[type='button'].btn-checkout span strong, button.btn-checkout span strong {
  color: white;
  display: inline-block;
  line-height: 45px;
  padding: 0;
  font-size: 28px;
  font-weight: normal;
}
/* line 70, partials/_buttons.scss */
input[type='submit'].btn-checkout span, input[type='button'].btn-checkout span, button.btn-checkout span {
  display: inline-block;
  line-height: 10px;
  padding-bottom: 5px;
  color: white;
  font-size: 12px;
}

@media (min-width: 768px) {
  /* line 80, partials/_buttons.scss */
  .form-btn-right {
    float: right;
  }
}
/* line 3, partials/_header.scss */
.container-fluid > header {
  background-color: #ffffff;
  height: auto;
  min-height: 80px;
}
@media (max-width: 850px) {
  /* line 3, partials/_header.scss */
  .container-fluid > header {
    height: auto;
  }
}
@media (max-width: 1200px) {
  /* line 12, partials/_header.scss */
  .container-fluid > header .container {
    width: 100%;
    padding: 0;
  }
}
/* line 18, partials/_header.scss */
.container-fluid > header .logo {
  text-align: center;
  margin: 10px 0;
}
@media (min-width: 999px) {
  /* line 19, partials/_header.scss */
  .container-fluid > header .logo a {
    display: block;
    height: 80px;
  }
}
@media (min-width: 999px) {
  /* line 24, partials/_header.scss */
  .container-fluid > header .logo a img {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  /* line 24, partials/_header.scss */
  .container-fluid > header .logo a img {
    margin: 0 12px;
  }
}
@media (max-width: 999px) {
  /* line 24, partials/_header.scss */
  .container-fluid > header .logo a img {
    display: block;
    height: 50px;
    padding: 5px;
  }
}
@media (max-width: 768px) {
  /* line 18, partials/_header.scss */
  .container-fluid > header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
  }
}
/* line 49, partials/_header.scss */
.container-fluid > header .logo .line-separator {
  font-size: 30px;
  color: #3abdc1;
}
/* line 55, partials/_header.scss */
.container-fluid > header nav {
  text-align: center;
}
@media (max-width: 768px) {
  /* line 55, partials/_header.scss */
  .container-fluid > header nav {
    -webkit-box-shadow: 0px -1px 2px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px -1px 2px rgba(50, 50, 50, 0.1);
    box-shadow: 0px -1px 2px rgba(50, 50, 50, 0.1);
  }
}
/* line 64, partials/_header.scss */
.container-fluid > header .nav-tabs {
  float: none;
  display: inline-block;
  box-sizing: border-box;
  border: none;
}
/* line 70, partials/_header.scss */
.container-fluid > header .nav-tabs a {
  box-sizing: border-box;
  line-height: 30px;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #4a4a4a;
  padding: 15px 5px 5px;
  border: none;
  text-decoration: none;
}
@media (max-width: 768px) {
  /* line 70, partials/_header.scss */
  .container-fluid > header .nav-tabs a {
    font-size: 16px;
    padding: 5px;
    color: #d8d8d8;
  }
}
/* line 88, partials/_header.scss */
.container-fluid > header .nav-tabs a .checkout-step-number {
  display: block;
  font-size: 22px;
}
@media (max-width: 768px) {
  /* line 88, partials/_header.scss */
  .container-fluid > header .nav-tabs a .checkout-step-number {
    display: unset;
    font-size: 16px;
    color: #d8d8d8;
  }
  /* line 96, partials/_header.scss */
  .container-fluid > header .nav-tabs a .checkout-step-number:after {
    content: "-";
  }
}
/* line 102, partials/_header.scss */
.container-fluid > header .nav-tabs a:hover {
  text-decoration: none;
  background: none;
  color: #4a4a4a;
}
/* line 108, partials/_header.scss */
.container-fluid > header .nav-tabs a.active {
  text-decoration: none;
  border-bottom: 4px solid #3abdc1;
}
/* line 112, partials/_header.scss */
.container-fluid > header .nav-tabs a.active .checkout-step-number {
  color: #3abdc1;
}
@media (max-width: 768px) {
  /* line 108, partials/_header.scss */
  .container-fluid > header .nav-tabs a.active {
    border-bottom: none;
    color: #3abdc1;
  }
}
/* line 123, partials/_header.scss */
.container-fluid > header .nav-tabs img {
  padding: 15px 0 0;
}
/* line 127, partials/_header.scss */
.container-fluid > header .nav-tabs .line-separator {
  padding: 15px 0;
  font-size: 30px;
  color: #e4e4e4;
}
@media (max-width: 768px) {
  /* line 127, partials/_header.scss */
  .container-fluid > header .nav-tabs .line-separator {
    font-size: 18px;
    padding: 5px 0;
  }
}
/* line 138, partials/_header.scss */
.container-fluid > header .helpline {
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-family: "Oswalt", sans-serif;
  letter-spacing: .5px;
  font-weight: 300;
  line-height: 30px;
  padding: 25px 15px;
  color: #3abdc1;
}
/* line 149, partials/_header.scss */
.container-fluid > header .helpline a {
  text-decoration: none;
}
/* line 152, partials/_header.scss */
.container-fluid > header .helpline a:hover {
  color: #4a4a4a;
}
/* line 157, partials/_header.scss */
.container-fluid > header .helpline.mobilePhoneShow {
  padding: 0;
  font-size: 23px;
  margin: 9px 0 0 6px;
  font-weight: 400;
  line-height: normal;
}

/* line 167, partials/_header.scss */
header.checkout-header {
  margin-top: 20px;
}
@media (max-width: 999px) {
  /* line 167, partials/_header.scss */
  header.checkout-header {
    margin-top: 0px;
  }
}

/* line 1, partials/_footer.scss */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #3abdc1;
}
/* line 7, partials/_footer.scss */
footer h4 {
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* line 3, partials/_card.scss */
.card {
  padding: 0;
  margin-bottom: 20px;
  background-color: #fff;
  color: #4a4a4a;
}
/* line 10, partials/_card.scss */
.card.no-bg {
  background-color: unset;
}
/* line 13, partials/_card.scss */
.card.no-bg .card-body {
  background-color: #fff;
}
/* line 17, partials/_card.scss */
.card.no-bg .card-box-spacer {
  margin-top: 20px;
}
/* line 22, partials/_card.scss */
.card header {
  min-height: 60px;
  width: 100%;
  padding: 12px 20px;
  background-color: #3abdc1;
  text-transform: uppercase;
}
/* line 30, partials/_card.scss */
.card header.super-header {
  padding: 30px 20px;
}
/* line 35, partials/_card.scss */
.card header h1, .card header h2 {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
}
/* line 41, partials/_card.scss */
.card header h1 {
  font-size: 24px;
  line-height: 1.5;
}
/* line 47, partials/_card.scss */
.card header .big {
  font-size: 50px;
  line-height: 52px;
}
/* line 54, partials/_card.scss */
.card .card-body {
  padding: 37px 39px;
}
@media (max-width: 768px) {
  /* line 59, partials/_card.scss */
  .card .card-body.plan-body {
    padding: 37px 39px 0;
  }
}
/* line 64, partials/_card.scss */
.card .card-body h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 300;
  color: #3abdc1;
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
}
/* line 74, partials/_card.scss */
.card .card-body h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  color: #4a4a4a;
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
}
/* line 84, partials/_card.scss */
.card .card-body h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #4a4a4a;
}
/* line 90, partials/_card.scss */
.card .card-body h3.primary-color {
  color: #3abdc1;
}
/* line 96, partials/_card.scss */
.card .card-body h4 {
  font-size: 18px;
  font-weight: 500;
  color: #3abdc1;
  margin-bottom: 6px;
}
/* line 103, partials/_card.scss */
.card .card-body h4 a {
  font-size: 14px;
}
/* line 109, partials/_card.scss */
.card .card-body p {
  margin-bottom: 20px;
}
/* line 113, partials/_card.scss */
.card .card-body #additionalMealPlan {
  text-align: right;
  cursor: pointer;
  text-decoration: underline;
  color: #3abdc1;
  display: none;
}
/* line 123, partials/_card.scss */
.card .card-body form .col-sm-6, .card .card-body form .col-sm-12 {
  padding-left: 10px;
  padding-right: 10px;
}
/* line 130, partials/_card.scss */
.card .card-body .instructions {
  font-size: 16px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  /* line 130, partials/_card.scss */
  .card .card-body .instructions {
    margin-bottom: 20px;
  }
}
/* line 142, partials/_card.scss */
.card .card-body .row:last-child .form-group:last-child {
  margin-bottom: 0px;
}
/* line 150, partials/_card.scss */
.card .card-body .form-group.inline {
  display: inline-block;
  padding: 15px 5px;
  margin-bottom: 0px;
}
/* line 156, partials/_card.scss */
.card .card-body .form-group.inline label {
  margin-bottom: 0px;
}
/* line 159, partials/_card.scss */
.card .card-body .form-group.inline label .subtext {
  font-size: 12px;
}
/* line 167, partials/_card.scss */
.card .card-body .btn {
  padding: 0;
}

/* line 176, partials/_card.scss */
#welcome.card {
  max-width: 645px;
  margin: 0 auto;
}
/* line 181, partials/_card.scss */
#welcome.card .card-body {
  padding: 20px 40px;
}
/* line 185, partials/_card.scss */
#welcome.card .card-body h1 {
  margin-top: 20px;
}
/* line 190, partials/_card.scss */
#welcome.card .card-body .form-group {
  margin-bottom: 20px;
}
/* line 195, partials/_card.scss */
#welcome.card .card-body .login {
  margin-bottom: 0;
}

/* line 205, partials/_card.scss */
#plan-builder .form-group {
  margin-bottom: 0;
}
/* line 210, partials/_card.scss */
#plan-builder .row:last-child {
  margin-top: 28px;
}
/* line 215, partials/_card.scss */
#plan-builder .plan-option {
  padding: 0;
}
@media (max-width: 768px) {
  /* line 220, partials/_card.scss */
  #plan-builder .plan-option hr.option-separator {
    border-top: 1px solid #DEDEDF;
  }
}
/* line 226, partials/_card.scss */
#plan-builder .plan-option:first-child {
  border: none;
}

/* line 235, partials/_card.scss */
#delivery-options header h2 {
  font-size: 24px;
  line-height: 35px;
}
/* line 244, partials/_card.scss */
#delivery-options .card-body h1 {
  text-transform: uppercase;
  font-size: 36px;
  font-family: "Oswald", sans-serif;
}
/* line 251, partials/_card.scss */
#delivery-options .card-body p {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-family: "Open sans", sans-serif;
  color: #4a4a4a;
}
/* line 260, partials/_card.scss */
#delivery-options .card-body .btn {
  margin-top: 20px;
  text-transform: uppercase;
}

/* line 270, partials/_card.scss */
#pickup-address .card-body {
  padding: 0;
}
/* line 274, partials/_card.scss */
#pickup-address .card-body .toggles {
  padding: 15px 0;
  border-bottom: 2px #cacaca solid;
}
/* line 279, partials/_card.scss */
#pickup-address .card-body .toggles.row {
  margin: 0;
}
/* line 286, partials/_card.scss */
#pickup-address .form-scroll-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
}
/* line 293, partials/_card.scss */
#pickup-address .option-details {
  margin: 18px 25px 0;
  padding-bottom: 10px;
  border-bottom: 2px #cacaca solid;
}
/* line 299, partials/_card.scss */
#pickup-address .option-details:last-child {
  border-bottom: none;
}
/* line 304, partials/_card.scss */
#pickup-address .option-details .membership-offer {
  color: #3abdc1;
  font-family: "Open sans", sans-serif;
  line-height: 20px;
}
/* line 312, partials/_card.scss */
#pickup-address label {
  padding-left: 40px;
}
/* line 317, partials/_card.scss */
#pickup-address .continue {
  border-top: 2px #cacaca solid;
  padding: 25px 15px;
}
/* line 322, partials/_card.scss */
#pickup-address .continue.row {
  margin: 0;
}

/* line 329, partials/_card.scss */
#map {
  height: 400px;
  width: 100%;
}

/* line 339, partials/_card.scss */
#order-address.card .card-body, #payment-info.card .card-body {
  padding: 30px 35px;
}
/* line 343, partials/_card.scss */
#order-address.card .card-body #promo-code-amount, #payment-info.card .card-body #promo-code-amount {
  white-space: nowrap;
}
/* line 350, partials/_card.scss */
#order-address.card .card-body #remove-promo-code-row .form-group:first-child h3, #payment-info.card .card-body #remove-promo-code-row .form-group:first-child h3 {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 15px;
}
/* line 356, partials/_card.scss */
#order-address.card .card-body #remove-promo-code-row #promo-code-title, #payment-info.card .card-body #remove-promo-code-row #promo-code-title {
  font-weight: 600;
}
/* line 361, partials/_card.scss */
#order-address.card .card-body #remove-promo-code, #payment-info.card .card-body #remove-promo-code {
  color: #F1723D;
  display: inline;
  vertical-align: text-bottom;
  text-decoration: underline;
}
/* line 369, partials/_card.scss */
#order-address.card .card-body #apply-promo-code, #payment-info.card .card-body #apply-promo-code {
  text-decoration: underline;
}
/* line 376, partials/_card.scss */
#order-address.card .card-body #tax-row .form-group, #order-address.card .card-body #plan-row .form-group, #order-address.card .card-body #fee-row .form-group, #order-address.card .card-body #coupon-row .form-group, #payment-info.card .card-body #tax-row .form-group, #payment-info.card .card-body #plan-row .form-group, #payment-info.card .card-body #fee-row .form-group, #payment-info.card .card-body #coupon-row .form-group {
  margin-bottom: 0px;
}
/* line 381, partials/_card.scss */
#order-address.card .card-body #tax-row span, #order-address.card .card-body #plan-row span, #order-address.card .card-body #fee-row span, #order-address.card .card-body #coupon-row span, #payment-info.card .card-body #tax-row span, #payment-info.card .card-body #plan-row span, #payment-info.card .card-body #fee-row span, #payment-info.card .card-body #coupon-row span {
  font-weight: 600;
}

/* line 391, partials/_card.scss */
#payment-info .submit-row {
  text-align: center;
}
@media (min-width: 768px) {
  /* line 391, partials/_card.scss */
  #payment-info .submit-row {
    margin-left: 10px;
    text-align: right;
    flex: 1;
  }
}
/* line 401, partials/_card.scss */
#payment-info .submit-row .form-group {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  /* line 407, partials/_card.scss */
  #payment-info .submit-row button {
    padding: 0 10px;
  }
}
/* line 414, partials/_card.scss */
#payment-info .choose-meals, #payment-info .pause-or-cancel {
  color: #83C44E;
  font-size: 1.2em;
  font-weight: bold;
}
/* line 420, partials/_card.scss */
#payment-info .choose-meals {
  margin: 20px 5px;
}
/* line 424, partials/_card.scss */
#payment-info .pause-or-cancel {
  margin-top: 20px;
  text-align: right;
}
@media (min-width: 768px) {
  /* line 431, partials/_card.scss */
  #payment-info .checkout-payment-price-wrapper {
    display: none;
  }
  /* line 435, partials/_card.scss */
  #payment-info .checkout-payment-bottom-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  /* line 440, partials/_card.scss */
  #payment-info .checkout-payment-bottom-wrapper #remove-promo-code-row {
    width: 50%;
  }
  /* line 444, partials/_card.scss */
  #payment-info .checkout-payment-bottom-wrapper #apply-promo-code-row {
    width: 50%;
  }
  /* line 448, partials/_card.scss */
  #payment-info #start-submit {
    width: 70%;
  }
}

/* line 461, partials/_card.scss */
#order-summary.card .card-body {
  padding: 30px 40px;
  /* Designer wants the text 80% smaller then standard - Maybe?
  h4 {
      font-size:12px;
  }
  p{
      font-size:11px;
  }*/
}
/* line 473, partials/_card.scss */
#order-summary.card .card-body #summary-coupon-row {
  margin-bottom: 20px;
  font-size: 12px;
}
/* line 478, partials/_card.scss */
#order-summary.card .card-body #summary-coupon-row img {
  float: left;
}
/* line 485, partials/_card.scss */
#order-summary.card .card-body #plan-price div.meal-price-wrap {
  width: 100%;
  padding-left: 15px;
}
/* line 489, partials/_card.scss */
#order-summary.card .card-body #plan-price div.meal-price-wrap span {
  width: 50%;
  display: inline-block;
  padding-left: 0px;
  color: grey;
}
/* line 496, partials/_card.scss */
#order-summary.card .card-body #plan-price div.meal-price-wrap span.price-only, #order-summary.card .card-body #plan-price div.meal-price-wrap span.price-only-per-meal {
  font-size: 15px;
  color: #F1723D;
  text-align: right;
  width: 45%;
}
/* line 508, partials/_card.scss */
#order-summary .price-line-display {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
/* line 516, partials/_card.scss */
#order-summary .price-line-display div.display-price {
  text-align: right;
  flex: 1;
}
/* line 522, partials/_card.scss */
#order-summary .price-line-display.price-line-coupon {
  font-size: 14px;
}
/* line 526, partials/_card.scss */
#order-summary .total-price {
  color: #3abdc1;
}
/* line 529, partials/_card.scss */
#order-summary .first-box-line {
  margin-top: 1.3em;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
/* line 535, partials/_card.scss */
#order-summary .price-orange {
  color: #F1723D;
}
/* line 538, partials/_card.scss */
#order-summary .price-slash {
  text-decoration: line-through;
}

/* line 548, partials/_card.scss */
#thank-you .card-body .form-group.col-sm-8 {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
/* line 554, partials/_card.scss */
#thank-you .card-body .form-group.col-sm-8 input {
  text-align: center;
}
/* line 560, partials/_card.scss */
#thank-you .card-body .row:last-child {
  margin-top: 7px;
}
/* line 566, partials/_card.scss */
#thank-you h1, #thank-you h3, #thank-you p {
  text-align: center;
}
/* line 570, partials/_card.scss */
#thank-you h1 {
  margin-bottom: 15px;
}
/* line 574, partials/_card.scss */
#thank-you h3 {
  margin-bottom: 50px;
}

/* line 2, partials/_modal.scss */
.close span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-shadow: inherit;
}

/* line 11, partials/_modal.scss */
.modal-header {
  border: none;
  padding-bottom: 0;
}

/* line 17, partials/_modal.scss */
#zipModal .modal-dialog {
  width: 315px;
}
/* line 20, partials/_modal.scss */
#zipModal .modal-dialog .modal-content {
  border-radius: 0;
  top: 80px;
}

/* line 1, partials/_map.scss */
.info-window {
  padding: 20px;
  padding-right: 0;
}
/* line 5, partials/_map.scss */
.info-window h4.location-name {
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
  color: #353535;
}
/* line 14, partials/_map.scss */
.info-window .address {
  margin-bottom: 15px;
}
/* line 17, partials/_map.scss */
.info-window .address p {
  margin: 0;
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #353535;
}

/* line 28, partials/_map.scss */
.legend {
  background: white;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  border: 2px #CACACA solid;
  padding: 5px 10px;
  font-size: 12px;
}
/* line 37, partials/_map.scss */
.legend .info-tooltip {
  bottom: -2px;
}

/* line 1, partials/_idme_header.scss */
.idme-checkout-header {
  width: 100%;
  background: #08833d;
  display: block;
  text-align: center;
  color: white;
  padding: 3px 0;
}
/* line 9, partials/_idme_header.scss */
.idme-checkout-header img {
  display: inline-block;
  max-height: 24px;
  margin-top: -3px;
}
/* line 15, partials/_idme_header.scss */
.idme-checkout-header .idme_logo {
  height: 20px;
}

/* line 4, ../_bootstrap-dtg.scss */
.m-0 {
  margin: 0 !important;
}

/* line 8, ../_bootstrap-dtg.scss */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 13, ../_bootstrap-dtg.scss */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 18, ../_bootstrap-dtg.scss */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 23, ../_bootstrap-dtg.scss */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 28, ../_bootstrap-dtg.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 32, ../_bootstrap-dtg.scss */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 37, ../_bootstrap-dtg.scss */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 42, ../_bootstrap-dtg.scss */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 47, ../_bootstrap-dtg.scss */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 52, ../_bootstrap-dtg.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 56, ../_bootstrap-dtg.scss */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 61, ../_bootstrap-dtg.scss */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 66, ../_bootstrap-dtg.scss */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 71, ../_bootstrap-dtg.scss */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 76, ../_bootstrap-dtg.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 80, ../_bootstrap-dtg.scss */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 85, ../_bootstrap-dtg.scss */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 90, ../_bootstrap-dtg.scss */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 95, ../_bootstrap-dtg.scss */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 100, ../_bootstrap-dtg.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 104, ../_bootstrap-dtg.scss */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 109, ../_bootstrap-dtg.scss */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 114, ../_bootstrap-dtg.scss */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 119, ../_bootstrap-dtg.scss */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 124, ../_bootstrap-dtg.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 128, ../_bootstrap-dtg.scss */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 133, ../_bootstrap-dtg.scss */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 138, ../_bootstrap-dtg.scss */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 143, ../_bootstrap-dtg.scss */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 148, ../_bootstrap-dtg.scss */
.p-0 {
  padding: 0 !important;
}

/* line 152, ../_bootstrap-dtg.scss */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 157, ../_bootstrap-dtg.scss */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 162, ../_bootstrap-dtg.scss */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 167, ../_bootstrap-dtg.scss */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 172, ../_bootstrap-dtg.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 176, ../_bootstrap-dtg.scss */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 181, ../_bootstrap-dtg.scss */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 186, ../_bootstrap-dtg.scss */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 191, ../_bootstrap-dtg.scss */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 196, ../_bootstrap-dtg.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 200, ../_bootstrap-dtg.scss */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 205, ../_bootstrap-dtg.scss */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 210, ../_bootstrap-dtg.scss */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 215, ../_bootstrap-dtg.scss */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 220, ../_bootstrap-dtg.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 224, ../_bootstrap-dtg.scss */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 229, ../_bootstrap-dtg.scss */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 234, ../_bootstrap-dtg.scss */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 239, ../_bootstrap-dtg.scss */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 244, ../_bootstrap-dtg.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 248, ../_bootstrap-dtg.scss */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 253, ../_bootstrap-dtg.scss */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 258, ../_bootstrap-dtg.scss */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 263, ../_bootstrap-dtg.scss */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 268, ../_bootstrap-dtg.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 272, ../_bootstrap-dtg.scss */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 277, ../_bootstrap-dtg.scss */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 282, ../_bootstrap-dtg.scss */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 287, ../_bootstrap-dtg.scss */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 292, ../_bootstrap-dtg.scss */
.m-auto {
  margin: auto !important;
}

/* line 296, ../_bootstrap-dtg.scss */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 301, ../_bootstrap-dtg.scss */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 306, ../_bootstrap-dtg.scss */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 311, ../_bootstrap-dtg.scss */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 317, ../_bootstrap-dtg.scss */
  .m-sm-0 {
    margin: 0 !important;
  }

  /* line 320, ../_bootstrap-dtg.scss */
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  /* line 324, ../_bootstrap-dtg.scss */
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  /* line 328, ../_bootstrap-dtg.scss */
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  /* line 332, ../_bootstrap-dtg.scss */
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  /* line 336, ../_bootstrap-dtg.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }

  /* line 339, ../_bootstrap-dtg.scss */
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  /* line 343, ../_bootstrap-dtg.scss */
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  /* line 347, ../_bootstrap-dtg.scss */
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 351, ../_bootstrap-dtg.scss */
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  /* line 355, ../_bootstrap-dtg.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }

  /* line 358, ../_bootstrap-dtg.scss */
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  /* line 362, ../_bootstrap-dtg.scss */
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  /* line 366, ../_bootstrap-dtg.scss */
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 370, ../_bootstrap-dtg.scss */
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  /* line 374, ../_bootstrap-dtg.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }

  /* line 377, ../_bootstrap-dtg.scss */
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  /* line 381, ../_bootstrap-dtg.scss */
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  /* line 385, ../_bootstrap-dtg.scss */
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  /* line 389, ../_bootstrap-dtg.scss */
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  /* line 393, ../_bootstrap-dtg.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }

  /* line 396, ../_bootstrap-dtg.scss */
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  /* line 400, ../_bootstrap-dtg.scss */
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  /* line 404, ../_bootstrap-dtg.scss */
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 408, ../_bootstrap-dtg.scss */
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  /* line 412, ../_bootstrap-dtg.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }

  /* line 415, ../_bootstrap-dtg.scss */
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  /* line 419, ../_bootstrap-dtg.scss */
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  /* line 423, ../_bootstrap-dtg.scss */
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  /* line 427, ../_bootstrap-dtg.scss */
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  /* line 431, ../_bootstrap-dtg.scss */
  .p-sm-0 {
    padding: 0 !important;
  }

  /* line 434, ../_bootstrap-dtg.scss */
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  /* line 438, ../_bootstrap-dtg.scss */
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  /* line 442, ../_bootstrap-dtg.scss */
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  /* line 446, ../_bootstrap-dtg.scss */
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  /* line 450, ../_bootstrap-dtg.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }

  /* line 453, ../_bootstrap-dtg.scss */
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  /* line 457, ../_bootstrap-dtg.scss */
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  /* line 461, ../_bootstrap-dtg.scss */
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 465, ../_bootstrap-dtg.scss */
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  /* line 469, ../_bootstrap-dtg.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }

  /* line 472, ../_bootstrap-dtg.scss */
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  /* line 476, ../_bootstrap-dtg.scss */
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  /* line 480, ../_bootstrap-dtg.scss */
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 484, ../_bootstrap-dtg.scss */
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  /* line 488, ../_bootstrap-dtg.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }

  /* line 491, ../_bootstrap-dtg.scss */
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  /* line 495, ../_bootstrap-dtg.scss */
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  /* line 499, ../_bootstrap-dtg.scss */
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  /* line 503, ../_bootstrap-dtg.scss */
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  /* line 507, ../_bootstrap-dtg.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }

  /* line 510, ../_bootstrap-dtg.scss */
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  /* line 514, ../_bootstrap-dtg.scss */
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  /* line 518, ../_bootstrap-dtg.scss */
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 522, ../_bootstrap-dtg.scss */
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  /* line 526, ../_bootstrap-dtg.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }

  /* line 529, ../_bootstrap-dtg.scss */
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  /* line 533, ../_bootstrap-dtg.scss */
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  /* line 537, ../_bootstrap-dtg.scss */
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  /* line 541, ../_bootstrap-dtg.scss */
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  /* line 545, ../_bootstrap-dtg.scss */
  .m-sm-auto {
    margin: auto !important;
  }

  /* line 548, ../_bootstrap-dtg.scss */
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  /* line 552, ../_bootstrap-dtg.scss */
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  /* line 556, ../_bootstrap-dtg.scss */
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  /* line 560, ../_bootstrap-dtg.scss */
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  /* line 567, ../_bootstrap-dtg.scss */
  .m-md-0 {
    margin: 0 !important;
  }

  /* line 570, ../_bootstrap-dtg.scss */
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  /* line 574, ../_bootstrap-dtg.scss */
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  /* line 578, ../_bootstrap-dtg.scss */
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  /* line 582, ../_bootstrap-dtg.scss */
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  /* line 586, ../_bootstrap-dtg.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }

  /* line 589, ../_bootstrap-dtg.scss */
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  /* line 593, ../_bootstrap-dtg.scss */
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  /* line 597, ../_bootstrap-dtg.scss */
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 601, ../_bootstrap-dtg.scss */
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  /* line 605, ../_bootstrap-dtg.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }

  /* line 608, ../_bootstrap-dtg.scss */
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  /* line 612, ../_bootstrap-dtg.scss */
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  /* line 616, ../_bootstrap-dtg.scss */
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 620, ../_bootstrap-dtg.scss */
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  /* line 624, ../_bootstrap-dtg.scss */
  .m-md-3 {
    margin: 1rem !important;
  }

  /* line 627, ../_bootstrap-dtg.scss */
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  /* line 631, ../_bootstrap-dtg.scss */
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  /* line 635, ../_bootstrap-dtg.scss */
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  /* line 639, ../_bootstrap-dtg.scss */
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  /* line 643, ../_bootstrap-dtg.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }

  /* line 646, ../_bootstrap-dtg.scss */
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  /* line 650, ../_bootstrap-dtg.scss */
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  /* line 654, ../_bootstrap-dtg.scss */
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 658, ../_bootstrap-dtg.scss */
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  /* line 662, ../_bootstrap-dtg.scss */
  .m-md-5 {
    margin: 3rem !important;
  }

  /* line 665, ../_bootstrap-dtg.scss */
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  /* line 669, ../_bootstrap-dtg.scss */
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  /* line 673, ../_bootstrap-dtg.scss */
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  /* line 677, ../_bootstrap-dtg.scss */
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  /* line 681, ../_bootstrap-dtg.scss */
  .p-md-0 {
    padding: 0 !important;
  }

  /* line 684, ../_bootstrap-dtg.scss */
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  /* line 688, ../_bootstrap-dtg.scss */
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  /* line 692, ../_bootstrap-dtg.scss */
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  /* line 696, ../_bootstrap-dtg.scss */
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  /* line 700, ../_bootstrap-dtg.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }

  /* line 703, ../_bootstrap-dtg.scss */
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  /* line 707, ../_bootstrap-dtg.scss */
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  /* line 711, ../_bootstrap-dtg.scss */
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 715, ../_bootstrap-dtg.scss */
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  /* line 719, ../_bootstrap-dtg.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }

  /* line 722, ../_bootstrap-dtg.scss */
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  /* line 726, ../_bootstrap-dtg.scss */
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  /* line 730, ../_bootstrap-dtg.scss */
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 734, ../_bootstrap-dtg.scss */
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  /* line 738, ../_bootstrap-dtg.scss */
  .p-md-3 {
    padding: 1rem !important;
  }

  /* line 741, ../_bootstrap-dtg.scss */
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  /* line 745, ../_bootstrap-dtg.scss */
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  /* line 749, ../_bootstrap-dtg.scss */
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  /* line 753, ../_bootstrap-dtg.scss */
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  /* line 757, ../_bootstrap-dtg.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }

  /* line 760, ../_bootstrap-dtg.scss */
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  /* line 764, ../_bootstrap-dtg.scss */
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  /* line 768, ../_bootstrap-dtg.scss */
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 772, ../_bootstrap-dtg.scss */
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  /* line 776, ../_bootstrap-dtg.scss */
  .p-md-5 {
    padding: 3rem !important;
  }

  /* line 779, ../_bootstrap-dtg.scss */
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  /* line 783, ../_bootstrap-dtg.scss */
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  /* line 787, ../_bootstrap-dtg.scss */
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  /* line 791, ../_bootstrap-dtg.scss */
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  /* line 795, ../_bootstrap-dtg.scss */
  .m-md-auto {
    margin: auto !important;
  }

  /* line 798, ../_bootstrap-dtg.scss */
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  /* line 802, ../_bootstrap-dtg.scss */
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  /* line 806, ../_bootstrap-dtg.scss */
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  /* line 810, ../_bootstrap-dtg.scss */
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  /* line 817, ../_bootstrap-dtg.scss */
  .m-lg-0 {
    margin: 0 !important;
  }

  /* line 820, ../_bootstrap-dtg.scss */
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  /* line 824, ../_bootstrap-dtg.scss */
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  /* line 828, ../_bootstrap-dtg.scss */
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  /* line 832, ../_bootstrap-dtg.scss */
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  /* line 836, ../_bootstrap-dtg.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }

  /* line 839, ../_bootstrap-dtg.scss */
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  /* line 843, ../_bootstrap-dtg.scss */
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  /* line 847, ../_bootstrap-dtg.scss */
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 851, ../_bootstrap-dtg.scss */
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  /* line 855, ../_bootstrap-dtg.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }

  /* line 858, ../_bootstrap-dtg.scss */
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  /* line 862, ../_bootstrap-dtg.scss */
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  /* line 866, ../_bootstrap-dtg.scss */
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 870, ../_bootstrap-dtg.scss */
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  /* line 874, ../_bootstrap-dtg.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }

  /* line 877, ../_bootstrap-dtg.scss */
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  /* line 881, ../_bootstrap-dtg.scss */
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  /* line 885, ../_bootstrap-dtg.scss */
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  /* line 889, ../_bootstrap-dtg.scss */
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  /* line 893, ../_bootstrap-dtg.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }

  /* line 896, ../_bootstrap-dtg.scss */
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  /* line 900, ../_bootstrap-dtg.scss */
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  /* line 904, ../_bootstrap-dtg.scss */
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 908, ../_bootstrap-dtg.scss */
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  /* line 912, ../_bootstrap-dtg.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }

  /* line 915, ../_bootstrap-dtg.scss */
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  /* line 919, ../_bootstrap-dtg.scss */
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  /* line 923, ../_bootstrap-dtg.scss */
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  /* line 927, ../_bootstrap-dtg.scss */
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  /* line 931, ../_bootstrap-dtg.scss */
  .p-lg-0 {
    padding: 0 !important;
  }

  /* line 934, ../_bootstrap-dtg.scss */
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  /* line 938, ../_bootstrap-dtg.scss */
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  /* line 942, ../_bootstrap-dtg.scss */
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  /* line 946, ../_bootstrap-dtg.scss */
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  /* line 950, ../_bootstrap-dtg.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }

  /* line 953, ../_bootstrap-dtg.scss */
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  /* line 957, ../_bootstrap-dtg.scss */
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  /* line 961, ../_bootstrap-dtg.scss */
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 965, ../_bootstrap-dtg.scss */
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  /* line 969, ../_bootstrap-dtg.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }

  /* line 972, ../_bootstrap-dtg.scss */
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  /* line 976, ../_bootstrap-dtg.scss */
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  /* line 980, ../_bootstrap-dtg.scss */
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 984, ../_bootstrap-dtg.scss */
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  /* line 988, ../_bootstrap-dtg.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }

  /* line 991, ../_bootstrap-dtg.scss */
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  /* line 995, ../_bootstrap-dtg.scss */
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  /* line 999, ../_bootstrap-dtg.scss */
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  /* line 1003, ../_bootstrap-dtg.scss */
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  /* line 1007, ../_bootstrap-dtg.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }

  /* line 1010, ../_bootstrap-dtg.scss */
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  /* line 1014, ../_bootstrap-dtg.scss */
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  /* line 1018, ../_bootstrap-dtg.scss */
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 1022, ../_bootstrap-dtg.scss */
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  /* line 1026, ../_bootstrap-dtg.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }

  /* line 1029, ../_bootstrap-dtg.scss */
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  /* line 1033, ../_bootstrap-dtg.scss */
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  /* line 1037, ../_bootstrap-dtg.scss */
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  /* line 1041, ../_bootstrap-dtg.scss */
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  /* line 1045, ../_bootstrap-dtg.scss */
  .m-lg-auto {
    margin: auto !important;
  }

  /* line 1048, ../_bootstrap-dtg.scss */
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  /* line 1052, ../_bootstrap-dtg.scss */
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  /* line 1056, ../_bootstrap-dtg.scss */
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  /* line 1060, ../_bootstrap-dtg.scss */
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  /* line 1067, ../_bootstrap-dtg.scss */
  .m-xl-0 {
    margin: 0 !important;
  }

  /* line 1070, ../_bootstrap-dtg.scss */
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  /* line 1074, ../_bootstrap-dtg.scss */
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  /* line 1078, ../_bootstrap-dtg.scss */
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  /* line 1082, ../_bootstrap-dtg.scss */
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  /* line 1086, ../_bootstrap-dtg.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }

  /* line 1089, ../_bootstrap-dtg.scss */
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  /* line 1093, ../_bootstrap-dtg.scss */
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  /* line 1097, ../_bootstrap-dtg.scss */
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 1101, ../_bootstrap-dtg.scss */
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  /* line 1105, ../_bootstrap-dtg.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }

  /* line 1108, ../_bootstrap-dtg.scss */
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  /* line 1112, ../_bootstrap-dtg.scss */
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  /* line 1116, ../_bootstrap-dtg.scss */
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 1120, ../_bootstrap-dtg.scss */
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  /* line 1124, ../_bootstrap-dtg.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }

  /* line 1127, ../_bootstrap-dtg.scss */
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  /* line 1131, ../_bootstrap-dtg.scss */
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  /* line 1135, ../_bootstrap-dtg.scss */
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  /* line 1139, ../_bootstrap-dtg.scss */
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  /* line 1143, ../_bootstrap-dtg.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }

  /* line 1146, ../_bootstrap-dtg.scss */
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  /* line 1150, ../_bootstrap-dtg.scss */
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  /* line 1154, ../_bootstrap-dtg.scss */
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 1158, ../_bootstrap-dtg.scss */
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  /* line 1162, ../_bootstrap-dtg.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }

  /* line 1165, ../_bootstrap-dtg.scss */
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  /* line 1169, ../_bootstrap-dtg.scss */
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  /* line 1173, ../_bootstrap-dtg.scss */
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  /* line 1177, ../_bootstrap-dtg.scss */
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  /* line 1181, ../_bootstrap-dtg.scss */
  .p-xl-0 {
    padding: 0 !important;
  }

  /* line 1184, ../_bootstrap-dtg.scss */
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  /* line 1188, ../_bootstrap-dtg.scss */
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  /* line 1192, ../_bootstrap-dtg.scss */
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  /* line 1196, ../_bootstrap-dtg.scss */
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  /* line 1200, ../_bootstrap-dtg.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }

  /* line 1203, ../_bootstrap-dtg.scss */
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  /* line 1207, ../_bootstrap-dtg.scss */
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  /* line 1211, ../_bootstrap-dtg.scss */
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 1215, ../_bootstrap-dtg.scss */
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  /* line 1219, ../_bootstrap-dtg.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }

  /* line 1222, ../_bootstrap-dtg.scss */
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  /* line 1226, ../_bootstrap-dtg.scss */
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  /* line 1230, ../_bootstrap-dtg.scss */
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 1234, ../_bootstrap-dtg.scss */
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  /* line 1238, ../_bootstrap-dtg.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }

  /* line 1241, ../_bootstrap-dtg.scss */
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  /* line 1245, ../_bootstrap-dtg.scss */
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  /* line 1249, ../_bootstrap-dtg.scss */
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  /* line 1253, ../_bootstrap-dtg.scss */
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  /* line 1257, ../_bootstrap-dtg.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }

  /* line 1260, ../_bootstrap-dtg.scss */
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  /* line 1264, ../_bootstrap-dtg.scss */
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  /* line 1268, ../_bootstrap-dtg.scss */
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 1272, ../_bootstrap-dtg.scss */
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  /* line 1276, ../_bootstrap-dtg.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }

  /* line 1279, ../_bootstrap-dtg.scss */
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  /* line 1283, ../_bootstrap-dtg.scss */
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  /* line 1287, ../_bootstrap-dtg.scss */
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  /* line 1291, ../_bootstrap-dtg.scss */
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  /* line 1295, ../_bootstrap-dtg.scss */
  .m-xl-auto {
    margin: auto !important;
  }

  /* line 1298, ../_bootstrap-dtg.scss */
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  /* line 1302, ../_bootstrap-dtg.scss */
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  /* line 1306, ../_bootstrap-dtg.scss */
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  /* line 1310, ../_bootstrap-dtg.scss */
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
/* line 3, partials/_order_summary_mobile.scss */
#order-summary-mobile {
  padding: 10px 0;
  color: #4a4a4a;
}
/* line 7, partials/_order_summary_mobile.scss */
#order-summary-mobile hr {
  border-top: 1px solid #d9e0e5;
}
/* line 11, partials/_order_summary_mobile.scss */
#order-summary-mobile h4 {
  color: #3abdc1;
  font-weight: 600;
}
/* line 16, partials/_order_summary_mobile.scss */
#order-summary-mobile .price-orange {
  color: #F1723D;
  font-size: 16px;
}
/* line 21, partials/_order_summary_mobile.scss */
#order-summary-mobile .price-slash {
  text-decoration: line-through;
}
/* line 25, partials/_order_summary_mobile.scss */
#order-summary-mobile .plan-price-mobile {
  text-align: right;
}
/* line 29, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top {
  display: flex;
  justify-content: center;
}
/* line 33, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top .order-summary-mobile-top-left {
  flex-basis: 84%;
}
/* line 37, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top .order-summary-mobile-top-right {
  flex-basis: 16%;
}
/* line 42, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top .order-summary-mobile-top-left #os-coupon-discount-mobile {
  font-size: 16px;
  color: #83C44E;
}
/* line 46, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top .order-summary-mobile-top-left #os-coupon-discount-mobile .price-orange {
  color: #83C44E;
}
/* line 52, partials/_order_summary_mobile.scss */
#order-summary-mobile .order-summary-mobile-top .coupon-icon {
  float: left;
  width: 40px;
}
/* line 58, partials/_order_summary_mobile.scss */
#order-summary-mobile .mobile-order-summary-details-toggle {
  margin-left: 38px;
}
/* line 62, partials/_order_summary_mobile.scss */
#order-summary-mobile .mobile-order-summary-details-toggle-bottom {
  margin-top: 7px;
}
/* line 66, partials/_order_summary_mobile.scss */
#order-summary-mobile .mobile-order-summary-details {
  margin-left: 38px;
  padding: 0;
}
/* line 70, partials/_order_summary_mobile.scss */
#order-summary-mobile .mobile-order-summary-details .plan-price-mobile {
  text-align: left;
}
/* line 75, partials/_order_summary_mobile.scss */
#order-summary-mobile .first-box-line {
  text-align: center;
}
/* line 79, partials/_order_summary_mobile.scss */
#order-summary-mobile .total-price {
  color: #3abdc1;
  font-weight: 600;
  font-size: 16px;
}
/* line 85, partials/_order_summary_mobile.scss */
#order-summary-mobile .js-mobile-order-summary-details {
  display: none;
  /* Initially Hidden - before toggle */
}
/* line 89, partials/_order_summary_mobile.scss */
#order-summary-mobile .flex-row {
  display: flex;
}
/* line 93, partials/_order_summary_mobile.scss */
#order-summary-mobile .flex-col-left {
  width: 70%;
  text-align: left;
}
/* line 98, partials/_order_summary_mobile.scss */
#order-summary-mobile .flex-col-right {
  width: 30%;
  text-align: right;
}
@media (max-width: 768px) {
  /* line 103, partials/_order_summary_mobile.scss */
  #order-summary-mobile #trustedsite-tm-image {
    display: none !important;
  }
}

/* line 110, partials/_order_summary_mobile.scss */
.terms-text-mobile-details {
  font-style: italic;
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  /* line 110, partials/_order_summary_mobile.scss */
  .terms-text-mobile-details {
    display: none !important;
  }
}

/*******************
BASE (MOBILE) SIZE
*******************/
@media (max-width: 768px) {
  /* line 3, breakpoints/_base.scss */
  header.checkout-header {
    overflow: hidden;
  }
}

/* line 9, breakpoints/_base.scss */
.full-bg {
  background: #c0c0c0 url("https://freshology.com/images/2022/background.jpg") center fixed;
  background-size: cover;
  min-height: 100%;
}
@media (max-width: 768px) {
  /* line 9, breakpoints/_base.scss */
  .full-bg {
    background-image: none;
    background-color: #e7eef4;
  }
}

/* line 21, breakpoints/_base.scss */
#loading_clickshield {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 5000;
}

/* line 32, breakpoints/_base.scss */
#loading_modal {
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  top: 33%;
}

/* line 41, breakpoints/_base.scss */
.wrapper {
  width: 90%;
  margin: auto;
  max-width: 990px;
  padding-top: 54px;
}
@media (max-width: 768px) {
  /* line 41, breakpoints/_base.scss */
  .wrapper {
    width: 100%;
    padding-top: 0px;
  }
}
/* line 53, breakpoints/_base.scss */
.wrapper:after {
  clear: both;
  padding-bottom: 80px;
  display: table;
  content: " ";
}
/* line 61, breakpoints/_base.scss */
.wrapper .wrapper {
  padding-top: 0px;
}
/* line 65, breakpoints/_base.scss */
.wrapper .wrapper:after {
  padding-bottom: 0px;
}

/* line 74, breakpoints/_base.scss */
.container-fluid > header .helpline {
  font-size: 18px;
}

/* line 80, breakpoints/_base.scss */
.primary-color {
  color: #3abdc1;
}

/* line 85, breakpoints/_base.scss */
.text-align-center {
  text-align: center;
}

/* line 90, breakpoints/_base.scss */
.text-align-right {
  text-align: right;
}

/* line 96, breakpoints/_base.scss */
select.form-control {
  height: 49px;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzLjU0IDQuMzMgMi40OCA1LjgyIDEuNDEgNC4zMyAzLjU0IDQuMzMiLz48L3N2Zz4=) no-repeat 98% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* line 106, breakpoints/_base.scss */
.form-control-feedback {
  top: 7px;
  right: 10px;
}

/* line 112, breakpoints/_base.scss */
.form-control {
  color: #4a4a4a;
  padding: 14px 10px;
  line-height: 19px;
  height: auto;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  font-family: "Open sans", sans-serif;
  border: solid 1px #cacaca;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 129, breakpoints/_base.scss */
.form-control:focus {
  border-color: #3abdc1;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(58, 189, 193, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(58, 189, 193, 0.6);
}

/* line 138, breakpoints/_base.scss */
.form-group.error {
  color: red;
}

/* line 142, breakpoints/_base.scss */
.no-margin {
  margin: 0 !important;
}

/* line 146, breakpoints/_base.scss */
.best-seller-plan {
  background: url("https://freshology.com/images/2022/best-seller-plan.png") top center no-repeat;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  background-size: 60px;
  display: inline-block;
  position: absolute;
  top: -70px;
  left: -5px;
}
@media (max-width: 768px) {
  /* line 146, breakpoints/_base.scss */
  .best-seller-plan {
    background-size: 35px;
    height: 35px;
    position: absolute;
    width: 35px;
    margin: 0 0 -14px 0;
    top: -10px;
    right: -40px;
    left: unset;
  }
}

@media (max-width: 768px) {
  /* line 169, breakpoints/_base.scss */
  .best-seller-wrap {
    margin-right: 40px;
  }
}

/* line 175, breakpoints/_base.scss */
.bold-blue {
  color: #3abdc1;
  font-weight: bold;
}

/* line 180, breakpoints/_base.scss */
#promo-code-terms {
  font-size: 0.8em;
}

@media (min-width: 768px) {
  /* line 184, breakpoints/_base.scss */
  .mobilePhoneShow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* line 190, breakpoints/_base.scss */
  .mobilePhoneHide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* line 196, breakpoints/_base.scss */
  .mobilePhoneStickyButton {
    position: fixed;
    width: 100%;
    bottom: env(safe-area-inset-bottom);
    left: 0;
    padding: 0 !important;
    margin: 0;
    z-index: 9999999;
    box-sizing: border-box;
  }
  /* line 207, breakpoints/_base.scss */
  .mobilePhoneStickyButton input[type="submit"] {
    width: 100%;
    height: 70px;
    font-size: 27px;
    text-transform: capitalize;
  }
}

/* line 216, breakpoints/_base.scss */
.clear {
  clear: both;
}

/* line 220, breakpoints/_base.scss */
.currently-applied-coupon {
  clear: both;
}

/* line 224, breakpoints/_base.scss */
.btn[disabled], .btn[disabled]:hover {
  opacity: 1;
  background: #bbdf9f !important;
}

/* line 229, breakpoints/_base.scss */
.swal-modal, .swal2-modal {
  max-width: 400px !important;
  width: 80% !important;
}

/* line 234, breakpoints/_base.scss */
.swal-modal.menu-modal, .swal2-modal.menu-modal {
  width: 90% !important;
  max-width: 1040px !important;
  height: 85% !important;
  max-height: 85% !important;
  padding: 3px;
}
/* line 241, breakpoints/_base.scss */
.swal-modal.menu-modal .swal2-header, .swal2-modal.menu-modal .swal2-header {
  display: none;
}
/* line 245, breakpoints/_base.scss */
.swal-modal.menu-modal #swal2-content, .swal-modal.menu-modal .swal2-content, .swal2-modal.menu-modal #swal2-content, .swal2-modal.menu-modal .swal2-content {
  height: 100% !important;
  max-height: 100% !important;
}

/* line 251, breakpoints/_base.scss */
.swal-footer, .swal2-modal {
  text-align: center;
}

/* line 255, breakpoints/_base.scss */
#personalize-info {
  font-size: 20px;
}

/* line 259, breakpoints/_base.scss */
.trustmark-payment-section {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  /* line 266, breakpoints/_base.scss */
  #trustedsite-tm-image {
    display: none;
  }
}
@media (min-width: 768px) {
  /* line 272, breakpoints/_base.scss */
  #payment-info {
    margin-bottom: 120px;
  }
}
/* Suppress odd behavior from Trusted Site Script load */
/* line 278, breakpoints/_base.scss */
#ts-summary, #ts-payment {
  display: none;
}

/* Gives space to the floating trustmark on narrower screens */
/* line 283, breakpoints/_base.scss */
.billing-address-same-as {
  margin-right: 125px;
}

/*******************
LARGER MOBILE
*******************/
@media only screen and (min-width: 480px) {
  /* line 3, breakpoints/_480up.scss */
  .container-fluid > footer h4 {
    font-size: 24px;
  }
}
/*******************
TABLET & SMALLER LAPTOPS
*******************/
@media only screen and (min-width: 768px) {
  /* line 5, breakpoints/_768up.scss */
  .container-fluid > header .nav-tabs a {
    font-size: 12px;
    padding: 25px 10px 5px 10px;
  }
  /* line 9, breakpoints/_768up.scss */
  .container-fluid > header .nav-tabs img {
    padding: 25px 0 21px 0;
  }
  /* line 14, breakpoints/_768up.scss */
  .container-fluid > header .logo {
    text-align: left;
    display: inline-block;
    vertical-align: top;
  }
  /* line 20, breakpoints/_768up.scss */
  .container-fluid > header nav {
    padding-left: 5px;
    text-align: center;
    display: inline-block;
  }
  /* line 26, breakpoints/_768up.scss */
  .container-fluid > header .helpline {
    padding: 10px 15px;
  }
  /* line 29, breakpoints/_768up.scss */
  .container-fluid > header .helpline a {
    display: block;
  }

  /* line 37, breakpoints/_768up.scss */
  .card.two-thirds {
    width: 66%;
  }
  /* line 41, breakpoints/_768up.scss */
  .card.two-thirds.left {
    float: left;
  }
  /* line 46, breakpoints/_768up.scss */
  .card.two-thirds.right {
    float: right;
  }
  /* line 52, breakpoints/_768up.scss */
  .card.one-third {
    width: 32%;
  }
  /* line 56, breakpoints/_768up.scss */
  .card.one-third.left {
    float: left;
  }
  /* line 61, breakpoints/_768up.scss */
  .card.one-third.right {
    float: right;
  }

  /* line 76, breakpoints/_768up.scss */
  #order-address.card .card-body #apply-promo-code, #payment-info.card .card-body #apply-promo-code {
    text-decoration: underline;
  }

  /* line 84, breakpoints/_768up.scss */
  #thank-you {
    max-width: 545px;
    margin: 0 auto;
  }
  /* line 90, breakpoints/_768up.scss */
  #thank-you .card-body {
    padding: 42px 55px 69px 55px;
  }
  /* line 95, breakpoints/_768up.scss */
  #thank-you h1, #thank-you h3 {
    white-space: nowrap;
  }
}
/*******************
Header Fix For In-between Viewing Window
*******************/
@media only screen and (min-width: 992px) {
  /* line 2, breakpoints/_992up.scss */
  .container-fluid > header .helpline {
    padding: 25px 15px;
  }
  /* line 5, breakpoints/_992up.scss */
  .container-fluid > header .helpline a {
    display: inline;
  }
  /* line 10, breakpoints/_992up.scss */
  .container-fluid > header nav {
    padding-left: 10px;
  }
  /* line 15, breakpoints/_992up.scss */
  .container-fluid > header .nav-tabs a {
    font-size: 15px;
  }
}
/*******************
Average Viewing window
*******************/
@media only screen and (min-width: 1024px) {
  /* line 2, breakpoints/_1024up.scss */
  .container-fluid > header nav {
    padding-left: 20px;
  }
}
/*******************
Slightly larger viewing window
Size of provided designs
*******************/
@media only screen and (min-width: 1200px) {
  /* line 1, breakpoints/_1200up.scss */
  .wrapper {
    width: 83.33333%;
    margin: auto;
  }
}