
/* =========================================
   GLOBAL / RESET
========================================= */

@font-face{
    font-family: "SWRounded";

    src: url("/assets/shared/fonts/ArialRoundedMTBold.ttf")
    format("truetype");
}

html,
body{
    width: 100%;
    overflow-x: hidden;
    user-select: none;
}

*{
   font-family: Arial, Helvetica, sans-serif;
   margin: 0;
   padding: 0;
   text-decoration: none;
   box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #F7F7F7;
    font-family: Arial;
    overflow-x: hidden;
    padding-top: 110px;
}

form{
    margin: 0;
    width: 100%;
}

.input-box {
    position: relative;
}

.input-box .icon_email {
    position: absolute;
    left: 12px;
    top: 50%;

    transform: translateY(-50%);

    width: 18px;
    height: 12px;

    pointer-events: none;
}

.input-box .icon_password {
    position: absolute;
    left: 12px;
    top: 50%;

    transform: translateY(-50%);

    width: 16px;
    height: 16px;

    pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.top-header{
    width: 100%;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 120px;

    background-color: #f2ffff;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* LOGO */
.logo{
    width: 240px;
    height: auto;
    position: relative;
    left: 150px;
    transition: transform 0.3s ease;
}

.logo:hover{
    transform: scale(1.05);
}

.forum-nav{
    display: flex;

    gap: 30px;

    margin-left: 100px;
}

.forum-nav a{
    color: #2d7990;

    font-weight: bold;

    font-size: 16px;

    text-decoration: none;
}

.forum-nav a:hover{
    color: #94B509;
}



/* =========================================
   LOGIN FORM
========================================= */

.login-form{
    display: flex;
    flex-direction: column;

    position: relative;
    left: 50px;
}

.login-top-row{
    display: flex;
    align-items: center;
    transform: translateY(10px);   
    gap: 12px;
    position: relative;
    z-index: 9999;
}

.login-bottom-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 18px;

    width: 100%;
}

.remember-me{
    position: absolute;
    left: 5px;
    top: -2px;

    font-size: 13px;

    color: black;

    display: flex;
    align-items: center;

    gap: 6px;
}

.remember-me input{
    display: none;
}

.custom-checkbox{
    width: 15px;
    height: 15px;

    background: white;

    border: 1px solid #03C7DE;
    border-radius: 3px;

    position: relative;
}

.custom-checkbox::after{
    content: "";

    position: absolute;

    left: 3px;
    top: 0px;

    width: 4px;
    height: 8px;

    border: solid #03C7DE;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg);

    opacity: 0;
}

.remember-me input:checked + .custom-checkbox::after{
    opacity: 1;
}

.remember-me,
.forgot-password{
    z-index: 1;
}

.forgot-password{
    position: absolute;

    top: -2px;
    left: 238px;

    font-size: 13px;

    color: rgb(10, 209, 231)
}

.forgot-password:hover{
    color: #94B509
}

/* FIELD ERRORS */

.field-error{
    position: absolute;

    pointer-events: none;

    top: 52px;

    left: 0;

    background:
        linear-gradient(
            to bottom,
            #ff8f8f,
            #d83d3d
        );

    color: white;

    border: 1px solid #a91f1f;

    border-radius: 8px;

    padding:
        8px
        12px;

    font-size: 12px;

    font-weight: bold;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 2px 4px rgba(0,0,0,0.25);

    z-index: 99999;

    display: none;

    white-space: nowrap;
}

.field-error::before{
    content: "";

    position: absolute;

    top: -8px;

    left: 18px;

    border-left: 8px solid transparent;

    border-right: 8px solid transparent;

    border-bottom: 8px solid #d83d3d;
}

/* LOGIN FAILURE */

.login-failed-popup{
    position: absolute;

    pointer-events: none;

    top: 55px;

    left: 0;

    background:
        linear-gradient(
            to bottom,
            #ff8f8f,
            #d83d3d
        );

    color: white;

    border: 1px solid #a91f1f;

    border-radius: 8px;

    padding:
        6px
        10px;

    font-size: 12px;

    font-weight: bold;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 2px 4px rgba(0,0,0,0.25);

    z-index: 99999;

    display: none;

    white-space: nowrap;
}

.login-failed-popup::before{
    content: "";

    position: absolute;

    top: -9px;

    left: 18px;

    border-left: 8px solid transparent;

    border-right: 8px solid transparent;

    border-bottom: 8px solid #d83d3d;
}

.login-form{
    position: relative;

    z-index: 2000;
}

.field-error,
.login-failed-popup{
    position: absolute;
}

/* INPUTS */
.input-box input{
    width: 220px;
    height: 42px;
    padding-left: 42px;
    background: white;

    color: grey;

    border: 2px solid #03C7DE;
    border-radius: 8px;

    outline: none;
}

/* PLACEHOLDER */
.input-box input::placeholder{
    color: #8b8b8b;
    
}

.input-box input:focus{
    background-color: #fffef0;

    border-color: #03C7DE;

    box-shadow: 0px 0px 5px rgba(3,221,249,.7);
	line-height: 26px;
}

/* LOGIN BUTTON */
.login-button{
    height: 42px;
    margin-left:0px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #03b5c9;
    border-radius: 8px;

        background-color: #03C7DE;

    color: white;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    position: relative;
}

.login-button:hover{
    background-color: rgb(3, 222, 247);
    border-color: #03b5c9;
}

.login-button:active{
    background-color: #03C7DE;
    border-color: #03b5c9;
}

/* JOIN BUTTON */
.join-button{
    height: 42px;
    margin-left: 0px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #47a403;
    border-radius: 8px;

    background-color: #57b413;

    color: white;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    position: relative;
}

.join-button:hover{
    background-color: #6fcb2d;

    border-color: #5cb51d;
}

.join-button:active{
    background-color: #57b413;

    border-color: #5cb51d;
}


/* =========================================
   HERO SLIDESHOW
========================================= */

.hero-image{
    width: 100%;
    height: 420px;

    position: relative;

}

.hero-slide{
    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity 1s ease-in-out;
}

.hero-slide.active{
    opacity: 1;

    z-index: 1;
}

.hero-slide img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.hero-overlay{
    position: absolute;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    height: 100%;
    width: auto;

    z-index: 5;

    pointer-events: none;
}

.hero-characters{
    position: absolute;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    height: 97.8%;
    width: auto;

    z-index: 5;

    pointer-events: none;
}

.header-divider-two{
    width: 100%;
    height: 20px;

    background-color: #2d7990;
    top: 80px;
    left: 0;

    z-index: 999;
}

.sw-join-button{
    display: block;

    position: absolute;

    left: 50%;
    bottom: -52px;

    transform: translateX(-50%);

    width: 335px;
    height: 86px;

    overflow: hidden;

    z-index: 20;
}

.sprite-button-join-now{
    position: absolute;

    top: 0px;

    clip: rect(0 335px 86px 0);
}

.sprite-button-join-now:hover{
    top: -86px;

    clip: rect(86px 335px 172px 0);
}

.sprite-button-join-now:active{
    top: -172px;

    clip: rect(172px 335px 258px 0);
}


/* =========================================
   POSSIBILITIES SECTION
========================================= */

.possibilities-section{
    position: relative;

    width: 100%;
    height: 950px;

    background-color: #e2feff;
    background-image: url("/assets/login/possibilities/island.png");
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: auto auto;
    overflow: hidden;
}

.possibilities-title{
    position: relative;

    z-index: 5;
    font-family: "SWRounded";
	margin: 0px;
	line-height: 29px;
    text-align: center;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;

    padding-top: 80px;

    color: #434343;

    font-size: 32px;
    font-weight: 600;

    text-shadow:
        0 1px 0 rgba(255,255,255,0.35);
}

.feature{
    position: absolute;

    width: 400px;

    z-index: 5;
}

.feature-left{
    text-align: right;
}

.feature-right{
    text-align: left;
}

.feature-collect{
    left: 110px;
    top: 160px;
}

.feature-pets{
    left: 110px;
    top: 370px;
}

.feature-create{
    left: 110px;
    top: 580px;
}

.feature-social{
    right: 110px;
    top: 170px;
}

.feature-friends{
    right: 110px;
    top: 380px;
}

.feature-style{
    right: 110px;
    top: 590px;
}

.feature h3{
    color: #1f78c8;

    font-size: 23px;
    font-weight: bold;

    margin-top: 0px;
    margin-bottom: 0px;
}

.feature p{
    color: #6a6a6a;

    font-size: 21px;

    line-height: 1.45;
}

.possibilities-bottom-text{
    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    text-align: center;

    z-index: 10;

    width: 90%;
}

.possibilities-bottom-text h2{
    font-family: "SWRounded";

    font-size: 28px;

    color: #036;

    margin-bottom: 8px;
}

.possibilities-bottom-text p{
    font-size: 17px;

    color: #6A6A6A;

    line-height: 1.45;

}

/* =========================================
   HOW TO PLAY BAR
========================================= */

.how-to-play-bar{
    width: 100%;

    background-color: #2d7990;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding-top: 15px;
    padding-bottom: 15px;
}

.how-to-play-icon{
    width: 35px;
    height: 42px;
}

.how-to-play-title{
    font-size: 18px;

    color: #25B2E1;

    font-weight: bold;
}

.how-to-play-text{
    font-size: 16px;

    color: white;
}

/* GUIDE BUTTON */
.guide-button{
    height: 42px;
    margin-left:0px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #03b5c9;
    border-radius: 24px;

    background-color: #03C7DE;

    color: white;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    position: relative;
}

.guide-button:hover{
background-color: #039daf;    
}


/* =========================================
   INFORMATION WINDOWS
========================================= */

.info-layout{
    width: 200%;

    max-width: 1600px;

    margin: 0 auto;

    display: flex;

    align-items: stretch;

    gap: 20px;
}

.info-section{
    position: relative;

    width: 100%;

    background: #dff7f7;
    --background-image: url(assets/shared/backgrounds/SW_EN_SocialMedia_PageBGWinter.jpg);

    overflow: hidden;

    padding-top: 20px;

    padding-bottom: 20px;
    
}

.about-window-content{
    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    position: relative;

    z-index: 5;

    padding:
        20px
        20px
        260px
        20px;
}

.about-text-content{
    width: 100%;
    
}

.window-title-bar{
    background: #2d7990;

    padding:
        14px
        18px;

    border-radius: 4px 4px 0 0;
}
.window-title-bar h2{
    margin: 0;

    color: white;

    font-family: "SWRounded";

    font-size: 26px;

    line-height: 1;
}

.window-title-bar h3{
    margin: 0;

    color: #bfefff;

    font-size: 12px;

    line-height: 1;

    font-weight: normal;
}

.about-text-content h3{
    font-size: 18px;

    color: #036;

    margin-bottom: 14px;

    font-weight: bold;
}

.info-section p{
    font-size: 14px;
    margin-bottom: 2px;
    line-height: 1.45;
    color: #6A6A6A;
}

.pets-tokens-image{
    position: absolute;

    bottom: -10px;

    left: 50%;

    transform: translateX(-50%);

    width: 86%;

    max-width: 1600px;

    height: auto;

    z-index: 1;
}

.pets-tokens-text{
    position: absolute;

    bottom: 130px;

    left: 220px;

    z-index: 5;

    max-width: 320px;
}

.pets-tokens-text h3{
    color: #036;

    font-size: 17px;

    margin-bottom: 6px;
}

.pets-tokens-text p{
    font-size: 13px;

    line-height: 1.4;

    color: #6A6A6A;
}

.sw-about-join-button{
    position: absolute;

    bottom: 20px;
    left: 65%;

    transform: translateX(-50%) scale(0.7);

    width: 335px;

    height: 110px;

    overflow: hidden;

    z-index: 10;
}


/* =========================================
   ABOUT WINDOW
========================================= */

.about-window{
    position: relative;

    width: 50%;

    background: #ffffff;

    height: 580px;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);

    overflow: hidden;
}


