:root {
  --bg-color: #151925;
  --color-white: #FFFFFF;
  --color-green: #07D6A2;
  --color-red: #FC4b67;
}

.animation-paused * {
  animation-play-state: paused !important;
}

input,
select,
button,
textarea {
  outline: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Page Loader CSS */
.unknownproxies-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  z-index: 111111111;
}

.unknownproxies-loader .loader {
  border: 5px solid var(--color-white);
  border-top: 5px solid #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Toaster CSS */
#toast-container>div {
  opacity: 1 !important;
  z-index: 10001;
}

.toast-success {
  background-color: var(--color-green) !important;
  z-index: 10001;
}

.toast-error {
  background-color: var(--color-red) !important;
  z-index: 10001;
}

.toast .toast-title {
  font-weight: 700;
  font-size: 14px;
  z-index: 10001;
}

.toast .toast-message {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10001;
}

/* checkoutModal CSS */
#checkoutModal, #requestChangeModal {
  color: var(--color-white);
  padding-right: 0px !important;
  text-align: center;
  z-index: 10000;
}

#checkoutModal .modal-dialog, #requestChangeModal .modal-dialog {
  height: 100%;
  margin: 0;
  max-width: 100%;
}

#checkoutModal .modal-content, #requestChangeModal .modal-content {
  background: var(--bg-color);
  padding: 100px 0px;
  width: inherit;
  height: 100%;
}

#checkoutModal .modal-header,
#checkoutModal .modal-body,
#checkoutModal .modal-footer,
#requestChangeModal .modal-header,
#requestChangeModal .modal-body,
#requestChangeModal .modal-footer {
  border: none;
  display: block;
  max-width: 425px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 15px;
}

#checkoutModal .modal-header .close, #requestChangeModal .modal-header .close {
  color: var(--color-green);
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 48px;
  font-weight: 400;
  opacity: .75;
  outline: none;
  text-shadow: 0.5px 0.5px 0px var(--color-white);
}

#checkoutModal .modal-header .close:hover, #requestChangeModal .modal-header .close:hover {
  transform: scale(1.1);
}

#checkoutModal .modal-header img, #requestChangeModal .modal-header img {
  max-width: 50px;
}

#checkoutModal .modal-header .modal-title, #requestChangeModal .modal-header .modal-title {
  background: -webkit-linear-gradient(#FFFFFF, #B0B0B0);
  font-size: 20px;
  font-weight: 500;
  padding: 5px 0px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#checkoutModal .modal-body, #requestChangeModal .modal-body {
  flex: none;
}

#checkoutModal .modal-body input, #requestChangeModal .modal-body input {
  border-color: var(--color-white);
  box-shadow: none;
  color: var(--bg-color);
  font-size: 14px;
  height: 34px;
  padding: 8px 8px;
  outline: none !important;
}

#checkoutModal .modal-footer #checkoutPayBtn, #requestChangeModal .modal-footer #submitRequestBtn {
  background: var(--color-green);
  border: var(--color-green);
  color: var(--color-white);
  font-size: 16px;
  padding: 8px 20px;
  outline: none !important;
}

/* requestChangeModal exclusive CSS */
#requestChangeModal .modal-header h6 {
  font-size: 10pt;
}

#requestChangeModal .modal-body input {
  width: 100%;
}

/* checkout Modal exclusive CSS */
#checkoutModal .modal-body #applyCouponCodeBtn {
  background: var(--color-green);
  border: var(--color-green);
  font-size: 16px;
  padding: 0px 16px;
  outline: none !important;
}

#checkoutModal .modal-body #paymentInfo>div {
  background: -webkit-linear-gradient(#FFFFFF, #B0B0B0);
  font-size: 16px;
  padding: 5px 0px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}