﻿
/* ============================================================
  HTML & BODY
============================================================ */

html {
    height: 100%;
    /*overflow: hidden;*/
}

body {
    /*background: url(/images/bg.jpg) no-repeat center bottom fixed;	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	height: 100%; */
    font-family: "century-gothic",sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #000;
    margin: 0;
    padding: 0;
    background: #fff;
}

a {
    color: #000;
    font-weight: 400;
    text-decoration: underline;
}

    a:hover {
        color: #000;
        text-decoration: none;
    }

    a:active {
        text-decoration: none;
    }

    a:visited {
        text-decoration: none;
    }

h1 {
    font-family: "century-gothic",sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.4em;
    margin: 0;
}

h2 {
    font-family: "century-gothic",sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.4em;
    margin: 0;
}

h3 {
    font-family: "century-gothic",sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.4em;
    margin: 0;
    letter-spacing: 3px;
}

hr {
    border: none;
    color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin-top: 25px;
    margin-bottom: 25px;
}

    hr.dashed {
        background-color: transparent;
        border-top: 2px dashed rgba(255, 255, 255, 0.2);
    }

img {
    border: none;
    max-width: 100%;
    /* just in case, to force correct aspet ratio */
    height: auto !important;
    margin: 0;
    vertical-align: middle;
}

input[type="email"] {    
    font-family: "century-gothic",sans-serif;
    font-size: x-large;
    border-radius: 2px;
    color: #000;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 1);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
}

input[type="password"] {    
    font-family: "century-gothic",sans-serif;
    font-size: x-large;
    border-radius: 2px;
    color: #000;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 1);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
}

    input[type="password"]:placeholder-shown {
        text-transform: uppercase;
    }

input[type="text"] {    
    font-family: "century-gothic",sans-serif;
    font-size: x-large;
    border-radius: 2px;
    color: #000;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 1);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
}
/* input[type="checkbox"] {
	-webkit-appearance: checkbox !important;
	-moz-appearance: checkbox !important;
	-ms-appearance: checkbox !important;
	-o-appearance: checkbox !important;
	appearance: checkbox !important;
}*/
select {    
    font-family: "century-gothic",sans-serif;
    font-size: x-large;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 7px;
    color: rgba(0, 0, 0, 1) !important;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 1);
    text-transform: uppercase;
    text-align-last: left;
}

    select:active, select:focus {
        background: rgba(0, 0, 0, 0.1) !important; /* to prevent Edge/IE extra background padding */
    }

    select option[value=""] {
        color: rgba(64,191,153, 0.8) !important;
    }

    select option {
        font-family: "century-gothic",sans-serif;
        font-size: large;
        background: rgba(3,9,25,1);
        padding: 7px;
        color: rgba(64,191,153, 0.8);
        text-transform: uppercase;
    }

.select-selected {
    color: #fff !important;
}

#selects {
    margin-bottom: 18px;
}

    #selects select {
        width: 30% !important;
    }

        #selects select.dm {
            margin-right: 4%;
        }

        #selects select.y {
            margin-right: 0;
        }

textarea {
    background: rgba(0, 0, 0, 0.1);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: none;
}

.txt-transform-none {
    text-transform: none !important;
}

::selection {
    background: #fff;
    color: #fff;
}

::-moz-selection {
    background: #fff;
    color: #fff;
}

::placeholder {
    color: #c3c3c3;
    text-align: center;
    text-transform: uppercase;
}

::-webkit-input-placeholder {
    color: #c3c3c3;
    text-align: center;
    text-transform: uppercase;
}

::-moz-placeholder {
    color: #c3c3c3;
    opacity: 0.3;
    text-align: center;
    text-transform: uppercase;
}

:-ms-input-placeholder {
    color: #c3c3c3 !important;
    text-align: center;
    text-transform: uppercase;
}
/* ============================================================
  PRIMARY STRUCTURE
============================================================ */

#contentbody {
    font-size: 24px;
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 50px;
    line-height: 1.5em;
    text-align: left;
    /*margin-top: 130px;*/
}

#scratchtowinbody {
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    width: 600px;
    margin: 0 auto;
    padding: 0 0 50px;
    line-height: 1.5em;
    margin-top: 130px;
}

#footer {
    margin: 0 auto;
    padding: 35px 0;
    width: 1200px;
    text-align: center;
}

#header {
    width: 100%;
    padding: 35px 0;
    overflow: hidden;
    top: 0;
    position: fixed;
    background-color: #151515;
    z-index: 100;
}

