@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --widget-default-font: "DM Sans", sans-serif;
}

.bodyWidget {
  margin: 0;
  padding: 20px;
  font-family: var(--widget-default-font);
  max-width: 100%;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.bodyWidget h1,
.bodyWidget h2,
.bodyWidget h3,
.bodyWidget h4,
.bodyWidget h5,
.bodyWidget h6,
.bodyWidget button {
  font-family: var(--widget-default-font);
}

/* fonts */
/* @font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-BoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-ExtraLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DMSansBlack';
  src: url('fonts/dm-sans/DMSans-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
.bodyWidget .widget-main {
  /* max-width: var(--widget-width); */
  margin: 0 auto;
  width: 100%;
  border: var(--widget-border); 
  border-radius: 11px 11px 0 0;
  min-width: 258px;
}

.bodyWidget .presale-banner {
  padding: 24px 23px 24px 23px;
  background: linear-gradient(0deg,
      var(--bg-gradient-primary-first) 0%,
      var(--bg-gradient-primary-second) 100%);
  border-radius: 10px 10px 0 0;
}

.bodyWidget .presale-banner .banner-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0;
}

.bodyWidget .banner-inner {
  padding: 0 40px;
}

.bodyWidget .sale-token {
  gap: 20px;
  display: flex;
  margin-top: 20px;
}

.bodyWidget .token-box {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  color: var(--bg-widget-primary);
  width: 80px;
  height: 60px;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}

.bodyWidget .presale-end {
  margin-top: 20px;
  text-align: center;
}

.bodyWidget .presale-end .sm-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  text-align: center;
}

.bodyWidget .presale-end .text-sm {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
  text-align: center;
}

.bodyWidget .widget-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 15px 24px 15px 24px;
}

.bodyWidget .widget-token-wrap {
  padding-top: 15px;
}

.bodyWidget .widget-body .md-title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #312b21;
  text-align: center;
  position: relative;
  margin: 0;
}

.bodyWidget .widget-body .md-title:before,
.bodyWidget .widget-body .md-title:after {
  content: "";
  position: absolute;
  width: 25%;
  height: 1px;
  top: 50%;
  background-color: #d9d9d9;
  transform: translateY(-50%);
}

.bodyWidget .widget-body .md-title:before {
  left: 0;
}

.bodyWidget .widget-body .md-title:after {
  right: 0;
}

.bodyWidget .widget-token {
  padding: 30px 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bodyWidget .widget-token-btn {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c2c2c2;
  height: 50px;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  gap: 8px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(49, 43, 33, 0.8);
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bodyWidget .widget-token-btn.active,
.bodyWidget .widget-token-btn:focus,
.bodyWidget .widget-token-btn:hover,
.bodyWidget .widget-token-btn:active {
  border-color: #545e65;
}

.bodyWidget .eth-balance .md-title:before,
.bodyWidget .eth-balance .md-title:after {
  width: 25%;
}

/* ETH Balance form style */
.bodyWidget .widget-form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0 20px;
}

.bodyWidget .widget-form .input-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.bodyWidget .widget-form .input-wrap img{
 max-width:32px;
 max-height:32px;
}

.bodyWidget .widget-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #c2c2c2;
  height: 50px;
  padding: 0px 12px 0px 16px;
  border-radius: 5px;
}

.bodyWidget .widget-input-group .input-field {
  flex: 1;
  border: none;
  padding: 0;
  min-width: 100px;
  font-size: 15px;
  line-height: 20.25px;
  font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
.bodyWidget .widget-input-group input::-webkit-outer-spin-button,
.bodyWidget .widget-input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.bodyWidget .widget-input-group input[type=number] {
  -moz-appearance: textfield;
}

.bodyWidget .widget-input-group .input-field::placeholder {
  color: #96928c;
}

.bodyWidget .widget-input-group .input-field:focus {
  outline: none;
}

.bodyWidget .widget-form label {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  color: rgba(49, 43, 33, 0.8);
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.bodyWidget .widget-form label p.inputlabel {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  color: rgba(49, 43, 33, 0.8);
  display: flex;
  margin-bottom: 5px;
}

.bodyWidget .widget-form label p.inputlabel span {
  padding-left: 0.4em;
}

.bodyWidget .widget-form .text-primary {
  color: #4067ff;
  font-weight: 700;
}

.bodyWidget .about-eth p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 1;
  color: #312B21;
  text-align: center;
  margin: 0;
}

/* ETH Balance form style end */
.bodyWidget .purchase-faild {
  padding: 0 20px 15px;
  text-align: center;
}

.bodyWidget .loader-img {
  text-align: center;
  width: 100%;
}

.bodyWidget .purchase-faild p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: center;
  margin: 0 0 15px;
}

.bodyWidget .text-mute {
  color: #5a554d;
}

.bodyWidget .purchase-faild .text-danger {
  color: #ea1212;
  font-weight: 700;
}

