body.videoCheckoutMode {
  background: #151515;
}

body.prepremiere,
body.prepremiere .videoCheckoutPrepremiereWrap,
body.prepremiere .videoCheckoutPage {
  background: #151515 !important;
}

body.prepremiere .videoCheckoutPrepremiereWrap {
  margin-bottom: 0;
}

.videoCheckoutHeader {
  display: none;
  width: 100%;
  max-width: 760px;
  min-height: 56px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.videoCheckoutHeaderBack,
.videoCheckoutHeaderBalance {
  display: inline-flex;
  align-items: center;
}

.videoCheckoutHeaderBack {
  min-height: 44px;
  gap: 10px;
  color: #f3f3f3;
  font-size: 17px;
  text-decoration: none;
}

.videoCheckoutHeaderBack i {
  color: #e02a91;
  font-size: 16px;
}

.videoCheckoutHeaderBack:hover,
.videoCheckoutHeaderBack:focus-visible {
  color: #fff;
  text-decoration: none;
}

.videoCheckoutHeaderBalance {
  flex: 0 0 auto;
  align-items: baseline;
  gap: 5px;
  color: #929292;
  font-size: 11px;
}

.videoCheckoutHeaderBalance strong {
  color: #f05aad;
  font-size: 14px;
}

.videoCheckoutPage {
  width: 100%;
  max-width: 780px;
  margin: 20px auto 42px;
  padding: 0 20px;
  color: #f1f1f1;
  box-sizing: border-box;
}

.videoCheckoutPanel {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.videoCheckoutDesktopTitle {
  display: flex;
  margin: 0 0 8px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.videoCheckoutDesktopHeading {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.videoCheckoutBack {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #e02a91;
  font-size: 15px;
  text-decoration: none;
}

.videoCheckoutBack:hover,
.videoCheckoutBack:focus-visible {
  color: #fff;
  background: rgba(224, 42, 145, 0.12);
  text-decoration: none;
}

.videoCheckoutDesktopTitle h1 {
  margin: 0;
  padding: 0;
  color: #f3f3f3;
  background: transparent;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
}

.videoCheckoutDesktopTitle > span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #999;
  font-size: 13px;
  white-space: nowrap;
}

.videoCheckoutDesktopTitle > span strong {
  color: #e85aa9;
  font-size: 15px;
  font-weight: 800;
}

.videoCheckoutProduct {
  display: grid;
  margin: 0 0 18px;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 122px minmax(0, 1fr) 24px;
  gap: 12px;
  border: 1px solid #303030;
  border-radius: 10px;
  color: #e9e9e9;
  background: #1c1c1c;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.videoCheckoutProduct:hover,
.videoCheckoutProduct:focus-visible {
  border-color: rgba(224, 42, 145, 0.72);
  color: #fff;
  background: #202020;
  text-decoration: none;
}

.videoCheckoutProductThumb {
  position: relative;
  display: block;
  width: 122px;
  height: 68px;
  overflow: hidden;
  background: #111;
}

.videoCheckoutProductThumb picture,
.videoCheckoutProductThumb img,
.videoCheckoutProductThumb video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoCheckoutProductThumb video {
  z-index: 2;
  opacity: 0;
  background: #111;
  transition: opacity 0.16s ease;
}

.videoCheckoutProduct.is-previewing .videoCheckoutProductThumb video {
  opacity: 1;
}

.videoCheckoutProductPlay {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 12, 12, 0.72);
  font-size: 9px;
  transform: translate(-50%, -50%);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.videoCheckoutProduct.is-previewing .videoCheckoutProductPlay {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
}

.videoCheckoutProductCopy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.videoCheckoutProductLabel {
  color: #888;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.videoCheckoutProductCopy strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.videoCheckoutProductArrow {
  color: #666;
  font-size: 17px;
}

.videoCheckoutProduct:hover .videoCheckoutProductArrow,
.videoCheckoutProduct:focus-visible .videoCheckoutProductArrow {
  color: #e85aa9;
}

.videoCheckoutLoginNotice,
.videoCheckoutMessage {
  display: flex;
  margin: 0 0 16px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #3b3b3b;
  border-radius: 10px;
  color: #aaa;
  background: #202020;
  font-size: 12px;
  line-height: 1.4;
}

.videoCheckoutLoginNotice a {
  flex: 0 0 auto;
  color: #e994c4;
  font-weight: 700;
}

.videoCheckoutMessage.isError {
  border-color: #8e345f;
  color: #f1bfd9;
  background: rgba(142, 52, 95, 0.14);
}

.videoCheckoutForm {
  margin: 0;
}

.videoCheckoutSection {
  margin: 0 0 25px;
}

.videoCheckoutSection h2 {
  margin: 0 0 12px;
  padding: 0;
  color: #f3f3f3;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.videoCheckoutAccessOptions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.videoCheckoutAccessOption,
.videoCheckoutPaymentMethod {
  position: relative;
  color: #eee;
  border: 1px solid #3a3a3a;
  background: #222;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease;
  box-sizing: border-box;
}

.videoCheckoutAccessOption {
  display: grid;
  min-height: 76px;
  padding: 11px 12px;
  align-items: center;
  grid-template-columns: 21px minmax(0, 1fr) auto;
  grid-template-rows: auto;
  gap: 0 11px;
  border-radius: 12px;
  text-decoration: none;
}

.videoCheckoutAccessOption:hover,
.videoCheckoutPaymentMethod:hover {
  color: #fff;
  border-color: #5a5a5a;
  background: #252525;
  text-decoration: none;
}

.videoCheckoutAccessOption.isSelected,
.videoCheckoutPaymentMethod.isSelected {
  border-color: #e02a91;
  background: #2a2026;
}

.videoCheckoutAccessOption input,
.videoCheckoutPaymentMethod input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.videoCheckoutRadio {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid #777;
  border-radius: 50%;
  color: #999;
  box-sizing: border-box;
}

.videoCheckoutRadio::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e02a91;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.videoCheckoutAccessOption.isSelected .videoCheckoutRadio,
.videoCheckoutPaymentMethod.isSelected .videoCheckoutRadio {
  border-color: #e02a91;
}

.videoCheckoutAccessOption.isSelected .videoCheckoutRadio::after,
.videoCheckoutPaymentMethod.isSelected .videoCheckoutRadio::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.videoCheckoutAccessOption input:focus-visible + .videoCheckoutRadio,
.videoCheckoutPaymentMethod input:focus-visible + .videoCheckoutRadio {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.videoCheckoutAccessCopy,
.videoCheckoutMethodCopy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.videoCheckoutAccessCopy strong,
.videoCheckoutMethodCopy strong {
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.videoCheckoutAccessCopy small,
.videoCheckoutMethodCopy small {
  color: #929292;
  font-size: 12px;
  line-height: 1.4;
}

.videoCheckoutAccessPrice {
  display: flex;
  margin: 0;
  padding: 0;
  grid-column: 3;
  align-self: center;
  align-items: baseline;
  justify-content: flex-end;
}

.videoCheckoutAccessPrice strong {
  color: #f3f3f3;
  font-size: 16px;
}

.videoCheckoutAccessPrice small {
  color: #aaa;
  font-size: 12px;
  text-align: right;
}

.videoCheckoutAccessOption.isLoginRequired {
  cursor: pointer;
}

.videoCheckoutAccessOption.isLoginRequired .videoCheckoutRadio {
  border-color: #555;
  font-size: 9px;
}

.videoCheckoutAccessOption.isLoginRequired .videoCheckoutRadio::after {
  display: none;
}

.videoCheckoutVipOption {
  display: grid;
  min-height: 72px;
  margin-top: 10px;
  padding: 12px 14px;
  align-items: center;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 11px;
  border: 1px solid rgba(238, 185, 67, 0.7);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(105deg, rgba(238, 185, 67, 0.19), rgba(238, 185, 67, 0.05));
  box-shadow: inset 3px 0 0 #eebb43, 0 8px 22px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.videoCheckoutVipOption:hover,
.videoCheckoutVipOption:focus-visible {
  color: #fff;
  border-color: #ffd36a;
  background: linear-gradient(105deg, rgba(238, 185, 67, 0.27), rgba(238, 185, 67, 0.09));
  text-decoration: none;
}

.videoCheckoutVipIcon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 185, 67, 0.55);
  border-radius: 50%;
  color: #2a210e;
  background: #eebb43;
  font-size: 12px;
}

.videoCheckoutVipOption > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.videoCheckoutVipOption strong {
  color: #ffe3a0;
  font-size: 14px;
}

.videoCheckoutVipOption small {
  color: #cbbd9a;
  font-size: 12px;
  line-height: 1.35;
}

.videoCheckoutVipOption b {
  padding: 6px 8px;
  border-radius: 6px;
  color: #251c09;
  background: #eebb43;
  font-size: 11px;
  white-space: nowrap;
}

.videoCheckoutPaymentMethods {
  display: grid;
  gap: 9px;
}

.videoCheckoutPaymentMethod {
  display: grid;
  min-height: 72px;
  padding: 12px 14px;
  align-items: center;
  grid-template-columns: 21px minmax(0, 1fr) auto;
  gap: 11px;
  border-radius: 13px;
}

.videoCheckoutPaymentMethod > b {
  color: #f2f2f2;
  font-size: 14px;
  white-space: nowrap;
}

.videoCheckoutPaymentMethod[data-payment-card="points"] {
  min-height: 64px;
  grid-template-columns: 21px minmax(0, 1fr);
}

.videoCheckoutPointsCopy {
  gap: 3px;
}

.videoCheckoutPointsHeading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.videoCheckoutPointsHeading b {
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.videoCheckoutPaymentMethod.isDisabled {
  cursor: default;
  opacity: 1;
  border-color: #363636;
  background: #202020;
}

.videoCheckoutPaymentMethod.isDisabled .videoCheckoutRadio,
.videoCheckoutPaymentMethod.isDisabled > b {
  opacity: 0.5;
}

.videoCheckoutPaymentMethod.isDisabled .videoCheckoutMethodCopy small {
  color: #aaa;
}

.videoCheckoutPointsTopup {
  display: block;
  margin: -2px 0 2px;
}

.videoCheckoutPointsTopup[hidden] {
  display: none;
}

.videoCheckoutPointsTopup a {
  display: grid;
  width: 100%;
  min-height: 50px;
  padding: 7px 11px;
  align-items: center;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px;
  border: 1px solid rgba(74, 160, 255, 0.68);
  border-radius: 11px;
  color: #c5e3ff;
  background: linear-gradient(100deg, rgba(74, 160, 255, 0.2), rgba(74, 160, 255, 0.06));
  box-shadow: inset 3px 0 0 #4aa0ff;
  box-sizing: border-box;
  text-decoration: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.videoCheckoutPointsTopup a:hover,
.videoCheckoutPointsTopup a:focus-visible {
  border-color: #82c0ff;
  color: #fff;
  background: linear-gradient(100deg, rgba(74, 160, 255, 0.29), rgba(74, 160, 255, 0.1));
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.videoCheckoutPointsTopupIcon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #07192b;
  background: #62adff;
  font-size: 12px;
}

.videoCheckoutPointsTopupCopy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.videoCheckoutPointsTopupCopy strong {
  font-size: 12px;
  line-height: 1.2;
}

.videoCheckoutPointsTopupCopy small {
  color: #aac4dc;
  font-size: 9px;
  line-height: 1.25;
}

.videoCheckoutPointsTopupArrow {
  color: #62adff;
  font-size: 16px;
}

.videoCheckoutTrust {
  display: grid;
  margin: -5px 0 0;
  gap: 5px;
}

.videoCheckoutTrust p {
  display: flex;
  margin: 0;
  align-items: flex-start;
  gap: 8px;
  color: #aaa;
  font-size: 12px;
  line-height: 1.4;
}

.videoCheckoutTrust i {
  margin-top: 2px;
  color: #e02a91;
  font-size: 10px;
}

.videoCheckoutAction {
  position: sticky;
  z-index: 6;
  bottom: 8px;
  margin-top: 10px;
  padding-top: 7px;
  background: linear-gradient(to bottom, rgba(21, 21, 21, 0), #151515 8px);
}

.videoCheckoutSubmit {
  display: flex;
  width: 100%;
  min-height: 56px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #e02a91;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.videoCheckoutSubmit:hover,
.videoCheckoutSubmit:focus-visible {
  color: #fff;
  background: #f03ca0;
}

.videoCheckoutSubmit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.videoCheckoutStatus {
  min-height: 0;
  margin: 5px 4px 0;
  color: #d19cb9;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.videoCheckoutStatus:empty {
  display: none;
}

.videoCheckoutLegal {
  margin: 13px 4px 0;
  color: #929292;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
}

.videoCheckoutLegal a {
  color: #c0c0c0;
  text-decoration: underline;
}

.videoCheckoutFeedbackPage {
  min-height: 460px;
  align-items: center;
}

.videoCheckoutFeedbackPanel {
  width: min(100%, 620px);
  padding: 54px 42px;
  text-align: center;
}

.videoCheckoutFeedbackIcon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 42, 145, 0.58);
  border-radius: 50%;
  background: rgba(224, 42, 145, 0.12);
  color: #f05aad;
  font-size: 25px;
}

.videoCheckoutFeedbackIcon.isSuccess {
  border-color: rgba(76, 196, 128, 0.5);
  background: rgba(76, 196, 128, 0.1);
  color: #67d89a;
}

.videoCheckoutFeedbackIcon.isError {
  border-color: rgba(230, 91, 91, 0.5);
  background: rgba(230, 91, 91, 0.1);
  color: #f07b7b;
}

.videoCheckoutFeedbackPanel h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
}

.videoCheckoutFeedbackPanel p {
  max-width: 470px;
  margin: 0 auto 12px;
  color: #c9c9c9;
  font-size: 16px;
  line-height: 1.55;
}

.videoCheckoutFeedbackPanel small {
  display: block;
  color: #8e8e8e;
  font-size: 13px;
}

.videoCheckoutFeedbackAction {
  display: inline-flex;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e02a91;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.videoCheckoutFeedbackAction:hover,
.videoCheckoutFeedbackAction:focus-visible {
  background: #ee3ca2;
  color: #fff;
  text-decoration: none;
}

.videoCheckoutResult {
  padding-top: 42px;
  padding-bottom: 42px;
}

.videoCheckoutResult h1,
.videoCheckoutResult h2 {
  padding: 0;
  background: transparent;
}

.videoCheckoutResult h2 {
  max-width: 520px;
  margin: -2px auto 24px;
  color: #d4d4d4;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.videoCheckoutResultLead {
  margin-bottom: 20px !important;
}

.videoCheckoutResultSummary {
  display: grid;
  width: min(100%, 470px);
  margin: 0 auto 22px;
  padding: 15px 18px;
  gap: 8px;
  border-radius: 13px;
  background: #222;
  text-align: left;
}

.videoCheckoutResultSummary.isCompact {
  margin-top: 5px;
}

.videoCheckoutResultSummary > div,
.videoCheckoutTransactionDetails dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.videoCheckoutResultSummary dt,
.videoCheckoutResultSummary dd,
.videoCheckoutTransactionDetails dt,
.videoCheckoutTransactionDetails dd {
  margin: 0;
}

.videoCheckoutResultSummary dt {
  color: #aaa;
  font-size: 13px;
}

.videoCheckoutResultSummary dd {
  color: #f3f3f3;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.videoCheckoutResultActions {
  display: flex;
  width: min(100%, 470px);
  margin: 0 auto;
  justify-content: center;
  gap: 9px;
}

.videoCheckoutResultActions .videoCheckoutFeedbackAction {
  flex: 1 1 0;
  margin-top: 0;
  gap: 8px;
}

.videoCheckoutFeedbackAction.isSecondary {
  border: 1px solid #454545;
  background: #252525;
  color: #eee;
}

.videoCheckoutFeedbackAction.isSecondary:hover,
.videoCheckoutFeedbackAction.isSecondary:focus-visible {
  border-color: #d25299;
  background: #2a2026;
}

.videoCheckoutTransactionDetails {
  width: min(100%, 470px);
  margin: 18px auto 0;
  color: #999;
  font-size: 12px;
  text-align: left;
}

.videoCheckoutTransactionDetails summary {
  cursor: pointer;
  color: #c5a8b8;
  text-align: center;
}

.videoCheckoutTransactionDetails dl {
  display: grid;
  margin: 11px 0 0;
  padding: 12px 14px;
  gap: 7px;
  border-top: 1px solid #363636;
}

.videoCheckoutTransactionDetails dd {
  color: #c5c5c5;
  text-align: right;
}

@media (max-width: 767px) {
  body.videoCheckoutMode header.main .mid-bar {
    border-bottom: 1px solid #303030;
    background: #171717 !important;
  }

  body.videoCheckoutMode .videoCheckoutHeader {
    display: flex;
  }

  body.videoCheckoutMode .videoCheckoutDesktopHeader,
  body.videoCheckoutMode #footer-main {
    display: none !important;
  }

  .videoCheckoutPage {
    margin: 0 auto;
    padding: 13px 13px 28px;
  }

  .videoCheckoutDesktopTitle {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
  }

  .videoCheckoutProduct {
    margin-bottom: 12px;
    grid-template-columns: 88px minmax(0, 1fr) 18px;
    gap: 9px;
    border-radius: 9px;
  }

  .videoCheckoutProductThumb {
    width: 88px;
    height: 52px;
  }

  .videoCheckoutProductPlay {
    width: 22px;
    height: 22px;
    font-size: 7px;
  }

  .videoCheckoutProductLabel {
    font-size: 8px;
  }

  .videoCheckoutProductCopy {
    gap: 2px;
  }

  .videoCheckoutProductCopy strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .videoCheckoutProductArrow {
    font-size: 15px;
  }

  .videoCheckoutSection {
    margin-bottom: 18px;
  }

  .videoCheckoutSection h2 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .videoCheckoutAccessOptions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .videoCheckoutAccessOption {
    min-height: 56px;
    padding: 8px 9px;
    grid-template-columns: 19px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    gap: 8px;
    border-radius: 10px;
  }

  .videoCheckoutAccessCopy strong,
  .videoCheckoutMethodCopy strong {
    font-size: 13px;
  }

  .videoCheckoutAccessCopy small,
  .videoCheckoutMethodCopy small {
    font-size: 10px;
    line-height: 1.35;
  }

  .videoCheckoutAccessPrice {
    margin: 0;
    padding: 0;
    grid-column: 3;
    align-self: center;
    align-items: flex-end;
    justify-content: center;
  }

  .videoCheckoutAccessPrice strong {
    font-size: 13px;
  }

  .videoCheckoutAccessPrice small {
    max-width: 76px;
    font-size: 9px;
  }

  .videoCheckoutRadio {
    width: 18px;
    height: 18px;
  }

  .videoCheckoutRadio::after {
    width: 9px;
    height: 9px;
  }

  .videoCheckoutVipOption {
    min-height: 58px;
    margin-top: 7px;
    padding: 8px 10px;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 8px;
    border-radius: 10px;
  }

  .videoCheckoutVipIcon {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }

  .videoCheckoutVipOption strong {
    font-size: 12px;
  }

  .videoCheckoutVipOption small,
  .videoCheckoutVipOption b {
    font-size: 9px;
  }

  .videoCheckoutVipOption b {
    padding: 5px 7px;
  }

  .videoCheckoutPaymentMethods {
    gap: 7px;
  }

  .videoCheckoutPaymentMethod {
    min-height: 61px;
    padding: 9px 11px;
    grid-template-columns: 19px minmax(0, 1fr) auto;
    gap: 8px;
    border-radius: 11px;
  }

  .videoCheckoutPaymentMethod[data-payment-card="points"] {
    min-height: 56px;
    padding-block: 8px;
    grid-template-columns: 19px minmax(0, 1fr);
  }

  .videoCheckoutPointsHeading b {
    font-size: 12px;
  }

  .videoCheckoutPaymentMethod > b {
    font-size: 12px;
  }

  .videoCheckoutTrust p {
    font-size: 11px;
  }

  .videoCheckoutAction {
    bottom: 4px;
    margin-top: 7px;
  }

  .videoCheckoutSubmit {
    min-height: 53px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .videoCheckoutLegal {
    margin-top: 13px;
    font-size: 10px;
  }

  .videoCheckoutFeedbackPage {
    min-height: calc(100vh - 56px);
    padding: 18px 13px;
    align-items: center;
  }

  .videoCheckoutFeedbackPanel {
    padding: 38px 22px;
  }

  .videoCheckoutFeedbackIcon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .videoCheckoutFeedbackPanel h1 {
    font-size: 23px;
  }

  .videoCheckoutFeedbackPanel p {
    font-size: 14px;
  }

  .videoCheckoutResult {
    padding: 28px 15px;
  }

  .videoCheckoutResult h2 {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .videoCheckoutResultSummary {
    padding: 13px 14px;
  }

  .videoCheckoutResultActions {
    flex-direction: column;
  }

  .videoCheckoutResultActions .videoCheckoutFeedbackAction {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 370px) {
  .videoCheckoutHeader {
    padding-right: 11px;
    padding-left: 11px;
  }

  .videoCheckoutHeaderBack {
    font-size: 15px;
  }

  .videoCheckoutAccessOption {
    padding-right: 9px;
    padding-left: 9px;
  }

  .videoCheckoutVipOption b {
    max-width: 74px;
    white-space: normal;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .videoCheckoutPage * {
    transition-duration: 0.01ms !important;
  }
}