/* =========================================
   NEWS WINDOW
========================================= */

.news-window{
    width: 100%;

    height: 580px;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);
  
}

.news-window-content{
    height: calc(100% - 72px);

    padding:
        0
        14px
        14px
        14px;
}


.news-window-header{
    background: #2d7990;

    padding:
        14px
        18px;

    border-radius: 4px 4px 0 0;

    margin-bottom: 14px;

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.news-window-header h2{
    margin: 0;

    color: white;

    font-family: "SWRounded";

    font-size: 26px;
}

.news-window-header h3{
    margin: 0;

    color: #bfefff;

    font-size: 12px;

    font-weight: normal;
}

.news-cards-column{
    display: flex;

    flex-direction: column;

    gap: 14px;

    height: 100%;
}

.news-card{
    flex: 1;

    background: white;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7);

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px;

    overflow: hidden;
}

.news-card-image{
    width: 120px;

    height: auto;

    flex-shrink: 0;

    display: block;

    padding: 4px;

    background: white;

    border: 1px solid #d8d8d8;

    border-radius: 8px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 1px 2px rgba(0,0,0,0.08);
}

.news-readmore-button{
    display: inline-block;

    margin-top: 5px;

    padding:
        6px
        12px;

    background: #19b5e5;

    color: white;

    font-size: 11px;

    font-weight: bold;

    border-radius: 14px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.4);

    cursor: pointer;
}

