html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
	    font-family: Roboto,sans-serif;
		color: white;
    /* padding: 0; */
    /* border: 0; */
    /* font-size: 100%; */
    /* font: inherit; */
    /* vertical-align: baseline; */
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    /* line-height: 1; */
}

ol,ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    /* -webkit-text-size-adjust: none */
}

mark {
    background-color: transparent;
    color: inherit
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="text"],input[type="email"],select,textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-weight: normal;
    text-indent: 0;
    letter-spacing: 0;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
}

mark {
    background-color: rgba(144,144,144,0.25);
}

a {
    -moz-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -ms-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    color: inherit;
    text-decoration: underline;
}

s {
    text-decoration: line-through;
}

body {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #012654;
	    width: 100vw;
    height: 100vh;

}

html {
    font-size: 18pt;
}

#wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

#main {
    /* display: flex; */
    /* position: relative; */
    /* max-width: 100%; */
    /* z-index: 1; */
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    /* flex-shrink: 0; */
    /* text-align: center; */
}

#main > .inner {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    padding: 3rem 3rem;
    max-width: 100%;
    width: 50rem;
}

#main > .inner > * {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

#main > .inner > :first-child {
    margin-top: 0 !important;
}

#main > .inner > :last-child {
    margin-bottom: 0 !important;
}

#main > .inner > .full {
    margin-left: calc(-3rem);
    width: calc(100% + 6rem + 0.4725px);
    max-width: calc(100% + 6rem + 0.4725px);
}

#main > .inner > .full:first-child {
    margin-top: -3rem !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main > .inner > .full:last-child {
    margin-bottom: -3rem !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#main > .inner > .full.screen {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    border-radius: 0 !important;
    left: 50%;
    right: auto;
    margin-left: -50vw;
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > * {
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

body.is-instant:after {
    display: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

@-moz-keyframes loading-spinner {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loading-spinner {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes loading-spinner {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-spinner {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.deferred:before {
    content: '';
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2rem 0 0 -2rem;
    animation: loading-spinner 1s infinite linear;
    transition: opacity 0.25s ease;
    transition-delay: 0.5s;
    opacity: 0;
    z-index: -1;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 3rem;
}

.deferred.loading:before {
    opacity: 0.35;
    z-index: 0;
}

.container {
    position: relative;
}

.container > .wrapper {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
}

.container > .wrapper > .inner {
    /* vertical-align: top; */
    /* position: relative; */
    /* max-width: 100%; */
    border-radius: inherit;
}

#main .container.full:first-child > .wrapper {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#container01 > .wrapper > .inner {
    padding: 0rem 0rem;
    border-radius: calc(3rem - 7px);
}

#container01 {
    display: flex;
    width: 100%;
    min-height: 28rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background-color: #a9a9f1;
    /* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M%200%20256%20L%20512%20256%20M%20256%200%20L%20256%20512%22%20stroke%3D%22rgba(255,255,255,0.502)%22%20stroke-width%3D%2211.01px%22%20vector-effect%3D%22non-scaling-stroke%22%20stroke-linecap%3D%22square%22%20%2F%3E%3C%2Fsvg%3E'); */
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-style: solid;
    border-color: #FFFFFF;
    border-width: 7px;
    box-shadow: 0.216rem 0.259rem 2rem 1rem #a9a9f1;
    border-radius: 3rem;
}

#container01 > .wrapper {
    width: 100%;
    max-width: 50rem;
}

#container01.default > .wrapper > .inner > * {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#container01.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

#container01.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner {
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    /* display: flex; */
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

#container01.columns > .wrapper > .inner > * {
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    max-width: 100%;
    padding: 0 0 0 0.375rem;
}

#container01.columns > .wrapper > .inner > * > * {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#container01.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

#container01.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner > *:first-child {
    margin-left: -0.375rem;
}

#container01.default > .wrapper > .inner > .full {
    margin-left: calc(0rem);
    width: calc(100% + 0rem + 0.4725px);
    max-width: none;
}

#container01.default > .wrapper > .inner > .full:first-child {
    margin-top: 0rem !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#container01.default > .wrapper > .inner > .full:last-child {
    margin-bottom: 0rem !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > div > .full {
    margin-left: calc(-0.1875rem);
    width: calc(100% + 0.375rem + 0.4725px);
    max-width: none;
}

#container01.columns > .wrapper > .inner > div:first-child > .full {
    margin-left: calc(0rem);
    width: calc(100% + 0.1875rem + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:last-child > .full {
    width: calc(100% + 0.1875rem + 0.4725px);
}

#container01.columns > .wrapper > .inner > div > .full:first-child {
    margin-top: calc(0rem) !important;
}

#container01.columns > .wrapper > .inner > div > .full:last-child {
    margin-bottom: calc(0rem) !important;
}

