:root {
    --clr1: #01579b;
    --clr2: #019b44;
    --clr3: #23019b;
    --subtext: #8c8c8c;
    --subtext2: #6f6f6f;
    --defaultBorder: 1px solid rgba(0, 0, 0, .2);
    --background1: #FFFFFF;
    --background2: #f5f5f5;
    --background-accesoris: #F4F5F5;
    --text: #1E2329;
    --header-text: #474D57;

    --dark-background1: #0a0c0e;
    --dark-background2: #15171f;
    --dark-background-accesoris: #111518;
    --dark-text: rgb(234, 236, 239);
    --dark-header-text: rgb(183, 189, 198);
    --nav-shadow: 0 10px 20px #40404014;
}


/* Preset */

@font-face {
    font-family: Poppins;
    src: url(https://cryptofun.id/assets/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: Merry;
    src: url(https://cryptofun.id/assets/fonts/MerriweatherSans-Regular.ttf);
}

@font-face {
    font-family: MerryLight;
    src: url(https://cryptofun.id/assets/fonts/Merriweather-Regular.ttf);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-top: 50px;
    transition: 0.5s;
    font-family: Merry, Poppins, sans-serif;
}

* {
    box-sizing: border-box;
}

p {
    word-break: break-word !important;
}

.main {
    width: 95%;
    margin: auto;
    max-width: 1500px;
}

button {
    outline: none;
    border: 1px solid var(--clr1);
    background: var(--background2);
    color: var(--clr1);
    border-radius: 5px;
    padding: 5px 10px;
    transition: 0.3s;
}

button:hover {
    background: var(--clr1);
    color: var(--dark-text);
    transition: .3s;
}

input {
    outline: none;
    border: 1px solid #ddd;
    padding: 5px;
}

input:focus {
    border: 1px solid var(--clr1);
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    color: var(--subtext);
    font-size: 2rem;
}

@keyframes loader {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: white;
    color: var(--text);
    z-index: 2;
}

.loader-img {
    position: relative;
    width: 250px;
    overflow: hidden;
}

.loader .img1 {
    position: absolute;
    z-index: -1;
}

.loader .img2 {
    width: 0px;
    overflow: hidden;
    animation: loader 3s infinite;
}

.loader-img .img1 img,
.loader-img .img2 img {
    width: 250px;
}


/* Animation */

.anim {
    visibility: hidden;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-duration: 3s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}



/* Home-gallery */

.home-gallery {
    display: flex;
}

.li-translate {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    cursor: pointer;
}

.li-translate i {
    display: inline !important;
}

.li-translate a {
    display: none;
    z-index: -1;
}

#Translate1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.goog-te-gadget {
    height: 25px;
    background-color: transparent;
    overflow: hidden;
    color: transparent !important;
}

select.goog-te-combo {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 18px;
    font-family: Poppins;
    margin: 0 !important;
    cursor: pointer;
    opacity: 0;
    width: 100%;
}

iframe.goog-te-banner-frame {
    display: none !important;
}

.skiptranslate iframe {
    display: none;
}

.translated-ltr {
    margin-top: -40px;
}

.translated-ltr {
    margin-top: -40px;
}

.goog-te-banner-frame {
    display: none;
    margin-top: -20px;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget span {
    display: none;
}

#goog-gt-tt {
    display: none !important;
}


.post-gallery {
    width: 70%;
}

.gallery-frame {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
}

.gallery-small {
    display: flex;
}

.big {
    height: 350px;
}

.small {
    height: 200px;
    width: 50%;
}

.img-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
    z-index: -1;
}

.img-gallery img {
    width: 100%;
    opacity: 60%;
    transition: 0.5s;
}

.gallery-frame:hover img {
    transform: scale(1.2);
    transition: 0.5s;
}

.title-gallery,
.subtext-gallery {
    padding: 5px;
    width: 80%;
}

.title-gallery a {
    font-size: 1.7rem;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.445);
}

.small .title-gallery a {
    font-size: 1.2rem;
}

.small .subtext-gallery {
    font-size: 0.7rem;
}

.subtext-gallery {
    font-size: 1rem;
    color: white;
}

