
.mobile-only {
    display: none;
}

.style-input-group {
    position: relative;
    margin-bottom: 45px;
    width: 350px
}

    .style-input-group.small {
        width: 150px;
    }

    .style-input-group.full {
        width: 100%;
    }

    .admin-settings {
        background-color: deepskyblue;
        padding: .5rem;
        color: white;
        border-radius: 8px;
    }

    .style-input-group > input, .style-input {
        font-size: 18px;
        padding: 10px 0px 10px 5px;
        -webkit-appearance: none;
        display: block;
        background-color: transparent;
        background: transparent;
        color: #333;
        width: 100%;
        width: -webkit-fill-available;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #757575;
        min-height: 50px;
        line-height:28px;
    }

        .style-input :focus {
            border-bottom: 2px solid #757575;
        }

        .style-input-group > input::placeholder {
            color: transparent;
        }

        .style-input-group > input::-webkit-input-placeholder {
            /* WebKit browsers */
            color: transparent;
        }

        .style-input-group > input:-moz-placeholder {
            /* Mozilla Firefox 4 to 18 */
            color: transparent;
        }

        .style-input-group > input::-moz-placeholder {
            /* Mozilla Firefox 19+ */
            color: transparent;
        }

        .style-input-group > input:-ms-input-placeholder {
            /* Internet Explorer 10+ */
            color: transparent;
        }

    .style-input-group.show-placeholder > input::placeholder {
        color: #aaa;
    }

    .style-input-group.show-placeholder > input::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #aaa;
    }

    .style-input-group.show-placeholder > input:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #aaa;
    }

    .style-input-group.show-placeholder > input::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #aaa;
    }

    .style-input-group.show-placeholder > input:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #aaa;
    }

    .style-input-group > input:focus::placeholder {
        color: #aaa;
    }

    .style-input-group > input:focus::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #aaa;
    }

    .style-input-group > input:focus:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #aaa;
    }

    .style-input-group > input:focus::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #aaa;
    }

    .style-input-group > input:focus:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #aaa;
    }

    .style-input-group > textarea::placeholder {
        color: #aaa;
    }

    .style-input-group > textarea::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #aaa;
    }

    .style-input-group > textarea:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #aaa;
    }

    .style-input-group > textarea::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #aaa;
    }

    .style-input-group > textarea:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #aaa;
    }

    .style-input-group > input:focus {
        outline: none;
    }


    /* Label */

    .style-input-group > .label::first-letter {
        text-transform: uppercase;
    }

    .style-input-group > .label {
        color: #666;
        font-size: 18px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 10px;
        transition: all 0.2s ease;
        padding: 0px;
        line-height: 14px;
    }

    .style-input-group > .fake-label {
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        padding: 0px;
        top: -20px;
        font-size: 14px;
        left: 0px;
        /*white-space: nowrap;*/
        line-height: 14px;
    }
    
    .style-input-group > .fake-label > label {
        font-weight: normal;
        pointer-events: none;
        padding: 0px;
        font-size: 14px;
    }
.fake-label-top {
    font-weight: normal;
    pointer-events: none;
    padding: 0px;
    top: -20px;
    font-size: 14px;
    /*white-space: nowrap;*/
    margin-bottom: -30px;
    max-width: 350px !important;
    margin:auto;
}
    /* active */

    .style-input-group > input:focus ~ .label, .style-input-group > input.used ~ .label, .style-input-group.show-placeholder > input:hover ~ .label, .style-input-group > select.selectized ~ .label {
        top: -20px;
        left: 0px;
        font-size: 14px;
        color: #666;
    }

    /* Underline */

    .style-input-group > input > .input-bar {
        position: relative;
        display: block;
        width: 100%;
    }

.input-bar:before, .input-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #000;
    transition: all 0.2s ease;
}

.input-bar:before {
    left: 50%;
}

.input-bar:after {
    right: 50%;
}


/* active */

.style-input-group > input:focus ~ .input-bar:before, .style-input-group > input:focus ~ .input-bar:after {
    width: 50%;
}