.news-readmore-button:hover{
    background: #94B509;
}

.news-card-content{
    display: flex;

    flex-direction: column;

    justify-content: center;

    height: 100%;
}

/* =========================================
   COUNTERS WINDOW
========================================= */

.counters-window{
    width: 25%;

    height: 580px;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);

    overflow: hidden;
}

.counters-window-header{
    background: #2d7990;

    padding:
        14px
        18px;

    border-radius: 4px 4px 0 0;
}

.counters-window-header h2{
    margin: 0;

    color: white;

    font-family: "SWRounded";

    font-size: 22px;

    line-height: 1.1;
}

.counters-window-content{
    display: flex;

    flex-direction: column;

    gap: 14px;

    padding: 14px;

    height: calc(100% - 72px);
}

.counter-card{
    flex: 1;

    background: white;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 14px;
}

.counter-card h3{
    color: #036;

    font-size: 18px;

    margin-bottom: 10px;
}

.counter-card p{
    color: #6A6A6A;

    font-size: 15px;

    line-height: 1.4;

    display: inline-block;

    padding: 0px 40px;

    background: #19b5e5;

    color: white;

    font-weight: bold;

    border-radius: 14px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.4);
}

.counter-card img{
    width: 64px;

    height: auto;

    flex-shrink: 0;

    display: block;

    padding: 4px;

    background: white;
}

