html, body {
    margin: 0;
    height: 100%;
    overflow: hidden
}

body {
    margin: 0;
    padding: 0;
    background-color: #212121;
    font-family: 'Arial', sans-serif;
    color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.container {
    width: 100vw !important;
    #max-width: 360px;
    background-color: #15263D;
    height: 100vh;
}

.page {
    height: 100vh;
    background-image: url('../img/others-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-family: "Lato", sans-serif;
}

.page h1 {
    margin-top: 6vh;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 35px;
    margin-bottom: 0;
}

.page h2 {
    text-align: center;
    margin-top: 10px;
    font-style: normal;
    font-size: 14px;
    font-weight: normal;
    color: #859CD0;
}

.button {
    appearance: button;
    background-color: #4D4AE8;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
    border: 1px solid #4D4AE8;
    border-radius: 1rem;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    vertical-align: middle;
    align-content: center;
    justify-content: center;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    padding: .5rem 1rem;
    text-align: center;
    text-transform: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button.green {
    background-image: linear-gradient(180deg, rgba(0, 128, 0, 0.15), rgba(0, 128, 0, 0));
    background-color: rgb(0, 128, 0);
    box-shadow: rgba(0, 128, 0, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
    border: 1px solid rgb(0, 128, 0);
}

.button > .loader {
    display: inline-block;
    height: 16px;
    width: 16px;
    visibility: visible;
    border: 3px solid white;
    position: relative;
    left: 10px;
}

ul {
    list-style: "- ";
    margin: 5px 0;
    padding: 5px 0 10px 7px;
}

ul > li {
    line-height: 20px;
}

#home {
    overflow: hidden;
    background-image: url('../img/main-bg.jpg');
    display: flex;
    width: 100vw;
    flex-direction: column;
    justify-content: space-between;
    background-color: black;
    align-items: center;
    height: 100vh;
}

#home > #Balance {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.UserStat {
    display: block;
    #background-color: red;
    height: 21vh;
}

.UserStat > div {
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.UserStat > #Balance {
    margin-left: 15px;
}

.UserStat > #Balance > .coin-icon {
    display: inline-block;
    background-image: url('../img/moneypot-icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 30px;
    width: 30px;
    position: relative;
    top: 3px;
    left: -15px;
}

.UserStat > #Balance > .Amount {
    font-size: 35px;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-top: 6.2vh;
}

.UserStat > .separator {
    background-color: #9092F4;
    height: 8px;
    border-radius: 5px;
    width: 80vw;
    display: block;
    margin: 1.5vh auto 0;
}

.UserStat .additional_info {
    width: 80vw;
    display: block;
    margin: 10px auto 0;
}

.UserStat .additional_info > div > * {
    display: inline-block;
}


#PenguinsWrapper {
    height: 60vh;
    width: 100vw;
    position: relative;
}

#PenguinsWrapper > .slider_infopic {
    width: 20vw;
    height: 20vw;
    position: absolute;
    left: 40vw;
    top: 40vw;
    z-index: 5;

    pointer-events: none;

    background-image: url('../img/swipe-hand.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    animation: shake 2s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-30deg);
    }
    75% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.penguin {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    background-image: url('../img/penguins/shadow.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.penguin.pic {
    pointer-events: none;
}

.penguin.shadow {
    left: 100vw;
}

.penguin > .loader {
    height: 64px;
    width: 64px;
    margin: auto;
    border: 4px solid #ffffff;
}

#luckydraw-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 110px;
    flex-direction: row;
    flex-wrap: nowrap;
}

#luckydraw {
    background-color: rgba(244, 100, 154, 0.20);
    width: calc(26vw + 30px);
    border-radius: 15px;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    background-image: url('../img/star.png');
    background-position: 8px center;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    position: relative;
    left: 34px;
}

#luckydraw > .span-block {
    position: relative;
    left: 12px;
}

#luckydraw_nftlink {
    height: 48px; /* Новая высота */
    width: 48px; /* Новая ширина */
    background-image: url('https://Shkipper.online/WebApp/img/nft.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    left: 34px;
}

.lucky_popup.mascot {
    width: 100%;
    height: 100%;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.lucky_popup.name {
    font-size: 32px;
    margin: 20px 10px 0 10px;
    font-weight: 400;
    text-align: center;
}

.lucky_popup.reward {
    margin-top: 14px;
}

.lucky_popup.reward.img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border: none;
    display: inline-block;
    height: 32px;
    width: 32px;
    position: relative;
    top: 4px;
}

.lucky_popup.reward.img.lighting {
    background-image: url('../img/lightning.png');
}

.lucky_popup.reward.img.coin {
    background-image: url('../img/coin.png');
}

.lucky_popup.reward.img.swipes {
    background-image: url('../img/star.png');
}

.lucky_popup.reward.amount {
    font-size: 32px;
}

#Tier {
    font-family: "Lato", sans-serif;
    display: inline-block;
    text-align: left;
    background-color: #1A2B4E;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 12px;
    float: left;
    text-transform: uppercase;
    color: #859CD0;
    cursor: pointer;
}

#Tier > .img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 24px;
    width: 24px;
    position: relative;
    top: 6px;
    left: -6px;
}

.TierInfoInner {
    display: flex;
    flex-direction: column;
    width: 70vw;
    margin-bottom: 100px;
    align-items: center;
}

.TierInfoInner > .row,
.TicketsInfoInner > .row {
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: top center;
    height: 65px;
    width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-size: 12px;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
    align-items: center;
}

.tier_info.img,
.ticket_info.img {
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: top center;
    height: 60px;
    width: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
}

.tier_info.text,
.ticket_info.text {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
    width: 50vw;
    line-height: 2;
    padding-left: 30px
}

.tier_info.text > .img,
.ticket_info.text > .img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    height: 14px;
    width: 14px;
    position: relative;
    top: 3px;
}

.tier_info.text > .img.lighting {
    background-image: url('../img/lightning.png');
}

.tier_info.text > .img.coin {
    background-image: url('../img/coin.png');
}

#Tier > .img.basic, .tier_info.img.basic {
    background-image: url('../img/tiers/basic.png');
}