.style-input-group > select {
    font-size: 18px;
    padding: 10px 0px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #333;
    width: 100%;
    width: -webkit-fill-available;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

.style-input-group > i {
    position: absolute;
    right: 0.5em;
    top: 1em;
}

.style-input-group > select:focus ~ i, .style-input-group > select.used ~ i {
    /*display: none;*/
}

.style-input-group > select:focus {
    outline: none;
}

    /* active */

    .style-input-group > select:focus ~ .label, .style-input-group > select.used ~ .label {
        top: -20px;
        left: 0px;
        font-size: 14px;
        color: #666;
    }


/* Underline */

.style-input-group > select > .input-bar {
    position: relative;
    display: block;
    width: 100%;
}

/* active */

.style-input-group > select:focus ~ .input-bar:before, .style-input-group > select:focus ~ .input-bar:after {
    width: 50%;
}


.style-input-group > select > option:disabled {
    text-decoration: underline;
    display: none;
}

.style-input-group > textarea {
    font-size: 18px;
    padding: 10px 0px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #333;
    width: 100%;
    width: -webkit-fill-available;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
    height: 46.45px;
    overflow: hidden;
}

    .style-input-group > textarea:focus ~ i, .style-input-group > textarea.used ~ i {
        display: none;
    }

    .style-input-group > textarea:focus {
        outline: none;
    }

        /* active */

        .style-input-group > textarea:focus ~ .label, .style-input-group > textarea.used ~ .label {
            top: -20px;
            left: 0px;
            font-size: 14px;
            color: #666;
            width: 100%;
            text-align: left;
        }


    /* Underline */

    .style-input-group > textarea > .input-bar {
        position: relative;
        display: block;
        width: 100%;
    }

    /* active */

    .style-input-group > textarea:focus ~ .input-bar:before, .style-input-group > textarea:focus ~ .input-bar:after {
        width: 50%;
    }


.style-input-group .selectize-input {
    font-size: 18px;
    -webkit-appearance: none;
    background: #fff;
    color: #666;
    width: 100% !important;
    width: -webkit-fill-available;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
    min-height: 46.7px;
    padding: 15px 0px 15px 15px!important;
}

.selectize-dropdown {
    width: -webkit-fill-available;
    border: none;
    border-radius: 5px;
    line-height: 2.5;
    font-size: 16px;
    font-family: Nunito,Nunito Sans,Lato,Arial;
    color: #555;
    padding: 0px 0px;
    margin-bottom: 15px;
    min-height: 40px;
}

.selectize-dropdown .option {
    padding: 2px 2px 1px;
}

.selectize-dropdown .option.active {
    color: #fff;
    background-color: #3298FD;
}

.style-input-group > .select2-container {
    font-size: 18px;
    padding: 7px 0px 7px 5px;
    -webkit-appearance: none;
    /* display: block; */
    background: transparent;
    color: #666;
    width: 100% !important;
    width: -webkit-fill-available;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
    /* height: 46.45px; */
    overflow: hidden;
    z-index: 1;
}

.style-input-group.error > .select2-container, .style-input-group.error > select {
    border-bottom: 1px solid rgb(252,160,79);
}

.style-input-group > .select2-container--default .select2-selection--multiple {
    border: none !important;
}

.style-input-group > .select2-container > .selection > .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
}

    .style-input-group > .select2-container > .selection > .select2-selection--single > .select2-selection__rendered {
        padding-left: 0px !important;
    }

    .style-input-group > .select2-container > .selection > .select2-selection--single > .select2-selection__arrow {
        display: none !important;
    }











.style-input-group.error > input {
    /*color: rgb(252,160,79);*/
    border-bottom: 1px solid rgb(252,160,79);
    background-color: rgb(255,235,201) !important;
}

.style-input-group > label.error {
    border-bottom: none;
    position: absolute;
    font-size: 12px;
}

label.error {
    display: none;
}

.style-input-group.error > label.error {
    display: block;
}

.style-input-group.error > .input-bar:before, .style-input-group.error > .input-bar:after {
    background-color: rgb(252,160,79);
}

.form-group-check.error > label.error {
    display: block;
}

.style-full-checkbox {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 45px;
    cursor: pointer;
    display: flex;
}

    .style-full-checkbox > div {
        width: 50%;
        background-color: #ddd;
        display: inline-block;
        text-align: center;
        padding: 10px;
        -webkit-transition: background-color .5s ease-out;
        -moz-transition: background-color .5s ease-out;
        -o-transition: background-color .5s ease-out;
        transition: background-color .5s ease-out;
        margin: 0px 1px;
    }

        .style-full-checkbox > div.active {
            color: #fff;
            background-color: #000;
        }


