﻿body,
html {
    width: 100%;
    height: 100%;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    margin: 0;
    padding: 0;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #0f1e20;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

@-ms-viewport {
    width: 100%;
}

noscript {
    background: red;
}

/* #canvas{
    margin-top: 120px !important;
}
canvas{
    margin-top: 120px !important;
} */

#content {
    image-rendering: -moz-crisp-edges;
    -webkit-interpolation-mode: nearest-neighbor;
    -ms-interpolation-mode: nearest-neighbor;
    -ms-touch-action: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
    background-color: #fff;
    z-index: 100;
}

/*#orientation {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/play_landscape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(0, 0, 0);
    background-size: 100%;
    z-index: 999;
    display: none;
}*/

loader {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.bg {
    z-index: 9998;
}

.logo {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-modal {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

#header {
    position: absolute;
    width: 100%;
    /*background: #d35400;*/
    left: 0;
    top: 0;
}

#header h2 {
    padding-left: 0px;
}

.modal-contents {
    height: 200px;
    width: 500px;
    background-color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    border-radius: 4px;
}

.form {
    margin-top: 65px;
}

input {
    font-size: 18px;
    padding: 5px 10px 10px 0px;
    margin-right: 10px;
    display: block;
    /*width: 300px;*/
    border: none;
    border-bottom: 1px solid #757575;
    min-width: 100%;
}

input:focus {
    outline: none;
}

.profanityInfo {
    font-size: 18px;
    color: white;
    margin-top: 6px;
    margin-left: 25px;
    height: 20px;
    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;
    font-weight: 600;
}

.inputButtons {
    margin-top: 35px;
    padding-left: 25px;
    padding-right: 25px;
    float: right;
    margin-right: -10px;
}

.material-button-raised {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 8px;
    border: none;
    border-radius: 2px;
    padding: 0 10px;
    min-width: 64px;
    height: 48px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: #fff;
    background-color: #69b624;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
    border-radius: 12px;
    margin-bottom: -10px;
}

.red {
    background-color: #fd7eaa;
}

.material-button-raised:hover,
.material-button-raised:focus {
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.material-button-raised:active {
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.material-button-raised:disabled {
    color: rgba(0, 0, 0, 0.38);
    background-color: rgba(0, 0, 0, 0.12);
    box-shadow: none;
    cursor: initial;
}

.material-button-raised::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.2s;
}

.material-button-raised:hover::before {
    opacity: 0.12;
}

.material-button-raised:focus::before {
    opacity: 0.2;
}

.material-button-raised:active::before {
    opacity: 0.32;
}

.material-button-raised:disabled::before {
    opacity: 0;
}

.material-button-raised::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 18px;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    height: 32px;
    background-color: currentColor;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

.material-button-raised:active::after {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

.material-button-raised:disabled::after {
    opacity: 0;
}

.close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 42px;
    font-weight: 800;
    color: white;
    transform: rotate(45deg);
    cursor: pointer;
}

:hover {
    color: #666;
}

.add-button {
    position: absolute;
    top: -82px;
    right: 8px;
    width: 72px;
    height: 82px;
    border: none;
    padding: 0;
    background-color: #30a8e0;
    border-radius: 3px;
    cursor: pointer;
    /* display : 'none' */
}

.add-button-ico {
    display: inline-block;
    position: relative;
    transition: all 0.2s;
    margin-top: 5px;
    color: white;
}

.add-button-txt {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 0px;
    color: white;
}
#pb-slot-right-1,
#pb-slot-right-1_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-right-2,
#pb-slot-right-2_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-left-1,
#pb-slot-left-1_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-1,
#pb-slot-incontent-1_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-2,
#pb-slot-incontent-2_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-3,
#pb-slot-incontent-3_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-4,
#pb-slot-incontent-4_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-5,
#pb-slot-incontent-5_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-incontent-6,
#pb-slot-incontent-6_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

#pb-slot-anchor,
#pb-slot-anchor_wrapper {
    background: rgba(0, 0, 0, 0.1);
}

/*INPUT POPUP*/
.bg-modal {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-contents {
    display: block;

    padding: 0px;
    box-shadow: inset;

    width: 600px;
    height: 300px;
    /* background: rgb(255, 255, 255); */
    /* background: linear-gradient(180deg, rgba(78, 116, 163, 1) 0%, rgba(78, 116, 163, 1) 73%, rgba(78, 116, 163, 1) 89%, rgba(78, 116, 163, 1) 98%, rgba(78, 116, 163, 1) 100%); */
    background: rgb(76, 116, 163);

    border-radius: 25px;
}

.inputHeaderTitle {
    text-align: center;
    justify-items: center;
    font-size: 42px;

    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;

    /* color: rgb(226, 155, 1); */
    font-weight: 600;
    background-clip: text;
    color: white;
    /* filter: drop-shadow(2px 3px #993300); */
}

.HeaderTitle {
    text-align: center;
    justify-items: center;

    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;

    /* color: rgb(226, 155, 1); */

    background-clip: text;
    color: transparent;
    /* background-image: linear-gradient(180deg, #fff05c, #ff9005); */

    /* filter: drop-shadow(2px 3px #993300); */
}

.inputHeaderBar {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(89, 167, 221, 1) 5%, rgba(89, 167, 221, 0.8) 21%, rgba(89, 167, 221, 0.7) 68%, rgba(89, 167, 221, 0.7) 100%);
    height: 80px;
    border-radius: 25px 25px 0 0;
    text-align: center;
    vertical-align: middle;
    line-height: 80px;
}

.form {
    margin-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
}

.inputName {
    border: none;
    resize: none;
    padding-left: 10px;
    color: #fff;
    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;
    line-height: 2;
    border-radius: 15px;
    /* box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.3), inset -2px -2px 8px rgba(255, 255, 255, 0.1); */
    background-color: rgb(16, 19, 53);
    font-size: 28px;
    width: 100%;

    margin-top: 10px;
}

.inputName:focus {
    outline-color: none;
    border: none;
}

.inputHeader {
    text-align: center;
    justify-items: center;
    color: darkslategray;
    font-size: 48px;

    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;

    color: white;
}

.pleaseType {
    text-align: left;
    justify-items: left;

    font-size: 22px;

    font-family: 'Effra';
    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;

    color: white;
}

.inputPopUp {
    width: 100%;
    height: 100%;
}

#header {
    position: absolute;
    width: 100%;
    /*background: #d35400;*/
    left: 0;
    height: 40px;
    margin: 0;
}

#header h2 {
    padding: 0px;
    font-family: 'Roboto', 'Segoe UI', BlinkMacSystemFont, system-ui, -apple-system;
    font-size: 44px;
    font-weight: 500;
    margin-top: -24px;
}

@media (forced-colors: active) {
    .modal-contents {
        forced-color-adjust: none;
        background-color: Canvas;
        color: CanvasText;
        border: 2px solid CanvasText;
        background-image: none;
        box-shadow: none;
    }

    .inputName {
        forced-color-adjust: none;
        background-color: Field;
        color: FieldText;
        border: 2px solid FieldText;
        caret-color: FieldText;
        background-image: none;
        box-shadow: none;
    }

    .material-button-raised {
        forced-color-adjust: none;
        background-color: ButtonFace;
        color: ButtonText;
        border: 2px solid ButtonText;
        background-image: none;
        box-shadow: none;
    }
}