/* =========================================
   VIP PANEL
========================================= */

.vip-panel{
    position: relative;

    width: 22%;

    height: 580px;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);

    padding: 12px;

    overflow: hidden;
}

.vip-banner-link{
    display: flex;

    height: 100%;
}

.news-card-content h3{
    font-size: 14px;

    color: #036;

    margin-bottom: 5px;
    margin-top: -15px;

    font-weight: bold;
}

.news-card-content p{
    font-size: 13px;

    color: #6A6A6A;

    line-height: 1.2;
}

.news-card:hover{
    background: #f8ffff;
}

.vip-banner-link-banner{
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;
}

.vip-cta-button{
    position: absolute;

    left: 50%;

    bottom: 51px;

    transform: translateX(-50%);

    width: 150px;

    height: 40px;

    display: block;

    background-image:
        url("assets/login/buttons/BUY-VIP-NORMAL.png");

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    z-index: 20;
}

.vip-cta-button:hover{
    background-image:
        url("assets/login/buttons/BUY-VIP-HOVER.png");
}

.vip-cta-button:active{
    background-image:
        url("assets/login/buttons/BUY-VIP-PRESSED.png");
}


/* =========================================
   FOOTER
========================================= */

.footer-wrap {
    min-height: 64px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background-color: #2d7990;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600
}