#container01.columns > .wrapper > .inner > div:first-child, #container01.columns > .wrapper > .inner > div:first-child > .full:first-child {
    border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > div:last-child, #container01.columns > .wrapper > .inner > div:last-child > .full:first-child {
    border-top-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full {
    align-self: stretch;
    min-height: 28rem;
}

#container01.columns > .wrapper > .inner > .full:first-child {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full:last-child {
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
    height: calc(100% + 0rem);
    border-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
    height: 100%;
    border-radius: inherit;
}

#container01 > .wrapper > .inner > :nth-child(1) {
    width: calc(50% + 0.18rem);
}

#container01 > .wrapper > .inner > :nth-child(2) {
    width: calc(50% + 0.18rem);
    text-align: center;
}

.image {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    display: block;
}

.image a, .image span {
    position: relative;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

.image a img, .image span img {
    display: block;
}

.image img {
    /* width: 100%; */
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

.image.full img {
    display: block;
}

.image.full:first-child img {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image.full:last-child img {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.image.full a, .image.full span {
    display: block;
}

#image02 img {
    width: 84.5rem;
    height: 3.625rem;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
}

#image01 img {
    /* width: 100vw; */
    /* height: 16rem; */
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    /* object-fit: cover; */
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    /* object-position: center; */
}

.buttons {
    cursor: default;
    padding: 0;
    letter-spacing: 0;
}

.buttons li a {
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    vertical-align: middle;
}

#buttons04 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons04 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons04 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons04 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons04 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons04 .button:hover {
    background-color: #8463C9 !important;
}

#buttons01 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons01 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons01 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons01 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons01 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons01 .n01:hover {
    background-color: #8463C9 !important;
}

#buttons02 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons02 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons02 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons02 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons02 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons02 .n01:hover {
    background-color: #8463C9 !important;
}

#buttons03 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons03 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons03 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons03 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons03 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons03 .n01:hover {
    background-color: #8463C9 !important;
}

#buttons06 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons06 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons06 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons06 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons06 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons06 .button:hover {
    background-color: #8463C9 !important;
}

#buttons07 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons07 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons07 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons07 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons07 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons07 .button:hover {
    background-color: #8463C9 !important;
}

#buttons05 {
    width: calc(100% + 0.25rem);
    margin-left: -0.125rem;
}

#buttons05 li {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 0.25rem);
    margin: 0.125rem;
}

#buttons05 li a {
    display: flex;
    width: 21.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
    vertical-align: middle;
    padding: 0 1.0625rem;
    font-size: 1em;
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    border-radius: 2rem;
}

#buttons05 li a svg {
    display: block;
    -moz-transition: fill 0.25s ease;
    -webkit-transition: fill 0.25s ease;
    -ms-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
    width: 1em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
}

#buttons05 .button {
    background-color: #AE87FF;
    color: #FFFFFF;
}

#buttons05 .n01:hover {
    background-color: #8463C9 !important;
}

h1 br + br, h2 br + br, h3 br + br, p br + br {
    display: block;
    content: ' ';
}

h1 .li, h2 .li, h3 .li, p .li {
    display: list-item;
    padding-left: 0.5em;
    margin: 0.75em 0 0 1em;
}

#credits br + br {
    margin-top: 0.9rem;
}

#credits {
    color: #000000;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 0.6em;
    line-height: 1.5;
    font-weight: 400;
    cursor: default;
    margin-top: 1rem !important;
}

