html {
    width: 100%;
    height: 100vh;
    background: #ffffff;
}
@media screen and (min-device-width: 1400px) and (min-device-height: 800px) {
    html {
        background-color: #cccccc;
    }
}
body {
    margin: 0 auto !important;
    height: 100%;
    width: 100%;
    max-width: 1440px;
    min-height: 755px;
    font-size: 14px;
}

#root {
    margin: 0 auto;
    padding: 15px;
    height: 100%;
    width: 100%;
}

#root [data-reactroot] {
    margin: 15px;
    height: 100%;
}

@media screen and (orientation: portrait) {
    #root {
        padding: 0;
    }
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::selection {
    background-color: #bbdefb;
    color: #111;
}

@media screen and (min-device-width: 991px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: rgba(1, 1, 1, 0.2);
        overflow: hidden;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    ::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 10px;
    }
}

.valign-wrapper {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a:active,
a:visited,
a:link,
a:hover {
    text-decoration: none;
    color: inherit;
}

a.footer-a:hover {
    color: #ffc900;
}

.nomp {
    margin: 0 !important;
    padding: 0 !important;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.full-height {
    height: 100%;
    width: 100%;
}

.full-width {
    width: 100%;
}

.relativeDiv {
    position: relative;
}

.hide {
    display: none !important;
}

.ui.button,
.ui.input,
.ui.input > input,
textarea,
.ui.segment {
    border-radius: 5px !important;
}

.ui.buttons .ui.button,
.ui.action.input > .button,
.ui.action.input > .buttons > .button {
    border-radius: 0 !important;
}
.ui.buttons .button:first-child {
    border-top-left-radius: 0.28571429rem !important;
    border-bottom-left-radius: 0.28571429rem !important;
}
.ui.buttons .button:last-child,
.ui.action.input > .button,
.ui.action.input > .buttons > .button {
    border-top-right-radius: 0.28571429rem !important;
    border-bottom-right-radius: 0.28571429rem !important;
}

.blur-effect {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.Blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.brighten-effect {
    -webkit-filter: brightness(200%) blur(3px);
    filter: brightness(200%) blur(3px);
}

.Brighten {
    -webkit-filter: brightness(200%) blur(3px);
    filter: brightness(200%) blur(3px);
}

.contrast-effect {
    -webkit-filter: contrast(200%) blur(3px);
    filter: contrast(200%) blur(3px);
}

.Contrast {
    -webkit-filter: contrast(200%) blur(3px);
    filter: contrast(200%) blur(3px);
}

.greyscale-effect {
    -webkit-filter: contrast(100%) blur(3px);
    filter: contrast(100%) blur(3px);
}

.Greyscale {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}

.rotate-hue-effect {
    -webkit-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
}

.Rotate-Hue {
    -webkit-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
}

.invert-effect {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.Invert {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.saturate-effect {
    -webkit-filter: saturate(10) blur(3px);
    filter: saturate(10) blur(3px);
}

.Saturate {
    -webkit-filter: saturate(10) blur(3px);
    filter: saturate(10) blur(3px);
}

.sepia-effect {
    -webkit-filter: sepia(100%) blur(3px);
    filter: sepia(100%) blur(3px);
}

.Sepia {
    -webkit-filter: sepia(100%) blur(3px);
    filter: sepia(100%) blur(3px);
}

.ui.progress .bar {
    border-radius: 0 !important;
}

.CircularProgressbar {
    /*
     * This fixes an issue where the CircularProgressbar svg has
     * 0 width inside a "display: flex" container, and thus not visible.
     *
     * If you're not using "display: flex", you can remove this style.
     */
    width: 100%;
}

.CircularProgressbar .CircularProgressbar-path {
    stroke: red;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease 0s;
}

.CircularProgressbar .CircularProgressbar-trail {
    stroke: white;
}

.CircularProgressbar .CircularProgressbar-text {
    fill: red;
    font-size: 0;
    text-anchor: middle;
}

.CircularProgressbar .CircularProgressbar-background {
    fill: transparent;
}

.full-video-main iframe {
    height: 100%;
    width: 250%;
    left: 50%;
    position: absolute;
    /* transform: translateX(-50%); */
}

.animated_list .basic {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9em;
}

.animated_list .basic::after {
    color: black !important;
}

.animated_list .basic.inverted {
    border-radius: 5px;
    background: rgba(1, 1, 1, 0.95) !important;
    color: #fff !important;
    font-size: 0.9em;
}

.animated_list .disced {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    color: black !important;
    font-size: 0.9em;
}

.animated_list .disced::after {
    color: black !important;
}

.animated_list .disced.inverted {
    border-radius: 50%;
    background: rgba(1, 1, 1, 0.95) !important;
    color: #fff !important;
    font-size: 0.9em;
}

.animated_list .disced.inverted::after {
    color: #fff !important;
}

.ui.fluid.search input {
    width: 100vw;
    border-radius: 0;
}

.leaderboard .slick-initialized .slick-next {
    right: 5px !important;
    z-index: 1;
    top: 15%;
}

.leaderboard .slick-initialized .slick-prev {
    left: 5px !important;
    top: 15%;
    z-index: 1;
}

.leaderboard .slick-initialized .slick-next:before {
    color: #000 !important;
    z-index: 1;
}

.leaderboard .slick-initialized .slick-prev:before {
    color: #000 !important;
    z-index: 1;
}

.leaderboard .progressBar .bar {
    background: linear-gradient(to right, red, yellow) !important;
}

#tree-root-container ul {
    padding: 10px !important;
    overflow-y: auto;
}

#tree-root-container ul li {
    padding: 5px !important;
}

#tree-root-container ul li div[data-radium] {
    background: transparent !important;
    color: #fff !important;
}

.ui.dropdown .menu.right {
    left: auto !important;
    right: 0 !important;
}

.upload-field {
    position: relative;
    width: 70px;
    height: 50px;
    float: left;
    margin-right: 3.5px;
    cursor: pointer;
}

.upload-field input[type="file"] {
    width: 70px !important;
    height: 50px !important;
    overflow: hidden;
    cursor: pointer;
}

.upload-field button,
.upload-btn {
    width: 70px !important;
    text-align: center;
    font-size: 0.8em !important;
}

.upload-field button .icon,
.upload-btn .icon {
    display: block;
    margin: 5px auto !important;
}

.slick-arrow.slick-prev:before {
    color: #666;
}

.slick-arrow.slick-next:before {
    color: #666;
}

.qd-cover {
    width: 100%;
    height: 100%;
}

.ui.grid .one.wide.column {
    display: none !important;
}

.ReactTable .rt-td.wrappable-react-table-td {
    white-space: normal !important;
}

.css-f91fgu {
    background: #e5e5e5 !important;
}

.vimeo-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.vimeo-embed-container iframe,
.vimeo-embed-container object,
.vimeo-embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.search-input > input {
    padding: 7px 10px !important;
    border-radius: 5px;
}
.rdt_TableHeader {
    padding: 4px 0px 4px 16px !important;
}
.rdt_TableHeader > div {
    width: 100%;
}
.ui.form .fields {
    margin: 0 -0.5em 0 !important;
}
.ui.form .equal.width.fields .field {
    margin-bottom: 1em !important;
}
.ui.buttons {
    font-size: 1em !important;
}
.black-transparent-overlay {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+60,1+84 */
    background: -moz-linear-gradient(
        left,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 1) 84%,
        rgba(0, 0, 0, 1) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        left,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 1) 84%,
        rgba(0, 0, 0, 1) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 1) 84%,
        rgba(0, 0, 0, 1) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
}
.text-wrap {
    white-space: normal;
}