.active.hide-none-active {
    display: none;
}


.style-button {
    padding: .5em 1.5em;
    border-radius: 5px;
    border: none;
    margin: 1rem .5em;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: visible;
    align-items: center;
    text-align: center;
}

    .style-button:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 120px;
        height: 120px;
        margin-left: -60px;
        margin-top: -60px;
        background: #e3f2fd;
        border-radius: 100%;
        opacity: .5;
        transform: scale(0);
    }

    .style-button:after {
        visibility: hidden;
    }

    .style-button:focus {
        outline: none;
    }

        .style-button:focus:after {
            visibility: visible;
        }

    .style-button:not(:active):after {
        animation: style-button-an 1.5s ease-out;
    }

    .style-button:hover {
        box-shadow: 0 5px 10px rgba(0,0,0,0.25), 0 1px 1px rgba(0,0,0,0.22);
        cursor: pointer;
    }

    .style-button:disabled {
        opacity: .7;
        box-shadow: none;
        cursor: not-allowed;
    }

.style-button-primary {
    background: #3eb7f4;
    color: white;
}

.style-button-warning {
    background: #f47b3e;
    color: white;
}

.style-button-danger {
    background: #f43e5c;
    color: white;
}


    .style-button-success.disabled {
        opacity: .7;
        box-shadow: none;
        cursor: not-allowed;
    }

    .style-button-success.disabled > button {
        cursor: not-allowed;
    }

.style-button-storm {
    background: #A0A0A0;
    color: white;
}

    .style-button-storm.disabled {
        opacity: .7;
        box-shadow: none;
        cursor: not-allowed;
    }

        .style-button-storm.disabled > button {
            cursor: not-allowed;
        }

.style-button-black {
    background: black;
    color: white;
}

.rule-field.style-input-group{
    background-color:#fff;
}

    .rule-field.style-input-group.error {
        color: initial;
    }
    @keyframes style-button-an {
        0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}



.style-button-small {
    width: 100px;
    white-space: nowrap;
}

.style-button.style-button-small:after {
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
}

.style-button-medium {
    width: 200px;
    padding: .7em 1.5em;
}

.style-button.style-button-medium:after {
    width: 160px;
    height: 160px;
    margin-left: -80px;
    margin-top: -80px;
}

.style-button-large {
    width: 200px;
    padding: 1.25em 1.5em;
}

.style-button.style-button-large:after {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
}

.style-button-full {
    width: 100%;
    margin: 0px;
}

.style-button-50 {
    width: calc(50% - 2px);
    margin: 0px;
    display: inline-block
}

a.style-button {
    display: block;
    text-align: center;
}

.style-button.style-button-full:after {
    width: 100%;
    margin-left: -50%;
}

.style-sub-button {
    border: 1px solid #767676;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.style-sub-button:hover {
    filter: invert(100%);
    color: #000;
}

.style-combo-btn-container {
    padding: 0em .5em;
    border-radius: 5px;
    border: none;
    margin: 0;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 40px;
    position: relative;
    overflow: visible;
}

    .style-combo-btn-container > button {
        padding: .5em 0em;
        width: 100%;
        border: none;
        background-color: transparent;
    }

    .style-combo-btn-container > .style-combo-btn-drop {
        border-left:1px solid #fff;
    }
        .style-combo-btn-container > .style-combo-btn-drop > i {
            margin-left: .5em;
        }

    .style-combo-btn-container .dropdown-menu {
        width:100%;
        cursor:pointer;
    }

    .style-combo-btn-container .dropdown-menu.open {
        display: block;
    }



/*daterangepicker bug fix*/
.daterangepicker.ltr .drp-calendar.left {
    display: inline-block !important;
}