.aside-gallery {
    width: 30%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.aside-gallery .list-latest-post:last-child .latest-post-post {
    border-bottom: none;
}

.aside-title {
    font-weight: bold;
    color: var(--clr1);
    margin-bottom: 10px;
}

/* ============================ List post Home =============================== */
.skat {
    padding: 5px;
    margin-top: 30px;
    width: 100%;
    background-color: var(--background2);
    border-radius: 5px;
    text-align: center;
}

.post-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 5px;
}

.search-form {
    display: flex;
    width: 50%;
}

.post-form #filter {
    padding: 5px;
    outline: none;
    border: 1px solid var(--clr1);
    cursor: pointer;
}

input#keyword {
    outline: none;
    padding: 5px;
    border-right: none;
    width: 100%;
}

.search-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.load-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.load-button hr {
    width: 43%;
    height: 2px;
    color: var(--clr1);
}

.list-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 300px;
    position: relative;
}

.post {
    width: 49%;
    overflow: hidden;
    margin-top: 30px;
    transition: 0.3s;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.post:hover {
    transition: 0.3s;
    border-bottom: 1px solid var(--clr1);
}

.post a {
    display: flex;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.post:hover .judul-post {
    color: var(--clr1);
}

.img-post {
    display: flex;
    justify-content: center;
    width: 200px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.img-post img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    /* filter: brightness(0.85); */
    transition: 0.3s;
}

.post .text {
    width: calc(100% - 220px);
}

.judul-post {
    padding: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text);
}

.judul-post a:hover {
    color: var(--clr1);
    text-decoration: underline;
}

.deskripsi-post {
    padding: 5px;
    font-size: 0.8rem;
    color: var(--subtext2);
}

.post .subtext {
    display: flex;
    gap: 10px;
    font-size: 10px;
    color: var(--subtext);
    padding: 5px;
}

/* ==================================== Read Post Page ===================================== */
.article-aside {
    display: flex;
    justify-content: space-between;
}

.article-aside article {
    width: 68%;
}

.article-aside article p {
    font-family: MerryLight, sans-serif;
    line-height: 30px;
}

.article-aside article a {
    word-break: break-word;
}

.article-title h1 {
    font-weight: bold;
}

.time-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.author a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
}

.author-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border: 1px solid var(--clr1);
    border-radius: 50%;
}

.author-img img {
    width: 100%;
}

.time i {
    color: var(--clr1);
}

.article-img {
    width: 100%;
    margin-bottom: 20px;
}

.article-img img {
    width: 100%;
    border-radius: 5px;
}

.end-article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: var(--subtext);
    margin-top: 50px;
}

.end-article::before,
.end-article::after {
    content: "";
    width: 45%;
    height: 1px;
    background-color: var(--subtext);
}

.author-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    background-color: var(--background2);
    border-radius: 10px;
    margin-top: 50px;
    position: relative;
}

.author-details::before {
    content: "Penulis :";
    font-size: 14px;
    font-style: italic;
    position: absolute;
    top: 0;
    left: 0;
}

.author-details-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid var(--clr1);
}

.author-details-img img {
    height: 100%;
    object-fit: cover;
}

.author-details-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 150px);
}

.author-details-name {
    font-weight: bold;
}

.author-details-bio {
    font-style: italic;
}

.author-details-page a {
    color: var(--clr1);
    text-decoration: none;
}

.share-article {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.share-article .share-icon {
    display: flex;
    align-items: center;
    color: var(--clr1);
    height: 40px;
    padding: 10px;
}

.share-icon i {
    font-size: 1.5rem;
}

.share-article .share-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.share-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    background-color: var(--clr1);
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 5px;
}

blockquote {
    border-left: 3px solid var(--clr1);
    font-style: italic;
    font-size: 1.2rem;
    padding: 0 50px;
    position: relative;
    word-break: break-word;
}

blockquote::before {
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 1.5rem;
    color: #01579b;
    position: absolute;
    left: 10px;
    top: 0;
}

blockquote::after {
    content: "\f10e";
    font-family: FontAwesome;
    font-size: 1.5rem;
    color: #01579b;
    position: absolute;
    right: 20px;
    bottom: 0;
}

/* ==================================== Author Page ============================= */
.authors-page {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--subtext);
}

.author-posts {
    margin-top: 50px;
}

.author-profil {
    display: flex;
    gap: 30px;
}

.author-profil .photo-profil {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 200px;
    height: 200px;
    border: 1px solid var(--clr1);
    border-radius: 10px;
}