#Tier > .img.ruby, .tier_info.img.ruby {
    background-image: url('../img/tiers/ruby.png');
}

#Tier > .img.saphir, .tier_info.img.saphir {
    background-image: url('../img/tiers/saphir.png');
}

#Tier > .img.amber, .tier_info.img.brilliant {
    background-image: url('../img/tiers/brilliant.png');
}

#Tier > .Amount {
    margin-right: 10px;
}

#Increment {
    font-family: "Lato", sans-serif;
    text-align: right;
    float: right;
    color: #50628B;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#Increment > p {
    text-transform: uppercase;
    font-size: 12px;
    color: #859CD0;
}

#Increment > p::after {
    content: ":";
}

#Increment > .AmountBlock {
    background-color: #1A2B4E;
    padding: 0 10px 0 5px;
    border-radius: 10px;
    margin-left: 10px;
}

#Increment > .AmountBlock > div {
    display: inline-block;
}

#Increment > .AmountBlock > .img {
    background-image: url('../img/lightning.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: relative;
    top: 6px;
}

#Increment > .AmountBlock > .Amount {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #859CD0;
}

#Increment > .Amount:before {
    content: "+ ";
}

.info_button {
    text-transform: lowercase;
    font-style: italic;
    font-family: serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: white;
}

/*
**
** TASKS
**
 */
#tasklist > #AvaliableTasksBlock::-webkit-scrollbar,
#tasklist > #CompletedTasksBlock::-webkit-scrollbar {
    display: none;
}

#tasklist > #AvaliableTasksBlock,
#tasklist > #CompletedTasksBlock {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#AvaliableTasksBlock > .banner_small {
    display: block;
    height: 65px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/banners/small/checkin_daily.png');
    margin: 12px 20px;
    background-color: #099BE9;
}

.task {
    position: relative;
    background-color: #1A2B4E;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 20px;
    border: 1px solid #0C1D42;
}

.task.important {
    border: 1px solid #ccc;
}

.task > .img {
    width: 8vw;
    height: 8vw;
    background-image: url('../img/tasks/share.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
}

.task .info {
    flex: 1;
    margin-left: 11vw;
    margin-right: 5px;
}

.task .info h3 {
    margin: 0;
    font-size: 15px;
}

.task .info p {
    font-size: 12px;
    color: #aaa;
    margin: 5px 0 0;
}

.task .reward {
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #0C1D42;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    width: 21vw;
    align-self: normal;
    max-height: 3.5vh !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #3B2E56;
    padding: 10px 10px;
    background-image: none;
    line-height: 1;
    box-sizing: initial;
    align-content: center;
    align-items: center;
}

.task.completed .reward {
    background-color: transparent;
    border: none;
}

.task .reward > div.text {
    flex-grow: 1;
    text-align: center;
}

.task .reward > .img {
    background-image: url('../img/coin.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 28px;
    height: 28px;
}

.task .reward > .img.lighting {
    background-image: url('../img/lightning.png');
}

.task .reward.waiting {
    background-color: #0C1D42;
}

.task .reward.waiting > div {
    display: none;
}

.task .reward.waiting > div.loader {
    height: 15px;
    width: 15px;
    margin: auto;
    flex-basis: auto;
    display: inline-block;
}

.task.template {
    display: none;
}

#AvaliableTasksBlock .daily_checkin,
#AvaliableTasksBlock .invite_tasks {
    padding: 10px;
    margin: 12px 20px;
    background-color: #1A2B4E;
    border-radius: 10px;
    border: 1px solid #0C1D42;
}

#AvaliableTasksBlock .invite_tasks {
    position: relative;
}

#AvaliableTasksBlock .daily_checkin h3,
#AvaliableTasksBlock .invite_tasks h3 {
    margin: 5px 0 15px 15px;
    font-size: 15px;
}

#AvaliableTasksBlock .invite_tasks > .timer {
    position: absolute;
    top: 12px;
    right: 13px;
    background-color: #04DE3B;
    padding: 5px;
    border-radius: 8px;
    font-size: 11px;
    color: #222222;
}

#AvaliableTasksBlock .daily_checkin .daily_checkin_wrapper,
#AvaliableTasksBlock .invite_tasks .invite_tasks_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#AvaliableTasksBlock .daily_checkin .daily_checkin_wrapper::-webkit-scrollbar,
#AvaliableTasksBlock .invite_tasks .invite_tasks_wrapper::-webkit-scrollbar {
    display: none;
}

#AvaliableTasksBlock .daily_checkin .daily_reward,
#AvaliableTasksBlock .invite_tasks .invite_reward {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 85px;
    flex-shrink: 0;
    border: 1px solid #0C1D42;
    border-radius: 8px;
    cursor: pointer;
    background-color: #3B2E56;
    padding: 10px 10px;
    margin-right: 10px;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
}

#AvaliableTasksBlock .daily_checkin .daily_reward.inactive,
#AvaliableTasksBlock .invite_tasks .invite_reward.inactive {
    opacity: 0.35;
}

#AvaliableTasksBlock .daily_checkin .daily_reward .reward,
#AvaliableTasksBlock .invite_tasks .invite_reward .reward {
    font-weight: bold;
}

#AvaliableTasksBlock .daily_checkin .img,
#AvaliableTasksBlock .invite_tasks .img {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    margin: 8px 0;
}

#AvaliableTasksBlock .daily_checkin .img.coin,
#AvaliableTasksBlock .invite_tasks .img.coin {
    background-image: url('../img/coin.png');
}

#AvaliableTasksBlock .daily_checkin .img.energy,
#AvaliableTasksBlock .invite_tasks .img.energy {
    background-image: url('../img/lightning.png');
}

#AvaliableTasksBlock .daily_checkin .img.nft,
#AvaliableTasksBlock .invite_tasks .img.nft {
    background-image: url('../img/nft.png');
}

#AvaliableTasksBlock .daily_checkin .loader,
#AvaliableTasksBlock .invite_tasks .loader {
    position: absolute;
    border: 3px solid white;
}

.InnerMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80vw;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
    position: fixed;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    border-radius: 20px;
}

