@media screen and (max-width: 950px) {
}ul.order-lines {
  margin-bottom: 40px;
  list-style: none;
}
ul.order-lines li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 0;
  font-size: 17px;
  border-bottom: 1px solid #dddddd;
}
ul.order-lines li > .item-icon {
  display: block;
  flex: 0 0 auto;
  width: 75px;
  height: auto;
  margin: -10px 0 -10px;
}
@media screen and (max-width: 860px) {
  ul.order-lines li > .item-icon {
    display: none;
  }
}
ul.order-lines li > .q {
  width: 40px;
  margin-right: 10px;
  text-align: right;
}
ul.order-lines li > .q:after {
  content: "x";
}
ul.order-lines li > .code {
  width: 110px;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  text-overflow: ellipsis;
}
ul.order-lines li > .item-text {
  flex: 1 1 auto;
  overflow: hidden;
}
ul.order-lines li > .item-text .name {
  overflow: hidden;
  margin-bottom: 5px;
  font-weight: 600;
}
ul.order-lines li > .item-text .details {
  overflow: hidden;
  font-size: 15px;
  line-height: 130%;
}
ul.order-lines li > .item-text .details.details-error {
  color: #c00;
  font-weight: 600;
}
ul.order-lines li > .item-numbers {
  margin-left: 10px;
  text-align: right;
}
ul.order-lines li > .item-numbers .amount,
ul.order-lines li > .item-numbers .amount-original,
ul.order-lines li > .item-numbers .amount-note {
  white-space: nowrap;
}
ul.order-lines li > .item-numbers .amount {
  margin-bottom: 5px;
}
ul.order-lines li > .item-numbers .amount.amount-highlight {
  color: #cc0000;
  font-size: 22px;
  font-weight: bold;
}
ul.order-lines li > .item-numbers .amount-original {
  margin-top: -5px;
  margin-bottom: 5px;
  color: black;
  font-size: 15px;
  text-decoration: line-through;
}
ul.order-lines li > .item-numbers .amount-note,
ul.order-lines li > .item-numbers .amount-subscription {
  font-size: 15px;
  line-height: 130%;
}
ul.order-lines li > .item-numbers .amount-subscription input[type="checkbox"]:last-child {
  margin-right: 0;
}
@media screen and (max-width: 700px) {
  ul.order-lines li {
    font-size: 16px;
  }
}
@media screen and (max-width: 620px) {
  ul.order-lines li {
    flex-wrap: wrap;
  }
  ul.order-lines li > .break {
    flex-basis: 100%;
    height: 0;
  }
  ul.order-lines li > .item-text {
    flex-basis: 100%;
    margin: 5px 0 5px 50px;
  }
  ul.order-lines li > .item-numbers {
    flex: 1 0 auto;
  }
}
@media screen and (max-width: 460px) {
  ul.order-lines li {
    flex-wrap: wrap;
  }
  ul.order-lines li > .q {
    width: auto;
  }
  ul.order-lines li > .item-text {
    flex-basis: 100%;
    margin: 5px 0 5px 0;
  }
}
ul.order-lines li.totals,
ul.order-lines li.coupon-add {
  display: block;
  margin: 15px 0 0;
  color: black;
  line-height: 108%;
  text-align: right;
  border-bottom: none;
}
ul.order-lines li.totals {
  font-size: 18px;
}
ul.order-lines li.totals .coupon-discount {
  display: inline-block;
  margin-top: -5px;
  margin-right: -10px;
  padding: 9px 10px 8px 15px;
  line-height: 125%;
  font-size: 17px;
  background-color: #fdf6e6;
  border: 1px solid #fcad08;
  border-radius: 10px;
}
ul.order-lines li.totals .coupon-discount .small {
  font-size: 15px;
  color: #555555;
}
ul.order-lines li.totals .tax {
  font-size: 15px;
}
ul.order-lines li.totals .total {
  display: inline-block;
  font-weight: bold;
  padding-top: 5px;
}
ul.order-lines li.totals .total:first-child {
  padding-top: 0;
}
ul.order-lines.cart li {
  padding: 20px 0 15px;
}
ul.order-lines.cart li > a {
  margin-left: 5px;
}
ul.order-lines.cart li > a .material-icons {
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 5px;
}
ul.order-lines.cart li.totals,
ul.order-lines.cart li.coupon-add {
  padding: 15px 20px;
}
ul.order-lines.cart li.totals {
  font-size: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
}
ul.order-lines.cart li.totals .tax {
  font-size: 17px;
}
ul.order-lines.cart li.totals .total {
  line-height: 200%;
}
ul.order-lines.cart li.coupon-add {
  margin-top: 0;
  padding-top: 5px;
  font-size: 16px;
}
#coupon-form {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  margin: -10px 0 40px;
  padding: 20px;
  background-color: #fdf6e6;
  border: 1px solid #fcad08;
  border-radius: 10px;
}
#coupon-form > span {
  flex: 1 1 auto;
  margin-left: 0;
  color: #333333;
}
#coupon-form > input,
#coupon-form > .button {
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
  padding: 0 15px;
  border-radius: 5px;
  white-space: nowrap;
}
#coupon-form > input {
  flex: 0 1 auto;
  width: auto;
  max-width: 300px;
  min-width: 170px;
}
#coupon-form > button {
  flex: 0 0 auto;
  width: auto;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  background-color: #fead06;
}
#coupon-form > button:hover {
  text-decoration: none;
  background-color: #ea9e01;
}
@media screen and (max-width: 600px) {
  #coupon-form {
    flex-direction: column;
  }
  #coupon-form > span {
    margin: 0 0 5px;
  }
  #coupon-form > input {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 10px;
  }
  #coupon-form > .button {
    margin: 0;
  }
}
#ncc-popup form label,
#ncc-popup form label * {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
#checkout-popup .checkout-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  cursor: wait;
  opacity: 0.66;
}
#checkout-popup hr {
  margin: 30px 0;
}
.terms-extra > h3 {
  padding-bottom: 0 !important;
  color: #555555;
  font-weight: bold !important;
  text-transform: none !important;
  border: none !important;
}
.terms-extra > p {
  font-size: 13px;
  margin-bottom: 10px !important;
}
.terms-extra > p:last-child {
  margin-bottom: 20px !important;
}
.checkout-terms,
.checkout-terms-extra {
  font-size: 15px;
  text-align: left;
}
.checkout-terms label,
.checkout-terms-extra label {
  font-weight: normal;
}
.checkout-terms label a,
.checkout-terms-extra label a {
  font-weight: bold;
}
.checkout-terms label input[type="checkbox"],
.checkout-terms-extra label input[type="checkbox"] {
  margin-left: 2px;
  cursor: pointer;
}
.checkout-terms {
  text-align: right;
}
.checkout-terms-extra + .checkout-terms {
  text-align: left;
}
.checkout-terms-extra {
  margin-bottom: 0;
}
.order-completed-successfully {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 5px;
}
.order-completed-successfully > div {
  display: block;
  width: 0;
  flex: 1 1 auto;
  margin: 0;
  max-width: 660px;
  text-align: left;
}
.order-completed-successfully > div > p.order-status {
  margin-bottom: 25px;
}
.order-completed-successfully > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 605px;
  max-height: 300px;
  margin-left: 60px;
}
@media screen and (max-width: 640px) {
  .order-completed-successfully > img {
    display: none;
  }
}
.order-completed-successfully .order-support-video {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  background-color: #CC0B00;
}
.order-completed-successfully .order-support-video > img {
  display: block;
  width: 320px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.order-completed-successfully .order-support-video:hover > img {
  opacity: 0.7;
}
.order-completed-successfully .order-support-video:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  background-color: #CC0B00;
  z-index: 2;
}
.order-completed-successfully .order-support-video:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  background-image: url("../images/YOUTUBE.png");
  background-size: contain;
  z-index: 3;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.order-status {
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.order-status a {
  color: #CC0B00;
}
#promo-heading {
  display: block;
  margin-bottom: 50px;
  background: #c1e2f3;
  background: linear-gradient(5deg, #e4eff3, #9ed8f0);
}
#promo-heading > div {
  display: flex;
  overflow: hidden;
  align-items: center;
  max-width: 1000px;
  height: 260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 10px;
  text-align: left;
}
#promo-heading > div > h2 {
  flex: 1 0 auto;
  margin: 0 !important;
  padding: 0 5px 0 0 !important;
  line-height: 100%;
  color: #06419b;
  text-transform: none;
  font-size: 300%;
  font-weight: normal;
}
#promo-heading > div > img {
  width: auto;
  height: 100%;
  align-self: flex-end;
}
@media screen and (max-width: 1200px) {
  #promo-heading > div {
    height: 200px;
  }
  #promo-heading > div > h2 {
    font-size: 220%;
  }
}
@media screen and (max-width: 680px) {
  #promo-heading > div {
    height: 160px;
  }
  #promo-heading > div > h2 {
    font-size: 150%;
  }
}
