/* ════════════════════════════════════════════
   CHECKOUT PAGE — Trovi Travel Tours
   ════════════════════════════════════════════ */

/* Phone field with searchable dial picker */
.ck-phone-wrap {
  display: flex;
  gap: 0;
}

.ck-phone-num {
  border-radius: 0 10px 10px 0 !important;
  border-left: none !important;
  flex: 1;
  min-width: 0;
}

.ck-phone-wrap:focus-within .ck-phone-num {
  border-color: var(--terra);
}

.ck-phone-wrap .ck-input.error {
  border-color: #ef4444;
}

/* Dial picker */
.ck-dial-picker {
  position: relative;
  flex-shrink: 0;
}

.ck-dial-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: .72rem .75rem;
  background: var(--cream);
  cursor: pointer;
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--night);
  white-space: nowrap;
  transition: border-color .2s, background .2s;
  height: 100%;
}

.ck-dial-btn:hover,
.ck-dial-picker.open .ck-dial-btn {
  background: #fff;
  border-color: var(--terra);
}

.ck-dial-arrow {
  color: var(--mist);
  transition: transform .2s;
  margin-left: .1rem;
}

.ck-dial-picker.open .ck-dial-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.ck-dial-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 260px;
  background: #fff;
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 36, 25, .14);
  z-index: 500;
  overflow: hidden;
}

.ck-dial-picker.open .ck-dial-dropdown {
  display: block;
  animation: ckFadeIn .15s ease;
}

.ck-dial-search-wrap {
  padding: .6rem .7rem;
  border-bottom: 1px solid rgba(74, 103, 65, .1);
}

.ck-dial-search {
  width: 100%;
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 8px;
  padding: .5rem .75rem;
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--night);
  background: var(--cream);
}

.ck-dial-search:focus {
  outline: none;
  border-color: var(--terra);
  background: #fff;
}

.ck-dial-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  padding: .3rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 103, 65, .2) transparent;
}

.ck-dial-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .9rem;
  cursor: pointer;
  font-size: .88rem;
  color: var(--dusk);
  transition: background .15s;
}

.ck-dial-list li:hover,
.ck-dial-list li.selected {
  background: rgba(74, 103, 65, .08);
  color: var(--terra2);
}

.ck-dial-list li .ck-dl-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ck-dial-list li .ck-dl-code {
  font-weight: 600;
  color: var(--mist);
  font-size: .82rem;
}

.ck-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  min-height: 100vh;
}

.ck-breadcrumb {
  font-size: .85rem;
  color: var(--mist);
  margin-bottom: 1.2rem;
}

.ck-breadcrumb span {
  color: var(--terra);
  font-weight: 500;
  cursor: pointer;
}

.ck-breadcrumb span:hover {
  text-decoration: underline;
}

/* Header */
.ck-header {
  border-bottom: 1px solid rgba(74, 103, 65, .15);
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
}

.ck-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}

.ck-logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ck-secure-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(74, 103, 65, .1);
  color: var(--terra2);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
  letter-spacing: .02em;
}

.ck-trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ck-trust-item {
  font-size: .78rem;
  color: var(--mist);
  font-weight: 500;
}

/* Main layout */
.ck-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* Section card */
.ck-section {
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 20px;
  padding: 1.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
}

.ck-section-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin-top: .1rem;
}

.ck-section-body {
  flex: 1;
}

.ck-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--night);
  margin-bottom: 1.2rem;
}

/* Fields */
.ck-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.ck-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ck-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dusk);
  letter-spacing: .02em;
}

.ck-req {
  color: var(--terra);
}

.ck-input {
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 10px;
  padding: .72rem 1rem;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--night);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.ck-input:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, .12);
  background: #fff;
}

.ck-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.ck-select {
  cursor: pointer;
}

.ck-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Payment methods */
.ck-methods {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.ck-method {
  border: 1.5px solid rgba(74, 103, 65, .2);
  border-radius: 12px;
  padding: .65rem 1.1rem;
  background: var(--cream);
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 90px;
  flex: 1;
}

.ck-method:hover {
  border-color: var(--terra);
  background: rgba(74, 103, 65, .06);
}

.ck-method.active {
  border-color: var(--terra);
  background: rgba(74, 103, 65, .1);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, .12);
}

.ck-method-icons {
  display: flex;
  gap: .3rem;
  align-items: center;
}

.ck-card-icon {
  width: 28px;
  height: 20px;
  object-fit: contain;
}