.InnerMenu > div {
    width: 30vw;
    text-align: center;
    padding: 6px 0;
    background-color: #172240;
    border-radius: 0;
    color: #65708C;
    text-transform: lowercase;
    font-size: 14px;
}

.InnerMenu > div:first-child {
    border-radius: 10px 0 0 10px;
}

.InnerMenu > div:last-child {
    border-radius: 0 10px 10px 0;
}

.InnerMenu > div.active {
    background-color: #4387F4;
    color: #fff;
}

#RedeemCode > .description {
    margin: 5vw;
    font-size: 14px;
    line-height: 1.5;
}

#RedeemCode > input {
    width: 50vw;
    display: block;
    margin: auto;
    height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    background-color: floralwhite;
    border: 1px solid black;
    color: black;
    font-size: 20px;
    text-align: center;
}

#RedeemCode > #redeem_check {
    display: flex;
    width: 50vw;
    height: 40px;
    background-color: #3B2E56;
    vertical-align: middle;
    align-items: center;
    padding: 0 20px;
    justify-content: center;
    margin: 15px auto auto;
    border: 1px solid #0C1D42;
    border-radius: 20px;
    color: #fff;
}

#RedeemCode > #redeem_check.waiting {
    font-size: 0;
    background-color: #0C1D42;
}

#RedeemCode > #redeem_check.waiting > div.loader {
    height: 15px;
    width: 15px;
    margin: auto;
    flex-basis: auto;
    display: inline-block;
}

#RedeemCode > #redeem_result {
    margin: 5vw;
    font-size: 14px;
    line-height: 1.5;
    color: #FF5E9B;
}

.redeem_result.icon {
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 64px;
    height: 64px;
}

.redeem_result.icon.coin {
    background-image: url('../img/coin.png');
}

.redeem_result.icon.lightning {
    background-image: url('../img/lightning.png');
}

.redeem_result.amount {
    font-size: 60px;
}

/*
**
** GAMES
**
 */

.TicketsInfoInner .img.games {
    background-image: url('../img/tasks/game_colored.png');
}

.TicketsInfoInner .img.tickets {
    background-image: url('../img/ticket.png');
}

.TicketsInfoInner .row {
    height: auto;
}

#GamesPage .games_filter {
    height: 32px;
    margin: 0 20px;
}

#GamesPage .games_filter > .tickets {
    font-family: "Lato", sans-serif;
    display: flex;
    text-align: left;
    background-color: #1A2B4E;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
    float: left;
    text-transform: uppercase;
    color: #859CD0;
    cursor: pointer;
    height: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 90px;
}

#GamesPage .games_filter > .tickets > .img {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    background-position: center center;
    border-radius: 12px;
    background-image: url('../img/ticket.png');
}

#GamesPage .games_filter > .tickets > div.amount {
    display: inline-block;
    font-size: 16px;
    color: white;
    flex-grow: 1;
    margin-left: 10px;
}

#GamesPage .games_container {
    margin: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

:root {
    --tile-margin: 10px;
}

#GamesPage .games_container .game_tile {
    width: calc((100% - var(--tile-margin) * 4) / 2);
    height: calc((100% - var(--tile-margin) * 4) / 2);
    margin: var(--tile-margin) 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    border: 1px solid white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#GamesPage .games_container .game_tile.wide {
    width: calc(100% - var(--tile-margin) * 2) !important;
    margin: 5px;
}

#GamesPage .games_container .game_tile .title {
    font-size: 24px;
    color: black;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    margin: 20px;
}

#GamesPage .games_container .game_tile .tickets {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    background-color: rgba(59, 46, 86, 0.8);
    width: 100px;
    border-top-right-radius: 20px;
    border: 1px solid #0C1D42;
}

#GamesPage .games_container .game_tile .tickets .img {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 80% 80%;
    background-position: center center;
    background-image: url('../img/ticket.png');
    margin-right: 5px;
}

#gameScreenOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон для затемнения основного контента */
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Стили для шапки */
#gameScreenHeader {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Стили для кнопки закрытия */
#gameScreenClose {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

/* Стили для iframe */
#gameScreenIframe {
    flex: 1; /* Занимает оставшееся пространство */
    width: 100%;
    border: none;
}

/*
**
** NFT
**
*/

#TonConnectButton {
}

#NFTMyFindings::-webkit-scrollbar {
    display: none;
}

#NFTMyFindings {
    position: absolute;
    bottom: 160px;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#NFTCollection {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 170px);
    padding-bottom: 5px;
    overflow: hidden;
}

#NFTMyWallet {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 170px);
}

#NFTCollection .NFTItemsWrapper {
    flex-grow: 1;
    margin-top: 20px;
}

#NFTCollection .NFTItemsWrapper .swiper {
    height: 100%;
    width: 100%;
}

#NFTCollection .NFTItemsWrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 18px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #3B2E56;
    border: 1px solid black;
}

#NFTCollection .NFTItemsWrapper .swiper-slide > .content {
    flex-grow: 1;
    margin: 0 20px;
    line-height: 16px;
    /* margin-top: 20px;*/
}

#NFTCollection .NFTItemsWrapper .swiper-slide .img.nft_boosts {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://shkipper.online/handlers/images/PenguinThumb/128/EfHXsFTd");
    margin: 20px 0;
    transform: scaleX(-1);
}

#NFTCollection .NFTItemsWrapper .swiper-slide .button_getgems {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://shkipper.online/WebApp/img/getgems_button.png");
    border-radius: 40px;
    border: 1px solid #eeeeee;
    width: 150px;
    height: 150px;
}


#NFTCollection .NFTItemsWrapper .swiper-slide > p.title {
    font-size: 22px;
    margin: 20px 0 0 0;
}

#NFTCollection .NFTItemsWrapper .swiper-slide > .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://shkipper.online/handlers/images/PenguinThumb/256/EfHXsFTd");
    flex-grow: 1;
    height: 100%;
    width: 100%;
    margin: 30px;
}

#NFTCollection .NFTItemsWrapper .swiper-slide > .superpower {
    font-size: 24px;
}

#NFTCollection .NFTItemsWrapper .swiper-slide > .superpower > .img {
    display: inline-block;
    height: 32px;
    width: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    margin: 0 4px;
    top: 7px;
    left: 6px;
}

