@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Font */

@font-face {
  font-family: 'Muli Regular';
  font-weight: 400;
  src: local('Muli Regular'), url('../css/font/Muli-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Muli ExtraLight';
  font-weight: 200;
  src: local('Muli ExtraLight'), url('../css/font/Muli-ExtraLight.woff') format('woff');
}


@font-face {
  font-family: 'Muli Light';
  font-weight: 300;
  src: local('Muli Light'), url('../css/font/Muli-Light.woff') format('woff');
}


@font-face {
  font-family: 'Muli SemiBold';
  font-weight: 500;
  src: local('Muli SemiBold'), url('../css/font/Muli-SemiBold.woff') format('woff');
}


@font-face {
  font-family: 'Muli Bold';
  font-weight: 600;
  src: local('Muli Bold'), url('../css/font/Muli-Bold.woff') format('woff');
}


@font-face {
  font-family: 'Muli ExtraBold';
  font-weight: 700;
  src: local('Muli ExtraBold'), url('../css/font/Muli-ExtraBold.woff') format('woff');
}



@font-face {
  font-family: 'Muli Black';
  font-weight: 800;
  src: local('Muli Black'), url('../css/font/Muli-Black.woff') format('woff');
}

:root {
  --primary-color: #00c75e;
  --secondary-color: #ffffff;
  --tertiary-color: #0c0c0c;
  --quaternary-color: #0f597b;
  --quinary-color: #797878;
  --senary-color: #def5ff;
  --balck-color: #454545;
  --desc-text: #c5c2c2;
  --primary-text-muted: #04111d80;
  --primary-boder-light: #e5e8eb;
  --lightblueColor: #009bc7;
  --heading-color: #96B0B7;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow-x: hidden;
  position: relative;
  font-family: 'Muli Regular' !important;
  color: var(--secondary-color);
  background-color: #fff !important;
  font-size: 16x !important;
  letter-spacing: 0.8px;
}

.main-wrapper {
  min-height: 80vh;
}

body.modal-open {
  overflow: auto !important;
}

body.modal-open[style] {
  padding-right: 0px !important;
}

.sm-padding {
  padding: 4em 0;
}

.default-btn {
  background-color: var(--quaternary-color) !important;
  padding: 0.5em 1.5em !important;
  text-align: center;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 50px !important;
  color: var(--secondary-color) !important;
  display: inline-block !important;
  border: 1px solid var(--quaternary-color) !important;
  font-size: 0.95em !important;
  letter-spacing: 0.8px;
  text-decoration: none !important;
  font-family: "Muli Bold" !important;
  text-transform: uppercase;
}

.default-btn:hover,
.default-btn:focus,
.default-btn:active {
  background-color: var(--quaternary-color) !important;
  color: var(--secondary-color) !important;
  box-shadow: none !important;
}

/* Header Css  */

.logo {
  max-height: 70px;
  object-fit: contain;
}

.navbar-logo img {
  max-height: 80px;
  object-fit: contain;
}

.header-nav-center {
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(11, 34, 56, 0);
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
  background-color: rgb(224 246 255 / 80%);
  position: relative;
  z-index: 9;
  /*  position: fixed;
    left: 0;
    right: 0;
    z-index: 999;*/
}

.navbar-brand {
  margin-right: 2em !important;
}

.header-nav-center .navbar .nav-link {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0.8;
  letter-spacing: 0.5px;
  color: var(--quaternary-color);
}

.dropdown-toggle::after {
  display: none;
}

.hamburger-menu {
  width: 2.5em;
}

.header-icons .header-icons-list {
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
  align-items: center;
}

.header-icons ul li {
  list-style: none;
}

.header-icons .header-icons-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.header-search .input-group input {
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header-search .input-group input::placeholder {
  font-size: 0.9em;
  vertical-align: middle;
}

.header-search .input-group input:focus {
  box-shadow: none;
}

.header-search .input-group .input-group-text {
  border: none;
  background-color: var(--secondary-color);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 0;
}

.header-search .input-group .input-group-text img {
  max-width: 1.3em;
}

.header-search .input-group {
  height: 2.8em;

  width: 25em;
}

.header-menu-link {
  display: flex;
}



/* Footer Css  */
.footer-sec {
  background-color: rgba(222, 245, 255, 0.3);
  padding: 3em 0 2em;

}

.new-form-input form input {
  border: 1px solid #D9D9D9;
  height: 2.8em;
  border-radius: 50px;
  max-width: 22em;
}

.custom-timeinput .MuiInputBase-input{
  padding: 0 1em !important;

}

.new-form-input form input:focus {
  box-shadow: none;
  border: 1px solid #D9D9D9;
}

.new-form-input form label {
  font-size: 1em;
  font-weight: 600;
  color: var(--quaternary-color);
}

.footer-subscribe h4 {
  color: var(--tertiary-color);
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 1em;
}

.footer-list h4 {
  color: var(--quaternary-color);
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 1em;
}

.footer-list ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 1.3em;
  margin: 0;
}

.footer-list ul li {
  list-style: none;
}

.footer-list ul li a {
  text-decoration: none;
  color: var(--tertiary-color);
  font-size: 0.85em;
  font-weight: 600;
  text-transform: capitalize;
}

.footer-list ul.footer-social-icons li a {
  color: var(--quaternary-color);
}

.footer-list ul.footer-social-icons li a span {
  background: transparent linear-gradient(139deg, #5AC36A 0%, #08F578 100%) 0% 0% no-repeat padding-box;
  border-radius: 6px;

  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons li a {
  display: flex;
  align-items: center;
  gap: 1em;
}

.border-right {
  position: relative;
}

.border-right::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 73%;
  top: 0;
  border: 1px solid #9BAFB6;
  z-index: -1;
}

.copyright-sec {
  margin: 2em 0 0;
}

.copyright-sec p {
  color: var(--quinary-color);
  font-size: 1em;
  font-weight: 500;
}

.cursor-pointer {
  cursor: pointer;
}

/* header wallet css  */
.css-79elbk button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--secondary-color);
  border: none;
}