.fade-in {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 4rem;
    height: 100%;
    justify-items: stretch;
    min-height: 100vh;
    font-size: 18px;
    width: 100%;
    justify-items: center;
    align-items: center;
    background-image: url(/images/Grey-Pattern.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    -o-background-size: 60% 100%;
    -webkit-background-size: 60% 100%;
    -moz-background-size: 60% 100%;
    background-size: 60% 100%;
    background-color: #fff;
}

    .login-grid > div {
        justify-self: center;
    }


.competitionFilter {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    border: 1px solid #e8e8e8;
    border-radius: .3rem;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-family: Nunito,Nunito Sans,Lato,Arial;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

    .competitionFilter .custom-dropDown {
        display: inline-block;
        vertical-align: top;
        max-width: 22em;
        -ms-flex: 1;
        flex: 1;
    }

.custom-dropDown {
    position: relative;
    cursor: pointer;
    width: 20em;
    padding: 0;
}

    .custom-dropDown .label {
        position: absolute;
        left: 1.8em;
        top: 1.2em;
        pointer-events: none;
        margin-bottom: .3em;
        font-size: 1.1em;
        color: #777;
        font-weight: 400;
        white-space: nowrap;
    }

    .custom-dropDown.open .dropdownList {
        visibility: visible;
        transform: scale(1);
    }


.pulse-btn-success {
    animation: pulse-btn-success 2s infinite;
}

@keyframes pulse-btn-success {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(63, 209, 0, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(63, 209, 0, 0);
    }
}




.red-dot {
    position: absolute;
    top: 10px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    padding: 0px;
    background: rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 3s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }
}

    .custom-dropDown .label {
        position: absolute;
        left: 1.2em;
        top: 1.2em;
        pointer-events: none;
        margin-bottom: .3em;
        font-size: 1.1em;
        color: #777;
        color: var(--market-secondary-text-color);
        font-weight: 400;
        white-space: nowrap;
    }

    .custom-dropDown.open .dropdownList {
        visibility: visible;
        transform: scale(1);
    }

    .custom-dropDown .dropdownList {
        visibility: hidden;
        transform: scale(0);
        position: absolute;
        top: 7em;
        left: 0;
        z-index: 70;
        background: #fff;
        min-width: 100%;
        transition: .1s;
        box-shadow: 0 1px 12px 0 rgba(0,0,0,.15);
        border-radius: 0 0 2px 2px;
        max-height: 40em;
        overflow-y: auto;
        padding: 0em 0;
    }

    .custom-dropDown > .selection {
        transition: all .2s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-weight: 600;
        color: #2f2f2f;
        color: var(--market-primary-text-color);
        font-size: 1.5em;
        padding: 2.3em 1.5em 1em 1.5em;
    }

    .custom-dropDown input.selection {
        border: none;
        width: -webkit-fill-available;
    }
    .custom-dropDown input.selection::placeholder{
        color:#000;
    }
        .custom-dropDown input.selection:focus::placeholder {
            color: transparent;
        }
    .custom-dropDown > i {
        display: block;
        width: 8px;
        height: 10px;
        position: absolute;
        right: 1.8em;
        top: 50%;
        transform: translateY(-50%);
    }

    .custom-dropDown:before {
        background: #e8e8e8;
        bottom: 1em;
        content: "";
        display: block;
        height: auto;
        position: absolute;
        right: 0;
        top: 1em;
        width: 1px;
    }

    .custom-dropDown .dropdownList li {
        color: #333;
        padding: 1rem 1.5rem;
        cursor: pointer;
        font-size: 1.4rem;
        transition: all .1s;
        display: flex;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        align-items: center;
    }

        .custom-dropDown .dropdownList li img {
            width: 2em;
            height: 2em;
            /* object-fit: scale-down; */
            margin-right: .5em;
        }

        .custom-dropDown .dropdownList li i {
            padding: 0px .5ch;
            font-size: 1.5em;
            color: inherit;
        }

        .custom-dropDown .dropdownList li.active {
            background-color: #08c;
            color: #fff;
        }


        .custom-dropDown .dropdownList li.highlight, .custom-dropDown .dropdownList li:focus, .custom-dropDown .dropdownList li:hover {
            font-weight: 700;
        }

.custom-dropDown-calendar {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer !important;
}

.custom-dropDown .daterangepicker {
    position: absolute;
    top: 6em !important;
    left: 0;
    z-index: 70;
    background: #fff;
    min-width: 100%;
    transition: .1s;
    box-shadow: 0 1px 12px 0 rgba(0,0,0,.15);
    border-radius: 0 0 2px 2px;
    max-height: 300px;
    overflow-y: auto;
    padding: 0;
    margin-top: -10px;
    width: max-content;
}

.custom-dropDown .ranges, .custom-dropDown .ranges ul {
    width: auto;
}

    .custom-dropDown .ranges li {
        color: #333;
        padding: 1rem 2rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: all .2s;
    }

.custom-dropDown .drp-calendar {
    min-width: auto;
    padding: 0px;
}

.custom-dropDown.solo {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding: 0px 0px 10px;
}
.custom-dropDown.solo .label {
    position: initial;
    left: 1.8em;
    top: 1.2em;
    pointer-events: none;
    margin-bottom: .3em;
    font-size: 1.1em;
    color: #777;
    font-weight: 400;
    white-space: nowrap;
    display: inline-block;
    padding:0px;
}

    .custom-dropDown.solo .selection {
        transition: all .2s;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-weight: 700;
        color: #2f2f2f;
        font-size: 1.1em;
        padding: 0px;
        display: inline-block;
        line-height: 1;
        vertical-align: baseline;
        text-align: center;
        margin-bottom: .3em;
        margin-left: .5em;
    }

    .custom-dropDown.solo i {
        display: block;
        position: initial;
        transform: translateY(0);
        margin-left: .5em;
    }

    .custom-dropDown.solo .dropdownList {
        top: 2em;
        left: auto;
        right: 0px;
        min-width: 10em;
    }

.dropdownList > .search {
    padding: 0px !important;
    position: sticky;
    top: 0px;
}

    .dropdownList > .search > input {
        width: 100%;
        padding: 1rem;
    }

.style-table-admin {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none
}

    .style-table-admin input,
    .style-table-admin select {
        font-size: 14px;
        min-height: auto;
    }

    .style-table-admin > tbody > tr > th, .style-table-admin > tfoot > tr > th, .style-table-admin > thead > tr > th {
        color: #666;
        text-align: center;
        padding: 10px 5px;
        font-size: 14px;
    }

    .style-table-admin > tbody > tr > td, .style-table-admin > tfoot > tr > td {
        padding: 5px 10px;
        font-size: 16px;
        height: 60px;
        background-color: #fff;
        border: 1px solid #555;
        max-width: 250px;
        min-width: 100px;
        font-size: 12px;
    }
        .style-table-admin > tbody > tr > td.error, .style-table-admin > tfoot > tr > td.error {
            background-color: rgba(255,51,102,.27);
        }

        .style-table-admin > tbody > tr > td > .style-input-group, .style-table-admin > tfoot > tr > td > .style-input-group {
            width:100%;
        }

.style-table {
    width: 100%;
    /*box-shadow: 0px 0px 10px 1px #eee;*/
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    /*table-layout: fixed;*/
}

    .style-table > tbody > tr > th, .style-table > tfoot > tr > th, .style-table > thead > tr > th {
        color: #404040;
        background-color: #E0E0E0;
        text-align: center;
        padding: 10px 5px;
        font-size: var(--community-p-font-size);
    }

    .style-table > tbody > tr, .style-table > tbody > tr, .style-table > tfoot > tr, .style-table > tfoot > tr, .style-table > thead > tr, .style-table > thead > tr {
        border-bottom: 1px solid #F2F2F2;
    }

        .style-table > tbody > tr > td, .style-table > tfoot > tr > td, .style-table > thead > tr > td {
            padding: 5px 5px;
            font-size: var(--community-p-font-size);
            height: 62px;
            background-color: #fff;
        }


            .style-table > tbody > tr > td.action, .style-table > tfoot > tr > td.action, .style-table > thead > tr > td.action {
                background-color: #FAFAFA;
                width: 74px;
                height: 74px;
                text-align: center;
                font-size: 25px;
                cursor: pointer;
                padding: 0px;
                min-width: 30px;
            }

    .style-table thead tr:first-child th:first-child {
        border-top-left-radius: 10px;
    }

    .style-table thead tr:first-child th:last-child {
        border-top-right-radius: 10px;
    }

    .style-table th:first-child, .style-table td:first-child {
        padding-left: 15px;
    }


    .style-table .center {
        text-align: center;
    }

    .style-table .small {
        width: 7em;
        min-width: 6em;
        position: relative;
    }
    .style-table .medium {
        width: 10em;
        min-width: 10em;
        position: relative;
    }
    .style-table .large {
        width: 16em;
        min-width: 16em;
        position: relative;
    }

        .style-table .small .glyphicon {
            font-size: 12px;
            position: absolute;
            left: calc(50% - 6px);
            top: 26px;
        }

    .style-table .table-participant {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .style-table .participant-header {
        text-align: left;
        padding-left: 68px!important;
    }

    .style-table .bold {
        font-weight: bold;
        color: #000;
    }

    .style-table .highlight {
        color: #3399FF;
        font-size: 20px;
    }
        .style-table .highlight .sub-highlight {
            color: #999;
            font-size: .6em;
        }
    .style-table .thumbnail-img {
        width: 50px;
        height: 50px;
    }

    .style-table.static-right {
    }

        .style-table.static-right thead tr:first-child th:nth-last-child(2) {
            border-top-right-radius: 0px;
        }

        .style-table.static-right th:last-child, .style-table.static-right td:last-child {
            right: 0px;
            position: sticky;
            width: 80px;
            min-width: 80px;
            /*display: flex;*/
        align-items: center;
        justify-content: center;
        /*border-left: 1px solid #f2f2f2;
            border-bottom: 1px solid #f2f2f2;*/
    }

/*.style-table.static-right th:nth-last-child(2), .style-table.static-right td:nth-last-child(2) {
            padding-right: 5em;
            width: 10em;
            min-width:10em;
        }*/

.empty-dash:empty:before {
    content:"-";
}

.result-table {
    overflow: hidden;
    z-index: 2;
}

    .result-table td {
        border-left: 1px solid #F2F2F2;
    }

    .result-table > tbody > tr > td, .result-table > tfoot > tr > td, .result-table > thead > tr > td {
        background-color: transparent;
    }

    .result-table td:first-child {
        background-color: transparent;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: hidden;
        overflow-y: hidden;
        font-size: 14px;
    }

body:not(.nohover) .result-table tbody tr:hover {
    background-color: rgba(140,140,140,.2);
}

.result-table td:hover::after,
.result-table thead th:not(:empty):hover::after {
    content: '';
    height: 10000px;
    left: 0;
    position: absolute;
    top: -5000px;
    width: 100%;
    z-index: -1;
}

.result-table td:hover::after,
.result-table th:hover::after {
    background-color: rgba(140,140,140,.2);
}

.result-table td, .result-table th {
    padding: 10px;
    position: relative;
    outline: 0;
}

.wrapper {
    overflow: auto;
    position: relative;
    /*box-shadow: 0px 0px 10px 1px #eee;*/
    border-radius: 10px;
    padding: 0px;
}

.limit-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 21px;
    max-height: 48px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: help;
    -webkit-transition: max-height 0.8s;
    -moz-transition: max-height 0.8s;
    transition: max-height 0.8s;
}

    .limit-2:hover {
        overflow: visible;
        max-height: 300px;
        -webkit-line-clamp: initial;
    }

.fa-share-alt {
    font-size: 1.2em !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
    height: auto !important;
    min-width: 20px !important;
    line-height: 30px !important;
}

.social-container > .fa-share-alt {
    font-size: 2.7em !important;
    margin-right: 0px !important;
    margin-bottom: 5px !important;
    height: auto !important;
    line-height: 1 !important;
}

/* ################### MOBILE VIEW ################# */

@media only screen and (max-width: 800px) {
    .style-input-group {
        max-width: 100% !important;
        width: 100% !important;
        margin: 40px auto !important;
        padding: 0px !important;
    }

    .style-button {
        width: 100% !important;
        margin: 10px 0px;
    }

    .style-button-medium {
        width: 120px !important;
    }

    .style-input-group > input {
        font-size: 14px;
    }

    .style-input-group > .fake-label {
        top: 0px;
    }

    .login-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 0px;
        grid-gap: 0rem;
        -o-background-size: 75% 100%;
        -webkit-background-size: 75% 100%;
        -moz-background-size: 75% 100%;
        background-size: 75% 100%;
    }

    .hide-on-mobile {
        display: none;
    }

    .noProfileImage {
        margin: auto !important;
    }

    .style-table > tbody > tr > td, .style-table > tfoot > tr > td, .style-table > thead > tr > td {
        font-size: 12px;
        padding: 2px;
        height: 50px;
    }

    .style-table > tbody > tr > th, .style-table > tfoot > tr > th, .style-table > thead > tr > th {
        font-size: 10px;
    }

    .style-table .thumbnail-img {
        width: 40px;
        height: 40px;
    }

    .style-table th:first-child, .style-table td:first-child {
        padding-left: 0px;
    }

    .style-table .participant-header {
        text-align: left;
        padding-left: 60px!important;
    }

    .style-table .small {
        width: 4em;
        min-width: 4em;
    }

    .style-table .medium {
        width: 8em;
        min-width: 8em;
    }

    .style-table {
        margin-top: 10px;
        overflow: auto;
        overflow-y: scroll;
        display: block;
    }

    .style-table.static-right th:last-child, .style-table.static-right td:last-child {
       position: sticky;
    }

    .custom-dropDown .label {
        left: .2em;
        top: .2em;
    }
    .custom-dropDown .selection {
        padding: 1.2em 1em .5em 1em;
    }
    .custom-dropDown .dropdownList {
        top: 5.2em;
    }
    .competitionFilter .custom-dropDown {
        min-width: 50%;
    }
}

