* {
    margin: 0;
    padding: 0;
    border: none;
}

body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    box-sizing: border-box;

    width: 100vw;
    height: 100vh;
}

main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;

    background-image: linear-gradient(270deg, #B1E4FF, #01A6FF);
}

/* Pole Itself */
#poleDiv {
    display: flex;
    flex-direction: row;
    height: 50vh;

    #pole {
        /*height: 90vh;*/
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 10%;
        bottom: 0;
        min-width: 75px;
        background-image: linear-gradient(90deg, #59482F, #9C795A);

        #poleTopEdge {
            position: absolute;
            top: 0;
            /*left: -15%;*/
            border-bottom: 100px solid #8B6E45;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            height: 0;
            width: 100px;
        }

        #poleBottomEdge {
            position: absolute;
            bottom: 0;
            /*left: -15%;*/
            /*background-color: #000;*/
            border-top: 100px solid #8B6E45;
            border-right: 25px solid transparent;
            border-left: 25px solid transparent;
            height: 0;
            width: 100px;
        }
    }
}

/* Flags */
.sponsor-btn {
    cursor: pointer;
    background-color: transparent;
    transition: all 1s;

    &:hover {
        transform: translateX(5px);
    }
}

.sponsor-flag {
    height: 15vh;
}

#flagsDiv {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 69px;
}

/* Details */
#detailsDiv {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: absolute;

    row-gap: 3em;

    top: 10vh;
    bottom: 10vh;
    width: 600px;

    background-image: url("./../../assets/sponsors/page-background.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    #closeDiv {
        position: absolute;
        top: 2em;
        left: 2em;

        #closeBtn {
            background-color: transparent;
            cursor: pointer;

            &:hover {
                transform: scale(1.1);
            }
        }
    }

    #detailsTitle {
        margin-top: 3em;
        font-family: "AnimeAce", sans-serif;
        font-size: 2em;
        text-align: center;
    }

    #detailsText {
        font-family: "AnimeAce", sans-serif;
        font-size: 1em;
        text-align: left;
        line-height: 1.5em;
        padding-right: 0.5em;
        margin: 0 6em 5em 5em;
        overflow-y: scroll;
        scrollbar-color: #8B6E45 transparent;
        scrollbar-width: thin;
        scroll-behavior: smooth;
    }
}

#lang_button {
    position: absolute;
    width: 75px;
    right: 0;
    top: 0;
}