.author-profil .photo-profil img {
    height: 100%;
    object-fit: cover;
}

.author-profil .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 230px);
}

.author-profil .text .bio {
    font-style: italic;
}

.admin-sosmed {
    display: flex;
    gap: 10px;
}

.admin-sosmed a {
    color: var(--subtext2);
    text-decoration: none;
    font-size: 25px;
}

.admin-sosmed a:hover {
    color: var(--clr1);
}

.author-profil .text .name {
    font-weight: 700;
    font-size: 1.5rem;
}

/* ============================ Airdrop Post Template ===================== */
.template-airdrop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--clr1);
    border-radius: 5px;
    padding: 10px;
    margin-top: 50px;
}

.project,
.reward,
.rating {
    width: 33.333333%;
    font-weight: bold;
}

.project,
.reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.project-logo img {
    width: 70px;
}

.reward {
    border-right: 1px solid var(--clr1);
    border-left: 1px solid var(--clr1);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating span {
    color: black;
}

/* ==================== AMA recap Post Template =========================== */
.template-ama {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--clr1);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
}

.project-ama,
.guest,
.moderator,
.online-participant,
.live-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-ama-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-ama-logo img {
    width: 70px;
}

.guest span:nth-child(1),
.moderator span:nth-child(1),
.online-participant span:nth-child(1),
.live-question span:nth-child(1) {
    width: 100%;
    color: var(--subtext);
    font-size: 12px;
    text-align: center;
}

.guest span:nth-child(2),
.moderator span:nth-child(2),
.online-participant span:nth-child(2),
.live-question span:nth-child(2) {
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: var(--clr1);
}


/* ======================== aside read post ===================== */

.article-aside aside {
    display: flex;
    flex-direction: column;
    width: 29%;
}


.list-community {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid var(--clr1);
    margin-bottom: 30px;
}

.list-community a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    color: var(--clr1);
}

.latest-post-tittle,
.community-title {
    font-size: 0.7rem;
    color: var(--subtext);
}

.article-aside aside .list-latest {
    display: flex;
    flex-direction: column;
}

.article-aside aside .aside-wrapper {
    position: sticky;
    top: 100px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
}

.latest-post-post {
    display: flex;
    gap: 10px;
    min-height: 90px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    transition: 0.3s;
}

.latest-post-post:hover {
    border-bottom: 1px solid var(--clr1);
    transition: 0.3s;
}

.latest-post-img {
    display: flex;
    align-items: center;
    width: 30%;
    overflow: hidden;
    max-height: 80px;
    border: hidden;
    border-radius: 5px;
}

.latest-post-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.latest-post-text {
    width: 69%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-post-judul a {
    font-weight: bold;
    text-decoration: none;
    color: var(--text);
}

.latest-post-judul a:hover {
    color: var(--clr1);
    text-decoration: underline;
}

.latest-post-subtext {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--subtext);
}

/* Dark Mode */
.dark-theme {
    background-color: var(--dark-background2);
    color: var(--dark-header-text);
}

.dark-theme .author a {
    color: var(--dark-header-text);
}

.dark-theme .latest-post-judul a {
    color: var(--dark-header-text);
}

.dark-theme p a {
    color: var(--clr2);
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6 {
    color: var(--dark-text);
}

.dark-theme .latest-post-post {
    border-bottom: 1px solid rgb(36, 36, 36);
}

.dark-theme .author-details {
    background-color: var(--dark-background1);
}

/* Light dark Toggle */

.theme-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}

.theme-control .theme-button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 40px;
    height: 16px;
    border-radius: 10px;
    background: var(--clr1);
    transition: 1s;
    cursor: pointer;
    color: var(--dark-text);
    font-size: 0.7rem;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.theme-toggle {
    position: absolute;
    top: -1px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--clr1);
    border: 1px solid white;
}

.dark-btn .theme-toggle {
    left: unset;
    right: 0;
}


/* ======================== About Us Page ====================== */
.about-us {
    margin-top: 50px;
}

.about-us h1,
.about-us h2,
.about-us h3,
.about-us h4,
.about-us h5,
.about-us h6 {
    text-align: center;
}