#header_promoter {
    width: 100%;
    padding: 35px 0;
    overflow: hidden;
    top: 0;
    position: fixed;
    background-color: #151515;
    text-align: center;
}
/*#header img {
  -webkit-filter: drop-shadow(5px 5px 5px #009549);
  filter: drop-shadow(5px 5px 5px #009549);
}*/
#popupbody {
    width: 95%;
    padding: 25px 2.5%;
    line-height: 1.5em;
    border-bottom: 8px solid #c6168d;
    border-top: 8px solid #c6168d;
}

    #popupbody input[type="email"] {
        width: 100%;
        text-align: left !important;
    }

    #popupbody input[type="password"] {
        width: 100%;
        text-align: left !important;
    }

    #popupbody input[type="text"] {
        width: 100%;
        text-align: left !important;
    }

    #popupbody select {
        width: 100%;
    }

    #popupbody textarea {
        width: 100%;
    }

    #popupbody ::placeholder {
        text-align: left;
    }

    #popupbody ::-webkit-input-placeholder {
        text-align: left;
    }

    #popupbody ::-moz-placeholder {
        text-align: left;
    }

    #popupbody :-ms-input-placeholder {
        text-align: left;
    }

.adminpagesplit {
    display: flex;
    overflow: hidden;
    height: 100vh;
    margin-top: -100px;
    padding-top: 100px;
    position: relative;
    width: 100%;
    backface-visibility: hidden;
    will-change: overflow;
}

    .adminpagesplit select {
        width: 100%;
        margin-bottom: 25px;
    }

.adminpagesplit_left::-webkit-scrollbar, .adminpagesplit_right::-webkit-scrollbar {
    display: none;
}

.adminpagesplit_left, .adminpagesplit_right {
    overflow: auto;
    height: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
}

.adminpagesplit_left {
    width: 45%;
}

.adminpagesplit_right {
    width: 55%;
    margin: 0 0 0 5%;
    flex: 1;
}

.align-left {
    text-align: left;
}