.bodyWidget .button-block {
  margin: 0 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bodyWidget .link-btn,
.bodyWidget .button-block button {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  transition: all 0.3s ease;
  line-height: 24px;
  cursor: pointer;
}

.bodyWidget .link-btn {
  display: inline-block;
  text-decoration: none;
  line-height: 40px;
}

.bodyWidget .button-block .btn-primary-fill {
  background-color: var(--bg-widget-primary);
  border: 2px solid transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-widget);
}

.bodyWidget .button-block .btn-primary-fill:hover {
  border-color: var(--bg-widget-primary);
  background-color: transparent;
  color: var(--bg-widget-primary);
}

.bodyWidget .button-block .btn-primary-outline {
  background-color: transparent;
  border: 2px solid var(--bg-widget-primary);
  color: var(--bg-widget-primary);
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bodyWidget .button-block .btn-primary-outline:hover {
  background-color: var(--bg-widget-primary);
  color: var(--text-widget);
}

.bodyWidget .top-up-block {
  padding: 0 0 15px;
  text-align: center;
}

.bodyWidget .top-up-block .link-text {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: var(--bg-widget-primary);
  text-decoration: underline;
}

.bodyWidget .widget-footer {
  padding-top: 10px;
}

.bodyWidget .widget-footer p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: var(--bg-widget-primary);
  letter-spacing: 0.5px;
  text-transform: capitalize;
  vertical-align: middle;
}

.bodyWidget .widget-footer svg {
  vertical-align: middle;
  margin-left: 5px;
}

.bodyWidget button:disabled,
.bodyWidget button[disabled],
.disabled-btn {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

/* Connect wallet modal style */
.bodyWidget .connect-wallet-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bodyWidget .connect-wallet-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 332px;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
  opacity: 0;
  animation: slideDown 0.4s forwards;
  border-radius: 10px;
}

.bodyWidget .connect-wallet-modal .modal-title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #312b21;
  margin-bottom: 20px;
}

.bodyWidget .connect-wallet-list {
  padding: 8px 16px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  margin-bottom: 6px;
  cursor: pointer;
  background-color: #F2F4F7;
  border-radius: 10px;
}

.bodyWidget .connect-wallet-list img{
   width: 32px;
   height: 32px;
}

.bodyWidget .connect-wallet-list:last-child {
  margin-bottom: 0;
}

.bodyWidget .connect-wallet-list .wallet-txt {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #312b21;
}

.bodyWidget .connect-wallet-list:hover {
  background-color: #e6ebf3;
}

/* Keyframes for the slide-down effect */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bodyWidget .connect-wallet-modal.show {
  display: block;
  opacity: 1;
}

.bodyWidget .connect-wallet-modal .modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

.bodyWidget .about-eth {
  margin-bottom: 28px;
}

.bodyWidget .token_msg {
  display: block;
  margin-top: 20px;
}

/* loader css */
.bodyWidget .progress_loader {
  min-height: 60px;
}

.bodyWidget .loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
  margin: 0 auto;
}

.bodyWidget .loader {
  color: var(--bg-widget-primary);
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  text-align: center;
}

.bodyWidget .loader:before,
.bodyWidget .loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.bodyWidget .loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.bodyWidget .loader:after {
  left: 3.5em;
}

.hideClass {
  display: none;
}

.showClass {
  display: block;
}

.bodyWidget .social-media-section {
  padding: 15px;
  text-align: center;
}

.bodyWidget .social-media-section a:focus {
  outline: 0;
}

@keyframes bblFadInOut {

  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}

/* claim success modal */
.bodyWidget .success-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bodyWidget .success-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 24px;
  width: 500px;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
  opacity: 0;
  animation: slideDown 0.4s forwards;
  border-radius: 16px;
  box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.bodyWidget .success-modal.show {
  display: block;
  opacity: 1;
}

.bodyWidget .success-modal .modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

.bodyWidget .success-modal .modal-banner {
  background-image: url(../images/success-pop-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 16px 0px 16px 0px;
  text-align: center;
  border-radius: 8px;
}

.bodyWidget .claim-content {
  padding: 24px;
  text-align: center;
}

.bodyWidget .claim-content .claim_account_address {
  margin-top: 4px;
}

.bodyWidget .claim-content p,
.claim-content h4 {
  margin: 0;
}

.bodyWidget .claim-content h4 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3%;
  color: #101828;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.bodyWidget .claim-content p {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 3%;
  color: #475467;
  font-weight: 700;
}

.bodyWidget .claim-content .text-dark {
  color: #00133D;
}

.bodyWidget .success-btn {
  width: 100%;
  background-color: #12B76A;
  border-radius: 4px;
  padding: 12px 16px 12px 16px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
  font-weight: 700;
}

.bodyWidget .success-btn:hover {
  background-color: #4ae79e;
}

.bodyWidget .claim_panding_section p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
}

/* Best wallet Modal Content */
.bodyWidget .best-wallet-modal {
  text-align: center;
}