#credits a {
    text-decoration: none !important;
    -moz-transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
    -ms-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    opacity: 0.5;
}

#credits a:hover {
    text-decoration: none !important;
    opacity: 1;
}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 11pt;
    }

    #main > .inner {
        padding: 3rem 2rem;
    }

    #main > .inner > * {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    #main > .inner > .full {
        margin-left: calc(-2rem);
        width: calc(100% + 4rem + 0.4725px);
        max-width: calc(100% + 4rem + 0.4725px);
    }

    #main > .inner > .full:first-child {
        margin-top: -3rem !important;
    }

    #main > .inner > .full:last-child {
        margin-bottom: -3rem !important;
    }

    #main > .inner > .full.screen {
        margin-left: -50vw;
    }

    #container01 > .wrapper > .inner {
        padding: 0rem 0rem;
    }

    #container01 {
        min-height: 21rem;
    }

    #container01 > .wrapper {
        max-width: 100%;
    }

    #container01.default > .wrapper > .inner > * {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #container01.columns > .wrapper > .inner {
        -moz-flex-direction: column !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -moz-flex-wrap: nowrap !important;
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    #container01.columns > .wrapper > .inner > span {
        display: none;
    }

    #container01.columns > .wrapper > .inner > * > * {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #container01.columns > .wrapper > .inner > * {
        padding: 0.1875rem 0 !important;
    }

    #container01.columns > .wrapper > .inner > *:first-child {
        margin-left: 0 !important;
        padding-top: 0 !important;
    }

    #container01.columns > .wrapper > .inner > *:last-child {
        padding-bottom: 0 !important;
    }

    #container01.columns > .wrapper > .inner > div.after-spacer {
        padding-top: 0 !important;
    }

    #container01.columns > .wrapper > .inner > div.before-spacer {
        padding-bottom: 0 !important;
    }

    #container01.default > .wrapper > .inner > .full {
        margin-left: calc(0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.default > .wrapper > .inner > .full:first-child {
        margin-top: 0rem !important;
    }

    #container01.default > .wrapper > .inner > .full:last-child {
        margin-bottom: 0rem !important;
    }

    #container01.columns > .wrapper > .inner > div > .full {
        margin-left: calc(0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div:first-of-type > .full {
        margin-left: calc(0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div:last-of-type > .full {
        margin-left: calc(0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div > .full:first-child {
        margin-top: -0.1875rem !important;
    }

    #container01.columns > .wrapper > .inner > div > .full:last-child {
        margin-bottom: -0.1875rem !important;
    }

    #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
        margin-top: calc(0rem) !important;
    }

    #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
        margin-bottom: calc(0rem) !important;
    }

    #container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    #container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit;
    }

    #container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
        border-bottom-left-radius: 0 !important;
    }

    #container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
        border-top-right-radius: 0 !important;
    }

    #container01.columns > .wrapper > .inner > .full {
        min-height: 21rem;
    }

    #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
        height: auto;
    }

    #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
        position: relative;
        width: 100%;
        height: auto;
    }

    #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > * {
        height: auto;
    }

    #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * > iframe {
        height: 100%;
    }

    #container01 > .wrapper > .inner > :nth-child(1) {
        width: 100% !important;
        min-height: 100% !important;
        text-align: inherit !important;
    }

    #container01 > .wrapper > .inner > :nth-child(2) {
        width: 100% !important;
        min-height: 100% !important;
        text-align: inherit !important;
    }

    #image02 img {
        width: 84.5rem;
        height: 4.53125rem !important;
        -moz-object-fit: cover;
        -webkit-object-fit: cover;
        -ms-object-fit: cover;
        object-fit: cover;
        -moz-object-position: center;
        -webkit-object-position: center;
        -ms-object-position: center;
        object-position: center;
    }

    #image01 img {
        width: 100vw;
        height: 28.75rem !important;
        -moz-object-fit: cover;
        -webkit-object-fit: cover;
        -ms-object-fit: cover;
        object-fit: cover;
        -moz-object-position: center;
        -webkit-object-position: center;
        -ms-object-position: center;
        object-position: center;
    }

    #buttons04 li a {
        font-size: 1em;
    }

    #buttons01 li a {
        font-size: 1em;
    }

    #buttons02 li a {
        font-size: 1em;
    }

    #buttons03 li a {
        font-size: 1em;
    }

    #buttons06 li a {
        font-size: 1em;
    }

    #buttons07 li a {
        font-size: 1em;
    }

    #buttons05 li a {
        font-size: 1em;
    }

    #credits {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.6em;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    #main > .inner > * {
        margin-top: 0.65625rem;
        margin-bottom: 0.65625rem;
    }

    #container01.default > .wrapper > .inner > * {
        margin-top: 0.4375rem;
        margin-bottom: 0.4375rem;
    }

    #container01.columns > .wrapper > .inner > * > * {
        margin-top: 0.4375rem;
        margin-bottom: 0.4375rem;
    }

    #image02 img {
        height: 3.625rem !important;
    }

    #image01 img {
        height: 23rem !important;
    }

    #buttons04 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons04 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons04 li:first-child {
        margin-top: 0;
    }

    #buttons04 li:last-child {
        margin-bottom: 0;
    }

    #buttons04 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons01 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons01 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons01 li:first-child {
        margin-top: 0;
    }

    #buttons01 li:last-child {
        margin-bottom: 0;
    }

    #buttons01 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons02 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons02 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons02 li:first-child {
        margin-top: 0;
    }

    #buttons02 li:last-child {
        margin-bottom: 0;
    }

    #buttons02 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons03 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons03 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons03 li:first-child {
        margin-top: 0;
    }

    #buttons03 li:last-child {
        margin-bottom: 0;
    }

    #buttons03 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons06 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons06 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons06 li:first-child {
        margin-top: 0;
    }

    #buttons06 li:last-child {
        margin-bottom: 0;
    }

    #buttons06 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons07 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons07 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons07 li:first-child {
        margin-top: 0;
    }

    #buttons07 li:last-child {
        margin-bottom: 0;
    }

    #buttons07 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }

    #buttons05 {
        margin-left: 0;
        width: 100%;
        padding: 0.125rem 0;
    }

    #buttons05 li {
        max-width: 100%;
        display: block;
        margin: 0.25rem 0;
    }

    #buttons05 li:first-child {
        margin-top: 0;
    }

    #buttons05 li:last-child {
        margin-bottom: 0;
    }

    #buttons05 li a {
        display: inline-flex;
        width: 100%;
        max-width: 32rem;
    }
}