.vimeo-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.vimeo-embed-container iframe,
.vimeo-embed-container object,
.vimeo-embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vimeo .video-embed {
    width: 100% !important;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.video-responsive-43 {
    overflow: hidden;
    padding-bottom: 75%;
    position: relative;
    height: 0;
}
.video-responsive iframe,
.video-responsive-43 iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.ui.labeled.icon.button > .icon,
.ui.labeled.icon.buttons > .button > .icon {
    background: #454545 !important;
    color: #ffffff !important;
    cursor: pointer;
}
.ui.labeled.icon.button:hover > .icon,
.ui.labeled.icon.buttons:hover > .button > .icon {
    background: #ffbf00 !important;
    color: #ffffff !important;
}

.ui.primary.button,
.ui.primary.buttons .button {
    background: #fff9e6 !important;
    border: 2px solid #ffbf00 !important;
    color: #000000 !important;
}

.ui.primary.button:hover,
.ui.primary.buttons .button:hover {
    background: #f0b000 !important;
    color: #ffffff !important;
}

.ui.secondary.button,
.ui.secondary.buttons .button {
    background: #c9d6e2 !important;
    border: 2px solid #708090 !important;
    color: #000000 !important;
}

.ui.secondary.button:hover,
.ui.secondary.buttons .button:hover {
    background: #708090 !important;
    color: #ffffff !important;
}

.ui.primary.button.unclickable,
.ui.primary.buttons .button.unclickable {
    background: #f0b000 !important;
    color: #ffffff !important;
    pointer-events: none;
}

.ui.negative.button,
.ui.negative.buttons .button {
    background: #ffeaea !important;
    border: 2px solid #e57373 !important;
    color: #000000 !important;
}

.ui.negative.button:hover,
.ui.negative.buttons .button:hover {
    background: #e57373 !important;
    color: #ffffff !important;
}

.ui.button:disabled,
.ui.buttons .disabled.button,
.ui.disabled.active.button,
.ui.disabled.button,
.ui.disabled.button:hover {
    border: 1px solid #ccc !important;
    color: #ccc !important;
}

@media screen and (orientation: portrait) {
    .ui.primary.button,
    .ui.primary.buttons .button {
        background: #f0b000 !important;
        color: #ffffff !important;
    }
    .ui.secondary.button,
    .ui.secondary.buttons .button {
        background: #708090 !important;
        color: #ffffff !important;
    }
    .ui.negative.button,
    .ui.negative.buttons .button {
        background: #e57373 !important;
        color: #ffffff !important;
    }
}

/* .ui.yellow.segment:not(.inverted):hover {
    transform: translateY(-3px);
} */

.closer {
    float: right;
    color: #454545;
    cursor: pointer;
}
.closer:hover {
    color: #000000;
}
.add-subform-list-btn {
    border: none;
    border-radius: 5px !important;
}
.add-subform-list-btn:hover {
    background: #f0b000 !important;
    color: #ffffff !important;
}
.remove-subform-list-btn {
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.remove-subform-list-btn:hover {
    background: #e57373 !important;
    color: #ffffff !important;
}
.image-uploader-btn:hover {
    background: #f0b000 !important;
    color: #ffffff !important;
}
.image-remove-btn:hover {
    background: #e57373 !important;
    color: #ffffff !important;
}
.ui.right.labeled.input .label {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 36px !important;
    font-size: 0.75em !important;
}

.ui.right.labeled.input input {
    font-size: 0.75em !important;
    height: 36px !important;
}
.react-share__ShareButton {
    margin-right: 10px;
    margin-bottom: 10px;
}
.react-share__ShareButton:hover {
    transform: translateY(-3px);
}

.menu-drop {
    background: #454545 !important;
    color: #ffffff !important;
    cursor: pointer;
}
.menu-drop:hover {
    background: #f0b000 !important;
}
.result-label {
    background: #454545 !important;
    color: #ffffff !important;
    cursor: pointer;
}
.result-label-active {
    background: #121212 !important;
    color: #ffffff !important;
    cursor: normal;
}
.result-label:hover {
    background: #f0b000 !important;
    color: #ffffff !important;
}
.game-selector .slick-slide:hover {
    background: #f0b000 !important;
    padding: 5px;
    cursor: pointer;
}
.skipper-link:hover {
    cursor: pointer;
    text-decoration: underline;
}
/* @media screen and (max-device-height: 720px) { */
.ReactTable .rt-th,
.ReactTable .rt-td {
    padding: 2px 6px !important;
}
/* } */
.ui.ribbon.label {
    border-bottom-right-radius: 0 !important;
}
.anavbar {
    position: fixed;
    width: 100%;
    height: 60px;
    background: #ffffff;
    z-index: 999999;
    box-shadow: 0 2px 3px 1px #999;
}
.anavbar-back {
    position: absolute;
    left: 10px;
    top: 15px;
}
.anavbar-logo {
    position: absolute;
    left: 75px;
    top: 15px;
    width: 140px;
}
.anavbar-save {
    position: absolute;
    right: 10px;
    top: 15px;
}
.help-btn,
.copy-icon {
    color: #666666;
    cursor: pointer;
}
.help-btn:hover,
.copy-icon:hover {
    color: #000000;
}
.copy-icon {
    margin-left: 10px !important;
}

.badge-base {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    border-radius: 50%;
    margin: 5%;
    position: relative;
    box-shadow: 1px 1px 10px 1px #666666;
}
.badge-img {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}
.badge-overlay {
    position: absolute;
    top: 5%;
    bottom: 0;
    left: 5%;
    right: 0;
    height: 90%;
    width: 90%;
    opacity: 0;
    transition: 0.5s ease;
    border-radius: 50%;
}

.badge-base:hover .badge-overlay {
    opacity: 1;
}

.badge-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.badge-header {
    font-size: 1.25em;
    margin: 0 0 5px 0;
}
.badge-content {
    font-size: 0.8em;
}
.medal-base {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    position: relative;
    margin: 10%;
    box-shadow: 1px 1px 10px 1px #666666;
}
.medal-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: grayscale(100%);
    opacity: 0.8;
}
.medal-metal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: 0.85;
    overflow: hidden;
}
.medal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: 0.5;
    overflow: hidden;
}