@media only screen and (max-width: 900px) {

    .mobile-flex-50 {
        width: 90% !important;
    }

    .mobile-flex-wrap {
        display: flex;
        flex-wrap: nowrap;
    }

    .mobile-text-center {
        text-align: center;
    }

    .style-input-group-mobile {
        margin-bottom: 3.5rem !important;
    }

    .mobile-checkbox-align {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .mobile-margin-bottom {
        margin-bottom: 2rem !important;
    }
}

@media only screen and (max-width: 650px) {

    .mobile-flex-50 {
        width: 50% !important;
    }
    
    .mobile-pull-right {
        margin-right: -3rem;
    }

    
}

@media only screen and (max-width: 550px) {
    .desktop-only {
        display: none!important;
    }

    .mobile-margin-top-large {
        margin-top: 7rem;
    }

    .mobile-margin-bottom-large {
        margin-bottom: 4rem !important;
    }

    .mobile-checkbox {
        white-space: nowrap;
    }

    .mobile-inline {
        display: inline-block;
    }

    .mobile-width {
        width: 100%;
    }

    .mobile-only {
        display: block;
    }

    .style-button {
        margin: 2rem 0;
    }

    .input-bar {
        margin: 0 0 1rem 0;
    }

    .deadline-mobile-positioning {
        
    }

    .fake-label {
        margin: -1.5rem 0 0 .5rem;
    }

    .challenge-limit-mobile {
        margin-top: 4rem !important;
        margin-bottom: 3rem !important;
    }
}

.photo-link, .video-link {
    cursor:pointer;
}
    .photo-link:hover, .video-link:hover {
        color: #000 !important;
    }

#imgModal,
#videoModal {
    display: none;
    position: fixed;
    z-index: 1010;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
}

    /* Modal Content (image) */
    #imgModal > .modal-content,
    #videoModal > .modal-content {
        margin: auto;
        display: block;
        width: 100%;
        max-width: 100vw;
        max-height: calc(100vh - 150px);
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    #imgModal > .modal-content,
    #videoModal > .modal-content {
        animation-name: zoom;
        animation-duration: 0.3s;
        object-fit: scale-down;
        background-color: #000;
    }

@keyframes zoom {
    from {
        transform: scale(0.1) translateY(-50%);
    }

    to {
        transform: scale(1) translateY(-50%);
    }
}

/* The Close Button */
#imgModal > .close,
#videoModal > .close {
    position: absolute;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1;
    background-color: #000;
    border-radius: 100%;
    padding: 0px 5px;
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border: 2px solid #fff;
    opacity: .8;
}

    #imgModal > .close:hover,
    #imgModal > .close:focus,
    #videoModal > .close:hover,
    #videoModal > .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        opacity: 1;
    }


.selectize-dropdown [data-selectable] {
    padding:5px;
    border-bottom:1px solid #ddd;
}

.selectize-dropdown [data-selectable]:empty {
    padding: 0px;
    border-bottom: none;
}