.footer-wrap a {
    color: #03C7DE;
    text-decoration: none;
    font-weight: 700
}

.footer-wrap a:hover {
    text-decoration: underline;
    color: #94B509;
}

img{
    user-select: none;

    -webkit-user-drag: none;
}

/* OVERLAY */
.fancybox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,.65);

    display: none;

    z-index: 9000;
}

/* POPUP WRAPPER */
.fancybox-wrap {
    position: fixed;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(.95);

    z-index: 9010;

    display: none;

    opacity: 0;

    transition:
        opacity .18s ease,
        transform .18s ease;
}

/* ACTIVE STATE */
.fancybox-wrap.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* POPUP BOX */
.fancybox-skin {
    border: solid 4px #03DDF9;

    background: #FFF;

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,.5);

    padding: 25px;

    position: relative;

    min-width: 500px;
}

/* CLOSE BUTTON */
.fancybox-close {
    position: absolute;

    top: -16px;
    right: -16px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #03DDF9;

    color: white;

    font-size: 24px;
    line-height: 36px;
    text-align: center;

    cursor: pointer;

    font-weight: bold;
}

/* SHOW OVERLAY */
.fancybox-overlay.active {
    display: block;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 440px){

    body{
        padding-top: 230px;
        min-height: auto;
    }

    
/* =========================================
   HEADER
========================================= */

    .top-header{
        height: auto;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 0;

        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* LOGO */
    .logo{
        position: static;

        left: auto;

        width: 220px;

        margin: 0 auto 20px auto;

        display: block;
    }

    /* FORM */
    .login-form{
        position: static;

        left: auto;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* TOP ROW */
    .login-top-row{
        display: flex;

        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        width: 100%;

        max-width: 350px;

        gap: 10px;

        transform: none;

        margin: 0 auto;
    }

.sw-join-button{
    transform: translateX(-50%) scale(0.50);

    transform-origin: center;
}    

    /* INPUTS */
    .input-box input{
        width: 170px;
        font-size: 12px;
    }

    /* BUTTONS */
    .login-button,
    .join-button{
        width: 170px;

        flex-basis: 170px;

        justify-content: center;
    }

    /* BOTTOM ROW */
.login-bottom-row{
    width: 100%;
    max-width: 350px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: start;

    margin-top: 10px;
}

    /* REMOVE DESKTOP POSITIONING */
.remember-me{
    position: static;

    justify-self: center;

    text-align: center;
}

.forgot-password{
    position: static;

    justify-self: center;

    text-align: center;
}

.hero-slide img{
    object-fit: cover;
    object-position: top center;
    background-color: #f2ffff;
}  

.hero-slide{
    display: block;

    align-items: flex-start;

    justify-content: center;
}

/* HERO */

/* =========================================
   HERO SLIDESHOW
========================================= */

.hero-image{
    height: 180px;
    background-color: #f2ffff;
}

.hero-overlay{
    width: 20%;

    height: auto;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);
}

.hero-characters{
    width: 105%;

    height: auto;

    top: 58.5%;

    left: 50%;

    transform: translate(-50%, -50%);
}

    /* FEATURES */
.feature{
    position: absolute;

    width: 120px;

    z-index: 5;
}

.feature-left{
    text-align: right;
}

.feature-right{
    text-align: left;
}

/* LEFT */

.feature-collect{
    left: -24px;
    top: 90px;
}

.feature-pets{
    left: -24px;
    top: 170px;
}

.feature-create{
    left: -24px;
    top: 250px;
}

/* RIGHT */

.feature-social{
    right: -24px;
    top: 90px;
}

.feature-friends{
    right: -24px;
    top: 170px;
}

.feature-style{
    right: -24px;
    top: 250px;
}

.feature img{
    width: 22px;
}

.feature h3{
    font-size: 8px;
}

.feature-left p{
    font-size: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.45;
    max-width: 100%;
    width: 60px;   
    text-align: right;
    margin-left: auto;
}

.feature-right p{
    font-size: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.45;
    max-width: 100%;
    width: 60px;   
    text-align: left;
    margin-right: auto;
}

    /* POSSIBILITIES */

/* =========================================
   POSSIBILITIES SECTION
========================================= */

.possibilities-section{
    background-size: 640px auto;

    background-position: center 15px;

    height: 360px;
}

.possibilities-title{
    font-size: 20px;

    line-height: 28px;

    padding-top: 30px;

    padding-left: 20px;
    padding-right: 20px;
} 


/* =========================================
   HOW TO PLAY BAR
========================================= */

.how-to-play-bar{
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    padding-top: 10px;
    padding-bottom: 10px;

    padding-left: 4px;
    padding-right: 4px;

    gap: 8px;
}

.how-to-play-icon{
    width: 18px;

    height: auto;

    flex-shrink: 0;

    margin-right: -2px;
}

.how-to-play-title{
    font-size: 10px;

    white-space: nowrap;
}

.how-to-play-text{
    font-size: 9px;

    line-height: 1.25;

    flex: 1;

    text-align: center;

    padding-left: 4px;
    padding-right: 4px;
}

.guide-button{
    width: 60px;

    height: 24px;

    font-size: 7.5px;

    border-radius: 14px;

    padding: 0;
}


/* =========================================
   INFORMATION WINDOWS
========================================= */

.info-layout{
    flex-direction: column;

    gap: 14px;

    width: 100%;
}

.about-window,

/* =========================================
   NEWS WINDOW
========================================= */

.news-window{
    width: 96%;

    margin: 0 auto;
}


/* =========================================
   ABOUT WINDOW
========================================= */

.about-window{
    min-height: auto;
}


/* =========================================
   NEWS WINDOW
========================================= */

.news-window{
    height: auto;
}

.sw-about-right-column{
    width: 30%;

    gap: 20px;
}


/* =========================================
   VIP PANEL
========================================= */

.vip-panel{
    width: 18%;

    position: relative;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);

    padding: 14px;

    overflow: hidden;
}

.about-window-content{
    width: 100%;

    padding:
        25px
        18px
        180px
        18px;
}

.info-section h2{
    font-size: 20px;

    line-height: 1.2;
}

.about-text-content h3{
    font-size: 13px;
}

.info-section p{
    font-size: 12px;
    
    line-height: 1.45;
}

.sw-about-join-button{
    left: 68%;

    bottom: 10px;

    transform:
        translateX(-50%)
        scale(0.55);
}

.pets-tokens-image{
    width: 90%;
}


/* =========================================
   NEWS WINDOW
========================================= */

.news-window{
    width: 100%;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 1px 2px rgba(0,0,0,0.08);

    overflow: hidden;
}

.news-cards-column{
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 14px;

    height: 100%;
}

.news-card{
    min-height: 95px;

    padding: 10px;

    gap: 10px;

    align-items: flex-start;
}

.news-card-image{
    width: 72px;

    padding: 3px;

    border-radius: 6px;
}

.news-card-content h3{
    font-size: 12px;

    margin-bottom: 4px;
}

.news-card-content p{
    font-size: 10px;

    line-height: 1.35;
}

.news-readmore-button{
    margin-top: 6px;

    padding:
        4px
        8px;

    font-size: 9px;

    border-radius: 10px;
}

.vip-banner-link-banner{
    width: 100%;

    height: auto;

    display: block;

    border-radius: 6px;
}

.vip-cta-button{
    left: 50%;

    bottom: 4px;

    width: 78px;

    height: 45px;

    background-size: contain;
}


/* =========================================
   FOOTER
========================================= */

.footer-wrap {
    min-height: 38px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background-color: #d9f1f3;
    color: #2d7990;
    font-size: 10px;
    font-weight: 600
}

.footer-wrap a {
    color: #2d7990;
    text-decoration: none;
    font-weight: 700
}

.footer-wrap a:hover {
    text-decoration: underline
}

.mobile-bottom-fill{
    width: 100%;

    height: 60px;

    background-image: url("assets/shared/backgrounds/header_sub_background.jpg");

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;
}

}