#NFTCollection .swiper-slide > .superpower > .img.coins {
    background-image: url('../img/coin.png');
}

#NFTCollection .swiper-slide > .superpower > .img.energy {
    background-image: url('../img/lightning.png');
}

#NFTCollection .swiper-slide > .superpower > .img.swipes {
    background-image: url('../img/star.png');
}

#NFTMyWallet {
    position: absolute;
    top: 0;
}

#NFTMyWallet .WalletPageWrapper {
    flex-grow: 1;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#NFTMyWallet #WalletBlock {
    width: calc(100% - 50px);
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    margin-top: 20px;
    background-image: url('../img/wallet.png');
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 10px center;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
}

#NFTMyWallet #TokensDistributionBlock {
    width: calc(100% - 50px);
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    background-image: url(../img/SHKIP.png);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 10px center;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
    flex-direction: column;
    padding: 20px 0;
    position: relative;
}

#NFTMyWallet #TokensDistributionBlock .row {
    margin: 5px 20px 5px 50px;
    display: flex;
    justify-content: space-between;
}

#NFTMyWallet #TokensDistributionBlock > .row > .sent,
#NFTMyWallet #TokensDistributionBlock > .row > .next-amount,
#NFTMyWallet #TokensDistributionBlock > .row > .jetton-address {
    background-image: url(../img/SHKIP.png);
    background-position: center right;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    padding-right: 24px;
}

#NFTMyWallet #TokensDistributionBlock > .row > .jetton-address {
    background-image: url(../img/copy.png);
}

#NFTMyWallet #TokensDistributionBlock > .row > .current-price::before {
    content: "$";
    margin-right: 5px;
}

#NFTMyWallet #TokensDistributionBlock .loaderWrapper {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    z-index: 2;
}

#NFTMyWallet #TokensDistributionBlock .loaderWrapper {
    display: none;
}

#NFTMyWallet #TokensDistributionBlock .loaderWrapper:has(>.loader) {
    display: block;
}

#NFTMyWallet #TokensDistributionBlock .loaderWrapper .loader {
    left: calc(50% - 32px);
    position: absolute;
    top: 32px;
}

#NFTMyWallet #WalletBlock .address {
    display: block;
    flex-grow: 1;
    padding-left: 50px;
}

#NFTMyWallet #WalletBlock .button {
    padding: 19px 10px;
    border-radius: 10px;
    margin: 10px;
    font-family: "Codec cold", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    border: 0;
    box-sizing: border-box;
    color: #65708C;
    cursor: pointer;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 30px !important;
    background-color: #172240;
    box-shadow: none;
    background-image: none;
}

#NFTMyWallet #WalletBlock.Connect .address {
}

#NFTMyWallet #WalletBlock.Connect .button {
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    text-align: center;
    margin: auto;
}

#NFTMyWallet #Stacking {
    width: calc(100% - 50px);
    font-size: 13px;
}

#NFTMyWallet #Stacking h2 {
    text-align: left;
    font-size: 18px;
    margin: 10px 0;
}

#NFTMyWallet #Stacking h3 {
    margin: 5px 0;
}


#NFTMyWallet #Stacking .AmountSlider {
    background-color: #172240;
    margin: 10px 0;
}

#NFTMyWallet #Stacking .InvestmentAmountValue {
    color: #5FECF3;
}

#NFTMyWallet #Stacking .AmountSlider > span {
    background-color: rgb(67, 135, 244);
    border-radius: 6px;
}

#NFTMyWallet #Stacking .accent {
    color: #5FECF3;
}

#NFTMyWallet #Stacking .button {
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    max-width: 100%;
    border-radius: 10px;
    padding: 0;
    margin: 10px;
    font-family: "Codec cold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    height: 38px !important;
    border: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#NFTMyWallet #Stacking .button.tapped {
    background-color: #555555;
    background-image: none;
    color: #777777;
}

#NFTMyWallet #Stacking .button > span {
    margin: 0 5px;
}

#NFTMyFindings .filters {
    display: flex;
    margin: 10px 30px 0 30px;
}

.nice-select.rarity {
    width: 120px;
}

.nice-select.superpower {
    width: 150px;
    margin-left: 20px;
}

.nice-select.powerlevel {
    margin-left: 20px;
    width: 80px;
}

.nice-select {
    color: black;
}

.nice-select .option {
    color: black;
}

#NFTMyFindings .NFTMyFindingsWrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

#NFTMyFindings .NFTMyFindingsWrapper > .loader {
    margin-top: 25vh;
}

#NFTMyFindings .NFTMyFindingsWrapper > .item {
    width: 30vw;
    height: 30vw;
    margin: 10px 0;
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 50%;
    position: relative;
    background-image: url('../img/shadow_thumb.png');
}

#NFTMyFindings .NFTMyFindingsWrapper > .item.nft {
    opacity: 100%;
}


#NFTMyFindings .NFTMyFindingsWrapper > .item.found {
    /*
    opacity: 100%;
    border: 1px solid #0C1D42;
    border-radius: 8px;
    cursor: pointer;
    background-color: #3B2E56;
     */
}

#NFTMyFindings .NFTMyFindingsWrapper > .item > .price {
    position: absolute;
    bottom: 10px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #0088CC;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px center;
    opacity: 100%;
    background-image: url(../img/ton-logo.png);
    border-radius: 10px;
    border: 1px solid black;
    padding: 5px 5px 5px 35px;
    font-weight: bold;
    text-shadow: 0 0 2em white, 0 0 0.3em black;
}

#NFTMyFindings .NFTMyFindingsWrapper > .item.found > .badge {
    background-color: #3B2E56;
    border: 1px solid #0C1D42;
    padding: 4px 8px;
    font-size: 15px;
    border-radius: 6px;
    float: right;
}

#NFTMyFindings .NFTMyFindingsWrapper > .item.notfound {
    opacity: 15%;
}

