.Checkout {
  display: grid;
}
.checkout-wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  min-height: 700px;
  margin-top: 240px;
  z-index: 0;
  /* padding-left: clamp(24px, 8.906vw - 11px, 160px); */
  /* padding-right: clamp(24px, 8.906vw - 11px, 160px); */
}
.checkout-wrapper .left-section {
  /* width: calc(100% - 430px); */
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* padding: 0 0 0 10px; */
  padding-bottom: 100px;
}
.right-section {
  /* width: calc(100% - 430px); */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px;
  padding-bottom: 100px;
}
.checkout-wrapper .left-section .main-content {
  width: 100%;
  border-radius: 8px;
  padding: 20px 33px 70px 33px;
  /* background: aqua; */
  border: 1px solid var(--border-border-inactive, #b8b8b8);
}
.checkout-wrapper .left-section .ant-picker {
  border-radius: unset;
  height: 40px;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #121212;
}
.checkout-wrapper h2 {
  margin-bottom: 50px;
  font-family: Domaine Display;
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
}
.checkout-wrapper .left-section.checkout-section .btn-primary {
  width: fit-content;
  background: #0abab5;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  height: 38px;
}
.checkout-wrapper .left-section.checkout-section .btn-primary:hover {
  box-shadow: 0 0 0 0.2rem #0abab5 !important;
  opacity: 0.8;
}
.checkout-wrapper .left-section.checkout-section .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-wrapper .left-section.checkout-section .btn-secondary {
  width: fit-content;
}
.checkout-wrapper
  .left-section.checkout-section
  .user-type-box.affiliate
  .btn-primary {
  background: transparent;
  border: 1px solid #0abab5;
  color: #0abab5;
  font-size: 16px;
  padding: 20px 70px;
  height: 52px !important;
  font-family: Gotham !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
}
.checkout-wrapper
  .left-section.checkout-section
  .user-type-box.customer
  .btn-primary {
  color: #3c4356;
  border: 1px solid #3c4356;
  background: transparent;
  font-size: 16px;
  padding: 20px 70px;
  font-weight: 600;
  margin-top: 50px;
  height: 52px !important;
  font-family: Gotham !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
}
.checkout-wrapper
  .left-section.checkout-section
  .user-type-box.customer
  .btn-primary:hover {
  box-shadow: 0 0 0 0.2rem rgb(60 67 86 / 60%) !important;
}
.checkout-wrapper .left-section.checkout-section ul {
  list-style: disc;
}
.checkout-wrapper .left-section.checkout-section .checkout-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}
.authed-layout .checkout-wrapper .left-section.checkout-section .checkout-form {
  position: relative;
}
.authed-layout .checkout-wrapper .billing-info-loading {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.checkout-wrapper .left-section.checkout-section .checkout-form .edit {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2px;
}
.saperator-line {
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid var(--color-primary-Color-1, #0abab5);
}
.checkout-wrapper .left-section.checkout-section .checkout-title {
  font-family: Domaine Display;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -2%;
  margin-bottom: 20px;
  color: #121212;
}
.checkout-wrapper .left-section.checkout-section label {
  margin-top: 12px;
  margin-bottom: 5px;
  font-family: "OpenSans_SemiBold";
  font-size: 16px;
  color: #121212;
}
.checkout-wrapper .left-section.checkout-section .ant-input {
  width: 100%;
  border-radius: unset;
  margin-top: 5px;
  height: 40px;
  border: 1px solid #121212;
}
.checkout-wrapper .left-section.checkout-section .ant-input-affix-wrapper {
  padding: 0 11px;
  border-radius: unset;
  border: 1px solid #121212;
}
.checkout-wrapper
  .left-section.checkout-section
  .ant-input-affix-wrapper
  input {
  height: 38px;
  border: none;
}
.checkout-wrapper .left-section.checkout-section .ant-select {
  width: 100%;
}
.checkout-wrapper
  .left-section.checkout-section
  .ant-select
  .ant-select-selector {
  border-radius: unset;
  height: 50px !important;
  border: 1px solid var(--border-border-inactive, #b8b8b8) !important;
}
.checkout-wrapper .left-section.checkout-section .input-error {
  color: #ff4d4f;
  margin-top: 5px;
}
/*************** Choose Type Section **************/
.choose-type-wrapper {
  margin-bottom: 30px;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.choose-type-wrapper .confirm-change-usertype {
  margin-top: 20px;
  text-align: center;
}
.choose-type-wrapper .confirm-change-usertype button {
  width: 100px;
  margin-left: 30px;
}
.choose-type-wrapper .checkout-title {
  margin-bottom: 20px;
}
.choose-type-wrapper .type-title {
  color: #6c757d;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.choose-type-wrapper .btn-primary {
  margin-top: 24px;
}
.choose-type-wrapper .user-type-box {
  width: 47%;
  max-width: 470px;
  padding: 50px 40px;
  border-radius: 6px;
  margin: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.choose-type-wrapper .user-type-box img {
  width: 60px;
  height: 60px;
}
.choose-type-wrapper .user-type-box.affiliate {
  background: #e6f8ff;
}
.choose-type-wrapper .user-type-box.only-affiliate {
  width: 80%;
}
.choose-type-wrapper .user-type-box.customer {
  background: #e5e5e5;
}
.choose-type-wrapper .user-type-box h6 {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #232838;
}
.choose-type-wrapper .user-type-box ul {
  font-size: 14px;
  color: #3c4356;
  text-align: left;
  padding-left: 30px;
}

/**************** User Information Section **************/
.checkout-wrapper .left-section.checkout-section .password-visibility {
  cursor: pointer;
}
.checkout-form .action-row {
  margin-top: 24px;
}

/***************** Billing Form Section ***************/
.checkout-form .bitcoin-description {
  margin-top: 12px;
}
.checkout-form .btn-checkout {
  width: 160px;
  margin-left: 12px;
}
.checkout-form .btn-checktax {
  width: 200px;
}
.checkout-form .agreement {
  margin-top: 12px;
}
.checkout-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 5px;
}
.checkout-form .action-row {
  flex-direction: row !important;
  margin-top: 24px;
}
.checkout-form .billing-same-shipping-checkbox {
  margin-top: 12px;
  margin-bottom: 12px;
}
.checkout-wrapper
  .left-section.checkout-section
  .checkout-form
  .billing-checkbox {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
}
.checkout-wrapper
  .left-section.checkout-section
  .checkout-form
  .billing-checkbox
  label {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}
.checkout-form .policy-hyperlink {
  color: #0abab5;
}
.checkout-form .ant-spin-dot {
  font-size: 20px;
}

/****************** Side Cart *****************/
.checkout-wrapper .side-cart {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  box-shadow: 1px 0px 5px 0px rgb(224 224 224 / 50%);
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  height: auto;
}
.checkout-wrapper .side-cart .order-details {
  width: 100%;
  height: auto;
  border: unset;
  padding: 20px 20px 10px;
}
.checkout-wrapper .side-cart .order-summary {
  width: 100%;
  height: auto;
  padding: 20px 20px 10px;
}
.checkout-wrapper .side-cart .order-frequency {
  align-items: flex-start;
}
.checkout-wrapper .side-cart .order-frequency strong {
  text-align: right;
}

/****************** Step Bar Section ****************/
.checkout-wrapper .step-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  font-family: 600;
}
.checkout-wrapper .step-point {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
  color: #fff;
  border: 1px solid var(--color-primary-Color-1, #0abab5);
  position: relative;
}
.checkout-wrapper .step-label {
  position: absolute;
  top: 24px;
  left: 0;
  margin-left: -45px;
  width: 120px;
  text-align: center;
  color: #121212;
  display: none;
}
.checkout-wrapper .step-point:last-child .step-label {
  text-align: left;
}
.checkout-wrapper .step-point.active {
  background-color: #0abab5;
  color: #fff;
}
.checkout-wrapper .step-line {
  width: 30%;
  height: 4px;
  background-color: #0abab5;
}
.checkout-wrapper .step-line.active {
  background-color: #0abab5;
}
.checkout-wrapper .step-number {
  position: absolute;
  font-weight: bold;
  color: #0abab5;
  font-size: 14px;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.checkout-wrapper .step-point.active .step-number {
  color: #fff;
}
/***************** Confirmation ****************/
.input-order {
  height: 50px !important;
  border: 1px solid var(--border-border-inactive, #b8b8b8) !important;
}
.wrapper.order-completion {
  /* width: 700px; */
  margin: 30px auto;
}
.wrapper.order-completion h2 {
  font-size: 24px;
  margin-top: 12px;
  text-align: center;
}
.wrapper.order-completion h4 {
  font-size: 20px;
  margin-top: 24px;
}
.wrapper.order-completion .confirmed-img {
  width: 60px;
  height: 60px;
}
.wrapper.order-completion .btn-checkout {
  margin: 0 8px;
}
.wrapper.order-completion .order-complete-label {
  text-align: center;
}
.wrapper.order-completion .confirm-box {
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 24px;
  margin: 20px 0;
  overflow: auto;
}
.wrapper.order-completion .total-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.wrapper.order-completion .btn-checkout {
  width: 180px;
}
.wrapper.order-completion .btn-back {
  margin-right: 12px;
}
.wrapper.order-completion .checkout-confirm__warning {
  max-width: 68%;
}
.checkout-wrapper .confirmed-icon {
  font-size: 40px;
  color: #52c41a;
}
.checkout-wrapper .confirmed-icon.bitcoin {
  color: #faad14;
}
.checkout-wrapper .confirmed-icon.flagged {
  color: #ff4d4f;
}
.checkout-wrapper .btn-back {
  margin-right: 12px;
  background: #d9d9d9;
}

.checkout-wrapper .order-completion .go-cbo {
  min-width: 168px;
}

.wrapper.order-completion .alert-text {
  color: #ff4d4f;
}

/***************** Fraud Section ****************/
.checkout-wrapper .fraud-section {
  width: 100%;
  padding: 70px 20px;
}
.checkout-wrapper .fraud-section .fraud-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-wrapper .fraud-section .fraud-result-icon img {
  width: 70px;
}
.checkout-wrapper .fraud-section .fraud-result-message {
  margin-top: 20px;
}
.checkout-wrapper .fraud-section .fraud-result-message h5 {
  text-align: center;
  font-weight: 600;
  color: #555;
}
.checkout-wrapper .fraud-section .fraud-result-message p {
  text-align: center;
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 16px;
}
.checkout-wrapper .fraud-section .fraud-verify-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload {
  width: 50%;
  max-width: 400px;
  height: 370px;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload h5 {
  font-weight: 600;
  color: #555;
}
.checkout-wrapper .fraud-section .fraud-verify-permitted-icon {
  color: #52c41a;
}
.checkout-wrapper .fraud-section .fraud-verify-upload label {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  width: 250px;
  margin-top: 30px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload ul {
  font-size: 16px;
  text-align: left;
  width: 250px;
  min-height: 120px;
  margin-top: 20px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}
.checkout-wrapper
  .fraud-section
  .fraud-verify-upload
  ul
  li
  .fraud-verify-permitted-icon {
  margin-right: 10px;
  margin-top: 5px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload .fraud-verify-upload-btn {
  width: 250px;
}
.checkout-wrapper .fraud-section .fraud-verify-upload .fraud-verify-image {
  width: 250px;
  border: 1px solid #d9d9d9;
  padding: 5px;
  margin-bottom: 20px;
}
.checkout-wrapper .fraud-section .fraud-verify-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.checkout-wrapper .fraud-section .fraud-verify-submit button {
  height: 37px;
  font-size: 16px;
  padding: 0 30px;
}

@media (min-width: 1024px) {
  .choose-type-wrapper .choose-type-wrapper > div {
    flex-direction: row;
  }
}
@media (max-width: 1220px) {
  .checkout-wrapper .left-section .main-content {
    width: 40%;
  }
}
@media (max-width: 1400px) {
  .choose-type-wrapper .user-type-box {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .checkout-wrapper .left-section .main-content {
    width: 100%;
    padding: 0px 20px;
  }
}
@media (max-width: 874px) {
  .side-cart .order {
    margin-bottom: 20px;
  }
}
@media (max-width: 874px) {
  .side-cart .order-info .includes-products span {
    margin-top: 5px;
  }
}
@media (max-width: 1024px) {
  .choose-type-wrapper .choose-type-wrapper > div {
    align-items: center;
  }
  .checkout-wrapper .user-type-box {
    width: 100%;
  }
  .choose-type-wrapper {
    height: auto;
    margin: 50px 0;
  }
}
@media (max-width: 1020px) {
  .social-action-row {
    display: flex;
    flex-direction: column;
  }
  .shipping-row {
    display: flex;
    flex-direction: column;
  }
  .checkout-wrapper .left-section {
    /* width: calc(100% - 330px); */
  }
}
@media (max-width: 380px) {
  .checkout-wrapper {
    padding-left: 13px !important;
  }
}
@media (max-width: 360px) {
  .checkout-wrapper {
    padding: 0px 15px !important;
  }
}

@media (max-width: 874px) {
  .checkout-wrapper {
    flex-direction: column;
    width: 100%;
    /* padding: 0 25px 40px; */
  }
  .checkout-wrapper .side-cart {
    width: 100%;
  }
  .checkout-wrapper .left-section {
    width: 100%;
    flex-direction: column;
    /* padding: 0 15px; */
  }
  .checkout-wrapper .right-section {
    width: 100%;
    flex-direction: column;
    /* padding: 0 15px; */
  }
  .checkout-wrapper .side-cart .order-info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .checkout-wrapper .left-section {
    width: 100%;
    flex-direction: column;
    /* padding: 25px; */
  }

  .wrapper.order-completion .confirm-box-2 .d-flex {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .wrapper.order-completion {
    width: calc(100% - 20px);
    margin-left: 10px;
  }
  .wrapper.order-completion .confirm-box .d-flex {
    flex-direction: column;
  }
  .wrapper.order-completion .confirm-box {
    width: calc(100vw - 20px);
  }
}
@media (max-width: 575px) {
  .checkout-wrapper .left-section.checkout-section .checkout-form .edit {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    margin-top: 12px;
  }
}
@media (max-width: 550px) {
  .checkout-wrapper .step-label {
    width: 102px;
    font-size: 10px;
  }
  .checkout-wrapper .step-point {
    width: 14px;
    height: 14px;
  }
  .checkout-wrapper .step-point:last-child .step-label {
    text-align: center;
  }
  .checkout-wrapper .left-section.checkout-section .checkout-form .edit {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .choose-type-wrapper .confirm-change-usertype button {
    margin-left: 0;
    margin-top: 15px;
  }
  .checkout-form .btn-checkout {
    margin-left: 0;
    margin-top: 10px;
  }
  .checkout-wrapper .step-line {
    width: 30%;
  }
}
@media screen and (max-width: 350px) {
  .checkout-wrapper .step-label {
    width: 95px;
    font-size: 8px;
  }
}
.ant-btn-primary {
  background: #0abab5 !important;
  border: 1px solid #0abab5;
  border-radius: 100px;
}
.margin-b-20 {
  margin-bottom: 20px;
}
.back-continue-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-btn {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0abab5;
  border-radius: 100px;
  gap: 8px;
  font-family: Gotham;
  font-weight: 600;
  color: #0abab5 !important;
  width: 100%;
  font-size: 18px;
  padding: 0px 25px;
  cursor: pointer;
}
.cont-btn {
  height: 52px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid #0abab5 !important;
  border-radius: 100px !important;
  gap: 8px !important;
  font-family: Gotham !important;
  color: #1c1c1c !important;
  font-weight: 600 !important;
  width: 100% !important;
  font-size: 18px !important;
  padding: 0px 25px !important;
  cursor: pointer !important;
  background-color: #0abab5 !important;
}
/* .anticon svg {
  color: #fff;
} */
.ant-select-arrow {
  top: 56%;
}
.ant-select-arrow .anticon > svg {
  font-size: 12px;
}
.ant-select-selector {
  padding: 0px 20px !important;
  border-radius: 0px !important;
}
@media (max-width: 500px) {
  .back-continue-btn {
    gap: 20px;
    flex-direction: column;
  }

  .back-btn,
  .cont-btn {
    max-width: 100%;
    width: 100% !important;
  }
}
.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #00b2ff;
  border-color: #00b2ff;
}
.ant-checkbox-inner {
  border-color: #00b2ff;
}
.checkout-wrapper
  .left-section.checkout-section
  .checkout-form
  .billing-checkbox
  span {
  color: #121212;
  font-size: 16px;
}
.checkout-wrapper
  .left-section.checkout-section
  .checkout-form
  .billing-checkbox
  span
  strong {
  font-size: 16px;
}
.choose-type-new {
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .choose-type-newbtn {
    margin-top: 50px;
  }
}
@media (max-width: 1560px) {
  .checkout-wrapper {
    width: 100%;
    /* padding: 0 25px 40px; */
  }
  .checkout-wrapper .right-section {
    width: 100% !important;
  }
  .checkout-wrapper .left-section {
    width: 100% !important;
  }
}
