:root {
  --smz-primary-color: #0A7EA4;
  --smz-secondary-color: #f9fdff;
  --smz-background-color: #ffffff;
  --smz-header-background-color: #ffffff;
  --smz-back-icon-color: #999;
  --smz-text-color: #000000;
  --smz-payment-hover-color: #f7f7f7;
}


/* Modal */

.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

/*  Main Padding  padding: 15px 20px 20px; */

.checkout-modal-container {
  position: relative;
  max-width: 450px;
  height: calc(100% - 30px);
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--smz-background-color);
  overflow-y: auto;
  flex: 1;
  color: var(--smz-text-color);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Blocks pointer events on the rest of the checkout modal while a nested loader runs */
.smz-loader-modal-shield {
  position: absolute;
  inset: 0;
  z-index: 9000;
  pointer-events: auto;
  background: transparent;
  cursor: wait;
  display: flex !important;
}

/* Host (e.g. pay card) stacks above shield so loader UI stays visible */
.smz-loader-host {
  position: relative;
  z-index: 9001;
}


.checkout-modal-container::-webkit-scrollbar {
  display: none;
}

#custom-form {
  flex: 1;
  padding: 0px 14px;
  overflow-y: auto;
}


.smz-modal-header {
  background-color: var(--smz-header-background-color);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  justify-content: center;
  position: relative;
  min-height: 50px;
}

.close-modal {
  font-size: 16px;
  cursor: pointer;
  color: var(--smz-back-icon-color);
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left: 20px;
}

.smz-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.co-brand-logo {
  height: 40px;
  width: 80px;
}


.smz-modal-footer {
  text-align: center;
  background-color: #ffffff;
}

.smz-footer-icons {
  display: flex;
  justify-content: space-between;
  margin: 8px 0px;
}

.smz-footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
  font-size: 13px;
}

.smz-footer-item i {
  font-size: 18px;
  margin-bottom: 5px;
  color: #444;
}

.smz-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
  padding: 10px 20px 10px;
}

.smz-footer-links a {
  color: #555;
  text-decoration: none;
}

.smz-footer-links span {
  color: #777;
}

.smz-powered {
  display: flex;
  justify-content: center;
}

.smz-powered img {
  height: 25px;
  margin-left: 5px;
}


/* Top discount banner */
.smz-header-banner {
  width: 100%;
  text-align: center;
  padding: 4px 0;
  position: relative;
  z-index: 10;
}

/* Animated text */
.smz-banner-text {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}




/* Order Details Section */

.smz-order-summary-wrapper {
  /* border-bottom: 1px solid #eee; */
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: white;
}

.smz-order-summary-loader {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
}

.smz-order-summary-wrapper.smz-order-summary--loading .smz-order-summary-loader {
  display: flex;
}

.smz-order-summary-wrapper.smz-order-summary--loading .smz-order-summary-loader::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #e0e0e0;
  border-top-color: var(--smz-primary-color, #3173f3);
  border-radius: 50%;
  animation: smz-order-summary-spin 0.65s linear infinite;
}

.smz-order-summary-wrapper.smz-order-summary--loading {
  pointer-events: none;
}

@keyframes smz-order-summary-spin {
  to {
    transform: rotate(360deg);
  }
}

.smz-order-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.smz-summary-left {
  font-size: 16px;
}

.smz-summary-left span {
  font-size: 14px;
  color: #555;
}

.smz-summary-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.smz-summary-toggle {
  font-size: 14px;
  transition: 0.2s;
}

.smz-rotate {
  transform: rotate(180deg);
}

.smz-order-summary-expanded {
  border-top: 1px solid #eee;
  margin-top: 12px;
  padding-top: 12px;
}

.smz-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

/* .smz-summary-row--hidden {
  display: none !important;
} */

.smz-summary-product {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.smz-summary-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.smz-summary-info {
  flex: 1;
}

.smz-summary-title {
  font-size: 12px;
}

.smz-summary-variant {
  font-size: 13px;
  color: #777;
  margin: 3px 0;
}

.smz-summary-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.smz-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.smz-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.smz-qty-value {
  font-size: 14px;
}

.smz-product-price {
  font-weight: bold;
}









/* Mobile Number SECTION */
.smz-mobile-container {
  margin-top: 25px;
  padding: 0 5px;
}

.smz-mobile-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.smz-mobile-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}




/* Mobile input layout */
.smz-mobile-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.smz-flag-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  padding: 10px 12px;
  border-right: 1px solid #ddd;
}

.smz-flag {
  width: 20px;
  border-radius: 2px;
}

.smz-country-code {
  font-size: 14px;
  font-weight: 500;
}

.smz-mobile-input {
  flex: 1;
  padding: 12px;
  outline: none;
  border: none;
  font-size: 15px;
}

/* Button */
.smz-mobile-btn {
  width: 100%;
  margin-top: 18px;
  padding: 12px 0;
  font-size: 15px;
  background: #dcdcdc;
  border-radius: 8px;
  border: none;
  cursor: not-allowed;
  color: #555;
  transition: all 0.2s ease;
}