.explain {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.explain-text {
    width: 58%;
    color: var(--subtext2);
}

.contact-us {
    width: 39%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-title {
    font-size: 14px;
    color: var(--subtext);
}

.contact-us-sosmed {
    display: flex;
    gap: 20px;
}

.contact-us-sosmed a {
    text-decoration: none;
    color: var(--subtext2);
    font-size: 25px;
}

.contact-us-sosmed a:hover {
    color: var(--clr1);
}

.contact-us-email {
    display: flex;
    flex-direction: column;
}

.our-partner,
.portfolio {
    margin-top: 50px;
}

.portfolio p {
    text-align: center;
    color: var(--subtext);
    font-size: 12px;
}

.list-partner,
.list-portfolio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.partner,
.portfolio-item {
    width: 25%;
    padding: 10px;
}

.partner a img,
.portfolio-item a img {
    width: 100%;
}

.partner a:hover img,
.portfolio-item a:hover img {
    filter: grayscale(100%);
}

.team {
    margin-top: 50px;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 25%;
    padding: 10px;
    overflow: hidden;
}

.team-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid var(--clr1);
    overflow: hidden;
}

.team-img img {
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.team-sosmed {
    display: flex;
    gap: 20px;
}

.team-sosmed a {
    font-size: 25px;
    text-decoration: none;
    color: var(--subtext2);
}

.team-sosmed a:hover {
    color: var(--clr1);
}

/* ===================== Footer =============================== */

.borderBottom {
    border-bottom: 1px solid #ddd;
}

.footerBorderRight {
    border-right: 1px solid #ddd;
}

footer {
    background-color: var(--clr1);
    padding-top: 30px;
}

footer ul {
    padding: 0;
}

.footer-widget .footer-head {
    color: var(--dark-header-text);
    font-size: 1.2rem;
}

footer li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 13px;
}

footer a,
footer span {
    color: var(--dark-text);
    text-decoration: none;
}

footer a:hover {
    color: var(--dark-header-text);
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 250px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .social-media {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.7rem;
}

.copyright-text p {
    text-align: center;
    color: var(--dark-text);
    font-size: 12px;
}

/* Pip-Button */

.tippip {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    background: #1149FF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-bottom-left-radius: 0px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.tippip.tippip-show {
    border-radius: 50%;
    border-top-right-radius: 0px;
    box-shadow: none;
    border-top: 5px solid #ffbd00;
}

.tippip.tippip-show .text-tip {
    display: none;
}

.close-pip {
    display: none;
}

.tippip-show .close-pip {
    display: inherit;
    color: #ff6e6e;
    font-size: 30px;
}

.text-tip {
    color: white;
}

.wrap-pip {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgb(0 0 0 / 78%);
    transition: 0.2s;
    display: flex;
    justify-content: center;
}

.pip-elm {
    width: 0;
    height: 0;
    overflow: hidden;
}

.wrap-pip .pip-elm {
    position: fixed;
    bottom: 65px;
    left: 70px;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: 0.5s;
    border-radius: 50%;
    border-bottom-left-radius: 0px;
    background: #1149FF;
    border-bottom: 5px solid #ffbd00;
}

.tippip-button {
    display: none;
}

.wrap-pip .pip-elm button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
}

.pip-button {
    width: 100% !important;
}

#pip-button {
    width: 100%;
}

.input-select {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#chain,
#currency {
    padding: 5px 10px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
}

.input-amount input {
    border-radius: 5px;
}

.tippip-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tippip-button .logo-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tippip-button .logo-button img {
    width: 100px;
}

.on-payment {
    display: none;
}

.wrap-pip .on-payment {
    display: block;
}

.on-error,
.on-success {
    width: 0;
    height: 0;
    overflow: hidden;
}

.wrap-pip .on-success,
.wrap-pip .on-error {
    position: relative;
    background-color: #ffffff;
    width: 0;
    height: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    transition: 0.5s;
}

.succes-text {
    color: #00c100;
}

.error-text {
    color: #ff4b4b;
}