#NFTCombos {
    position: absolute;
    bottom: 160px;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#NFTCombos .NFTCombosWrapper .combo-item {
    padding: 10px;
    margin: 12px 20px;
    background-color: #1A2B4E;
    border-radius: 10px;
    border: 1px solid #0C1D42;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .title {
    font-size: 16px;
    margin-left: 10px;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .reward {
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #0C1D42;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    align-self: normal;
    max-height: 3.5vh !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #3B2E56;
    padding: 10px 10px;
    background-image: none;
    line-height: 1;
    box-sizing: initial;
    align-content: center;
    align-items: center;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .reward > .loader {
    margin-right: 10px;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .reward > .text {
    margin-right: 5px;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .reward > .img {
    background-image: url(../img/coin.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 28px;
    height: 28px;
}

#NFTCombos .NFTCombosWrapper .combo-item > .header > .reward > .img.lighting {
    background-image: url(../img/lightning.png);
}


#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item {
    flex: 0 0 auto;
    min-width: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #0C1D42;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 10px;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #3a9679 40%, #44bd8d);
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.inactive {
    background: #3B2E56 none;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.cols2 { width: calc(50%);}
#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.cols3 { width: calc(33% - 10px);}
#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.cols4 { width: calc(25% - 20px);}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item::after {
    content: "";
    width: 30px;
    height: 30px;
    background:  url("../img/done.png") no-repeat center;
    background-size: contain;
    top: 5px;
    left: 5px;
    position: absolute;
    display: inline-block;
}


#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.inactive::after {
    background: none;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.inactive > .img,
#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.inactive > .penguin-name {
    opacity: 0.35;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item.inactive > .button {
    position: absolute;
    opacity: 0.7;
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px;
    border: #fff;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item > .img {
    height: 100px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#NFTCombos .NFTCombosWrapper .combo-item > .items_wrapper > .item > .penguin-name {
    margin-top: 5px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

#NFTCombos .combo-item.template {
    display: none;
}

#NFTCombos .NFTCombosWrapper .combo-item.claimed {
    background: linear-gradient(135deg, #3a9679 40%, #44bd8d);
}

#NFTCombos .NFTCombosWrapper .combo-item.claimed .items_wrapper {
    display: none;
}

#NFTCombos .NFTCombosWrapper .combo-item.claimed .header .reward span.claim {
    display: none;
}

#NFTCombos .NFTCombosWrapper .combo-item.claimed > .header > .reward {
    background: transparent;
}

/*
**
** COMMUNITY
**
*/

#CommunityFriends::-webkit-scrollbar,
#CommunityTeam::-webkit-scrollbar,
#CommunityLeaderboard::-webkit-scrollbar {
    display: none;
}

#CommunityFriends,
#CommunityTeam,
#CommunityLeaderboard {
    position: absolute;
    bottom: 160px;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#NoFriendsBlock {
    width: 100vw;
    top: 0;
    height: 80vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#NoFriendsBlock > .text {
}

#NoFriendsBlock > .button {
    width: 30vw;
    text-align: center;
    padding: 12px 20px;
    margin: 35px auto;
    background-color: #4387F4;
    border: 1px solid #000;
    border-radius: 20px;
}

#NoFriendsBlock > .link {
    color: #4387F4;
    font-size: 14px;
}

#NoFriendsBlock.embedded {
    position: static;
    height: unset;
    flex-direction: row;
    margin: 10px auto;
    align-items: center;
    width: calc(100vw - 40px);
    justify-content: space-between;
}

#NoFriendsBlock.embedded .text {
    display: none;
}

#NoFriendsBlock.embedded > .button {
    text-align: center;
    background-color: #4387F4;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 10px 0;
    min-width: 45% !important;
    margin: 0;
    white-space: nowrap;
}

#FriendsList,
#CommunityTeam,
#CommunityList {
    overflow-y: scroll;
}

#FriendsList > .FriendItem {
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
    padding: 10px;
    margin: 12px 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
}

#FriendsList > .FriendItem > .avatar {
    width: 8vw;
    height: 8vw;
    border: 1px solid #fff;
    border-radius: 4vw;
    background-size: contain;
    background-image: url('../img/avatar-default.png');
    background-repeat: no-repeat;
    background-position: center;
}

#FriendsList > .FriendItem > .name {
    margin-left: 20px;
    font-size: 18px;
    flex-grow: 1;
}

#FriendsList > .FriendItem > .reward {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    align-self: normal;
    max-height: 3.5vh !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 5px 10px 15px;
}

#FriendsList > .FriendItem > .reward > .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#FriendsList > .FriendItem > .reward > .row > .text {
    flex-grow: 1;
    text-align: right;
    margin-right: 10px;
}

#FriendsList > .FriendItem > .reward > .row > .img {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

#FriendsList > .FriendItem > .reward > .row.coins > .img {
    background-image: url('../img/coin.png');
}

#FriendsList > .FriendItem > .reward > .row.energy > .img {
    background-image: url('../img/lightning.png');
}

#FriendsList > .FriendItem.template {
    display: none;
}

#FriendsList > .loader {
    margin: 20px auto 20px auto;
    border: 3px solid #fff;
}

#CommunityTeam .ShkipperTeamSetup {
    position: relative;
    margin: 12px 20px;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-y: scroll;
    height: calc(100vh - 300px);
}

#CommunityTeam .ShkipperTeamSetup > h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

#CommunityTeam .ShkipperTeamSetup > h3 {
    font-size: 15px;
    font-weight: bold;
}

#CommunityTeam .ShkipperTeamSetup > .content {
    flex-grow: 1;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
    justify-content: space-around;
    width: 100%;
    flex-direction: column;
    margin-bottom: 15px;
}

#CommunityTeam .ShkipperTeamSetup .step {
    position: absolute;
    bottom: 10px;
    left: 10px;
}


#CommunityTeam .DashboardItem {
    border-radius: 10px;
    margin: 12px 20px;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
    padding: 10px 10px 10px 20px;
}

#CommunityTeam .DashboardItem .MainInfo {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

#CommunityTeam .DashboardItem .MainInfo .entity {
    font-size: 18px;
    flex-grow: 1;
}

#CommunityTeam .DashboardItem .MainInfo p {
    margin: 0;
    padding: 0;
}

#CommunityTeam .DashboardItem .MainInfo p.subtext {
    font-size: 12px;
    margin-top: 10px;
    color: #859CD0;
}

