.crypto-pay-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.crypto-pay-flex-1 {
  flex: 1;
}

.crypto-pay-center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.crypto-pay-button {
  border: 1px solid #1990FF;
  border-radius: 20px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 8px;
  padding-right: 8px;
}

.crypto-pay-button-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.crypto-wallet-icon {
  margin-right: 4px;
}

.crypto-pay-button-text {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #1990FF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crypto-pay-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.crypto-pay-modal-content {
  background-color: white;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 8px;
  border: 1px solid gray;
  border-radius: 20px;
  display: inline-block;
  color: black;
  font-size: 15px;
  font-weight: 400;
}

.crypto-pay-modal-inner {
  margin: 24px
}

.crypto-pay-modal-bold-text {
  font-size: 15px;
  font-weight: 700;
}

.crypto-pay-modal-close-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.crypto-pay-modal-close-button:hover {
  cursor: pointer;
}

.crypto-pay-modal-row-first {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.crypto-pay-modal-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}

.crypto-pay-modal-insufficient-text {
  color: #7367F0;
}

.crypto-pay-modal-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}

.crypto-pay-modal-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}

.crypto-pay-modal-network {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid #E4E5F0;
  border-radius: 4px;
}

.crypto-pay-modal-network-selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #7367F0;
  border-radius: 4px;
}

.crypto-pay-modal-network-selected:hover {
  background-color: whitesmoke;
  cursor: pointer;
}

.crypto-pay-modal-network:hover {
  background-color: whitesmoke;
  cursor: pointer;
}

.crypto-pay-radio-row {
  margin-top: 8px;
  margin-bottom: 8px;
}

.crypto-pay-radio-row label:hover {
  cursor: pointer;
}

.crypto-pay-radio-row input[type=radio]:hover {
  cursor: pointer;
}

.crypto-pay-radio-row input[type=radio] {
  accent-color: #7367F0;
}

.crypto-pay-fill-spacing {
  flex: 1;
}

.crypto-pay-confirm-button {
  border-radius: 4px;
  background-color: #7367F0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 48px;
  padding-right: 48px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.crypto-pay-confirm-button-disabled {
  border-radius: 4px;
  background-color: #A7ABC3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 48px;
  padding-right: 48px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.crypto-pay-confirm-button:hover {
  background-color: #7367F0b5;
  cursor: pointer;
}

.crypto-pay-result-error-content {
  padding: 24px;
}

.crypto-pay-result-error-content-inner {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 48px;
  padding-right: 48px;
  color: black;
  font-size: 15px;
  font-weight: 700;
  height: 15%;
  text-align: center;
}

.crypto-pay-waiting-content {
  padding: 24px;
}

.crypto-pay-waiting-content-inner {
  padding: 16px;
  color: black;
  font-size: 15px;
  font-weight: 700;
  height: 15%;
}

.crypto-pay-result-progress-bar {
  margin: 8px auto;
  position: relative;
  width: 24px;
  height: 24px;
}

.crypto-pay-result-circle {
  height: 100%;
  position: absolute;
  border: solid 5px #A7ABC3;
  border-top-color: #1990FF;
  border-radius: 50%;
}

.crypto-pay-result-border {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .crypto-pay-result-border {
    animation: circle-loading-spin infinite 1s linear;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .crypto-pay-circle-loading-spin {
    background-color: transparent;
    animation: circle-loading-spin infinite 1s linear;
  }
}

@keyframes circle-loading-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.small-spin {
  width: 16px;
  height: 16px;
  border: solid 2px #1990FF;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.crypto-pay-wallet-connector-content {
  width: 415px;
  background-color: white;
  border: 1px solid gray;
  border-radius: 8px;
  display: inline-block;
  color: black;
}

.crypto-pay-wallet-connector-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px;
}

.crypto-pay-wallet-connector-init-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 12px 24px 24px 24px;
}

.crypto-pay-wallet-connector-retry-button {
  padding: 12px 40px;
  border-radius: 8px;
  border: 1px solid #1990FF;
  cursor: pointer;
}

.crypto-pay-wallet-connector-init-error-text {
  font-size: 15px;
  color: black;
}

.crypto-pay-wallet-connector-retry-button-title {
  color: #1990FF;
  font-size: 13px;
  font-weight: 500;
}

.crypto-pay-wallet-connector-close-button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 14px 14px 0px 14px;
}

.crypto-pay-wallet-connector-title {
  color: black;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding: 0;
  margin: 0 0 8px 0;
}

.crypto-pay-icon {
  cursor: pointer;
}

.crypto-pay-wallet-connector-wallets {
  margin: 0 40px 40px 40px;
}

.crypto-pay-wallet-connector-wallet-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 56px;
  border: 1px solid #A7ABC3;
  border-radius: 20px;
  padding-left: 24px;
  padding-right: 24px;
  margin-top: 18px;
  cursor: pointer;
}

.crypto-pay-wallet-connector-wallet-name {
  color: black;
  font-weight: bold;
  font-size: 20px;
  margin-left: 16px;
}

.crypto-payment-button-wallet-icon {
  margin-right: 4px;
}

.crypto-pay-disconnect-wallet-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.crypto-pay-disconnect-wallet-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.crypto-pay-disconnect-wallet-button-title {
  margin-right: 4px;
  color: #82869E;
  font-size: 11px;
  font-weight: 400;
}