.brands {
    padding: 20px 0 0;
}

    .brands img {
        padding: 18px;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

        .brands img:hover {
            -webkit-filter: drop-shadow(5px 5px 5px #c6168d);
            filter: drop-shadow(5px 5px 5px #c6168d);
            -moz-transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -o-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
            cursor: pointer;
        }

    .brands ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .brands ul li {
            display: inline;
            margin: 0;
            padding: 0;
        }

.buttonalignright {
    text-align: right;
}

.lesstopmargin {
    margin-top: 25px !important;
}

#flexbrand {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#flexbrand > img {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.pagesplit {
    padding: 0;
}

    .pagesplit:after {
        content: "";
        display: table;
        clear: both;
    }

.left {
    float: left;
    width: 48.5%;
    padding: 0 3% 0 0;
    text-align: right;
}

.right {
    float: right;
    width: 48.5%;
    text-align: left;
}

.msgbox-header {
    border: 2px solid rgba(255, 255, 255, 0.1);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

    .msgbox-header i {
        padding-left: 8px;
        color: rgba(255, 255, 255, 1);
    }

    .msgbox-header .read {
        padding-left: 12px;
        margin-left: 10px;
        color: rgba(255, 255, 255, 1);
        border-left: solid 1px rgba(255, 255, 255, 0.1);
        text-transform: none;
        font-weight: normal;
    }

    .msgbox-header .haveread {
        color: rgba(255, 255, 255, 0.2);
    }

.msgbox-content {
    background: rgba(0, 0, 0, 0.08);
    color: #fff;
    font-size: 14px;
    padding: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 99.6%;
    margin: 0 auto 25px;
    box-sizing: border-box;
}

.msgbox-buttons {
    text-align: right;
}

.rankings_left {
    float: left;
    width: 40%;
    margin: 0;
}

.rankings_right {
    float: right;
    width: 55%;
    margin: 0 0 0 5%;
}

.rankings:after {
    content: "";
    display: table;
    clear: both;
}

.rowitem {
    padding: 7px 0;
    display: table;
    width: 100%;
    vertical-align: middle;
}

    .rowitem.alternate {
        color: rgba(255,255,255,0.5);
    }

    .rowitem button {
        margin-left: 10px;
    }

    .rowitem.alternate button {
        background-color: #fff;
        color: #40BF99;
    }

        .rowitem.alternate button:hover {
            background-color: #40BF99;
            color: #fff;
        }

    .rowitem.header {
        font-weight: bold;
    }

.left-cell {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    padding-right: 15px;
    text-align: left;
}

.middle-cells {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 10%;
}

.right-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.right-cell-alignleft {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.table_padding {
    table-layout: fixed;
}

    .table_padding input[type="email"] {
        width: 100%;
    }

    .table_padding input[type="password"] {
        width: 100%;
    }

    .table_padding input[type="text"] {
        width: 100%;
    }

    .table_padding select {
        width: 100%;
    }

    .table_padding textarea {
        width: 100%;
    }

    .table_padding td {
        padding-top: 10px;
        padding-bottom: 10px;
    }

.td_padding {
    padding-top: 15px;
    color: #000;
}

.login_page {
    width: 35%;
    padding-top: 30px;
    margin: 0 auto;
}

.bar_pages {
    /*width: 35%;*/
    margin: 0 auto;
}

.narrow_tables {
    width: 55%;
    margin: 0 auto;
}

.pagination {
    display: inline-block;
    padding: 50px 0;
    cursor: pointer;
}

    .pagination a {
        color: #fff;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .6s;
        margin: 0 4px;
    }

        .pagination a.active {
            background-color: #009fe2;
            color: white;
            border-radius: 2px;
        }

        .pagination a:hover:not(.active) {
            background-color: #545452;
            border-radius: 2px;
        }
/* This sllows centering floated elements */
.outer-div {
    position: relative;
    float: right;
    right: 50%;
}

.inner-div {
    position: relative;
    float: right;
    right: -50%;
}

.floating-div {
    float: left;
    margin: 0 1.5em;
    border: 1px solid red;
}
/* example of the floated div */
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.noprizesleft {
    color: #ff0000 !important;
}
/* ============================================================
  TEXT LEVEL SEMANTICS
============================================================ */

.boldme {
    font-weight: bold;
}

.centercontent {
    text-align: center !important;
}

.charactersremaining {
    padding: 0 10px;
    font-size: 14px;
    text-align: right;
    color: #cccccc;
}

.hiddenfile {
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.hiddenfileoffviewport {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.highlight {
    color: #c6168d;
    font-weight: 400;
}

    .highlight a {
        color: #c6168d;
        text-decoration: none;
    }

        .highlight a:hover {
            color: #fff;
            text-decoration: underline;
        }

.error {
    font-family: "century-gothic",sans-serif;
    color: #fff;
    background-color: #cc0000;
    border-radius: 2px;
    width: 94%;
    font-size: large;
    margin: 25px auto;
    padding: 3%;
    text-align: center;
}

.menu-selected {
    color: #c6168d !important;
}

.profiledetails_header {
    color: #009fe2;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 0;
}

.profilenomination {
    padding-bottom: 35px;
}

.profilenomination_details {
    padding-bottom: 5px;
}

.profilenomination_header {
    color: #009fe2;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 0 10px;
}

    .profilenomination_header i {
        padding: 0 15px 0 0;
    }

.colours-passion {
    color: #cd161a !important;
}

.colours-candid {
    color: #85c4b9 !important;
}

.colours-embracing {
    color: #fcc300 !important;
}

.colours-entrepreneurial {
    color: #7a7808 !important;
}

.colours-strength {
    color: #009fe2 !important;
}

.colours-value {
    color: #9d6883 !important;
}

.goback {
    font-family: "century-gothic",sans-serif;
    font-size: 20px;
    padding-bottom: 25px;
    padding-top: 25px;
}

.hugetxt {
    font-size: 36px;
}

.largetxt {
    font-size: 24px;
    line-height: 1.3em;
}

.mediumtxt {
    font-size: 20px;
    line-height: 1.3em;
}

.smalltxt {
    font-size: small;
}

.validation-error {
    color: #ff0000;
    font-size: large;
    padding-top: 10px;
}
/* ============================================================
  BUTTON STYLES
============================================================ */

/*Button Padding*/

.buttons {
    display: inline-block;
    width: 100%;
    padding: 40px 0 0;
}

.buttons_dblpad {
    display: inline-block;
    width: 100%;
    padding: 35px 0;
}
/*Button Padding End*/

.colour-change {
    background-color: #000;
    border-radius: 2px;
    font-family: "century-gothic",sans-serif;
    font-weight: 300;
    font-size: 22px;
    padding: 13px 30px;
    cursor: pointer;
    color: #fff;
    border: 0;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    height: auto;
    -webkit-appearance: none;
    text-transform: uppercase;
    border: 1px solid #000
}

    .colour-change:hover {
        background-color: #fff;
        color: #000;
    }

    .colour-change i {
        font-size: 24px;
        padding: 0 0 5px 10px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 0.9);
    }

    .colour-change:hover i {
        color: rgba(198, 22, 141, 0.9);
    }

    .colour-change.lefticon i {
        font-size: 24px;
        padding: 0 10px 5px 0;
        vertical-align: middle;
    }

.button-location {
    width: 255px;
}

.logout {
    font-size: 40px;
    position: absolute;
    right: 0;
    padding-right: 20px;
}

.leftalign {
    text-align: left;
}

.small {
    font-size: 14px;
    padding: 7px 12px 5px;
    letter-spacing: 3px;
}

    .small i {
        font-size: 18px;
        padding: 0 0 2px 10px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 0.9);
    }

    .small:hover i {
        color: #0077be;
    }

    .small.floatright {
        float: right;
    }

    .small.on {
        background-color: #c6168d;
        color: #fff;
    }

.pop-up-functions button {
    margin: 0 5px;
}

.marginleft {
    margin: 0 0 0 15px;
}

.adminbtns {
    background-color: #c6168d;
    border-radius: 2px;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
    width: 300px;
    margin: 0 0 35px;
    padding: 18px 30px;
}

    .adminbtns:hover {
        background-color: #fff;
        color: rgba(0, 0, 0, 0.6);
    }

    .adminbtns i {
        color: rgba(255, 255, 255, 0.3);
    }

    .adminbtns:hover i {
        color: rgba(0, 0, 0, 0.3);
    }

.gradient {
    flex: 1 1 auto;
    background-image: linear-gradient(to right, #ffe4b8 0%, #d1ad53 51%, #ffe4b8 100%);
    background-size: 200% auto;
}

    .gradient:hover {
        background-position: right center;
        background-image: linear-gradient(to right, #ffe4b8 0%, #d1ad53 51%, #ffe4b8 100%);
    }

.msgboxbtns {
    background-color: #292927;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    padding: 5px 14px 2px;
    color: #fff;
    text-transform: capitalize;
    margin-left: 10px;
}

    .msgboxbtns:hover {
        background-color: #fff;
        color: #292927;
    }

    .msgboxbtns i {
        color: rgba(255, 255, 255, 0.3);
    }

    .msgboxbtns:hover i {
        color: rgba(0, 0, 0, 0.3);
    }

.accept {
    margin-right: 25px;
    width: 300px;
}

.cancel {
    background-color: #fff;
    color: rgba(205, 19, 0, 0.8);
    margin-left: 20px;
}

    .cancel:hover {
        background-color: rgba(205, 19, 0, 1);
        color: rgba(255, 255, 255, 0.6);
    }

    .cancel i {
        color: rgba(205, 19, 0, 0.6);
    }

    .cancel:hover i {
        color: rgba(255, 255, 255, 0.4);
    }

.decline {
    background-color: #d71e37;
    background-image: none;
    color: #fff;
    border: 0;
    width: 300px;
}

    .decline:hover {
        background-color: #001b4c;
        background-image: none;
        color: #fff;
    }

.delete {
    background-color: #cd1300;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

    .delete:hover {
        background-color: #fff;
        color: rgba(0, 0, 0, 0.6);
    }

    .delete i {
        color: rgba(255, 255, 255, 0.3);
    }

    .delete:hover i {
        color: rgba(0, 0, 0, 0.3);
    }

.able {
    width: 500px;
}

.grey {
    background-color: #747474;
    color: rgba(255, 255, 255, 0.8);
    width: auto;
}

    .grey:hover {
        background-color: #fff;
        color: rgba(0, 0, 0, 0.6);
    }

.unable {
    background-color: #e32526;
    color: #fff;
    border: 2px solid #e32526;
    width: 500px;
    margin-bottom: 25px;
}

    .unable:hover {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

.upload {
    font-size: 18px;
    padding: 15px 25px;
    font-weight: 400;
    background-color: transparent;
    color: #c6168d;
    border: 2px solid #c6168d;
    text-transform: none;
}

    .upload:hover {
        background-color: #c6168d;
        color: rgba(255, 255, 255, 0.9);
    }

    .upload i {
        color: #c6168d;
    }

    .upload:hover i {
        color: rgba(255, 255, 255, 0.9);
    }

.upload-done {
    font-size: 18px;
    padding: 15px 25px;
    font-weight: 400;
    background-color: #c6168d;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid #c6168d;
    text-transform: none;
}

    .upload-done:hover {
        background-color: #c6168d;
        color: rgba(255, 255, 255, 0.9);
    }

        .upload-done:hover i {
            color: rgba(255, 255, 255, 0.9);
        }

.choose_avatar {
    background-color: #545452;
    color: #fff;
    border: 2px solid #292927;
    width: 100%;
}

    .choose_avatar:hover {
        background-color: #009fe2;
        color: #fff;
        border: 2px solid #009fe2;
    }

    .choose_avatar i {
        color: rgba(255, 255, 255, 0.3);
    }

    .choose_avatar:hover i {
        color: rgba(0, 0, 0, 0.3);
    }

.return {
    background-color: #545452;
    color: #fff;
}

    .return:hover {
        background-color: #fff;
        color: #545452;
    }

    .return i {
        color: rgba(255, 255, 255, 0.3);
    }

    .return:hover i {
        color: rgba(0, 0, 0, 0.3);
    }
/* Fix identing on label for checkbox */
/*
input[type="checkbox"] + label {
	display: block;
	margin-left: 20px;
	margin-top: -22px;
} */
/* ============================================================
  CUSTOM RADIO & CHECKBOX BUTTONS
============================================================ */

/* Checkbox */

.styled-checkbox {
    text-align: left;
}

    .styled-checkbox label {
        display: inline-block;
        padding-left: 1.2em !important;
        text-indent: -1.2em;
    }

    .styled-checkbox input {
        position: absolute; /* take it out of document flow */
        left: -9999px;
        opacity: 0; /* hide it */
    }

        .styled-checkbox input + label {
            position: relative;
            cursor: pointer;
            padding: 0;
        }
            /* Box. */
            .styled-checkbox input + label:before {
                content: '';
                margin-right: 10px;
                display: inline-block;
                vertical-align: text-top;
                width: 20px;
                height: 20px;
                background: white;
                border-radius: 2px;
                margin-top: 5px;
                border: 2px solid #000;
            }
        /* Box hover */
        .styled-checkbox input:hover + label:before {
            background: #fff;
        }
        /* Box focus */
        .styled-checkbox input:focus + label:before {
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
        }
        /* Box checked */
        .styled-checkbox input:checked + label:before {
            background: #fff;
        }
        /* Disabled state label. */
        .styled-checkbox input:disabled + label {
            color: #b8b8b8;
            cursor: auto;
        }
            /* Disabled box. */
            .styled-checkbox input:disabled + label:before {
                box-shadow: none;
                background: #ddd;
            }
        /* Checkmark. Could be replaced with an image */
        .styled-checkbox input:checked + label:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 18px;
            background: #000;
            width: 2px;
            height: 2px;
            box-shadow: 2px 0 0 #000, 4px 0 0 #000, 4px -2px 0 #000, 4px -4px 0 #000, 4px -6px 0 #000, 4px -8px 0 #000;
            transform: rotate(45deg);
        }

.unstyled {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .unstyled li {
        margin: 4px 0;
    }


/* Radio button */
.custom-radio input[type="radio"] {
    display: none;
}

    .custom-radio input[type="radio"] + label {
        font-size: 24px;
        cursor: pointer;
        margin: 0 8px 0 0;
    }

        .custom-radio input[type="radio"] + label span {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: -1px 8px 0 0;
            vertical-align: middle;
            cursor: pointer;
            -moz-border-radius: 50%;
            border-radius: 50%;
        }
        /* The trick: border creates same look as the radio button usually have */
        /* remove it to see what happens */
        .custom-radio input[type="radio"] + label span {
            background-color: #fff; /* have to be of the same color */
            border: 4px solid #000; /* have to be of the same color */
        }
    /* Checked state for radio */
    .custom-radio input[type="radio"]:checked + label span {
        background-color: #696969;
    }

/* Radio button that looks like a Checkbox */

@keyframes hover-color {
    from {
        border-color: #fff;
    }

    to {
        border-color: #fff;
    }
}

.custom-radio-check {
    position: absolute;
    display: none;
}

.custom-radio-check-rows p {
    margin: 2px 0;
}

.custom-radio-check[disabled] {
    cursor: not-allowed;
}

.custom-radio-check + label {
    position: relative;
    /*display: block;*/
    padding-left: 30px;
    cursor: pointer;
    vertical-align: middle;
}

    .custom-radio-check + label:hover:before {
        animation-duration: 0.4s;
        animation-fill-mode: both;
        animation-name: hover-color;
    }

    .custom-radio-check + label:before {
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        width: 22px;
        height: 22px;
        content: '';
        background-color: #c6168d;
    }

    .custom-radio-check + label:after {
        position: absolute;
        display: none;
        content: '';
    }

.custom-radio-check[disabled] + label {
    cursor: not-allowed;
    color: #c6168d;
}

    .custom-radio-check[disabled] + label:hover, .custom-radio-check[disabled] + label:before, .custom-radio-check[disabled] + label:after {
        cursor: not-allowed;
    }

        .custom-radio-check[disabled] + label:hover:before {
            border: 1px solid #c6168d;
            animation-name: none;
        }

    .custom-radio-check[disabled] + label:before {
        border-color: #c6168d;
    }

.custom-radio-check:checked + label:before {
    animation-name: none;
}

.custom-radio-check:checked + label:after {
    display: block;
}

.custom-radio-check + label:before {
    border-radius: 3px;
}

.custom-radio-check + label:after {
    top: 3px;
    left: 8px;
    box-sizing: border-box;
    width: 6px;
    height: 12px;
    transform: rotate(45deg);
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    border-top: 0;
    border-left: 0;
}

.custom-radio-check:checked + label:before {
    border: #c6168d;
    background: #c6168d;
}

.custom-radio-check:checked[disabled] + label:before {
    border: #d7ba85;
    background: #d7ba85;
}

.custom-radio-check-text {
    top: 1;
}

.pull-left {
    float: left !important;
}
/* End of Radio button that looks like a Checkbox */

/* ============================================================
  CUSTOM TABLES
============================================================ */

.centredlist {
    padding-top: 15px;
    text-align: left
}

.user-table {
    margin: 15px auto;
    border-collapse: collapse;
    /*border: 1px solid #2e2d2c;*/
    border-bottom: 3px solid rgba(255,255,255,0.1);
    width: 100%;
}

    .user-table input {
        background-color: transparent;
        border: 0;
    }

    .user-table .center {
        text-align: center;
    }

    .user-table .centersmall {
        text-align: center;
        font-size: 11px;
    }
    /*.user-table tr:hover {
	background: #2e2d2c;
} */
    .user-table tr:hover td {
        color: #0077be;
    }

    .user-table th, .user-table td {
        padding: 4px 0;
        border-collapse: collapse;
        vertical-align: middle;
    }

    .user-table td {
        border: 1px solid transparent;
        border-collapse: collapse;
    }

    .user-table td {
        font-size: 16px;
    }

    .user-table th {
        background: #0077be;
        color: #fff;
        font-size: 16px;
        text-align: center;
        font-weight: 400;
        text-transform: uppercase;
    }

        .user-table th.last {
            border-right: none;
        }

    .user-table tbody tr:nth-child(odd) {
        color: rgba(255,255,255,0.5);
    }

.activationlist {
    width: 50%;
    margin: auto
}

.width60 {
    width: 60% !important;
}

.sweetalert-confirm {
    background-color: #188585 !important;
    border-left-color: #188585 !important;
    border-right-color: #188585 !important;
}

.swal2-confirm {
    background-color: #188585 !important;
    border-left-color: #188585 !important;
    border-right-color: #188585 !important;
}


/*SPINNER*/

.spinnerTable {
    margin: 0 auto;
}

.machineResult {
    color: #fff;
    text-align: center;
    font-weight: 900;
    height: 50px !important;
    background: transparent !important;
    font-size: 18px;
    padding: 10px !important;
}

.spinnerTable td > div {
    padding: 40px;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.randomizeMachine {
    width: 100px;
    height: 100px;
}

    .randomizeMachine .imgDiv {
        width: 100px;
        height: 100px;
    }


/* ============================================================
  CSS TRANSITIONS
============================================================ */
.smooth-transition {
    -webkit-animation-duration: 0.45s;
    animation-duration: 0.45s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; /* this means that before the animation runs, the element will have the starting css rules, then keep the end rules */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.smooth-transition {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

    .smooth-transition.is-exiting {
        -webkit-animation-direction: alternate-reverse;
        animation-direction: alternate-reverse;
    }
/* ============================================================
  MAIN NAVIGATION
============================================================ */

.headernav {
    width: 1200px;
    margin: 0 auto;
}

    .headernav .navbarlogo {
        padding: 7px;
    }

    .headernav i {
        color: rgba(255, 255, 255, 0.3);
    }

        .headernav i:hover {
            color: rgba(255, 255, 255, 1);
        }

.alertsCircle {
    position: absolute;
    z-index: 1;
    top: 1px;
    right: -11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    width: 18px;
    font-size: 11px;
    font-weight: 300;
    background-color: #cd1300;
    float: right;
    margin-right: 10px;
}

    .alertsCircle span {
        text-align: center;
        line-height: 18px;
        display: block;
    }
/* ============================================================
  PROMOTER'S TOOL LIGHT BRANDING
============================================================ */

.lightbody {
    background-color: #fff;
    color: #151515;
    font-family: "century-gothic",sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

    .lightbody a:hover {
        color: #151515;
    }

input[type="email"].light {
    background: rgba(0, 0, 0, 0.02);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    border-radius: 2px;
    color: #c6168d;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: none;
    text-align: center;
}

input[type="password"].light {
    background: rgba(0, 0, 0, 0.02);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    border-radius: 2px;
    color: #c6168d;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: none;
    text-align: center;
}

input[type="text"].light {
    background: rgba(0, 0, 0, 0.02);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    border-radius: 2px;
    color: #c6168d;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    text-transform: none;
    text-align: center;
}

select.light {
    background: rgba(0, 0, 0, 0.02);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 7px;
    color: rgba(0, 0, 0, 0.3) !important;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    text-transform: none;
    text-align-last: left;
}

select:active, select:focus {
    background: rgba(0, 0, 0, 0.1) !important; /* to prevent Edge/IE extra background padding */
}

select.light option[value=""] {
    color: rgba(0, 0, 0, 1) !important;
}

select.light option {
    font-family: "century-gothic",sans-serif;
    font-size: large;
    background: #151515;
    padding: 7px;
    color: #c6168d;
    text-transform: none;
}

select.light.select-selected {
    color: #c6168d !important;
}

textarea.light {
    background: rgba(0, 0, 0, 0.02);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 10px;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.6);
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: none;
}

.light::placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
    text-align: center;
}

.light::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
    text-align: center;
}

.light::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
    opacity: 0.3;
    text-align: center;
}

.light:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
    text-align: center;
}

.lightbutton:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

    .lightbutton:hover i {
        color: rgba(255, 255, 255, 0.6);
    }

.lightheader {
    margin-top: -75px;
    padding-bottom: 50px;
}

.lightcancel {
    background-color: rgba(205, 19, 0, 0.8);
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

    .lightcancel:hover {
        background-color: rgba(0, 0, 0, 0.3);
        color: rgba(255, 255, 255, 0.6);
    }

    .lightcancel i {
        color: rgba(255, 255, 255, 0.4);
    }

    .lightcancel:hover i {
        color: rgba(255, 255, 255, 0.6);
    }

.lightradio input[type="radio"] + label span {
    background-color: #c6168d;
    border: 4px solid #c6168d;
}

.lightradio input[type="radio"]:checked + label span {
    background-color: #fff;
}
/* ============================================================
  CHOOSE YOUR AVATAR GALLERY
============================================================ */

.avatargallery img {
    margin: 15px;
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    transition-duration: 0.75s;
    -webkit-transition-duration: 0.75s;
    -moz-transition-duration: 0.75s;
}

    .avatargallery img:hover {
        transition-duration: 0.75s;
        -webkit-transition-duration: 0.75s;
        -moz-transition-duration: 0.75s;
        cursor: pointer;
        -webkit-filter: drop-shadow(2px 2px 0 #009fe2) drop-shadow(-2px 2px 0 #009fe2) drop-shadow(2px -2px 0 #009fe2) drop-shadow(-2px -2px 0 #009fe2);
        filter: drop-shadow(2px 2px 0 #009fe2) drop-shadow(-2px 2px 0 #009fe2) drop-shadow(2px -2px 0 #009fe2) drop-shadow(-2px -2px 0 #009fe2);
    }

.avatargallery ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .avatargallery ul li {
        display: inline;
        margin: 0;
        padding: 0;
    }
/* ============================================================
  ADMIN REPORTS
============================================================ */

.canvaswidth {
    width: 60%;
    margin: 0 auto;
}
/* ============================================================
  PIE CHARTS
============================================================ */

.pies_profile {
    padding: 35px 0;
}

.pies_ranking {
    padding: 15px 0;
    margin-left: -8px;
}

.pie {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-image: linear-gradient(180deg, transparent 50%, #2e2e2c 0);
    border: 2px solid;
    margin: 9px;
    float: left;
}

    .pie::before {
        content: '';
        display: block;
        margin-left: 50%;
        height: 100%;
        border-radius: 0 100% 100% 0 / 50%;
        background: #2e2e2c;
        transform-origin: left;
    }

.pie0::before {
    transform: rotate(270deg);
}

.pie1::before {
    transform: rotate(315deg);
}

.pie2::before {
    transform: rotate(360deg);
}

.pie3::before {
    transform: rotate(45deg);
}

.pie4::before {
    transform: rotate(90deg);
}

.pie5::before {
    transform: rotate(315deg);
}

.pie6::before {
    transform: rotate(360deg);
}

.pie7::before {
    transform: rotate(45deg);
}

.pie8::before {
    transform: rotate(90deg);
}

.pie-candid {
    color: #85c4b9 !important;
    background-color: #85c4b9 !important;
}

.pie-embracing {
    color: #fcc300 !important;
    background-color: #fcc300 !important;
}

.pie-entrepreneurial {
    color: #7a7808 !important;
    background-color: #7a7808 !important;
}

.pie-strength {
    color: #009fe2 !important;
    background-color: #009fe2 !important;
}

.pie-passion {
    color: #cd161a !important;
    background-color: #cd161a !important;
}

.pie-value {
    color: #9d6883 !important;
    background-color: #9d6883 !important;
}

.pie-candid-full::before {
    background-color: #85c4b9 !important;
}

.pie-embracing-full::before {
    background-color: #fcc300 !important;
}

.pie-entrepreneurial-full::before {
    background-color: #7a7808 !important;
}

.pie-strength-full::before {
    background-color: #009fe2 !important;
}

.pie-passion-full::before {
    background-color: #cd161a !important;
}

.pie-value-full::before {
    background-color: #9d6883 !important;
}

.pie.nomargin {
    margin-right: 0;
}
/* ============================================================
  INSPIRED CHANGE
============================================================ */

.inspired_change {
    width: 100%;
}

    .inspired_change img {
        margin: 55px;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

        .inspired_change img:hover {
            -moz-transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -o-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
            cursor: pointer;
        }

    .inspired_change a:focus {
        outline: none;
    }

    .inspired_change ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .inspired_change ul li {
            display: inline;
            margin: 0;
            padding: 0;
        }
/* ============================================================
  JQUERY OVERRIDES
============================================================ */

.ui-autocomplete-loading {
    background: white url("/images/loader.gif") right center no-repeat !important;
}

/* ============================================================
  SIGNATURE BLOCK
============================================================ */

.signature {
    background: rgba(255, 255, 255, 1);
    font-family: "century-gothic",sans-serif;
    font-size: large;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 10px;
    color: #c6168d;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
}

/* ============================================================
  SCRATCH TO WIN
============================================================ */

.scratchcard canvas {
    margin: 0 auto;
}

.scratchtowin {
    font-family: "century-gothic",sans-serif;
    font-size: 22px;
    font-weight: 300;
    padding: 10px;
    color: #151515;
    border: 10px solid rgba(0, 0, 0, 0.2) !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 600px;
    height: 400px;
    margin: 0 auto;
}

    .scratchtowin p {
        line-height: 1.5em;
        margin: 0;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

/* ============================================================
  LOADER
============================================================ */


.lockoff {
    display: none;
    visibility: hidden;
}

.lockon {
    display: block;
    visibility: visible;
    position: fixed;
    z-index: 99999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
    padding-top: 20%;
}

.loader {
    font-size: 24px;
    font-family: century-gothic, sans-serif;
    color: #fff;
}

/* ============================================================
  RESPONSIVE STYLES
============================================================ */

@media only screen and (min-width : 768px) and (max-width : 1024px) {
    /*body {
	background: url(/images/bg-ipad.jpg) no-repeat center center fixed;
}*/

    .activationlist {
        width: 60%;
    }

    #contentbody {
        width: 95%;
        padding: 10px 2.5%;
        /*margin-top: 70px;*/
    }

    #footer {
        width: 95%;
        padding: 0 2.5%;
    }

    #header {
        width: 95%;
        padding: 35px 2.5%;
    }

    #header_promoter {
        width: 95%;
        padding: 25px 2.5%;
    }

        #header_promoter img {
            width: 300px;
        }

    .accept {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .headernav {
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .headernav .navbarlogo {
            width: 180px;
            padding: 13px 2px 0;
        }

    .inspired_change img {
        margin: 45px;
        width: 140px;
        height: auto;
    }

    .login_page {
        width: 60%;
    }

    .pies_profile {
        padding: 25px 0;
        margin: 0 auto;
        width: 200px;
    }

    .pie {
        width: 45px;
        height: 45px;
        margin: 10px;
    }

    .narrow_tables {
        width: 70%;
    }
}

@media only screen and (min-width : 768px) and (max-width : 850px) {
    .headernav .navbarlogo {
        width: 140px;
        padding: 13px 2px 0;
    }
}

@media only screen and (max-width: 767px) {
    /*body {
	background: url(/images/bg-mobi.jpg) no-repeat center center fixed;
}*/

    .activationlist {
        width: 100%;
    }

    .width60 {
        width: 100% !important;
    }

    #contentbody {
        width: 95%;
        padding: 25px 2.5%;
        margin-top: 70px;
    }

    #footer {
        width: 95%;
        padding: 0 2.5%;
    }

        #footer .footerleft, #footer .footerright {
            float: none;
            width: auto;
            text-align: center;
        }

        #footer .footerright {
            padding-top: 25px;
        }

    #header {
        width: 99%;
        padding: 20px 0.5%;
        overflow: visible;
    }

    #header_promoter {
        width: 99%;
        padding: 20px 0.5%;
    }

        #header_promoter img {
            width: 220px;
        }

    #popupbody {
        width: 90%;
        padding: 15px 5%;
        font-size: small;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    hr {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    #scratchtowinbody {
        padding: 0 2.5% 35px;
        margin-top: 70px;
        width: 100%;
    }

    #selects {
        text-align: center;
    }

        #selects select {
            width: 100%
        }

            #selects select.dm {
                margin-top: 15px;
                margin-right: 0px;
            }

            #selects select.y {
                margin-top: 15px;
            }

    .custom-radio-check-rows p {
        margin: 10px 0;
        font-size: 14px;
    }

    .headernav {
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .headernav .navbarlogo {
            display: none;
        }

    .hugetxt {
        font-size: 24px;
    }

    .inspired_change img {
        margin: 45px;
        width: 130px;
        height: auto;
    }

    .largetxt {
        font-size: 20px;
        line-height: 1.3em;
    }

    .mediumtxt {
        font-size: 16px;
        line-height: 1.3em;
    }

    .pop-up-functions {
        text-align: center;
    }

        .pop-up-functions button {
            margin: 10px;
            width: 45%;
            text-align: center;
        }

    .accept {
        width: 80%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .decline {
        width: 80%;
    }

    .able {
        width: 100%;
        font-size: 22px;
    }

    .login_page {
        width: 50%;
    }

    .adminbtns {
        width: 80%;
    }

    .left, .right {
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .narrow_tables {
        width: 60%;
    }

    .unable {
        width: 100%;
        font-size: 22px;
    }

    .adminpagesplit {
        display: block;
        overflow: auto;
        height: auto;
        margin-top: 0;
        padding-top: 0;
        position: relative;
        width: 100%;
        backface-visibility: visible;
        will-change: auto;
    }

    .adminpagesplit_left, .adminpagesplit_right {
        height: auto;
        width: 100%;
        margin: 0;
        flex: auto;
    }

    .adminpagesplit_right {
        padding: 25px 0 0;
    }

    .rankings_left, .rankings_right {
        float: none;
        width: auto;
        margin: 0;
    }

    .scratchtowin {
        padding: 2.5%;
        width: 100%;
        height: 400px;
    }
}

@media only screen and (max-width: 480px) {
    /*body {
	background: url(/images/bg-mobi.jpg) no-repeat center center fixed;
}*/

    #popupbody {
        font-size: small;
    }

    .avatargallery img {
        margin: 10px;
        width: 80px;
        height: auto;
    }

    .delete {
        margin-left: 0;
        margin-top: 15px;
    }

    .inspired_change img {
        margin: 20px;
        width: 100px;
    }

    .login_page {
        width: 100%;
    }

    .pop-up-functions button {
        margin: 10px 0;
        width: 100%;
    }

    .pies_profile {
        padding: 25px 0;
        margin: 0 auto;
        width: 200px;
    }

    .pie {
        width: 45px;
        height: 45px;
        margin: 10px;
    }

    .narrow_tables {
        width: 100%;
    }
}
