.up-to {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
@media (max-width: 990px) {
    .up-to {
        right: 10px;
        bottom: 75px;
    }
}
.up-to-active {
    opacity: 1;
    pointer-events: auto;
}
.footer {
    padding: 15px 10px;
}
.footer__text {
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

.nav {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 15px;
}


.nav a {
    display: block;
    margin: 5px 10px;
    font-size: 16px;
    font-weight: bold;
}

.menu-call {
    display: none;
    cursor: pointer;
}

.nav svg {
    display: none;
}

@media (max-width: 990px) {
    .menu-call {
        display: block;
    }
    .nav a {
        margin: 10px 0!important;
        font-size: 18px!important;
    }
    .nav svg{
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
    }
    .nav {
        opacity: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 999;
        width: 100vw;
        height: 100vh;
        background: #000;
        top: 0;
        box-sizing: border-box;
        left: 0;
    }
    .nav-active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav a {
        margin: 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ThePokies-logo {
        margin-right: auto;
        margin-left: 10px;
    }
    .ThePokies-wrap {
        padding-top: 30px;
    }
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}