#CommunityTeam .DashboardItem .MainInfo .entity > p.info_button {
    border-radius: 50%;
    margin-left: 8px;
    background: #4387F4;
    width: 20px;
    height: 20px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#CommunityTeam .DashboardItem .MainInfo .reward {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    width: 25vw;
    align-self: normal;
    max-height: 3.5vh !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 10px;
}

#CommunityTeam .DashboardItem .MainInfo .reward > .text {
    flex-grow: 1;
    text-align: center;
}

#CommunityTeam .DashboardItem .MainInfo .reward > .text::before {
    content: "+ ";
}

#CommunityTeam .DashboardItem.Referals .MainInfo .reward > .text {
    text-align: right;
    font-size: 24px;
}

#CommunityTeam .DashboardItem.Referals .MainInfo .reward > .text::before {
    content: '';
}

#CommunityTeam .DashboardItem .MainInfo .reward > .img {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 28px;
    height: 28px;
    position: relative;
    top: -3px;
    left: 5px;
}

#CommunityTeam .DashboardItem .MainInfo .reward > .img {
    background-image: url('../img/coin.png');
}

#CommunityTeam .DashboardItem .MainInfo .reward > .img.lighting {
    background-image: url('../img/lightning.png');
}

#CommunityTeam .DashboardItem .MainInfo .reward > .img.ton {
    background-image: url('../img/ton-logo.png');
}

#CommunityTeam > .DashboardItem.template {
    display: none;
}

#CommunityTeam .DashboardItem .LevelInfo {
    font-size: 12px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#CommunityTeam .DashboardItem .LevelInfo .ProgressBar {
    background-color: #aaa;
    height: 8px;
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

#CommunityTeam .DashboardItem .LevelInfo .ProgressBar > div {
    background-color: #4387F4;
    height: 8px;
    flex-grow: 1;
    width: 80%;
}

#CommunityLeaderboardInner {
    display: flex;
    flex-direction: row;
}

#CommunityLeaderboardInnerList {
    flex-grow: 1;
}

#CommunityLeaderboardInnerList > .row {
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
    padding: 10px;
    margin: 12px 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #1A2B4E;
    border: 1px solid #0C1D42;
}

#CommunityLeaderboardInnerList > .row.current {
    border: 1px solid #F5A620;
    color: #F5A620;
}

#CommunityLeaderboardInnerList > .row > .position {
    margin: 5px 10px;
}

#CommunityLeaderboardInnerList > .row > .position::after {
    content: ".";
}

#CommunityLeaderboardInnerList > .row > .username {
    flex-grow: 1;
}

#CommunityLeaderboardInnerListMenu {
    width: 14vw;
}

#CommunityLeaderboardInnerListMenu > div {
    width: 10vw;
    height: 10vw;
    margin: 10px 0;
    background-repeat: no-repeat;
    background-size: 60% 60%;
    background-position: center center;
    background-color: #3B2E56;
    border: 1px solid black;
    border-radius: 12px;
}

#CommunityLeaderboardInnerListMenu > div.active {
    border: 1px solid #fff;
}

#CommunityLeaderboardInnerListMenu > div.coin {
    background-image: url('../img/coin.png');
}

#CommunityLeaderboardInnerListMenu > div.increase {
    background-image: url('../img/lightning.png');
}

#CommunityLeaderboardInnerListMenu > div.invited {
    background-image: url('../img/menu-friends.png');
}


.footer {
    position: fixed;
    bottom: 30px;
    left: 5%;
    width: 90%;
    height: 62px;
    background-color: #0C1D42;
    text-align: center;
    border-radius: 15px;
    z-index: 1;
}

.nav {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
}

.nav-link {
    width: 25%;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    color: #7A8FBF;
    display: flex;
    align-self: flex-end;
    height: 100%;
    margin: -2px;
    justify-content: center;
    flex-direction: column;
    border: 2px solid transparent;
}

.nav-link > .img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 24px;
    width: 100%;
    overflow: hidden;
    transform: translateY(-4px);
}

.nav-link > .text {
    position: relative;
    top: 4px;
}

.nav-link.home > .img {
    background-image: url('../img/menu-home.png');
}

.nav-link.tasklist > .img {
    background-image: url('../img/menu-tasks.png');
}

.nav-link.games > .img {
    background-image: url('../img/menu-games.png');
}

.nav-link.nft > .img {
    background-image: url('../img/menu-nft.png');
}

.nav-link.community > .img {
    background-image: url('../img/menu-friends.png');
}

.nav-link.active {
    background-image: linear-gradient(180deg, #0F274B, #2CA6B1);
    -webkit-mask-image: -webkit-gradient(linear, left 90%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));

    border: 2px solid #5FECF3;
    border-radius: 10px;
    color: #ffffff;
}

.nav-link.home.active > .img {
    background-image: url('../img/menu-home-a.png');
}

.nav-link.tasklist.active > .img {
    background-image: url('../img/menu-tasks-a.png');
}

.nav-link.games.active > .img {
    background-image: url('../img/menu-games-a.png');
}

.nav-link.nft.active > .img {
    background-image: url('../img/menu-nft-a.png');
}

.nav-link.community.active > .img {
    background-image: url('../img/menu-friends-a.png');
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #514b82;
    animation: l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }
    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }
    49.99% {
        transform: scaleY(1) rotate(135deg)
    }
    50% {
        transform: scaleY(-1) rotate(0deg)
    }
    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

#HTMLPopup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border-radius: 30px;
    border: 2px solid black;
    color: black;
    justify-content: space-between;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    box-sizing: border-box;
    margin: auto;
}

#HTMLPopup.hidden {
    display: none;
}

#HTMLPopup > .cross-close {
    font-size: 64px;
    position: absolute;
    top: 10px;
    right: 10px;
    rotate: 45deg;
    height: 48px;
    width: 48px;
    text-align: center;
    vertical-align: middle;
    line-height: 48px;
    z-index: 1050;
}

#HTMLPopup > * {
    z-index: 102;
}

#HTMLPopup > .title {
    font-size: 35px;
    margin-bottom: 35px;
    font-weight: 500;
    padding-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
}


#HTMLPopup > .buttons {
    width: 100%;
}