.ck-method-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dusk);
  letter-spacing: .02em;
}

.ck-method.active .ck-method-label {
  color: var(--terra2);
}

/* Pay panels */
.ck-pay-panel {
  animation: ckFadeIn .2s ease;
}

@keyframes ckFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ck-card-field-wrap {
  position: relative;
}

.ck-card-field-wrap .ck-input {
  padding-right: 3rem;
}

.ck-card-type-icon {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
}

.ck-cvv-tip {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mist);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}

.ck-card-logos {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.ck-card-logo-badge {
  padding: .25rem .65rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--sand);
  color: var(--night);
  border: 1px solid rgba(74, 103, 65, .15);
}

/* MB Way */
.ck-mbway-logo {
  margin-bottom: 1rem;
}

.ck-mbway-badge {
  display: inline-block;
  background: #005fa3;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .35rem .9rem;
  border-radius: 8px;
  margin-bottom: .7rem;
}

.ck-pay-desc {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.6;
}

/* Info box */
.ck-info-box {
  display: flex;
  gap: .75rem;
  background: rgba(74, 103, 65, .07);
  border: 1px solid rgba(74, 103, 65, .18);
  border-radius: 10px;
  padding: .9rem 1rem;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--dusk);
  line-height: 1.5;
}

/* Multibanco ref box */
.ck-mb-ref-box {
  background: var(--sand);
  border: 1px solid rgba(74, 103, 65, .18);
  border-radius: 12px;
  overflow: hidden;
}

.ck-mb-ref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 1.1rem;
  border-bottom: 1px solid rgba(74, 103, 65, .12);
}

.ck-mb-ref-row:last-child {
  border-bottom: none;
}

.ck-mb-ref-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ck-mb-ref-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--night);
}

/* PayPal */
.ck-paypal-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #003087;
  margin-bottom: .8rem;
}

/* Cancellation policy */
.ck-policy {
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 20px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1.2rem;
}

.ck-policy-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
  margin-bottom: 1rem;
}

.ck-policy-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ck-policy-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: var(--dusk);
  line-height: 1.5;
}

.ck-policy-dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra);
  margin-top: .35rem;
}

/* Error */
.ck-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  padding: .8rem 1.1rem;
  color: #dc2626;
  font-size: .88rem;
  margin-bottom: 1rem;
}

/* Submit */
.ck-submit-btn {
  width: 100%;
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 1.05rem 2rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 20px rgba(74, 103, 65, .3);
}

.ck-submit-btn:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 103, 65, .4);
}

.ck-submit-btn:active {
  transform: translateY(0);
}

.ck-submit-note {
  text-align: center;
  font-size: .78rem;
  color: var(--mist);
  margin-top: .75rem;
  line-height: 1.5;
}

/* Summary card */
.ck-sticky-wrap {
  position: sticky;
  top: 90px;
}

.ck-summary-card {
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .14);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 24px rgba(26, 36, 25, .07);
}

.ck-summary-tour-img {
  height: 170px;
  overflow: hidden;
}

.ck-summary-tour-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.ck-summary-card:hover .ck-summary-tour-img-inner {
  transform: scale(1.04);
}

.ck-summary-body {
  padding: 1.4rem;
}

.ck-summary-badge {
  display: inline-block;
  background: rgba(74, 103, 65, .1);
  color: var(--terra2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .7rem;
}

.ck-summary-tour-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ck-summary-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .8rem;
}

.ck-summary-meta-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  color: var(--dusk);
}

.ck-summary-meta-icon {
  font-size: .95rem;
  min-width: 1.2rem;
}

.ck-summary-divider {
  height: 1px;
  background: rgba(74, 103, 65, .12);
  margin: .9rem 0;
}

.ck-summary-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ck-price-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--dusk);
}

.ck-price-row-label {
  font-weight: 400;
}

.ck-price-row-val {
  font-weight: 600;
  color: var(--night);
}

.ck-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ck-summary-total-label {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mist);
}

.ck-summary-total-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terra2);
}

.ck-summary-savings {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(74, 103, 65, .08);
  border-radius: 8px;
  padding: .5rem .8rem;
  font-size: .82rem;
  color: var(--terra2);
  font-weight: 600;
  margin-top: .6rem;
}

/* Trust box */
.ck-trust-box {
  background: var(--white);
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.ck-trust-box-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.ck-trust-box-icon {
  font-size: 1.2rem;
  min-width: 1.5rem;
  margin-top: .05rem;
}

.ck-trust-box-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: .15rem;
}

