@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  --font-family-manrope: "Manrope", sans-serif;
  --font-family-urbanist: "Urbanist", sans-serif;
  --button-color: #0866bc;
  --button-hover-color: #0a70cf;
  --text-color-main: #111827;
  --text-color-grey: #4b5563;
  --text-color-dark-grey: #374151;
  --white-color: #ffffff;
  --btn-fontsize: 16px;
  --btn-fontweight: 700;
}

/* Basic reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* Basic reset end */
button:not(:disabled) {
  cursor: pointer;
}

.btn {
  color: var(--white-color);
  background-color: #555;
  border: 0;
  outline: 0;
  height: 56px;
  font-size: var(--btn-fontsize);
  font-weight: var(--btn-fontweight);
  font-family: var(--font-family-urbanist);
  transition: 0.2s ease;
}

.btn.btn-primary {
  background-color: var(--button-color);
}

.btn.btn-primary:hover {
  background-color: var(--button-hover-color);
}

.btn.btn-rounded {
  border-radius: 100px;
}

.container {
  width: 100%;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}
.main-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 600;
}

.main-header .header-block {
  padding: 30px 0;
  text-align: center;
}
.main-header .main-logo {
  display: inline-block;
  outline: 0;
}
.main-header .main-logo img {
  height: 38px;
}
.main-page-section .content-wrapper {
  padding-bottom: 64px;
}
.landing-banner {
  height: 345px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.graphics-bg,
.bg-red,
.bg-yellow {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.graphics-bg {
  background-image: url("../images/background-image.jpg");
}
.bg-red {
  background-image: url("../images/red-bg.jpg");
}
.bg-yellow {
  background-image: url("../images/yellow-bg.jpg");
}

.page-banner-fluid-image img {
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  max-height: 354px;
}

.landing-banner .landing-banner-image {
  max-width: 100%;
  height: 250px;
  flex: none;
  margin-bottom: 10px;
}

.form-field.form-field__submit .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 20px;
  width: 100%;
}
.form-field.form-field__submit .btn svg {
  height: 24px;
}

h1.section-title {
  font-size: 23px;
  font-weight: 600;
  font-family: var(--font-family-urbanist);
  margin-bottom: 14px;
}
.order-item-list .order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2937;
  font-family: var(--font-family-manrope);
  font-size: 12px;
  font-weight: 400;
}

.order-row.table-footer {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color-main);
}
.order-row-column {
  padding: 8px 0;
}
.order-row-column.column__price {
  width: 120px;
  text-align: right;
}
.order-row-column.column__price .price-sm {
  font-size: 12px;
  font-weight: 700;
}
.order-row-column.column__label {
  width: calc(100% - 120px);
  padding-right: 20px;
}
.form-section,
.order-info-section {
  margin-top: 24px;
}
h2.form-title {
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-family-urbanist);
  margin-bottom: 20px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field.form-field__submit {
  margin-top: 20px;
}
.form-field input[type="text"],
.form-field input[type="password"],
.form-field input[type="email"],
.form-field select,
.form-field input[type="number"] {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: 14px;
  display: block;
  width: 100%;
  outline: 0;
}

.page-banner-graphics {
  height: 240px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page-banner-graphics img {
  height: 100px;
  flex: none;
}

.page-content-block {
  max-width: 720px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 40px 0;
}
.page-content-block h1.page-title {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-family-urbanist);
  color: var(--text-color-main);
  margin-bottom: 20px;
}
.page-content-block p.page-description {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-family-manrope);
  color: var(--text-color-dark-grey);
  line-height: 24px;
}
.page-content-block p.page-description > span {
  font-weight: 700;
  color: #2175c3;
}
.page-content-block p.page-description > strong {
  font-weight: 600;
  color: #111827;
  display: block;
}
.section-block p.secton-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color-dark-grey);
  font-family: var(--font-family-manrope);
  margin-bottom: 14px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-items > div {
  display: flex;
  justify-content: center;
}