.css-fi1bin {
  width: 150px !important;


}

.nav-dropdown-link li a {
  width: 100% !important;
  display: block !important;
  height: 100% !important;
  text-decoration: none;
  color: var(--tertiary-color);
  font-family: 'Muli Bold';

}

.nav-dropdown-link {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;


}

.nav-dropdown-close a img {
  max-width: 0.8em;
}

.nav-dropdown-close {
  text-align: end;
  padding: 0.8em;
}

.nav-dropdown-link li a span img {
  max-width: 1.5em;
  margin-right: 1em;
}

/* .nav-dropdown-link li {
  padding: 0 0 1em;

} */

iframe {
  display: none;
}

.wallet-link-list:last-child {
  border-bottom: none;


}

.collection-item-count {
  margin: 0 0 0 auto !important;
  color: var(--quinary-color) !important;
  font-size: 0.9em !important;
  font-family: 'Muli Regular' !important;
  white-space: nowrap;
}

.verified-icon-sec p {
  font-size: 1em;
  margin: 0;
  color: var(--tertiary-color);
  font-family: 'Muli SemiBold';
}

.search-text p {
  font-size: 0.9em;
  margin: 0;
  color: var(--tertiary-color);
  font-family: 'Muli Bold';
}


.search-list {
  border-bottom: 1px solid var(--primary-boder-light);
  display: grid;
  align-items: center;
}

.search-list a {
  padding: 16px;
  width: 100%;
  text-decoration: none;
}

.search-list a:hover {
  box-shadow: rgb(4 17 29 / 25%) 0px 0px 8px 0px;
}

.search-title {
  font-weight: 500;
  font-size: 12px;
  color: rgb(112, 122, 131);
  padding: 16px 16px 8px;
}

.search-text {
  display: flex;
  align-items: center;
}

.search-text img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 1em;
  border-radius: 50%;
}

.nav-widget-form.hide-mobile {
  position: relative;
}