@media (max-width: 912px) {
    .home-gallery {
        flex-direction: row;
    }

    .post {
        width: 100%;
        margin-top: 5px;
        padding: 20px 0;
    }

    .img-post {
        width: 250px;
    }

    .post .text {
        width: calc(100% - 270px);
    }

    .load-button hr {
        width: 35%;
    }

    /* ==================== About Us Page ========================== */
    .team-list {
        flex-direction: row;
    }

    .team-item {
        width: 50%;
    }

    footer {
        text-align: center;
    }

    .footer-row {
        gap: 20px;
    }

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

    footer .social-media {
        width: 100%;
        justify-content: center;
        gap: 10px;
        font-size: 25px;
    }

    .footerBorderRight {
        border-right: none;
    }

    .article-aside {
        flex-direction: column;
    }

    .home-gallery {
        flex-direction: column;
    }

    .post-gallery,
    .aside-gallery {
        width: 100%;
    }

    .aside-gallery {
        padding: 0;
    }

    .article-aside article,
    .article-aside aside {
        width: 100%;
    }

    .article-aside aside {
        margin-top: 50px;
    }

    /* ================= Template post Airdrop =================== */

    .template-airdrop {
        flex-direction: column;
        gap: 30px;
    }

    .project,
    .reward,
    .rating {
        width: 100%;
    }

    .reward {
        border: none;
    }

    /* ================= Template post AMA recap =================== */

    .template-ama {
        flex-direction: column;
        gap: 30px;
    }

    /* ================== list admin page ====================== */
    .list-admin {
        flex-direction: column;
    }

    .list-admin .data-admin {
        width: 100%;
    }

    .author-profil {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .author-profil .text {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 540px) {

    /* ============================ Gallery Post Home =================== */
    .home-gallery {
        flex-direction: column;
    }

    .post-gallery {
        width: 100%;
    }

    .aside-gallery {
        width: 100%;
    }

    .gallery-frame.big {
        height: 200px;
    }

    .gallery-frame.small {
        height: 100px;
    }

    .title-gallery,
    .subtext-gallery {
        width: 100%;
    }

    .subtext-gallery {
        font-size: 10px !important;
    }

    .title-gallery a {
        font-size: 18px;
    }

    .small .title-gallery a {
        font-size: 12px;
    }

    .aside-gallery {
        padding: 0 0;
    }

    /* ====================== List Post Home ======================== */
    .list-posts {
        flex-direction: column;
    }

    .search-form {
        width: 100%;
    }

    .search-form input#keyword {
        width: 100%;
    }

    .post {
        width: 100%;
        margin-top: 5px;
        padding: 20px 0;
    }

    .img-post {
        width: 170px;
    }

    .post .text {
        width: calc(100% - 190px);
    }

    .load-button hr {
        width: 30%;
    }

    /* ==================================== Read Post Page ===================================== */
    .article-aside {
        flex-direction: column;
    }

    .author .author-img {
        width: 20px;
        height: 20px;
    }

    .author .name {
        font-size: 12px;
    }

    .time-author .time {
        font-size: 12px;
    }

    .article-aside article {
        width: 100%;
    }

    .article-aside aside {
        width: 100%;
        margin-top: 50px;
    }

    .theme-control {
        bottom: 10px;
        right: 10px;
    }

    .tippip {
        left: 10px;
        bottom: 10px;
    }

    .wrap-pip .pip-elm {
        width: 280px;
        height: 280px;
        bottom: 55px;
        left: 60px;
    }

    .tippip-button {
        max-width: 200px;
    }

    .input-amount input {
        width: 100%;
    }

    .author-details {
        flex-direction: column;
    }

    .author-details-text {
        width: 100%;
        text-align: center;
    }

    /* ========================== About Us Page =========================== */
    .explain {
        flex-direction: column;
        gap: 30px;
    }

    .explain-text {
        width: 100%;
        text-align: center;
    }

    .contact-us {
        width: 100%;
        text-align: center;
    }

    .contact-us-sosmed {
        justify-content: center;
    }

    .team-list {
        flex-direction: column;
        gap: 20px;
    }

    .team-item {
        width: 100%;
    }

    /* ============================ Footer Mobile ================================ */
    footer {
        text-align: center;
    }

    .footer-row {
        gap: 20px;
    }

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

    footer .social-media {
        width: 100%;
        justify-content: center;
        gap: 10px;
        font-size: 25px;
    }

    .footerBorderRight {
        border-right: none;
    }

}

@media (max-width: 500px) {
    .post a {
        flex-direction: column;
    }

    .img-post,
    .post .text {
        width: 100%;
    }

    .img-post {
        height: 200px;
    }

    .img-post img {
        object-fit: cover;
    }

    .post .subtext,
    .post .judul-post,
    .post .deskripsi-post {
        padding: 5px 0;
    }
}