.contact-items a.contact-item img {
  height: 20px;
}
.contact-items a.contact-item {
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  font-family: var(--font-family-urbanist);
  gap: 10px;
  transition: 0.2s ease;
}
.contact-items a.contact-item:hover {
  color: var(--button-hover-color);
}
.section-block {
  margin-top: 34px;
}
.section-block .transaction-id-element {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-block .transaction-id-element {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color-dark-grey);
  font-family: var(--font-family-manrope);
}
.section-block .transaction-id-element .copy-clipboard {
  cursor: pointer;
  margin-left: 10px;
}
.payment-status-txt p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-dark-grey);
  font-family: var(--font-family-manrope);
}
.payment-status-txt p span.success {
  color: #059669;
}
.payment-status-txt p span.failed {
  color: #dc2626;
}
.payment-status-txt p span.pending {
  color: #b45309;
}
.footer-action-block button.btn {
  border-radius: 100px;
  display: block;
  width: 100%;
}
.footer-action-block {
  padding-top: 14px;
}
.payment-status-txt {
  margin-top: 8px;
}

/* FOOTER */

.main-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 600;
  background-color: #fff;
}
.main-footer-block {
  height: 54px;
}
.footer-nav-list ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav-list ul li {
  list-style: none;
  position: relative;
  padding-left: 26px;
}
.footer-nav-list ul li::before {
  content: "";
  position: absolute;
  background-color: #666666;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 10px;
  top: 50%;
  margin-top: -2px;
  z-index: 1;
}
.footer-nav-list ul li:first-child {
  padding-left: 0;
}
.footer-nav-list ul li:first-child:before {
  display: none;
}
.footer-nav-list ul a {
  text-decoration: none;
  outline: 0;
  transition: 0.2s ease;
}
.footer-nav-list ul a,
.copyright-col .copyright-text {
  font-size: 12px;
  font-weight: 500;
  color: #131314;
  font-family: var(--font-family-manrope);
  display: block;
  line-height: 1;
}
.status-page-section {
  padding-bottom: 64px;
}
.footer-nav-list ul a:hover {
  color: var(--button-hover-color);
}

.coupon-code-section {
  margin-top: 30px;
}
.coupon-code-section input {
  width: 70% !important;
}
p.form-title {
  font-size: 18px;
  margin-bottom: 14px;
}
/* RESPONSIVE */

@media screen and (max-width: 767px) {
  .main-page-section .content-wrapper {
    min-height: 100dvh;
    position: relative;
    width: 100%;
  }
  .main-footer-block,
  .span.copyright-text {
    text-align: center;
  }
  .main-footer-block .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .form-field.form-field__submit {
    margin-bottom: 0;
    margin-top: 18px;
    display: inline-block;
    width: 100%;
  }
  .main-footer-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .order-block-wrapper,
  .main-footer-block {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 992px) {
  .container {
    width: 90%;
  }
  .main-page-section {
    margin-top: 150px;
  }
  .content-wrapper {
    display: flex;
    justify-content: flex-start;
  }
  .content-wrapper .landing-split {
    width: 50%;
  }
  .order-block-wrapper {
    padding-left: 44px;
  }
  .form-field input[type="text"],
  .form-field input[type="password"],
  .form-field input[type="email"],
  .form-field input[type="number"] {
    padding: 16px;
  }

  h1.section-title {
    font-size: 28px;
  }
  .order-item-list .order-row {
    font-size: 16px;
  }
  .order-item-list .order-row.table-footer {
    font-weight: 700;
  }
  .order-info-section {
    margin-top: 0;
  }
  .form-section {
    margin-top: 46px;
  }
  h2.form-title {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .landing-banner {
    height: 500px;
  }
  .landing-banner .landing-banner-image {
    height: 400px;
    margin-bottom: 30px;
  }

  .page-banner-graphics {
    height: 355px;
  }
  .page-banner-graphics img {
    height: 212px;
  }
  .page-content-block h1.page-title {
    font-size: 40px;
  }
  .page-content-block p.page-description {
    font-size: 16px;
    font-weight: 500;
  }
  .section-block p.secton-label,
  .contact-items a.contact-item {
    font-size: 16px;
  }
  .contact-items a.contact-item img {
    height: 24px;
  }
  .contact-items a.contact-item {
    gap: 14px;
  }
  .contact-items {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
  .section-block .transaction-id-element {
    font-size: 14px;
  }
  .payment-status-txt {
    margin-top: 10px;
  }
  .payment-status-txt p {
    font-size: 19px;
  }
  .footer-action-block button.btn {
    max-width: 260px;
    margin: auto;
  }
}

.clipper-success {
  color: green;
  display: none;
  margin-left: 8px;
}

.err-msgs {
  display: inline-flex;
  padding: 10px 15px 16px 20px;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: var(--Error-Red-100, #FEE2E2);
  ;
}

.err-wrapper {
  display: flex;
  justify-content: center;
}

.loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
