main {
    padding-block: 16px;
}

main .not-logged-in {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #9CA0AB;
}

main .not-logged-in i {
    font-size: 100px;
    opacity: .2;
}

main .not-logged-in h3 {
    color: white;
}

main .not-logged-in a {
    color: #E41827;
    text-decoration: none;
}

main .logged-in {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main .logged-in .header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

main .logged-in .header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

main .logged-in .header .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: white;
}

main .logged-in .header .content a {
    color: #E41827;
    text-decoration: none;
}

main .logged-in .tabbar {
    border-bottom: 1px solid #353A45;
    padding: 8px 16px;
    color: white;
    font-weight: 600;
}

main .logged-in .profile-tab {
    display: flex;
    flex-direction: column;
}

main .logged-in .profile-tab .item {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    font-family: "Play", sans-serif;
}

main .logged-in .profile-tab .item .value {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #9CA0AB;
    text-decoration: none;
}

main .logged-in .profile-tab .item .value button.upgrade-btn {
    padding: 4px 10px;
    color: white;
    background: #E41827;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
}

main .logged-in .profile-tab .item .value button.upgrade-btn:hover {
    opacity: .5;
}

main .logged-in .profile-tab .item .value.subscribed {
    flex-direction: column;
    align-items: end;
    gap: 4px;
}

main .logged-in .profile-tab .item .value.subscribed .status {
    color: #32CE62;
}

main .logged-in .profile-tab .item .value.subscribed .notice {
    font-size: 10px;
}

main .logged-in .profile-tab .item .value .referral-earn-tag {
    color: #E41827;
}

main .logged-in .profile-tab .item .lead .value img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

main .logged-in .profile-tab .item .value img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

main .logged-in .profile-tab .item .value a {
    text-decoration: none;
    color: #9CA0AB;
}

main .logged-in .profile-tab .item .value a.verify-email {
    color: #E41827 !important;
}

/* GOOGLW TRANSLATOR */
/* main .logged-in .profile-tab .item .value.google-trans {

} */

.gt_container--hich1m .gt_switcher .gt_selected a {
    border: none !important;
}

.gt_container--hich1m .gt_switcher .gt_selected {
    background: transparent !important;
    z-index: 0 !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a:hover {
    background: transparent !important;
}

main .logged-in .profile-tab .item .value a {
    color: #9CA0AB !important;
}

main .logged-in .profile-tab .item .value img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.profile-tab .gt_container--hich1m .gt_switcher a {
    font-size: 16px !important;
}

.profile-tab .gt_container--hich1m .gt_switcher .gt_selected a:after {
    height: 18px !important;
}

.profile-tab .gt_container--hich1m .gt_switcher .gt_option {
    position: absolute !important;
    border-radius: 10px !important;
    z-index: 0 !important;
    background: #1B1E25 !important;
    border: none !important;
    box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.1);

}

.profile-tab .gt_container--hich1m .gt_switcher .gt_option::-webkit-scrollbar {
    display: none;
}

main .logged-in .profile-tab .item .logout {
    color: #E41827;
    background: rgba(228, 24, 39, 0.1);
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

@media(min-width: 768px) {
    main {
        padding-top: 80px;
        gap: 16px;
        align-items: start;
        padding-inline: 48px;
    }

    main .logged-in {
        background: #24272E;
    }
}

@media(min-width: 930px) {
    body {
        background-image: url(../images/hero.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    main {
        padding-top: 132px;
        padding-inline: 20%;
    }
}