/* src/styles.css */
@font-face {
  font-family: "GroozilaRegular";
  src: url("./media/GroozilaRegular.eot");
  src:
    url("./media/GroozilaRegular.eot?#iefix") format("embedded-opentype"),
    url("./media/GroozilaRegular.woff2") format("woff2"),
    url("./media/GroozilaRegular.woff") format("woff"),
    url("./media/GroozilaRegular.ttf") format("truetype"),
    url("./media/GroozilaRegular.svg#GroozilaRegular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit-Regular";
  src: url("./media/Kanit-Regular.eot");
  src:
    url("./media/Kanit-Regular.eot?#iefix") format("embedded-opentype"),
    url("./media/Kanit-Regular.woff2") format("woff2"),
    url("./media/Kanit-Regular.woff") format("woff"),
    url("./media/Kanit-Regular.ttf") format("truetype"),
    url("./media/Kanit-Regular.svg#Kanit-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary:#F2F2F7;
  --white:#FFFFFF;
  --border-color:#E5E5EA;
  --radius-md:8px;
  --border-blue:#16A1FF;
  --black:#1F2A37;
  --grey:#4B5563;
  --grey-2:#374151;
  --white-light: #EAEFFB;
  --font-light:300;
  --font-normal:400;
  --font-medium:500;
  --font-semibold:600;
  --font-bold:700;
  --font-plus: "GroozilaRegular";
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  font-family: "GroozilaRegular", !important;
  color: var(--black);
  font-weight: var(--font-normal);
  background-color: #151920 !important;
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
::selection {
  background-color: #070735 !important;
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
p,
span {
  padding: 0;
  margin: 0;
}
.network {
  padding: 13px 15px;
  border: 1px solid var(--border-blue);
  background: rgba(22, 161, 255, 0.20);
  border-radius: var(--radius-md);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in-out .5s;
  &:hover,
  &:focus {
    transition: all ease-in-out .5s;
    background: var(--border-blue);
    color: var(--white);
  }
}
.fixed-top {
  background-color: #000;
  z-index: 1030 !important;
}
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
}
.navbar-toggler {
  background-color: #fff !important;
}
.wallet {
  padding: 13px 15px;
  border: 1px solid var(--border-blue);
  background: var(--border-blue);
  border-radius: var(--radius-md);
  color: var(--white-light);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in-out .5s;
  width: fit-content;
  &:hover,
  &:focus {
    transition: all ease-in-out .5s;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
  }
  &:disabled,
  &[disabled] {
    background: var(--gray);
    border: 1px solid var(--gray-dark);
    color: var(--gray-light);
    cursor: not-allowed;
    pointer-events: none;
  }
}
.right-side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.navbar {
  padding: 0px !important;
}
.main-dashboard .container-fluid {
  padding: 0px 24px !important;
}
.navbar-brand {
  padding: 10px 0px !important;
}
.main-section {
  & .container-fluid {
    padding: 0px 24px;
  }
  & .main {
    padding: 70px 0px 20px;
    border-radius: 10px;
  }
  & .public-sale {
    border-radius: 20px;
    padding: 25px 50px;
    margin-bottom: 98px;
  }
  & h1 {
    font-family: "GroozilaRegular";
    color: var(--white);
    text-align: center;
    font-variant-numeric: lining-nums;
    font-size: 50px;
    font-weight: 800;
    line-height: 44px;
    padding: 0 0 43px;
    margin: 0;
  }
  & p {
    font-family: var(--font-plus);
    color: var(--grey);
    font-size: 20px;
    font-weight: var(--font-normal);
    line-height: 30px;
    padding: 0;
    margin: 0;
  }
  & .counting-view {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 35px;
  }
  & .counting p {
    color: var(--white);
    font-size: 20px;
    font-weight: var(--font-medium);
    line-height: 44px;
    text-align: center;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
  }
  & .counting h3 {
    border-radius: 4px;
    font-size: 64px;
    line-height: 44px;
    font-weight: 800;
    width: 140px;
    height: 140px;
    background: #fff;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: lining-nums;
  }
}
.presale {
  padding: 40px;
  border-radius: 20px;
  background: #9640FF;
  color: var(--white);
  & h3 {
    font-family: "GroozilaRegular";
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    font-variant-numeric: lining-nums;
    line-height: 44px;
    padding: 0 0 10px;
    margin: 0;
  }
  & h4 {
    font-family: "GroozilaRegular";
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-medium);
    line-height: 20px;
    margin: 0;
    padding: 0;
  }
  & h5 {
    font-family: "Kanit-Regular";
    font-size: 18px;
    line-height: 25px;
    font-weight: var(--font-normal);
    padding: 0;
    margin: 0;
  }
  & .pt-32 {
    padding-top: 15px;
  }
  & p {
    font-size: 15px;
    font-weight: var(--font-medium);
    line-height: 20px;
    margin: 0;
    padding: 0;
  }
  & p span {
    font-weight: var(--font-semibold);
  }
  & .usdt-details {
    padding: 19px 0px 0px;
    display: block;
  }
  & .usdt-details h5 {
    text-decoration: none;
    font-weight: var(--font-medium);
    line-height: 24px;
    padding: 0;
    margin: 0;
  }
  & .usdt-details h6 {
    font-size: 15px;
    font-weight: var(--font-bold);
    line-height: 150%;
    padding-bottom: 9px;
    border-bottom: 1px solid #c8bcf480;
    margin-bottom: 16px;
  }
  & .usdtdata {
    border-radius: 10px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
    border: 2px solid #151920;
    background: #FFF;
    box-shadow: -1px 3px 0 0 #151920;
  }
  & .usdtdata h3 {
    color: var(--text-white);
    font-family: var(--font-plus), sans-serif;
    font-size: 12px !important;
    font-weight: var(--font-normal);
    line-height: 18px;
    padding: 0;
    margin: 0;
  }
  & .usdtdata h6 {
    color: var(--black);
    font-family: "Kanit-Regular";
    font-size: 12px !important;
    font-weight: var(--font-normal);
    line-height: 18px;
    text-align: right;
    padding: 7px 0 0;
    margin: 0;
  }
  & .usdtdata input {
    background: none;
    border: 0;
    color: var(--black);
    font-family: "Kanit-Regular";
    font-size: 35px;
    font-weight: var(--font-bold);
    width: 100%;
  }
  & .usdtdata input::-webkit-input-placeholder {
    color: #9CA3AF;
  }
  & .usdtdata input:focus {
    box-shadow: none !important;
    border: 0px solid !important;
    outline: 0px solid !important;
  }
  & .usdtdata input:focus-visible {
    box-shadow: none !important;
    border: 0px solid !important;
    outline: 0px solid !important;
  }
  & .static-form {
    margin: 25px 0px 30px;
    border-radius: 10px;
  }
  & .usdtbtn {
    font-family: "Kanit-Regular";
    padding: 8px 11px;
    font-size: 20px;
    font-weight: var(--font-normal);
    color: #151920;
    border-radius: 10px;
    border: 2px solid #151920;
    box-shadow: -1px 3px 0 0 #141B1A;
    background: #FAD123;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    text-decoration: none;
  }
  & .usdtbtn:hover {
    transition: 0.25s ease-in-out;
    background: #fff;
  }
  & .usdtbtn:focus {
    transition: 0.25s ease-in-out;
    background: #fff;
  }
  & .aocbtn {
    font-family: "Montserrat", sans-serif;
    padding: 8px 11px;
    font-size: 20px;
    font-weight: var(--font-normal);
    color: #fff;
    border-radius: 10px;
    border: 1px solid #070735;
    background: #070735;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 153px;
    height: 64px;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
  }
  & .aocbtn:hover {
    transition: 0.25s ease-in-out;
    background: #070735;
  }
  & .aocbtn:focus {
    transition: 0.25s ease-in-out;
    background: #070735;
  }
  & .buytoken {
    font-family: "Kanit-Regular";
    border-radius: 12px;
    border: 2px solid #151920;
    background: #FAD123;
    box-shadow: 0 6px 0 0 #141B1A;
    padding: 12px;
    width: 100%;
    display: block;
    font-size: 26px;
    font-weight: var(--font-bold);
    color: var(--black);
    text-align: center;
    transition: 0.25s ease-in-out;
    text-decoration: none;
    cursor: pointer;
  }
  & .buytoken-disabled {
    border-radius: 6px;
    border: 1px solid #fff;
    background: #fff;
    padding: 12px;
    width: 100%;
    display: block;
    font-size: 20px;
    line-height: 44px;
    font-weight: var(--font-medium);
    color: var(--black);
    text-align: center;
    transition: 0.25s ease-in-out;
    text-decoration: none;
  }
  & .claim {
    font-family: "ProximaNovaFont", sans-serif;
    border-radius: 12px;
    border: 1px solid rgba(85, 245, 152, 0.2);
    background: rgba(245, 210, 85, 0.1);
    padding: 10px;
    width: 150px;
    font-size: 20px;
    font-weight: var(--font-bold);
    color: #fff;
    text-align: center;
    transition: 0.25s ease-in-out;
    text-decoration: none;
    cursor: pointer;
  }
  & .buytoken:hover {
    transition: 0.25s ease-in-out;
    background: #151920;
    border: 2px solid #FAD123;
    color: var(--white);
    box-shadow: 0 6px 0 0 #FAD123;
  }
  & .buytoken:focus {
    transition: 0.25s ease-in-out;
    background: #151920;
    border: 2px solid #FAD123;
    color: var(--white);
  }
  & .claim:hover {
    transition: 0.25s ease-in-out;
    background: rgba(245, 210, 85, 0.5);
  }
  & .claim:focus {
    transition: 0.25s ease-in-out;
    background: rgba(245, 210, 85, 0.5);
  }
  & .walletaddress {
    display: flex;
    align-items: baseline;
    column-gap: 14px;
  }
  & .lines {
    position: relative;
    width: 75%;
    height: 1px;
    background: #87d495;
  }
  & .dots {
    width: 10px;
    height: 10px;
    display: inline-flex;
    background: var(--black);
    border-radius: 100%;
    position: absolute;
    top: -5px;
    right: 0;
  }
  & p {
    font-family: "Kanit-Regular";
    color: var(--border-color);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-normal);
    line-height: 26px;
    margin: 0;
  }
  & p:not(:last-child) {
    padding: 0 0 20px;
  }
}
.buytoken.contribution-btn:hover {
  background: #000 !important;
  color: #fff !important;
}
.presale.Public {
  top: 140px;
  background: #C8BCF4;
  backdrop-filter: blur(150px);
  border-radius: 20px;
  & .title {
    font-family: "GroozilaRegular";
    color: #151920;
    font-size: 34px;
    line-height: 44px;
    font-weight: 600;
  }
  & p {
    color: var(--white);
    & span {
      color: var(--white);
    }
  }
}
.sale-detail-title h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  line-height: 44px;
  font-weight: 800;
  color: var(--white);
  padding: 20px 0px 0px;
}
.sub-title {
  font-size: 12px !important;
  font-weight: var(--font-medium);
  line-height: 20px !important;
  color: var(--black);
  margin: 0;
  padding: 0;
}
.mb-30 {
  margin-bottom: 30px;
}
#kycVerificationModal {
  top: 0px !important;
}
#kycVerificationModal.modal.show .modal-dialog {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  min-height: calc(100% - 0px) !important;
}
.ellips-icon1 {
  z-index: -1;
}
.ellips-icon2 {
  position: absolute;
  top: 13%;
  left: 0;
  z-index: -1;
}
.ellips-icon3 {
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -1;
}
.modal-content {
  padding: 30px;
  position: relative;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}