.header-search {
  max-height: 350px;
  overflow: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.header-search .search-list.search-title {
  padding: 0.5rem;
  font-weight: 600;
  color: var(--primary-text-muted);
}



.search-sec {
  position: absolute;
  right: 0px;
  left: 0px;
  box-shadow: rgb(0 0 0 / 16%) 0px 4px 16px;
  z-index: 9999 !important;
}

.justify-center {
  justify-content: center;
}

.verified-icon-sec {
  display: flex;
  align-items: center;
}

.wallet-sec-select a span img {
  max-width: 1.8em;
}

.wallet-link-list {
  border-bottom: 1px solid #D3D3D3;
  /* margin: 0 0 1em; */
  border-radius: 0 !important;
  padding:1.3em;
}



.wallet-sec-select a {
  width: 100% !important;
  gap: 1em;
  justify-content: flex-start !important;
  height: 100% !important;
  text-decoration: none;
  color: var(--tertiary-color);
  font-family: 'Muli Bold';
  /* margin: 1em 0 0; */
  padding: 1.3em;
}

.wallet-sec-select a:hover {
  color: var(--tertiary-color);
}

.wallet-info-sec h4 span img {
  max-width: 1em;
}

.wallet-info-sec h4 {
  font-size: 0.9em;
  color: var(--tertiary-color);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Muli SemiBold';
}

.wallet-info-sec p {
  color: var(--quinary-color);
  font-size: 0.8em;
  font-family: 'Muli Regular';
  margin: 0;
}

.connect-wallet-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 0.8em 1em;
}

.connect-wallet-btn img {
  max-width: 2em;
}

.connect-wallet-btn button {


  background-color: var(--quaternary-color) !important;
  padding: 0.5em 1.5em !important;
  text-align: center;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 50px !important;
  color: var(--secondary-color) !important;
  display: inline-block !important;
  border: 1px solid var(--quaternary-color) !important;
  font-size: 0.95em !important;
  letter-spacing: 0.8px;
  text-decoration: none !important;
  font-family: "Muli Bold" !important;
  text-transform: uppercase;
  width: 100%;
}

.connect-wallet-btn a:hover {
  color: var(--secondary-color);
}

.metamask-img {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.metamask-img p {
  font-size: 0.85em;
  color: var(--tertiary-color);
  margin: 0;
  font-family: 'Muli SemiBold';
}

.wallet-address-copy-btn button {
  background-color: #e5e8eb;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  margin: 0 !important;
  padding: .25rem .5rem;
  border-radius: .25rem;
  color: var(--tertiary-color);
  font-family: 'Muli SemiBold';

}

.wallet-address-copy-btn button:hover {
  background-color: #e5e8eb !important;
  color: var(--tertiary-color) !important;
}

.wallet-address-copy-btn {
  padding: 0.8em 1em;
}

.wallet-account-balance img {
  max-width: 1.5em;
}

.wallet-account-balance {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.wallet-account-balance-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D3D3D3;
  padding: 0.5em;
  border-radius: 10px;
  margin: 0.8em 1em;
}

.wallet-balnce-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;


}

.wallet-balnce-content h4 {
  font-size: 0.8em;
  color: var(--tertiary-color);
  margin: 0;
  font-family: 'Muli Bold';
}

.wallet-balnce-content p {
  font-size: 0.7em;
  margin: 0;
  color: var(--tertiary-color);
  font-family: 'Muli Regular';
  flex-wrap: nowrap;
}

.nav-dropdown-close .wallet-close-icon {
  justify-content: end !important;
}

.profile-list-section ul li {
  display: flex;
  align-items: center;
  gap: 1em;
}

.profile-list-section ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}


.profile-list-section ul li {
  border-bottom: 1px solid #D3D3D3;

}

.profile-list-section ul li a {
  width: 100% !important;
  justify-content: flex-start !important;
  gap: 1em;
  height: 100% !important;
  text-decoration: none;
  color: var(--tertiary-color);
  font-size: 1em;
  font-family: 'Muli SemiBold';
  padding: 0.8em 1em;
}

.profile-list-section ul li a span img {
  width: 1.3em;

}

.profile-list-section ul li:last-child {
  border-bottom: none;

}

.explore-card-wrapper {
  margin: 0.5em;
  border: 1px solid var(--primary-boder-light);
  border-radius: 10px;
  padding: 0;
  line-height: 1;
}

.explore-user-details {
  padding-bottom: 2rem;
}

.explore-user-image-loader {
  height: 50px;
  position: relative;
}

.explore-user-image {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  height: 100px;
  width: 100px !important;
  /* display: flex; */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--primary-boder-light);
  object-fit: cover;
}

.explore-user-info-loader {
  display: grid;
  place-items: center;
  gap: 0.5em;
  margin-top: 1rem;
}

.explore-user-info-loader span:first-child {
  width: 100%;
  display: flex;
  justify-content: center;
}

.explore-card-description {
  padding: 0 1em;
  margin-top: 1em;
}