.smz-mobile-btn.active {
  background: #000;
  color: #fff;
  cursor: pointer;
}

/* OTP Verification Section */

#reset-otp-verification {
  color: var(--smz-primary-color);
}

.smz-otp-single-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  max-width: 120px;
}

.smz-otp-container {
  margin-top: 24px;
  padding: 0 5px 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.smz-otp-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.smz-otp-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.smz-otp-subtitle strong {
  font-weight: 600;
  color: #333;
}

.smz-otp-inputs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 16px;
}

.smz-otp-input {
  width: 42px;
  height: 42px;
  text-align: center;
  font-size: 18px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
}

.smz-otp-input:focus {
  border-color: #000;
}

.smz-otp-verify-btn {
  width: 100%;
  padding: 11px 0;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  background: #dcdcdc;
  color: #555;
  cursor: not-allowed;
  transition: all 0.2s ease;
}

.smz-otp-verify-btn.active {
  background: #000;
  color: #fff;
  cursor: pointer;
}

.smz-otp-footer {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: #666;
}

.smz-otp-resend-btn {
  background: none;
  border: none;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  margin-left: 4px;
  padding: 0;
}

.smz-otp-error {
  color: #ff3b30;
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
  opacity: 0.9;
  justify-content: center;
}

@keyframes smz-shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  50% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: smz-shake 0.35s ease;
}





/* Spinner Code */

.custom-spinner {
  --size: 30px;
  --first-block-clr: black;
  --second-block-clr: var(--smz-primary-color);
  --clr: #111;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex !important;
}

.custom-spinner::after,
.custom-spinner::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: var(--size);
  height: var(--size);
  top: 50%;
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  left: 50%;
  background: var(--first-block-clr);
}

.custom-spinner::after {
  background: var(--second-block-clr);
  top: calc(50% - var(--size));
  left: calc(50% - var(--size));
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes down {

  0%,
  100% {
    transform: none;
  }

  25% {
    transform: translateX(100%);
  }

  50% {
    transform: translateX(100%) translateY(100%);
  }

  75% {
    transform: translateY(100%);
  }
}

@keyframes up {

  0%,
  100% {
    transform: none;
  }

  25% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-100%) translateY(-100%);
  }

  75% {
    transform: translateY(-100%);
  }
}


.spinner-container {
  width: 100%;
  height: 90px;
  align-items: center;
  display: flex;
  justify-content: center;
}

#modal-spinner-container {
  width: 100%;
  height: 88vh;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}




input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.smz-loader-text {
  font-size: 15px;
  color: black;
  opacity: 0.8;
  letter-spacing: 0.2px;
}





/* Delivery details block */
.smz-address-section {
  /* margin-top: 10px;
  padding: 14px 0px 10px; */
  border-radius: 16px;
  padding: 16px 16px 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: white;
}

.smz-address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.smz-address-title {
  font-size: 16px;
}

.smz-address-change-btn {
  background: none;
  border: none;
  color: var(--smz-primary-color);
  font-size: 13px;
  cursor: pointer;
}

.smz-address-body {
  font-size: 14px;
  color: #444;
}

.smz-address-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.smz-add-tag {
  background-color: #0A7EA4;
  font-size: 10px;
  border-radius: 10px;
  margin-left: 5px;
  padding: 3px 7px;
  color: white;
  font-weight: 100;
}

.smz-address-lines {
  margin-bottom: 4px;
}

.smz-address-phone {
  font-size: 13px;
  color: #777;
}

.smz-address-phone i {
  margin-right: 4px;
}

.smz-address-empty {
  font-size: 13px;
  color: #777;
}

/* Bottom sheet */
.smz-bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999999;
}

.smz-bottom-sheet-overlay.smz-bs-open {
  opacity: 1;
  pointer-events: auto;
}

.smz-bottom-sheet {
  margin-bottom: 15px;
  width: 100%;
  max-width: 390px;
  max-height: 85vh;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.smz-bottom-sheet-overlay.smz-bs-open .smz-bottom-sheet {
  transform: translateY(0);
}

.smz-bs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.smz-bs-close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.smz-bs-body {
  padding: 14px 8px 10px;
  max-height: 60vh;
  overflow-y: auto;
}

.smz-bs-label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.smz-bs-label input {
  width: 100%;
  padding: 9px 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 14px;
}

.smz-bs-row {
  display: flex;
  gap: 10px;
}

.smz-bs-footer {
  padding: 10px 16px 16px;
}

#smz-bs-save-btn {
  width: 100%;
}

/* Exit flow bottom sheet tweaks */
.smz-exit-bottom-sheet .smz-exit-warning {
  background-color: #ffe1ce;
  color: #b14a16;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.smz-exit-bottom-sheet .smz-exit-question {
  font-size: 14px;
  font-weight: 500;
  margin: 12px 0 16px;
}

.smz-exit-bottom-sheet .smz-exit-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.smz-exit-bottom-sheet {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
}



#smz-exit-confirm-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: var(--smz-primary-color);
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

#smz-exit-cancel-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  background-color: var(--smz-secondary-color);
  color: #000000;
  font-size: 14px;
  cursor: pointer;
}