.modal-header .btn-close {
  background-color: #fff;
  opacity: 1;
}
.modal-header {
  border-bottom: 1px solid #eb9034 !important;
}
.form-check-label {
  font-family: "ProximaNovaFont", sans-serif;
  color: #fff;
  font-size: 20px;
}
.modal-body p {
  font-family: "ProximaNovaFont", sans-serif;
  color: #fff;
  padding-bottom: 25px;
}
.modal-body h3 {
  font-size: 30px;
  color: #eb9034;
  padding-bottom: 10px;
}
.modal-footer-btn .btn.save,
.modal-footer-btn .btn {
  font-family: "ProximaNovaFont", sans-serif;
  border-radius: 12px;
  border: 1px solid #fff;
  background: #fff;
  padding: 12px;
  display: block;
  font-size: 26px;
  font-weight: var(--font-bold);
  color: var(--black);
  text-align: center;
  transition: 0.25s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.modal-footer-btn .btn.save {
  margin-left: 30px;
}
.modal-footer-btn .btn.save,
.modal-footer-btn .btn:hover {
  background: #eb9034;
  border: 1px solid #eb9034;
  color: #fff;
}
.modal-footer-btn .btn.save:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
.head-title {
  font-family: "neue-haas-grotesk-display, sans-serif";
  font-size: 70px;
  line-height: 44px;
  font-weight: 600;
  color: black;
}
button.buytoken-claim:disabled {
  background-color: #979797;
  cursor: not-allowed;
  opacity: 0.6;
}
.buytoken-claim {
  font-family: "ProximaNovaFont", sans-serif;
  border-radius: 12px;
  border: 1px solid #fff;
  background: #fff;
  padding: 12px;
  width: 100%;
  display: block;
  font-size: 26px;
  font-weight: var(--font-bold);
  color: var(--black);
  text-align: center;
  transition: 0.25s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
button.buytoken-claim:disabled {
  background-color: #979797;
  cursor: not-allowed;
  opacity: 0.6;
}
button.buytoken-claim.loading {
  background-color: #979797;
  cursor: progress;
  opacity: 0.8;
}
.sticky {
  position: sticky;
  position: -webkit-sticky;
  background: none;
  z-index: 9;
  top: 0;
}
.dropdown-toggle::after {
  display: none !important;
}
.modal-title {
  color: var(--white);
}
.modal-header {
  border-bottom-color: var(--white);
}
.count-main {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 35px;
}
.count-box h3 {
  border-radius: 20px;
  font-size: 64px;
  line-height: 44px;
  font-weight: 800;
  width: 140px;
  height: 140px;
  background: #070735;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: lining-nums;
  margin-bottom: 10px;
}
.count-box p {
  color: #000000 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 44px !important;
  text-align: center;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  font-family: "neue-haas-grotesk-display, sans-serif";
}
@media (max-width:1360px) {
  .head-title {
    font-size: 62px;
  }
  .count-box h3 {
    width: 130px;
    height: 130px;
    font-size: 56px;
  }
  .presale {
    h3 {
      font-size: 32px;
      line-height: 42px;
    }
    .buytoken {
      font-size: 20px;
    }
    &.Public {
      & .title {
        font-size: 45px;
      }
    }
  }
  .buytoken-claim {
    font-size: 20px;
  }
  .presale .usdtdata {
    padding: 30px 25px;
  }
  .presale .usdtdata input {
    font-size: 30px;
  }
}
@media (max-width:1280px) {
  .head-title {
    font-size: 56px;
  }
  .count-box h3 {
    width: 120px;
    height: 120px;
    font-size: 50px;
  }
  .count-main {
    column-gap: 30px;
  }
  .presale .usdt-details h6 {
    margin-bottom: 10px;
    line-height: 145%;
  }
  .presale.Public .title {
    font-size: 40px;
    line-height: 35px;
  }
  .presale .usdtdata input {
    font-size: 26px;
  }
  .presale .usdtdata {
    padding: 20px;
  }
  .usdtbtn img {
    width: 40px;
    height: 40px;
  }
  .main-section {
    & .public-sale {
      padding: 25px 25px;
    }
    & h1 {
      font-size: 36px;
      line-height: 40px;
    }
    & .counting h3 {
      font-size: 34px;
      width: 100px;
      height: 100px;
    }
  }
  .presale {
    padding: 30px;
    h3 {
      font-size: 26px;
      line-height: 32px;
    }
    .buytoken {
      font-size: 22px;
    }
  }
}
@media (max-width:1199px) {
  .main-section {
    & .public-sale {
      padding: 25px 25px;
    }
    & h1 {
      font-size: 30px;
      line-height: 34px;
    }
    & .counting h3 {
      font-size: 26px;
      width: 80px;
      height: 80px;
    }
  }
  .presale {
    padding: 30px;
    h3 {
      font-size: 24px;
      line-height: 34px;
    }
    .buytoken {
      font-size: 20px;
    }
  }
  .presale.Public .title {
    font-size: 30px;
  }
  .main-section .public-sale {
    margin-bottom: 50px;
  }
  .presale .aocbtn,
  .presale .usdtbtn {
  }
  .head-title {
    font-size: 45px;
    padding-bottom: 20px;
  }
  .count-box h3 {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  .presale .usdtdata {
    padding: 16px;
  }
  .usdtbtn img {
    width: 35px;
    height: 35px;
  }
  .presale .usdtbtn {
    font-size: 16px;
  }
  .presale .usdtdata input {
    font-size: 24px;
  }
}
@media (max-width:991px) {
  .main-section .main {
    padding: 50px 0px;
  }
  .head-title {
    font-size: 40px;
  }
  .navbar-collapse {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
  .custom-mb-md {
    margin-bottom: 30px;
  }
  .count-box h3 {
    width: 90px;
    height: 90px;
    font-size: 35px;
    margin-bottom: 0;
  }
  .count-main {
    column-gap: 20px;
  }
  .presale .aocbtn,
  .presale .usdtbtn {
    width: 100px;
    height: 40px;
  }
  .usdtbtn img {
    width: 30px;
    height: 30px;
  }
  .presale .usdtbtn {
    font-size: 14px;
  }
  .presale .usdt-details h6 span {
    word-wrap: break-word;
  }
  .presale .buytoken,
  .buytoken-claim {
    font-size: 18px;
    padding: 10px;
  }
  .main-section {
    & h1 {
      font-size: 28px;
      line-height: 30px;
      padding-bottom: 20px;
    }
    & .counting-view {
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 10px;
      gap: 15px;
    }
    & .counting p {
      font-size: 14px;
    }
    & .counting h3 {
      font-size: 20px;
      width: 70px;
      height: 70px;
    }
  }
  .presale {
    padding: 30px;
    h3 {
      font-size: 24px;
      line-height: 34px;
    }
    h5 {
      font-size: 20px;
    }
    & .buytoken {
      font-size: 18px;
    }
    & p {
      font-size: 18px;
    }
    & .lines {
      position: relative;
      width: 60%;
    }
    &.Public {
      & .title {
        font-size: 34px;
      }
    }
  }
}
@media (max-width:767px) {
  .custom-mb {
    margin-bottom: 10px;
  }
  .main-section {
    & .public-sale {
      padding: 0px;
    }
    & .main {
      padding: 40px 0px;
    }
    & .container-fluid {
      padding: 0px 16px;
    }
  }
  .main-section .public-sale {
    margin-bottom: 20px;
  }
  .presale {
    padding: 25px;
    h3 {
      font-size: 20px;
      line-height: 30px;
    }
    & p {
      font-size: 16px;
    }
    & h5 {
      font-size: 14px;
    }
    & .lines {
      width: 100%;
    }
    & .usdtdata {
      padding: 20px 10px 12px 20px;
    }
    & .usdtbtn {
      font-size: 14px;
    }
    & .aocbtn {
      font-size: 16px;
    }
    & .usdtdata input {
      font-size: 20px;
    }
    &.Public {
      & .title {
        font-size: 28px;
        line-height: 32px;
      }
    }
  }
  .right-side {
    margin-bottom: 20px;
  }
  .main-section .main {
    padding: 40px 20px;
  }
  .head-title {
    font-size: 36px;
  }
  .count-box h3 {
    width: 75px;
    height: 75px;
    font-size: 30px;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .count-box h3 {
    width: 70px;
    height: 70px;
    font-size: 26px;
    border-radius: 8px;
  }
  .sale-detail-title h4 {
    font-size: 16px;
    line-height: 28px;
  }
  .presale.Public .title {
    font-size: 26px;
    line-height: 32px;
    padding-bottom: 0;
  }
  .count-box p {
    font-size: 18px !important;
  }
  .head-title {
    font-size: 34px;
    line-height: 30px;
  }
  .count-main {
    column-gap: 15px;
  }
  .presale.Public {
    padding: 25px;
  }
}
@media (max-width:400px) {
  .navbar-brand img {
    width: 220px;
    height: auto;
  }
  .custom-mb {
    margin-bottom: 20px;
  }
  .main-section .counting h3 {
    font-size: 20px;
    width: 60px;
    height: 60px;
  }
  .main-section .public-sale {
    margin-bottom: 10px;
  }
  .presale.Public {
    padding: 25px 25px;
  }
  .presale.Public .title {
    font-size: 24px;
    line-height: 28px;
  }
  .presale .usdtdata {
    padding: 12px 10px 12px 20px;
  }
  .presale .buytoken,
  .buytoken-claim {
    font-size: 16px;
    padding: 10px;
  }
  .presale .buytoken-disabled {
    font-size: 18px;
    line-height: 22px;
  }
  .presale h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .presale .pt-32 {
    padding-top: 10px;
  }
  .sale-detail-title h4 {
    font-size: 18px;
    line-height: 30px;
  }
  .presale.Public {
    padding: 30px 25px;
  }
  .head-title {
    font-size: 32px;
    line-height: 28px;
  }
  .count-box h3 {
    width: 60px;
    height: 60px;
    font-size: 22px;
    border-radius: 8px;
  }
  .count-main {
    column-gap: 10px;
  }
  .main-section .main {
    padding: 30px 15px;
  }
  .presale .usdtdata input {
    font-size: 16px;
  }
  .usdtbtn img {
    width: 25px;
    height: 25px;
  }
  .presale .usdtbtn {
    font-size: 13px;
  }
  .presale .usdt-details {
    padding: 10px 0px 0px;
  }
  .presale .usdt-details h6 {
    font-size: 13px;
  }
  .sale-detail-title h4 {
    padding-top: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .presale {
    padding: 20px;
  }
}
@media (max-width:360px) {
  .presale {
    & h5 {
      font-size: 12px;
    }
  }
  .navbar-brand img {
    width: 180px;
    height: auto;
  }
  .main-section h1 {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .head-title {
    font-size: 30px;
  }
  .count-box h3 {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 6px;
  }
  .count-box p {
    font-size: 16px !important;
    line-height: 32px;
  }
  .presale.Public {
    padding: 20px;
  }
  .presale.Public .title {
    font-size: 22px;
    line-height: 24px;
  }
  .presale .usdtdata {
    padding: 12px 12px 12px 12px;
  }
  .presale .buytoken,
  .buytoken-claim {
    font-size: 14px;
    padding: 8px;
  }
}
*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
::before,
::after {
  --tw-content: "";
}
html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role=button] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden=until-found])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0px;
}
.z-50 {
  z-index: 50;
}
.\!m-0 {
  margin: 0px !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.me-2 {
  margin-inline-end: 0.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.block {
  display: block;
}
.\!flex {
  display: flex !important;
}
.flex {
  display: flex;
}
.\!grid {
  display: grid !important;
}
.grid {
  display: grid;
}
.h-9 {
  height: 2.25rem;
}
.w-9 {
  width: 2.25rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.self-center {
  align-self: center;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.break-all {
  word-break: break-all;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.\!border-0 {
  border-width: 0px !important;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-\[\#c8bcf480\] {
  border-color: #c8bcf480;
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-transparent {
  border-color: transparent;
}
.bg-\[\#151920\] {
  --tw-bg-opacity: 1;
  background-color: rgb(21 25 32 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1c1c3c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(28 28 60 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FAD123\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 209 35 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.\!p-0 {
  padding: 0px !important;
}
.p-4 {
  padding: 1rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-16 {
  padding-top: 4rem;
}
.text-center {
  text-align: center;
}
.\!font-kanit {
  font-family: Kanit-Regular, sans-serif !important;
}
.font-groozila {
  font-family: GroozilaRegular, sans-serif;
}
.font-kanit {
  font-family: Kanit-Regular, sans-serif;
}
.\!text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.\!text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.\!text-\[\#151920\] {
  --tw-text-opacity: 1 !important;
  color: rgb(21 25 32 / var(--tw-text-opacity, 1)) !important;
}
.\!text-\[\#20232D\] {
  --tw-text-opacity: 1 !important;
  color: rgb(32 35 45 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#151920\] {
  --tw-text-opacity: 1;
  color: rgb(21 25 32 / var(--tw-text-opacity, 1));
}
.text-\[\#9640FF\] {
  --tw-text-opacity: 1;
  color: rgb(150 64 255 / var(--tw-text-opacity, 1));
}
.text-\[\#FAD123\] {
  --tw-text-opacity: 1;
  color: rgb(250 209 35 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:text-gray-400:hover {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {
  .sm\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:w-10 {
    width: 2.5rem;
  }
  .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:h-12 {
    height: 3rem;
  }
  .md\:w-12 {
    width: 3rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:gap-\[30px\] {
    gap: 30px;
  }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:border-0 {
    border-width: 0px;
  }
  .md\:bg-transparent {
    background-color: transparent;
  }
  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .md\:\!text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .md\:text-\[40px\] {
    font-size: 40px;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-14 {
    height: 3.5rem;
  }
  .lg\:w-14 {
    width: 3.5rem;
  }
  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:\!text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-\[44px\] {
    font-size: 44px;
  }
}
@media (min-width: 1280px) {
  .xl\:h-16 {
    height: 4rem;
  }
  .xl\:w-16 {
    width: 4rem;
  }
  .xl\:\!text-\[26px\] {
    font-size: 26px !important;
  }
  .xl\:text-\[26px\] {
    font-size: 26px;
  }
}
.rtl\:space-x-reverse:where([dir=rtl], [dir=rtl] *) > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}

/* node_modules/ngx-toastr/toastr.css */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* node_modules/ngx-spinner/animations/square-jelly-box.css */
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-square-jelly-box,
.la-square-jelly-box > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-square-jelly-box {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-square-jelly-box.la-dark {
  color: #333;
}
.la-square-jelly-box > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-square-jelly-box {
  width: 32px;
  height: 32px;
}
.la-square-jelly-box > div:nth-child(1),
.la-square-jelly-box > div:nth-child(2) {
  position: absolute;
  left: 0;
  width: 100%;
}
.la-square-jelly-box > div:nth-child(1) {
  top: -25%;
  z-index: 1;
  height: 100%;
  border-radius: 10%;
  -webkit-animation: square-jelly-box-animate .6s -.1s linear infinite;
  -moz-animation: square-jelly-box-animate .6s -.1s linear infinite;
  -o-animation: square-jelly-box-animate .6s -.1s linear infinite;
  animation: square-jelly-box-animate .6s -.1s linear infinite;
}
.la-square-jelly-box > div:nth-child(2) {
  bottom: -9%;
  height: 10%;
  background: #000;
  border-radius: 50%;
  opacity: .2;
  -webkit-animation: square-jelly-box-shadow .6s -.1s linear infinite;
  -moz-animation: square-jelly-box-shadow .6s -.1s linear infinite;
  -o-animation: square-jelly-box-shadow .6s -.1s linear infinite;
  animation: square-jelly-box-shadow .6s -.1s linear infinite;
}
.la-square-jelly-box.la-sm {
  width: 16px;
  height: 16px;
}
.la-square-jelly-box.la-2x {
  width: 64px;
  height: 64px;
}
.la-square-jelly-box.la-3x {
  width: 96px;
  height: 96px;
}
@-webkit-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -webkit-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -webkit-transform: translateY(50%) scale(1, .9) rotate(45deg);
    transform: translateY(50%) scale(1, .9) rotate(45deg);
  }
  75% {
    -webkit-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-moz-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -moz-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -moz-transform: translateY(50%) scale(1, .9) rotate(45deg);
    transform: translateY(50%) scale(1, .9) rotate(45deg);
  }
  75% {
    -moz-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -moz-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-o-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -o-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -o-transform: translateY(50%) scale(1, .9) rotate(45deg);
    transform: translateY(50%) scale(1, .9) rotate(45deg);
  }
  75% {
    -o-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -o-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -webkit-transform: translateY(25%) rotate(22.5deg);
    -moz-transform: translateY(25%) rotate(22.5deg);
    -o-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -webkit-transform: translateY(50%) scale(1, .9) rotate(45deg);
    -moz-transform: translateY(50%) scale(1, .9) rotate(45deg);
    -o-transform: translateY(50%) scale(1, .9) rotate(45deg);
    transform: translateY(50%) scale(1, .9) rotate(45deg);
  }
  75% {
    -webkit-transform: translateY(25%) rotate(67.5deg);
    -moz-transform: translateY(25%) rotate(67.5deg);
    -o-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    -moz-transform: translateY(0) rotate(90deg);
    -o-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes square-jelly-box-shadow {
  50% {
    -webkit-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@-moz-keyframes square-jelly-box-shadow {
  50% {
    -moz-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@-o-keyframes square-jelly-box-shadow {
  50% {
    -o-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@keyframes square-jelly-box-shadow {
  50% {
    -webkit-transform: scale(1.25, 1);
    -moz-transform: scale(1.25, 1);
    -o-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