.single-trending-page .trending-artwork-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

.single-trending-page .header-search .input-group {
  border: 1px solid #EDEDED;
  border-radius: 50px;
}

.new-map {
  position: relative !important;
  width: 400px !important;
  height: 300px !important;
  border-radius: 25px !important;
  overflow: hidden;
}

.single-trending-page .header-search .input-group {
  border: 1px solid #EDEDED;
  border-radius: 50px;
}

.invalid-feedback {
  display: block !important;
}

.profileButton.custom-input {
  height: 9em;
  width: 15em;
  text-align: center;
  padding: 0;
  cursor: pointer;
  border-radius: 15px;
  margin: 0;
  font-size: 16px;
  border: none;
  background-color: transparent;
  border: 3px dashed #5AC36A;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.profileButton .profileButton-input {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: none;
  transition: 0.5s;
}

.profileButton.custom-input .profileButton-button {
  z-index: 999;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
  border-radius: 15px;
  margin: 0;
  color: #fff;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profileButton.custom-input .profileButton-button:hover,
.previewButton .previewButton-button:hover {
  background-color: rgba(0, 0, 0, .35) !important;
}

.profileButton .profileButton-button svg {
  width: 2em;
  height: 2em;
}

.preview-box .previewButton {
  position: relative;
  border: 3px dashed #5AC36A;
  border-radius: 15px;
  width: 40em;
  height: 10em;
}

.preview-box .previewButton .previewButton-input {
  opacity: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  height: 170px;
  font-size: 15px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: none;
  transition: 0.5s;
}

.previewButton.custom-input-banner .previewButton-button {
  z-index: 1;
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.previewButton.custom-input-banner .previewButton-button:hover svg {
  fill: #fff;
}

.previewButton.custom-input-banner .preview-image {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 50%;
}

.previewButton.custom-input-banner .preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.profileButton.custom-input .preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 50%;
  z-index: 999;
}

.profileButton.custom-input .preview-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-outer .profileButton .profileButton-button:hover {
  border: none !important;
}

.profile-loader .profile-banner-section-loader .profile-head {
  position: relative;
}

.profile-loader .profile-banner-section-loader .user-details {
  display: grid;
  place-items: center;
  margin-bottom: 1.5em;
}

.profile-loader .profile-banner-section-loader .user-details>span {
  height: 100px;
  width: 100px;
}

.profile-image-loader {
  position: absolute;
  content: "";
  top: 0%;
  left: 50%;
  height: 200px;
  width: 200px;
  display: flex;
  transform: translate(-50%, 0%);
  border-radius: 50%;
  border: 3pxsolid var(--whiteColor);
}

.links-loader {
  position: absolute;
  top: 10%;
  right: 3%;
}

.links-loader>span {
  display: flex;
  gap: 1px;
}

.collection-box-loader {
  margin-bottom: 1.5rem;
}

.collection-box-loader>span {
  display: flex;
  gap: 1px;
  justify-content: center;
  flex-wrap: wrap;
}


.desc-loader {
  max-width: 800px;
  margin: auto;
  margin-bottom: 3rem;
}

.desc-loader>span {
  max-width: 800px;
}

.mobile-links-loader>span {
  display: flex;
  gap: 1px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.itemcard-sec {
  margin-top: -16.5em;
  width: 74%;
  position: relative;
}

.collection-card-loader {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--color-shade-4);
  background-clip: border-box;
  border: 1px solid var(--primary-boder-light);
  width: 100%;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 1rem;
  overflow: hidden;
}

.collection-img-loader {
  line-height: inherit;
  height: 200px;
}

.collection-details-loader {
  padding: 1rem;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
}

.collection-details-loader span:last-child {
  grid-column: span 2;
}


.collection-card-footer-loader {
  -webkit-box-align: center;
  border-top: none;
  padding: 12px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--card-footer-gradient);
  display: flex;
  justify-content: space-between;
}

.collection-card-loader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1em;
}