.bodyWidget .qr-wrapper {
  width: 200px;
  height: 200px;
  margin: 16px auto 24px;
}

.bodyWidget .qr-wrapper img {
  height: 100%;
}

.bodyWidget .modal-subheading {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
}

.bodyWidget .modal-heading,
.web3MsgModal .modal-heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
}

.button-block--bestwallet {
  display: none;
  margin-bottom: 24px;
}

.bodyWidget .best-wallet-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bodyWidget .best-wallet-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 500px;
  max-width: 90%;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
  opacity: 0;
  animation: slideDown 0.4s forwards;
  border-radius: 10px;
}

.bodyWidget .best-wallet-modal.show {
  display: block;
  opacity: 1;
}

.bodyWidget .best-wallet-modal .modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

.pwp_invalid_action {
  padding: 20px;
  font-family: var(--widget-default-font);
  border: 1px solid lightgray;
}

.web3MsgModal .web3-provider-modal {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.web3MsgModal .web3-provider-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 500px;
  max-width: 90%;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
  opacity: 0;
  animation: slideDown 0.4s forwards;
  border-radius: 10px;
}

.web3MsgModal .web3-provider-modal.show {
  display: block;
  opacity: 1;
}

.web3MsgModal .web3-provider-modal .modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

.wertCardInfoModal .wert-card-modal {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wertCardInfoModal .wert-card-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 500px;
  max-width: 90%;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
  opacity: 0;
  animation: slideDown 0.4s forwards;
  border-radius: 10px;
}

.wertCardInfoModal .wert-card-modal.show {
  display: block;
  opacity: 1;
}

.wertCardInfoModal .wert-card-modal .modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

/* widget_width_25 */
.widget_width_25 {
  max-width: var(--widget-width);;
}
.widget_width_25 .banner-inner {
  padding: 0;
}
.widget_width_25 .token-box {
  font-size: 18px;
  line-height: 26px;
}
.widget_width_25 .sale-token {
  gap: 10px;
}
.widget_width_25 .presale-banner {
  padding: 24px 16px 24px 16px;
}
.widget_width_25 .widget-body {
  padding: 15px;
}
.widget_width_25 .widget-body .md-title {
  font-size: 12px;
}
.widget_width_25 .widget-body .md-title:before, .widget_width_25 .widget-body .md-title:after {
  width: 25%;
}
.widget_width_25 .eth-balance .md-title:before, .widget_width_25 .eth-balance .md-title:after {
  width: 10%;
}
.widget_width_25 .widget-form {
  flex-wrap: wrap;
}
.widget_width_25 .widget-form {
  gap: 10px;
}
.widget_width_25 .widget-token {
  flex-wrap: wrap;
}

/* widget_width_50 */
.widget_width_50 {
  max-width: var(--widget-width);
}
/* widget_width_75 */
.widget_width_75 {
  max-width: var(--widget-width);;
}
/* widget_width_100 */
.widget_width_100{
  max-width: var(--widget-width);;
}
/* media css */
@media screen and (max-width:600px) {
  .bodyWidget .widget-token.widget-form {
    flex-direction: column;
  }
  .bodyWidget .widget-form .input-wrap {
    width: 100%;
  }
}

@media screen and (max-width:560px) {

  .bodyWidget .token-box,
  .bodyWidget .presale-banner .banner-title {
    font-size: 18px;
    height: 45px;
  }

  .bodyWidget .button-block--bestwallet {
    display: block;
  }

  .bodyWidget .qr-wrapper {
    display: none;
  }
}

@media screen and (max-width: 490px) {
  .bodyWidget .widget-main {
    max-width: 100%;
  }

  .bodyWidget .token-box,
  .bodyWidget .presale-banner .banner-title {
    font-size: 16px;
  }

  .bodyWidget .banner-inner {
    padding: 0 10px;
  }

  .bodyWidget .widget-token {
    padding: 20px 0 20px;
  }

  .bodyWidget .sale-token {
    gap: 10px;
  }

  .bodyWidget .eth-balance .md-title:before,
  .bodyWidget .eth-balance .md-title:after,
  .bodyWidget .widget-body .md-title:before,
  .bodyWidget .widget-body .md-title:after {
    content: none;
  }

  .bodyWidget .widget-form .input-wrap {
    min-width: 100%;
  }

  .bodyWidget .widget-token {
    flex-wrap: wrap;
  }
}


@media screen and (max-width: 1130px) {
  .widget_width_50 {
    min-width: 415px!important;
  }  
  .bodyWidget .widget-form {
    flex-wrap: wrap!important;
  }
}

@media screen and (max-width: 767px) {
  .widget_width_75 {
    max-width: 100%!important;
  }
}

@media screen and (max-width: 490px) {
  .widget_width_50 {
    min-width: 100px!important; 
  }  
}

.header-modal-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.close.close_btn {
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 30px;
  line-height: 15px;
  text-decoration: none;
}
.close.close_btn {
  outline: none;
  background: transparent;
}
.tokenLogo {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background: #4067ff;
}