#HTMLPopup > .buttons > * {
    background-color: #00A5E3;
    border-radius: 10px;
    padding: 0;
    margin: 10px;
    font-family: "Codec cold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    height: 54px;
    border: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#HTMLPopup > .buttons > * > .loader {
    position: absolute;
    left: calc(50% - 25px);
    border: 3px solid #fff;
    width: 30px;
    height: 30px;
}

#HTMLPopup > .buttons > * .minipic {
    display: inline-block;
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    top: 0;
    margin: 0 4px;
}

#HTMLPopup > .buttons > * .minipic.coin {
    background-image: url('../img/coin.png');
}

#HTMLPopup > .buttons > .default {
    background-image: linear-gradient(#0dccea, #0d70ea);
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px;
    padding: 19px 24px;
}

#HTMLPopup > .buttons > .red {
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
}

#HTMLPopup > .buttons > .tapped {
    background-color: #555555;
    background-image: none;
    color: #777777;
}

#HTMLPopup > .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
    overflow-y: scroll;
}

#HTMLPopup.frame > .body {
    flex-grow: 1;
}

#HTMLPopup > .body.classic {
    background-color: #3B2E56;
    border-radius: 40px;
    border: 1px solid black;
    opacity: 0.95;
}

#HTMLPopup .small_text {
    display: block;
    margin: 10px 0;
    font-size: 12px;
    font-weight: bold;
    color: #7A8FBF;
}

#Fireworks {
    display: none;
    z-index: 150;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.loader.onboarding {
    width: 100px;
    margin-bottom: 50px;
    border: 5px solid #000;
}

:root {
    --transparent: oklch(0 0 0 / 0%);
    --purple-300: oklch(0.71 0.12 280);
}

.onboarding-container {
    position: relative;
    z-index: 1;
    width: 80vw;
    height: 70vh;
    --color_rgb: 20, 36, 62;
    padding: 20px 0 20px 0;
}

.onboarding-container > .slide {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.onboarding-container > .slide[data-slide="1"] > .coin {
    width: 96px;
    height: 96px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    background-image: url('../img/coin.png');
}

.onboarding-container > .slide[data-slide="1"] > .title {
    font-size: 32px;
    text-align: center;
}

.onboarding-container > .slide[data-slide="1"] > .amount {
    font-size: 60px;
}

.onboarding-container > .slide .text > .button {
    margin: 12px 0;
}

.onboarding-container > .slide .link {
    position: relative;
    border-bottom: 1px dashed black;
    padding: 0 0 3px 0;
}

.onboarding-container > .slide .link::after {
    content: " ➜";
}

.onboarding-container > .slide > .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
}

.onboarding-container > .slide > .row > .img {
    height: 48px;
    width: 48px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin-right: 30px;
    flex-shrink: 0;
}

.onboarding-container > .slide > .row > .img.coin {
    background-image: url('../img/coin.png');
}

.onboarding-container > .slide > .row > .img.lighting {
    background-image: url('../img/lightning.png');
}

.onboarding-container > .slide > .row > .img.star {
    background-image: url('../img/star.png');
}

.onboarding-container > .slide > .row > .img.swipe {
    background-image: url('../img/swipe-hand.png')
}

.onboarding-container > .slide > .row > .img.rocket {
    background-image: url('../img/tasks/age_bonus.png')
}

.onboarding-container > .slide > .row > .text {
    font-size: 14px;
}

.onboarding-container > .slide > .row > .text > p {
    margin-bottom: 8px;
    margin-top: 0;
}


.onboarding-container .minipic {
    display: inline-block;
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    top: 4px;
    margin: 0 4px;
}

.onboarding-container .link .minipic {
    top: 2px;
}


.onboarding-container .minipic.coin {
    background-image: url('../img/coin.png');
}

.onboarding-container .minipic.lighting {
    background-image: url('../img/lightning.png');
}

.onboarding-container .minipic.star {
    background-image: url('../img/star.png');
}

.username_task_onboarding {
    display: flex;
    align-content: space-between;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
}

.username_task_onboarding > .img {
    background-image: url('../img/penguin_in_name.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 105;
    height: 20vh;
    width: 100%;
    margin: auto;
    background-position-x: center;
}


.hidden {
    display: none;
    visibility: hidden;
}

.vhidden {
    visibility: hidden;
}

.transparent {
    opacity: 0;
}

#CoolMark {
    position: absolute;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-size: 32px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.5);
}

#CoolMark.show {
    visibility: visible;
    opacity: 0.7;
    transform: scale(4);
    transition: transform 1s, opacity 1s;
}

.scrollable::-webkit-scrollbar {
    display: none;
}

.scrollable {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#InfoSmallBlock {
    position: fixed;
    top: 10px;
    left: 10vw;
    right: 10vw;
    width: 80vw !important;
    background-color: rgba(4, 222, 59, 0.77);
    z-index: 50;
    min-height: 18px;
    text-align: center;
    padding: 5px 0;
    border-radius: 20px;
    font-size: 13px;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

#InfoSmallBlock .bg-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1;
    background-color: rgba(4, 222, 59, 0.99);
    z-index: -1;
    transition: width 0.3s ease;
}

#InfoSmallBlockContent {
    color: #222;
}

#InfoSmallBlock > .loader {
    width: 10px;
    height: 10px;
}

#InfoBlockPopupBody {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#InfoBlockPopupBody .text > .button {
    margin: 12px 0;
}

#InfoBlockPopupBody > .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
}

#InfoBlockPopupBody > .separator {
    width: 80%;
    height: 2px;
    border-bottom: 1px dashed black;
    margin-bottom: 10px;
    margin-top: 3px;
}

#InfoBlockPopupBody .row > .img {
    height: 48px;
    width: 48px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin-right: 30px;
    flex-shrink: 0;
}

#InfoBlockPopupBody .row > .txt-left {
    height: 48px;
    width: 48px;
    flex-shrink: 0;
    font-size: 24px;
}


#InfoBlockPopupBody > .row > .text > p {
    margin-bottom: 8px;
    margin-top: 0;
}

#NFTItemPopup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 30px;
    border: 2px solid black;
    color: black;
    justify-content: space-around;
}