.collection-card-loader-grid.small {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.collection-card .card-img-top {
  object-position: top;
  height: 180px;
}

.profile-list-section ul li a:hover {
  color: var(--quaternary-color);
}

.resources-btn {
  background-color: transparent !important;
  width: 100% !important;
  font-size: 1.05em;
  color: var(--quaternary-color);
  font-family: 'Muli SemiBold';
}

.top-header-close {
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.top-header-close button {
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
}

.top-header-close button:hover {
  background-color: transparent !important;
}

.top-header-close button img {
  max-width: 0.8em !important;
}

.dropdown-item a {
  color: #000 !important;
}

.dropdown-item:active {
  background-color: #fff !important;
}

.PhoneInput {
  display: flex;
  align-items: center;
  height: 2.8em;
  border: 1px solid #797878;
  width: 25em;
  border-radius: 50px;
  width: 100%;
  padding: 0 18px 0 14px;
}

.PhoneInput:focus input {
  border: none !important;
  box-shadow: none !important;
}

.PhoneInput input {
  border: none;
  outline: none;
}

.is-invalid {
  border-color: #dc3545 !important;
}

iframe.dynamic-nft-preview {
  display: block !important;
}

.username-success {
  color: #3da1f7;
}

.time-picker {
  display: flex;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.time-picker .custom-timeinput {
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem 0;
}

.invalid-message-text {
  color: #dc3545;
}

.time-picker .custom-timeinput.invalid-field {
  border-color: #dc3545;
}

.rangeCalender .rangerCalender-heading {
  display: flex;
  grid-gap: 1rem;
  gap: 1rem;
  justify-content: space-between;
}

.custom-modal .modal-content .modal-header .modal-header-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
}

.rangeCalender .toggler {
  width: 100%;
  background-color: var(--color-shade-4);
  border: 1px solid;
  border-color: var(--primary-boder-light);
  color: var(--primary-text-color);
  cursor: pointer;
  padding: 1rem;
  display: inline-flex;
  flex-direction: row;
  margin-bottom: 1rem;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  align-items: center;
  border-radius: 0.25rem;
}

.check-spinner {
  overflow: visible;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check-spinner__worm-a,
.check-spinner__worm-b {
  visibility: hidden;
  stroke-width: 1rem;
}

.check-spinner__circle {
  fill: var(--according-open-bg)
}


.loading-complete .check-spinner__worm-a {
  opacity: 0;
}

.check-spinner__worm-b {
  animation: worm-b 1.2s linear forwards;
  stroke-dashoffset: 0.01;
}

.check-spinner__circle {
  animation: circle 0.2s cubic-bezier(0, 0, 0.42, 1.33) forwards;
}

.MuiAccordionSummary-content {
  display: flex;
  flex-grow: 1;
  transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.custom-accordion-heading {
  display: flex;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  align-items: center;
}

.MuiAccordionSummary-root {
  display: flex;
  padding: 0px 16px;
  min-height: 48px;
  transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.right {
  text-align: right;
}

.offer-date .rdrMonth, .offer-date .rdrMonthsVertical, .offer-date .rdrCalendarWrapper {
  width: 100% !important;
}

.MuiInput-underline:before, .MuiInput-underline:hover:not(.Mui-disabled):before {
  border-bottom: 0 !important;
}

.make-offer-agree-terms input {
  height: 1em !important;
}

.wallet-select-network h5{
  color: var(--tertiary-color);
    font-family: 'Muli Bold';
    font-size: 1em;
    padding: 0 1em;
}

.tab-loader{
  width:150px !important;
  height:40px !important;
  border-radius: 20px !important;
}

.profile-list-section {
  text-transform: capitalize;
}

.username-link{
  color:#797878 !important;
}

.username-field{
  padding-left: 0px !important;
  color: #000;
  font-weight: bold !important;
}

.toolbar-body::-webkit-scrollbar {
  background-color: #fff;
  width: 16px
}

/* background of the scrollbar except button or resizer */
.toolbar-body::-webkit-scrollbar-track {
  background-color: #fff
}

.toolbar-body::-webkit-scrollbar-track:hover {
  background-color: #f4f4f4
}

/* scrollbar itself */
.toolbar-body::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 5px solid #fff
}

.toolbar-body::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4
}

/* set button(top and bottom of the scrollbar) */
.toolbar-body::-webkit-scrollbar-button {
  display: none
}
.back-arrow-icon{
  cursor: pointer;
}

.on-ramp-modal {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #888;
  background-color: white;
  width: 90vw;
  height: 90vh;
  max-width: 475px;
  max-height: 650px;
  border-radius: 30px;
  overflow: hidden;
}

.modal-overlay {
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

#moonpayBuyIframe, #moonpaySellIframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  display: block !important;
}