@font-face {
    font-family: "Libre Franklin";
    font-style: normal;
    font-weight: 500;
    src: local("Libre Franklin"),
    url('LibreFranklin-Regular.woff') format('woff');
}
@font-face {
    font-family: "Impact";
    src: local("Impact"), url("../fonts/impactreg.woff") format("woff");
}
/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
    font-family: 'Libre Franklin Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Libre Franklin Regular'), url('LibreFranklin-Regular.woff') format('woff');
}

body {
    font-family: "Libre Franklin", sans-serif;
    background: #6046bf7c;
}
.common-bg {
    background: linear-gradient(180deg, #6046bf 0%, #200685 100%);
}
.release-text {
    font-family: "Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif";
    font-style: normal;
    font-size: 56px;
    line-height: 68px;
}
.amount-text {
    font-family: "Libre Franklin", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 27px;
    line-height: 33px;
}
.sec-box {
    background-color: #361c99;
    position: relative;
}
.sub-btn {
    background-image: url("/img/wave.svg");
    background-repeat: no-repeat;
    object-fit: cover;
    padding: 15px;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}
.playstor-btn {
    background-image: url("/img/playstor.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    /* object-fit: cover; */
}
.appstor-btn {
    background-image: url("/img/appstor.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    /* object-fit: cover; */
}
.animate-bounce {
    animation: bounce 30s infinite;
    animation-duration: 8s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: bounce;
}
.animate-spin-safe {
    animation-name: spin;
    animation-duration: 5s; /* Specifies a duration of 2 seconds */
    animation-timing-function: linear; /* Optional: Specifies the timing function */
    animation-iteration-count: infinite; /* Optional: Specifies the number of times the animation should repeat */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.animate-pulse {
    animation: pulse 5s cubic-bezier(0.4, 0, 0.6, 1);
}
.custom-shape-divider-bottom-1684485947 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1684485947 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 197px;
}

.custom-shape-divider-bottom-1684485947 .shape-fill {
    fill: #ffeb72;
}
@keyframes motion-safe-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .animate-bounce-safe {
        animation: motion-safe-bounce 5s infinite;
    }
}
.logout-btn {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    width: 100px;
    height: 100px;
    background-color: #ccc;
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
.mt-5 {
    margin-top: 3rem;
}
.p-4 {
    padding: 1rem /* 16px */;
}
.mb-4 {
    margin-bottom: 1rem /* 16px */;
}
.top-16 {
    top: 4rem /* 64px */;
}
.right-0 {
    right: 0px;
}
.left-0 {
    left: 0px;
}
.mx-5 {
    margin-left: 1.25rem /* 20px */;
    margin-right: 1.25rem /* 20px */;
}
.text-xs {
    font-size: 0.75rem /* 12px */;
    line-height: 1rem /* 16px */;
}
.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity));
}
.rounded-lg {
    border-radius: 0.5rem /* 8px */;
}
.bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}
.truncate_val {
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.justify-around {
    justify-content: space-around;
}
.rounded-3xl {
    border-radius: 1.5rem /* 24px */;
}
.rounded-2xl {
    border-radius: 1rem /* 16px */;
}
.btn-div {
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.btn-div-db {
    z-index: 1000;
    border: 2px solid #fb1cff93;
}
.opacity-50 {
    opacity: 0.5;
}
.bg-white-opacity-50 {
    background-color: rgba(255, 255, 255, 0.144);
}
.w-5 {
    width: 1.25rem /* 20px */;
}
.h-5 {
    height: 1.25rem /* 20px */;
}
@media (min-width: 500px) {
    .md\:text-base {
        font-size: 1rem /* 16px */;
        line-height: 1.5rem /* 24px */;
    }
    .md\:text-xl {
        font-size: 1.25rem /* 20px */;
        line-height: 1.75rem /* 28px */;
    }
    .md\:justify-between {
        justify-content: space-between;
    }
    .md\:text-sm {
        font-size: 0.875rem /* 14px */;
        line-height: 1.25rem /* 20px */;
    }
    .m-div .m-top {
        margin-top: 40px;
    }
    .m-div .crsl-div {
        margin-top: -10px;
    }
}
@media (min-width: 640px) {
    .sm\:text-xl {
        font-size: 1.25rem /* 20px */;
        line-height: 1.75rem /* 28px */;
    }
    .m-div .m-top {
        margin-top: 40px;
    }
    .m-div .crsl-div {
        margin-top: -50px;
    }
}
.wallet-card {
    background-image: url("/img/wallet-card.png");
    background-repeat: no-repeat;
    width: 100%;
    object-fit: contain;
}
.mt-2 {
    margin-top: 0.5rem /* 8px */;
}
.p-3 {
    padding: 0.75rem /* 12px */;
}
.gov-btn {
    z-index: 20;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}
.accor-bg {
    background-color: #34285e;
}
.bg-profile {
    background-color: #251d43;
}
.accd-btn {
    border-radius: 6px;
    color: white;
    background: #017d15;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
}
.approved-btn {
    background-color: #251d43;
    color: #00f00a;
    border-radius: 6px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
}
.bg-indigo {
    background-color: #11004f;
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 0px solid gray;
    border-radius: 0px;
    outline: none;
    transition: background-color 0.3s;
}

.custom-checkbox:checked {
    background-color: rgba(0, 0, 255, 0);
}

.custom-checkbox:checked::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 13px;
    border-bottom: 2px solid #00f00a;
    border-right: 2px solid #00f00a;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-bottom: 3px;
}
.bg-totals {
    border-radius: 6px;
    background: #1b056e;
}
.approve-all {
    color: white;
    background: #017d15;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
}
.disabled\:text-gray-400:disabled {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
}
.disabled\:bg-gray-500:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
[v-cloak] {
    display: none;
}
.min-w-\[40\%\] {
    max-width: 40%;
}
.min-w-\[50\%\] {
    max-width: 50%;
}
.btn-div-vowl {
    z-index: 1000;
    border-radius: 20px;
    border: 1px solid #d1a4a8;
    background: #1f3a8a;
}
.leg-text {
    display: flex;
    white-space: nowrap;
}
.m-top {
    margin-top: 10px;
    align-items: center;
}
.crsl-div {
    margin-top: 0px;
}
.wallet-address {
    border-radius: 14.5px;
    border: 0.5px solid rgba(255, 255, 255, 0.37);
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(2px);
}
.wall-balance{
    border: 0.5px solid rgba(255, 255, 255, 0.40);
}
@media (min-width: 440px) {
    .sm\:text-xl {
        font-size: 1.25rem /* 20px */;
        line-height: 1.75rem /* 28px */;
    }
    .m-div .m-top {
        margin-top: 40px;
    }
    .m-div .crsl-div {
        margin-top: 20px;
    }
}
@media only screen and  (min-width: 768px) {
    .sm\:text-xl {
        font-size: 1.25rem /* 20px */;
        line-height: 1.75rem /* 28px */;
    }
    .m-div .m-top {
        margin-top: 40px;
    }
    .m-div .crsl-div {
        margin-top: -50px;
    }
}
@media only screen and (min-width: 640) {
    .m-div .m-top {
        margin-top: 50px;
    }
    .wallet-banner {
        min-width: 92%;
    }
}
.bg-blur{
    background: rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(2px);
}
.max-w-492{
    max-width: 492px;
}
.walletCard{
    background: url('/img/wallet-card.png') no-repeat center;
    margin-bottom: 8px;
    background-size: cover;
    border-radius: 13px;
}