@media (max-width: 360px) {
    #main > .inner {
        padding: 2.25rem 1.5rem;
    }

    #main > .inner > * {
        margin-top: 0.5625rem;
        margin-bottom: 0.5625rem;
    }

    #main > .inner > .full {
        margin-left: calc(-1.5rem);
        width: calc(100% + 3rem + 0.4725px);
        max-width: calc(100% + 3rem + 0.4725px);
    }

    #main > .inner > .full:first-child {
        margin-top: -2.25rem !important;
    }

    #main > .inner > .full:last-child {
        margin-bottom: -2.25rem !important;
    }

    #main > .inner > .full.screen {
        margin-left: -50vw;
    }

    #container01 > .wrapper > .inner {
        padding: 0rem 0rem;
    }

    #container01.default > .wrapper > .inner > * {
        margin-top: 0.375rem;
        margin-bottom: 0.375rem;
    }

    #container01.columns > .wrapper > .inner > * > * {
        margin-top: 0.375rem;
        margin-bottom: 0.375rem;
    }

    #container01.default > .wrapper > .inner > .full {
        margin-left: calc(-0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.default > .wrapper > .inner > .full:first-child {
        margin-top: -0rem !important;
    }

    #container01.default > .wrapper > .inner > .full:last-child {
        margin-bottom: -0rem !important;
    }

    #container01.columns > .wrapper > .inner > div > .full {
        margin-left: calc(-0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div:first-of-type > .full {
        margin-left: calc(-0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div:last-of-type > .full {
        margin-left: calc(-0rem);
        width: calc(100% + 0rem + 0.4725px);
    }

    #container01.columns > .wrapper > .inner > div > .full:first-child {
        margin-top: -0.1875rem !important;
    }

    #container01.columns > .wrapper > .inner > div > .full:last-child {
        margin-bottom: -0.1875rem !important;
    }

    #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
        margin-top: calc(-0rem) !important;
    }

    #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
        margin-bottom: calc(-0rem) !important;
    }

    #image02 img {
        height: 3.171875rem !important;
    }

    #image01 img {
        height: 20.125rem !important;
    }

    #buttons04 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons04 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons01 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons01 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons02 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons02 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons03 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons03 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons06 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons06 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons07 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons07 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #buttons05 {
        width: 100%;
        margin-left: 0;
        padding: 0.09375rem 0;
    }

    #buttons05 li {
        max-width: 100%;
        margin: 0.1875rem 0;
    }

    #credits {
        font-size: 0.6em;
    }
}