.medal-overlay:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);

    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Hover state - trigger effect */

.medal-overlay:hover:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.reward-base {
    width: 100%;
    height: 0;
    border: 1px solid #cccccc;
    padding-bottom: 100%;
    position: relative;
}
.reward-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.reward-img {
    width: 33.33%;
}
.reward-header {
    margin: 0;
    font-size: 1.25em;
}
.reward-content {
    width: 80%;
    margin: 0 auto;
    font-size: 0.9em;
}

.profile-base {
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    position: relative;
}
.profile-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    color: #121212;
    text-align: center;
    padding: 15px;
    overflow: auto;
}
.profile-logo {
    width: 3em;
    height: 3em;
    padding: 0.5em;
    font-size: 2em;
    line-height: 2em;
    margin: 0 auto;
    background: #ffc900;
    color: black;
    border-radius: 10px;
}
.profile-team {
    font-size: 0.75em;
    color: #454545;
}
.profile-level {
    margin: 5px 5%;
    width: 90%;
    height: 22px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    font-size: 0.75em;
    line-height: 22px;
    overflow: hidden;
}
.profile-level-name {
    margin-bottom: 5px;
}
.profile-level-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    background: #ffc90066;
}
.profile-section-header {
    padding: 6px 12px;
    margin: 12px;
    background: #f5f5f5;
}
/* container */
.leaderboard-container {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

/* leaderboard */
.leaderboard-container .leaderboard {
    background: linear-gradient(to bottom, #3a404d, #181c26);
}

/* head */
.leaderboard-container .leaderboard .lhead {
    padding: 10px 8px;
    color: snow;
    font-size: 20px;
    text-align: center;
}
.leaderboard-container .leaderboard .lhead h3 {
    display: inline-block;
    margin: 0;
}
.leaderboard-container .leaderboard .lhead p {
    font-size: 0.8em;
    font-style: italic;
}

/* body */
.leaderboard-container .leaderboard .llist {
    color: #121212;
    font-size: 16px;
}
.leaderboard-container .leaderboard ol {
    counter-reset: number;
    margin: 0;
    padding: 0;
}
.leaderboard-container .leaderboard li {
    padding: 8px 16px;
    display: flex;
}
.leaderboard-container .leaderboard li mark {
    flex-grow: 1;
    color: #121212;
    background-color: transparent;
}
.leaderboard-container .leaderboard li:before {
    counter-increment: number;
    content: counter(number) ".";
    margin-right: 4px;
}
.leaderboard-container .leaderboard li:nth-child(odd) {
    background: #f5f5f5;
}
.leaderboard-container .leaderboard li:nth-child(even) {
    background: #e5e5e5;
}

.scratchcard-base {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.scratchcard-base .reward-base {
    user-select: none;
}
.scratchcard-img {
    width: 100%;
}
.js-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.qcanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.ui.toggle.checkbox input:checked ~ .box:before,
.ui.toggle.checkbox input:checked ~ label:before {
    background-color: #5ebfdc !important;
}


/*# sourceMappingURL=main.css.map*/