/** Header Login + Language **/
.login-box
{
    min-width: 300px;
    padding: 30px 14px;
    overflow:hidden;
    background-color:rgba(0,0,0,0.85);
}

.login-box button
{
    color:black;
    background-color: #e6e600;
    border:0;
}

.login-box button:hover
{
    color:black;
    background-color: #e6e600;
    border:0;
}

.lang-box
{
    padding: 10px 0px;
    color:white;
    background-color:rgba(0,0,0,0.85);
}

.lang-box a:hover
{
    background-color:#4e4e4e;
}

.profile-box
{
    padding: 10px 0px;
    color:white;
    background-color:rgba(0,0,0,0.85);
}

.profile-box a:hover
{
    background-color:#4e4e4e;
}




/** KPLAY Logo**/
.header-logo 
{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    height: 78%;
    top: 2%;
    z-index: 1;
}

.header-logo-bg 
{
    flex-wrap: wrap;
    position: absolute;
    pointer-events: none;
    z-index: 0;
    top: 0;
    height: 96%;
}




/** Blue seperator for header **/
.seperator__header
{
    border-top: 2px solid #1a99d6;
    max-width: 90%;
    margin: auto;
}




/** Navigation for top half **/
.nav
{
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color:#0b1a2d;
}

.nav--top 
{
    display: flex;
    font-weight: 600;
    height: 4vw;
    color: #FFFFFF !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav--top i
{
    /* Socials icons */
    padding-left: 4px;
}
.spacer-top
{
    /* Spacer */
    width: 520% !important;
}




/** Navigation for bottom half **/
.nav--bottom
{
    display: flex;
    font-weight: 700;
    color: #FFFFFF !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.9vw;
    height: 5vw;
    border-top: 2px solid #1a99d6;
}

.nav--bottom a
{
    text-decoration: none;
}

.nav--bottom a p 
{
    /* Animation for links */
    background-image: linear-gradient(
        to right,
        #54b3d6,
        #54b3d6 50%,
        #FFFFFF 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.nav--bottom a p:before
{
    content: '';
    background: #54b3d6;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.nav--bottom a p:hover 
{
    background-position: 0;
}

.nav--bottom a p:hover::before
{
    width: 100%;
}

.nav--bottom-left
{
    display: flex;
}

.nav--bottom-right
{
    display: flex;
    float: right;
    padding-left: 12%;
}

.spacer-bottom
{
    width: 230% !important;
}




/** Be in the latest email field on **/
.latest__container
{
    border-radius: 70px;
    display: flex;
    background-color: #102440;
    height: 6vw;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    position: absolute;
    bottom: 26vw;
}

.latest__container label
{

    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
    padding-top: 0.5vw;
}

.latest__container input
{
    background-color: #132b4d;
    color: #868789;
    border: none;
    width: 41%;
    border-radius: 50px;
    height: 3vw;
    padding: 1vw;
}


.latest__container input:focus-visible
{
    outline: unset
}

.latest__container button:focus
{
    outline: unset
}


.latest__container button
{
    border-radius: 50px;
    background-color: #1a99d6;
    padding: 1vw 3.5vw;
    font-weight: 600;
    width: fit-content;
    margin-left: 4px;
    color: #FFFFFF;
    border: unset;
}

/** Footer **/
.background-image--footer
{
    /* Make fulll background images padding-top relative to the size of the image */
    /* ( ImageHeight * ImageWidth ) / Width of Container = padding-top */
    z-index: -1;
    height: 0;
    background: no-repeat;
    padding-top: 28.96%;
}

.footer
{
    background-image: url(/images/home/footer-bg.png);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 97;
}

.footer--left
{
    /* Left side of the footer, no links */
    float: left;
    display: flex;
    height: 100%;
    position: absolute;
    width: 30%;
    left: 6vw;
    top: 0vw;
    flex-direction: column;
    padding-top: 6vw;
}

.footer__desc
{ 
    /* Desc on the left side of footer */
    color: #a0a5ae;
    width: 70%;
}

.footer__logo
{
    /* Logo on the left side of footer */
    width: 11vw;
    height: 2.5vw;
    margin-bottom: 2vw;
}

.footer__contact-list
{
    list-style: none;
    display: flex;
    color: white;
    flex-direction: column;
    padding: unset;
    color: #a0a5ae;
}

.footer__contact-list li
{
    padding-top: 1vw;
}

.footer__contact-list li i
{
    padding-right: 0.5vw;
}

.footer--right
{
    display: flex;
    width: 64%;
    position: absolute;
    color: #a0a5ae;
    top: 0vw;
    left: 30vw;
    padding-top: 7vw;
    justify-content: space-around;
}

.footer__title
{
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 2px solid #1a99d6;
    width: 2vw;
    white-space: nowrap;
    margin-bottom: 1.75vw;
    line-height: 1.3vw;
    pointer-events: none;
}

.footer__items
{
    display: flex;
    line-height: 1.75vw;
    flex-direction: column;
}

.footer__items a
{
    color: #a0a5ae;
}

.footer__items a:hover
{
    color: #1a99d6;
}

.footer__copyright
{
    color: #a0a5ae;
    background-color: #010a15;
}

.footer__copyright span
{
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 1vw;
    padding-bottom: 1vw;
}