.ck-trust-box-desc {
  font-size: .78rem;
  color: var(--mist);
  line-height: 1.4;
}

.ck-help-box {
  text-align: center;
  font-size: .85rem;
  color: var(--mist);
  padding: .8rem;
  line-height: 1.8;
}

/* Success overlay */
.ck-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 10, .75);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: succ-fade-in .3s ease;
}

@keyframes succ-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ck-success-card {
  background: #1b2a1a;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
  animation: succ-slide-up .35s cubic-bezier(.22, 1, .36, 1);
}

@keyframes succ-slide-up {
  from {
    transform: translateY(24px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ck-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #52c79a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 8px 28px rgba(82, 199, 154, .35);
}

.ck-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0ece3;
  margin-bottom: .5rem;
}

.ck-success-desc {
  font-size: .88rem;
  color: rgba(240, 236, 227, .55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.ck-success-ref-badge {
  display: inline-block;
  border: 1.5px solid rgba(201, 162, 39, .7);
  color: rgba(201, 162, 39, .9);
  border-radius: 6px;
  padding: .38rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.ck-success-details {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: .2rem 0;
  margin-bottom: 1rem;
  text-align: left;
}

.ck-success-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ck-success-detail-row:last-child {
  border-bottom: none;
}

.ck-sd-label {
  font-size: .88rem;
  color: rgba(240, 236, 227, .5);
}

.ck-sd-value {
  font-size: .88rem;
  color: rgba(240, 236, 227, .9);
  font-weight: 500;
}

.ck-sd-total {
  color: #c9a227;
  font-weight: 700;
  font-size: .95rem;
}

.ck-success-email-info {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: 1.4rem;
  text-align: left;
  font-size: .82rem;
  color: rgba(130, 190, 220, .85);
  line-height: 1.55;
}

.ck-success-email-info svg {
  margin-top: .1rem;
  color: rgba(130, 190, 220, .7);
}

.ck-success-btn {
  display: block;
  width: 100%;
  background: #c9a227;
  color: #1b2a1a;
  border: none;
  border-radius: 10px;
  padding: .85rem 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.ck-success-btn:hover {
  background: #dbb432;
  transform: translateY(-1px);
}

/* Cancel / Error overlay */
.ck-cancel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 10, .75);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: succ-fade-in .3s ease;
}

.ck-cancel-card {
  background: #1f1a1a;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
  animation: succ-slide-up .35s cubic-bezier(.22, 1, .36, 1);
}

.ck-cancel-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 8px 28px rgba(192, 57, 43, .35);
}

.ck-cancel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0ece3;
  margin-bottom: .5rem;
}

.ck-cancel-desc {
  font-size: .88rem;
  color: rgba(240, 236, 227, .55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.ck-cancel-reason-box {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: rgba(192, 57, 43, .1);
  border: 1px solid rgba(192, 57, 43, .25);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: .84rem;
  color: rgba(240, 160, 150, .9);
  line-height: 1.55;
}

.ck-cancel-reason-box svg {
  color: rgba(240, 100, 90, .8);
}

.ck-cancel-actions {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.ck-cancel-retry-btn {
  display: block;
  width: 100%;
  background: #c9a227;
  color: #1b2a1a;
  border: none;
  border-radius: 10px;
  padding: .85rem 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.ck-cancel-retry-btn:hover {
  background: #dbb432;
  transform: translateY(-1px);
}

.ck-cancel-home-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: rgba(240, 236, 227, .5);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: .75rem 1.5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.ck-cancel-home-btn:hover {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(240, 236, 227, .85);
}

/* Responsive */
@media (max-width: 900px) {
  .ck-main {
    grid-template-columns: 1fr;
  }

  .ck-sticky-wrap {
    position: static;
  }

  .ck-summary-col {
    order: -1;
  }
}

@media (max-width: 600px) {
  .ck-wrap {
    padding: 1rem 1rem 3rem;
  }

  .ck-section {
    flex-direction: column;
    gap: .8rem;
    padding: 1.2rem;
  }

  .ck-grid-2 {
    grid-template-columns: 1fr;
  }

  .ck-methods {
    gap: .4rem;
  }

  .ck-method {
    min-width: 70px;
    padding: .55rem .7rem;
  }

  .ck-method-label {
    font-size: .72rem;
  }

  .ck-summary-tour-img {
    height: 130px;
  }

  .ck-trust-row {
    display: none;
  }
}