#LoginTwitch {
    box-sizing: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    border: 1px solid transparent;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 30px;
    width: 400px;
    background: #9146ff;
    color: #fff;
}

.centerDiv {
	  margin: auto;
	  width: 50%;
	  padding: 10px;
}

body {
	font-family: arial;
}
#authButton {
    background: purple;
    color: white;
    border-radius: 12px;
    font-family: roboto;
    padding: 18px 60px;
}

#OBSLINK {
	width: -webkit-fill-available;
}

#content {
	width: 90%;
	left: 5%;
	right: 5%;
	position: absolute;
	height: auto;
}
.container {
	/* left: 5%; */
	/* right: 5%; */
	/* position: absolute; */
	background-color: #a6bcf6;
	padding: 20px;
	border-radius: 11px;
	color: white;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	min-height: 1000px;
}
.cContainer {
	width: 100px;
	height: 100px;
	background: #3344bd;
	border-radius: 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 12px;
	font-family: arial;
	color: white;
	float: left;
	margin: 5px;
	border: 1px solid transparent;
}
.cContainer:hover {
	cursor: pointer;
	/*border: 1px solid green;*/
	filter: brightness(0.5);
}

.cImage img {
	display:block;
	margin:auto;
}
.cTitle {
	text-align: center;
	margin: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: black;
}
			
.cCost {
	text-align: center;
	margin: 2px;
	background-color: black;
}

.cSelected {
  border: 12px green solid;
}

.pointsTable {
	overflow-x: scroll;
	display: -webkit-box;
}
.auth-link {
	background: purple;
	color: white;
	border-radius: 14px;
	font-family: roboto;
}

#unauthButton {
    background: purple;
    color: white;
    border-radius: 12px;
    font-family: roboto;
    padding: 11px;
    float: right;
    margin: 20px;
}
#unauthButton:hover {
	cursor: pointer;
	filter: brightness(0.5);
}

#unauthWarning {
    background-color: red;
	color:white;
}


#menu {
	/* height: 75px;*/
	overflow: auto;
}
.menuItem {
    background: black;
    border-radius: 11px;
    float: left;
    padding: 11px;
    margin: 20px;
}
.menuItem:hover {
	cursor: pointer;
	filter: brightness(0.5);
}
.menuItem:target {
	cursor: pointer;
	filter: brightness(0.11);
}
.contentItem{
	float: left;
    text-align: left;
    background: #a6bcf6;
    width: -webkit-fill-available;
    overflow: hidden;
    padding: 15px;
	border-radius: 15px;
    /* margin: 16px; */
}
#logindetails {
    width: 100%;
    display: flow-root;
    background-color: blueviolet;
    font-size: 47px;
    /* height: 90px; */
}

#loginHello {
    float: left;
		font-family: roboto;

}

#loginImg {
    float: right;
    width: 50px;
    height: 50px;
    background-color: white;
	margin: 3px;
	border-radius: 50px;
}

#loginImg > img{
    width: 100%;
	border-radius: 50px;
}
#playButton {
	background:white;
	cursor: pointer;
}
#playButton:hover {
		background:gray;
	cursor: pointer;

}