#smz-bs-save-btn {
  width: 100%;
  padding: 11px 0;
  background: var(--smz-primary-color);
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

/* Payment section */
.smz-payment-section {
  margin-top: 15px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: white;
  border-radius: 8px;
}

.smz-payment-header {
  font-size: 16px;
  margin-bottom: 12px;
}

.smz-pay-card {
  background: #fff;
  padding: 14px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: 0.2s;
}

.smz-pay-card:hover {
  background: var(--smz-payment-hover-color);
}

.smz-pay-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.smz-pay-icon {
  font-size: 20px;
  color: #444;
}

.smz-pay-texts {
  display: flex;
  flex-direction: column;
}

.smz-pay-title {
  font-size: 14px;
}

.smz-pay-sub {
  font-size: 12px;
  color: #717171;
  margin-top: 2px;
}

.smz-pay-arrow {
  font-size: 14px;
  color: #999;
}

/* Order Confirmation animation */
/* Success box inside modal */
.smz-modal-success-box {
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background: #eafdf0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Check animation container */
.smz-check-animation {
  width: 120px;
  height: 120px;
  margin-bottom: 18px;
  animation: popIn 0.35s ease-out;
}

/* Circle */
.smz-check-circle {
  stroke: #1dbf4f;
  stroke-width: 3;
  stroke-dasharray: 175;
  stroke-dashoffset: 166;
  stroke-linecap: round;
  fill: none;
  animation: circleAnimation 0.6s ease-out forwards;
}

/* Check */
.smz-check-mark {
  stroke: #1dbf4f;
  stroke-width: 4;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-linecap: round;
  animation: checkAnimation 0.35s ease-out 0.45s forwards;
}

/* Title */
.smz-modal-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #0e6027;
  margin-bottom: 6px;
  text-align: center;
}

/* Subtitle */
.smz-modal-success-sub {
  font-size: 14px;
  color: #2b7a46;
  text-align: center;
}

/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Pop-in */
@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Draw animations */
@keyframes circleAnimation {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkAnimation {
  to {
    stroke-dashoffset: 0;
  }
}



/* Bottom Sheet for list of all address */

.smz-address-card {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--smz-primary-color);
}

.smz-address-select-row {
  display: flex;
  gap: 10px;
}

.smz-address-radio {
  margin-top: 6px;
}

.smz-address-info {
  flex: 1;
  font-size: 14px;
}

.smz-address-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.smz-address-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.smz-edit-btn,
.smz-delete-btn {
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  color: #007aff;
}

.smz-delete-btn {
  color: #c52222;
}

#smz-add-address-btn {
  width: 100%;
  background: var(--smz-primary-color);
  color: #fff;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.smz-bs-address-type {
  margin-top: 12px;
}

.smz-bs-type-toggle {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.smz-type-btn {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.smz-type-btn.active {
  background: var(--smz-primary-color);
  color: #fff;
  border-color: var(--smz-primary-color);
}

.smz-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.smz-exit-popup {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 360px;
  padding: 20px;
  text-align: center;
}

.smz-exit-popup h3 {
  margin-bottom: 8px;
}

.smz-exit-popup p {
  font-size: 14px;
  color: #555;
}

.smz-exit-actions {
  gap: 12px;
  margin-top: 20px;
}

.smz-exit-confirm {
  width: 100%;
  flex: 1;
  background: #e53935;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.smz-exit-cancel {
  width: 100%;
  margin-top: 10px;
  flex: 1;
  background: #f1f1f1;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== SMZ-Loader ===== */
.smz-loader-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smz-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Dot wave loader */
.smz-dot-loader {
  display: flex;
  gap: 6px;
}

.smz-dot {
  width: 8px;
  height: 8px;
  background: #0a7ea4;
  border-radius: 50%;
  animation: smz-dot-wave 1.4s infinite ease-in-out both;
}

.smz-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.smz-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes smz-dot-wave {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.3;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animated text */
.smz-loader-text {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  animation: smz-text-fade 1.6s ease-in-out infinite;
}

@keyframes smz-text-fade {
  0% {
    opacity: 0.4;
    transform: translateY(2px);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.4;
    transform: translateY(2px);
  }
}

.smz-change-number-btn {
  background: none;
  border: none;
  color: var(--smz-primary-color);
  font-size: 14px;
  cursor: pointer;
}


/* COD-only checkout flow (CheckoutState.config.CODFormFlow) */
.smz-codflow-root {
  margin-top: 8px;
  padding: 0 2px 8px;
}



.smz-codflow-cta {
  display: flex;
  margin: 18px 0px;
  gap: 10px;
  position: relative;
  flex-direction: column;
}

.smz-codflow-place-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--smz-primary-color, #0a7ea4) 0%, #0369a1 100%);
  box-shadow: 0 4px 14px rgba(10, 126, 164, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.smz-codflow-place-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.4);
}

.smz-codflow-place-btn:active {
  transform: translateY(0);
}

@media (max-width: 550px) {
  .checkout-modal-container {
    max-width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}