@font-face {
    font-family: 'testfont';
    src: url("../fonts/super-legend-boy.otf") format("opentype");
}

body {
    background-color: #28207d;
    overflow: hidden;
}

a {
    cursor: pointer;
}

.container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    background-position: 0% 0%;
    background-size: auto;
}

.arrow_content {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 12;
    display: block;
    padding-top: 20px;
    padding-left: 20px;
}

.arrow {
    width: 80px;
    content: url("../images/arrow.png");
}

.arrow:hover {
    content: url("../images/arrow_hover.png");
}

.machine_content {
    position: relative;
    height: auto;
}

.machine {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    display: block;
    max-width: 80%;
}

.footer_content {
    position: fixed;
    left: auto;
    top: auto;
    right: 30px;
    bottom: 20px;
    display: flex;
    align-items: center;
}

#twitter {
    padding-right: 20px;
    padding-top: 7px;
}

#mute {
    cursor: pointer;
}

.block-mouth {
    position: absolute;
    z-index: 3;
    width: 8%;
    height: 6.5%;
    left: 46.5%;
    bottom: 26%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

.block-pipes {
    position: absolute;
    z-index: 3;
    width: 12%;
    height: 46%;
    left: 18%;
    bottom: 30%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

.block-led {
    position: absolute;
    z-index: 3;
    width: 35%;
    height: 10%;
    left: 33%;
    bottom: 40%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

.block-kiosk {
    position: absolute;
    z-index: 3;
    width: 9%;
    height: 13.5%;
    left: 67%;
    bottom: 20%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

.block-light1 {
    position: absolute;
    z-index: 3;
    width: 4.5%;
    height: 3%;
    left: 60%;
    bottom: 68.7%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

.block-light2 {
    position: absolute;
    z-index: 3;
    width: 4.5%;
    height: 3%;
    left: 60%;
    bottom: 65.7%;
    background-color: transparent;
    max-width: 100%;
    display: inline-block;
}

/* ///////////////////////////////// */

.redline_hover {
    background-color: #191f6e;
    border: solid 2px #4E3189;
    color: white;
    padding: 15px;
    font-size: 14px;

    position: absolute;
    z-index: 3;
    width: 60%;
    height: 10%;
    left: 18%;
    bottom: 4%;
    display: none;
    font-family: 'testfont';

    overflow: auto;
}

.redline_hover::-webkit-scrollbar {
    width: 15px;
}

/* Buttons */
.redline_hover::-webkit-scrollbar-button
{
  border-style: solid;
}

.redline_hover::-webkit-scrollbar-button:vertical:decrement
{
  border-width: 0 7px 12px 7px;
  border-color: transparent transparent #fff transparent;
}

.redline_hover::-webkit-scrollbar-button:vertical:increment
{
  border-width: 12px 7px 0 7px;
  border-color: #fff transparent transparent transparent;
}

.redline_hover:hover {
    border-color: #7245ca;
}

.redline_hover p {
    margin-top: 3px;
    margin-bottom: 3px;
}

.redline_hover a:hover {
    color: #ec96e2;
}

.scroll_black::-webkit-scrollbar-button:vertical:decrement
{
  border-color: transparent transparent #000 transparent;
}

.scroll_black::-webkit-scrollbar-button:vertical:increment
{
  border-color: #000 transparent transparent transparent;
}


@media (max-width: 600px) {
    .footer_content {
        position: fixed;
        left: auto;
        top: auto;
        display: flex;
        align-items: center;
        right: inherit;
    }

    .arrow {
        width: 50px;
    }

    .redline_hover {
        padding: 10px;
        font-size: 12px;
        width: 80%;
        height: 12%;
        left: 10%;
        bottom: 4%;
    }
}