#NFTItemPopup > .cross-close {
    font-size: 64px;
    position: absolute;
    top: 10px;
    right: 10px;
    rotate: 45deg;
    height: 48px;
    width: 48px;
    text-align: center;
    vertical-align: middle;
    line-height: 48px;
}

#NFTItemPopup > .title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
}

#NFTItemPopup > .img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 30vh;
    width: 30vh;
}

#NFTItemPopup > .description_wrapper {
    margin: 10px 30px;
    position: absolute;
    background-color: white;
    border: 2px solid black;
    width: calc(90% - 80px);
    height: calc(80% - 80px);
    border-radius: 25px;
    padding: 40px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1000;
}

#NFTItemPopup > .description_wrapper > .description {
    overflow-y: scroll;
}

#NFTItemPopup > .description_link {
    font-weight: bold;
    border-bottom: 2px dashed black;
    font-size: 18px;
    margin: 10px 30px 15px;
}

#NFTItemPopup .reward {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 30px;
    display: flex;
    align-items: center;
    text-align: center;
}

#NFTItemPopup .reward > .text {
    font-size: 24px;
}

#NFTItemPopup .reward > .img {
    display: inline-block;
    height: 48px;
    width: 48px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    margin: 0 4px;
}

#NFTItemPopup .reward > .img.coins {
    background-image: url('../img/coin.png');
}

#NFTItemPopup .reward > .img.energy {
    background-image: url('../img/lightning.png');
}

#NFTItemPopup .reward > .img.swipes {
    background-image: url('../img/star.png');
}

#NFTItemPopup > .meta {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

#NFTItemPopup > .meta > div {
    width: 40%;
    color: #0C1D42;
    font-weight: bold;
    margin-bottom: 20px;
}

#NFTItemPopup > .meta > div > .value {
    color: black;
    font-weight: normal;
}

#NFTItemPopup > .buttons {
    width: 100%;
}

/* Базовый класс для всех кнопок внутри #NFTItemPopup > .buttons */
#NFTItemPopup > .buttons > * {
    background-color: #00A5E3;
    border-radius: 10px;
    padding: 0;
    margin: 10px;
    font-family: "Codec cold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    height: 54px;
    border: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#NFTItemPopup > .buttons > * > .loader {
    position: absolute;
    left: calc(50% - 25px);
    border: 3px solid #fff;
    width: 30px;
}

#NFTItemPopup > .buttons > * > .logo {
    background-repeat: no-repeat;
    background-image: url('../img/tasks/instagram.png');
    background-size: contain;
    height: 32px;
    width: 32px;
}

#NFTItemPopup > .buttons > * > .label {
    flex-grow: 1;
    position: relative;
    left: -10px;
}

#NFTItemPopup > .buttons > .stars {
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
}

#NFTItemPopup > .buttons > .stars > .logo {
    background-image: url('../img/telegram-stars.png');
}

#NFTItemPopup > .buttons > .ton {
    background-image: linear-gradient(#0dccea, #0d70ea);
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px;
    padding: 19px 24px;
}

#NFTItemPopup > .buttons > .ton > .logo {
    background-image: url('../img/ton-logo.png');
}

#NFTItemPopup > .buttons > .getgems {
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    max-width: 100%;
    min-width: 140px;
    padding: 19px 24px;
    white-space: nowrap;
}

#NFTItemPopup > .buttons > .getgems > .logo {
    background-image: url('../img/getgems-logo.png');
}

#NFTItemPopup > .buttons > .tapped {
    background-color: #555555;
    background-image: none;
}

.prime-button {
    position: absolute;
    width: 20vw;
    font-size: 15px;
    text-align: center;
    background-color: black;
    padding: 10px;
    border-radius: 15px;
    top: 20px;
    right: 10vw;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 0, 0.7);
}

.transition_basic {
    transition: 600ms ease-in-out;
    -webkit-transition: 600ms ease-in-out;
}


.global_banner.img {
    background-image: url('https://Shkipper.online/files/banners/InvitesContest.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 80vw;
    height: 80vw;
}

.LightGlow {
    -webkit-filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.1));
drop-shadow(0 px 0 px 20 px rgba(255, 255, 255, 0.1))
}

.WhiteGlow {
    -webkit-filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5));
drop-shadow(0 px 0 px 20 px rgba(255, 255, 255, 0.5))
}

.YellowGlow {
    -webkit-filter: drop-shadow(0px 0px 20px rgba(255, 255, 0, 0.5));
drop-shadow(0 px 0 px 20 px rgba(255, 255, 0, 0.5))
}

.BlueGlow {
    -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 255, 0.5));
drop-shadow(0 px 0 px 20 px rgba(0, 0, 255, 0.5))
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Стили для загрузчика */
.loader-content {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-radius: 50%;
    box-sizing: border-box;
    animation: pulse 1s linear infinite;
    position: relative;
}

.loader-content:after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-radius: 50%;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    60%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulse {
    0%, 60%, 100% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.2);
    }
}

#popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border-radius: 30px;
    border: 2px solid black;
    color: black;
    justify-content: space-between;
    width: calc(60% - 40px);
    min-height: 20vh;
    max-height: 60vh;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

#popup.hidden {
    display: none;
}

#popup > * {
    z-index: 999;
}

#popup > .title {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin: 20px 30px 0 30px;
}

#popup > .text {
    margin: 20px;
}

#popup > .buttons {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid black;
}

#popup > .buttons > * {
    width: 100%;
    background-color: #00A5E3;
    padding: 0;
    font-family: "Codec cold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    height: 54px;
    border: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#popup > .buttons > .no {
    background-color: transparent;
    color: #000;
}


#popup > .buttons > * > .loader {
    position: absolute;
    left: calc(50% - 25px);
    border: 3px solid #fff;
    width: 30px;
    height: 30px;
}

#popup > .buttons > .default {
    background-image: linear-gradient(#0dccea, #0d70ea);
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px;
    padding: 19px 24px;
}

#popup > .buttons > .red {
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
}

#popup > .buttons > .tapped {
    background-color: #555555;
    background-image: none;
    color: #777777;
}

#popup > .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
    overflow-y: scroll;
}

#popup.frame > .body {
    flex-grow: 1;
}