body {
    background: #E7E7E7;
}

input[type=text], input[type=password], input[type=number], input[type=email], input[type=text]:read-only {
    width: 100%;
    min-height: 1.4em;
    background: none;
    border: none;
    border-bottom: 2px solid #5582DE;
    padding: 5px 5px;
    font-size: medium;
    box-shadow: none;
    border-radius: 0px;
}

input[type=text]:active, input[type=password]:active, input[type=number]:active, input[type=email]:active {
    border-bottom: 2px solid #001199;
}

.input-group-addon {
    border: 0;
    background: none;
    padding: 5px;
    font-weight: bold;
}

.date-field {
    background: white !important;
    text-align: center;
    cursor: pointer;
}

select[multiple] {
    background:none;
    width:auto;
    height:auto;
    padding:0px;
    margin:0px;
    border-width: 2px;
    border-style: inset;
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    appearance: menulist;
}


select {
    width: 100%;
    display: block;
    background: none;
    border: none;
    border-bottom: 2px solid #5582DE;
    padding: 5px;
    font-size: medium;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 0px;
}

.clickable {
    cursor: pointer;
}

/**
 * 	TABLE STYLES
 */
.table-primary {
    width: 100%;
    border: 1px solid #CCC !important;
    border-collapse: collapse !important;
    margin-top: 10px !important;
}

.table-primary tr th, .table-primary tr td {
    border: 1px solid #CCC !important;
    padding: 5px;
}

.table-primary tr th {
    background: #EEE;
}

.table-primary tbody tr:hover {
    cursor: pointer;
    background: #EEE;
}

.table-primary tbody tr:nth-child(even) {
    background: #F6F6F6;
}

.table-primary tbody tr:nth-child(even):hover {
    background: #EFEFEF;
}

.table-primary .col-centre {
    text-align: center;
}

.table-primary .edit {
    width: 22px;
    height: 22px;
    display: inline-block;
    cursor: pointer;
    background: url('../img/icon_edit.png') no-repeat center;
}

.table-primary .edit:hover {
    background-color: #DDD;
}

/**
 * 	BADGES
 */

.badge-success {
    background: #5cb85c;
}

.badge-danger {
    background: #CC0000;
}

/**
 * 	SHARED STYLES
 */
.content-accent-block {
    width: 100%;
    height: 300px;
    background: #39599c;
    top: 0;
    left: 0;
    position: absolute;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.container {
    border-radius: 20px;
    background: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

.top-header {
    height: 100px;
    background: #5582de;
    box-sizing: border-box;
    padding: 20px;
}

.top-header .menu {
    width: 40px;
    height: 40px;
    margin: 10px 20px 20px 10px;
    cursor: pointer;
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 10px;
}

.top-header .menu .bar {
    width: 20px;
    height: 2px;
    background: white;
    margin-top: 4px;
    display: block;
}

.top-header .menu:hover .bar {
    background: #DEDEDE;
}

.top-header .logo {
    width: 180px;
    height: 60px;
    background: url('/assets/img/gas-app-logo-small.png') no-repeat center;
    display: block;
    float: left;
}

.top-header .logo-print {
    width: 180px;
    float: left;
}

.main-content {
    min-height: 600px;
    background: white;
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

#bottom-copyright {
    font-size: small;
    font-style: italic;
    text-align: center;
    color: #333;
    padding-bottom: 20px;
}

/**
 * 	SHARED NAV-MENU
 */
#navMenu {
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    padding: 0px !important;
    z-index: 999;
}

#navMenu .user-item {
    width: 100%;
    height: 120px;
    background: #1248b7;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

#navMenu .user-item .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: url('/assets/img/default_profile_pic.png') no-repeat center;
    margin-right: 10px;
    display: block;
    float: left;
}

#navMenu .user-item .name {
    font-size: large;
    font-style: italic;
    font-weight: bold;
    display: block;
}

#navMenu .user-item .signout {
    font-weight: bold;
    text-decoration: underline;
    color: #EEE;
}

#navMenu .user-item .signout:hover {
    color: white;
}

#navMenu .item {
    padding: 20px 20px 20px 40px;
    margin: 0px;
    box-sizing: border-box;
    font-size: medium;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    display: block;
}

#navMenu .item:hover {
    color: #222;
    background: #EEE;
    text-decoration: none;
}

#navMenuBlocker {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    position: absolute;
    display: none;
    z-index: 998;
}

/**
 * 	SHARED ACTION BAR
 */
.action-bar {
    text-align: right;
}

/**
 * 	LOGIN STYLES
 */

#login-background {
    background: #5582de;
    color: white;
}

#login {
    border: 2px solid #FFF;
    border-radius: 10px;
    /*box-shadow:0px 0px 30px rgba(0, 0, 0, 0.4);*/
    margin: 80px auto;
    padding: 20px;
}

#login label {
    font-size: medium;
    margin-top: 10px;
}

#login input[type=text], #login input[type=password] {
    color: black;
    border-bottom: 2px solid #EEE;
    margin-top: 0px;
    border-radius: 0px;
    background: white;
    /*padding:20px 10px;*/
}

#login input:placeholder, #login input:-webkit-placeholder {
    color: #222;
}

#login input[type=text]:active, #login input[type=password] {
    border-bottom: 2px solid #FFF;
}

#login .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#login .error {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #FFE5E5;
    font-weight: bold;
}

#login input[type=submit] {
    width: 100%;
    height: 40px;
    border: none;
    margin-top: 10px;
}

/**
 * 	FORM GENERAL
 */
.general-row, .general-row-alt {
    margin-top: 10px;
}

.general-row:first-child {
    margin-top: 0;
}

/**
 * 	MODAL STYLES
 */

.modal-content .modal-header {
    background: #5582DE;
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-content .modal-header .close {
    color: white;
}

.modal-footer .btn {
    background: none;
    color: black;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
}

.modal-footer .btn:hover {
    background: #EEE;
}

.modal-footer .btn:active {
    box-shadow: none;
}

.modal-footer .btn-success, .modal-footer .btn-success:active {
    color: #00CC00;
}

.modal-footer .btn-danger, .modal-footer .btn-danger:active {
    color: #CC0000;
}

.modal-footer .btn-warning, .modal-footer .btn-warning:active {
    color: #F0AD4E;
}

/**
 * 	Multi Upload Styles
 */

.upload-multi-box {
    border: 1px solid #5582DE;
    border-radius: 5px;
    background: #5BC0DE;
    color: #245580;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}

.upload-multi-box .upload-multi-title {
    width: 100%;
    display: block;
    font-size: medium;
    font-weight: bold;
}

.upload-multi-box .upload-multi-or {
    width: 100%;
    display: block;
    font-size: small;
    font-style: italic;
    color: #286090;
}

.upload-multi-box .upload-multi-alt {
    border: 1px solid #001199;
    color: #001199;
    padding: 10px 5px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    display: inline-block;
}

.upload-multi-box .upload-multi-alt:hover {
    background: #001199;
    color: white;
}

.upload-multi-box .upload-multi-file {
    width: 1px;
    height: 1px;
    overflow: hidden;
    left: -99999px;
}

.upload-multi-results .item {
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #CCC;
}

.upload-multi-results .item {
    border-bottom: 0px;
}

.upload-multi-results .upload-multi-results-empty {
    display: block;
    font-size: medium;
    font-style: italic;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.upload-multi-results .upload-multi-row-no {
    font-size: medium;
    font-weight: bold;
}

.upload-multi-results .upload-multi-row-path {
    font-size: x-small;
}

.upload-multi-results input[type=text] {
    margin-top: 0px;
}

/**
 * 	HORROR SHOW STYLES
 */

.horrorshow-item {
    border: 1px solid #EEE;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.horrorshow-item:hover {
    background: #FCFCFC;
}

.horrorshow-item .headline-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 30px;
}

.horrorshow-item .username {
    font-weight: bold;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url('../img/spinner.gif') no-repeat center;
}

#horrorshow_selector_menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#horrorshow_selector_menu .container {
    border-radius: 0px;
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

#gascard_selector_menu .btn {
    margin-top: 18px;
}


/**
 *  HORROR SHOW STYLES
 */

.gascard-item {
    border: 1px solid #EEE;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.gascard-item:hover {
    background: #FCFCFC;
}

.gascard-item .headline-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 30px;
}

.gascard-item .username {
    font-weight: bold;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url('../img/spinner.gif') no-repeat center;
}

#gascard_selector_menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#gascard_selector_menu .container {
    border-radius: 0px;
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

#gascard_selector_menu .btn {
    margin-top: 18px;
}

/*
 * BREAK TIME STYLES
 */

.image-container {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
}

.image-container img {
    height: 200px;
    width: auto;
}

.image-container .delete {
    right: 0;
    bottom: 0;
    border-left: 1px solid #EDEDED;
    border-top: 1px solid #EDEDED;
    border-radius: 5px 0px 0px 0px;
    background: white;
    cursor: pointer;
    color: #CCC;
    position: absolute;
    padding: 5px 10px;
}

.image-container .delete:hover {
    color: #CC0000;
    background: #EEE;
}

.image-container.image-deleted {
    opacity: 0.4;
}

.post-comment {
    margin-top: 20px;
}

.post-comment:first-child {
    margin-top: 10px;
}

.post-comment .content-container {
    border-left: 4px solid #EDEDED;
}

.post-comment .content-container-sub {
    border-left: 4px solid #E9E9E9;
}

/** Reports **/
.chart-container {
    min-height: 380px;
}

.centre {
    text-align: center;
}

.red-circle {
    position: absolute;
    top: -9%;
    right: 7%;
    width: 22px;
    height: 22px;
    background-color: #D85946;
    border-radius: 50%;
    border: 2px solid white;
}

.block-centre {
    width: 100%;
    display: block;
    text-align: center;
}

.textualChartTitle {
    width: 100%;
    display: block;
    font-size: 6em;
    color: #5582de;
    text-align: center;
    margin-top: 20px;
}

.textualChartTitle.no-margin {
    margin-top: 0px;
}

.textualChartSubtitle {
    width: 100%;
    display: block;
    font-size: xx-large;
    color: black;
    text-align: center;
    margin-bottom: 40px;
}

.textualChartSubtitle.inverse-margin {
    margin-bottom: 0px;
    margin-top: 20px;
}

.constrained-aspect-image {
    width: 100%;
    height: auto;
}

/**
    COMPANIES
 **/

#company-assign-modal {
    /** Boy do I wish we used SASS for this... **/
}

#company-assign-modal .selector-list {
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}

#company-assign-modal .selector-list .vcontain {
    width: 100%;
    flex: 1 1;
    overflow: auto;
}

#company-assign-modal .selector-list .input-area {
    width: 100%;
    height: auto;
    display: block;
    padding: 5px;
    border-top: 1px solid #E0E0E0;
}

#company-assign-modal .selector-list .input-area input[type=text] {
    margin-top: 0;
}

#company-assign-modal .selector-list .item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #E0E0E0;
}

#company-assign-modal .selector-list .item:hover {
    background: #EEEEEE;
    cursor: pointer;
}

#company-assign-modal .selector-list.removal-list .item:hover {
    background: #ffafaf;
}

#company-assign-modal .selector-list .item .image {
    width: 40px;
    height: 40px;
    display: block;
    border: 2px solid #FFF;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    margin: 5px;
}

#company-assign-modal .selector-list .item .contain {
    flex: 1 1;
    padding: 5px;
}

#company-assign-modal .selector-list .item .contain .title {
    width: 100%;
    display: block;
    padding-bottom: 2px;
    font-size: medium;
    font-weight: bold;
}

#company-assign-modal .selector-list .item .contain .subtitle {
    width: 100%;
    display: block;
    font-size: small;
}

#company-assign-modal .selector-list .empty-notice {
    width: 100%;
    padding: 5px;
    text-align: center;
    font-style: italic;
    color: #555;
}

#company-assign-modal .selector-list .loading-notice {
    width: 100%;
    display: block;
    text-align: center;
}

#company-assign-modal .selector-list .loading-notice .loading-spinner {
    display: inline-block;
}


/**
 * 	TALENT SHOW STYLES
 */

.talentshow-item {
    border: 1px solid #EEE;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.talentshow-item:hover {
    background: #FCFCFC;
}

.talentshow-item .headline-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 30px;
}

.talentshow-item .username {
    font-weight: bold;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url('../img/spinner.gif') no-repeat center;
}

#talentshow_selector_menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#talentshow_selector_menu .container {
    border-radius: 0px;
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

#websites .section-container {
    border:2px solid #5582DE;
    border-radius:10px;
    padding:10px;
}

#websites .section-container h3 {
    margin-top: 5px;
}

#websites .section-container label {
    margin:10px 0 0 0;
}

#websites .section-container .form-control {
    margin-top: 0;
}

#websites .sponsor-image-upload {
    margin-top: 10px;
    text-align: center;
}

#websites .sponsor-image-upload .btn {
    margin-top: 10px;
}

#websites .file-hide {
    width:1px;
    height:1px;
    overflow:hidden;
    position: absolute;
    left: -9999px;
    top: -9999px;
}

#websites .action-area {
    margin-top: 20px;
}

/**
        MASSIVE DEALS
 */

.merchant-user-panel {
    width: 100%;
    display: block;
    position: relative;
}

.merchant-user-panel .merchant-hero-image {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-color: #EFEFEF;
    border-radius: 10px 10px 0 0;
}

.merchant-user-panel .merchant-info-area {
    width: 100%;
    display: block;
    background: #5582de;
    color: white;
    border-radius: 0 0 10px 10px;
}

.merchant-user-panel .merchant-info-area .merchant-logo {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 4px solid #5582de;
    margin-top: -60px;
    margin-left: -60px;
    position: absolute;
    left: 50%;
    background-color: white;
}

.merchant-user-panel .merchant-info-area .merchant-name {
    width: 100%;
    text-align: center;
    padding: 70px 10px 10px 10px;
    font-weight: bold;
    font-size: large;
}

.merchant-user-panel .merchant-info-area .merchant-section-title {
    font-weight: bold;
    padding: 5px 10px;
    font-size: medium;
}

.merchant-user-panel .merchant-info-area .merchant-section-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.merchant-user-panel .merchant-info-area .merchant-section-container .merchant-section-half {
    display: block;
    flex: 1 1;
}

.merchant-user-panel .merchant-info-area .merchant-section-container .merchant-section-half .item-row {
    display: block;
    margin-top: 5px;
}

.merchant-user-panel .merchant-info-area .merchant-section-container .merchant-section-half .item-row:first-child {
    margin-top: 0;
}

.merchant-user-panel .merchant-info-area .merchant-section-container .merchant-section-half .item-row strong {
    display: block;
}

.input-hide {
    width: 1px;
    height: 1px;
    position: absolute;
    top: -999px;
    left: -999px;
    overflow: hidden;
}

.ga-slider {
    width: 100%;
    height: 35px;
    display: inline-block;
    position: relative;
}

.ga-slider .bar {
    width: 100%;
    height: 2px;
    background: #5582de;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -2px;
    position: absolute;
    display: block;
    border-radius: 999px;
}

.ga-slider .handle {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #5582de;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    margin-left: -10px;
    left: 0;
}

.ga-sixteen-nine-aspect {
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ga-image-preview {
    border-radius: 5px;
    background-color: #F2F2F2;
}

.ga-flexible-selector-list {
    width: 100%;
    height: auto;
    max-height: 300px;
    border: 1px solid #CCC;
    border-radius: 5px;
    overflow-y: scroll;
    display: block;
}

.ga-flexible-selector-list .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #CCC;
    align-items: center;
}

.ga-flexible-selector-list .item:last-child {
    border-bottom: 0;
}

.ga-flexible-selector-list .item:hover {
    background-color: #F1F1F1;
}

.ga-flexible-selector-list .item .auto-width {
    display: block;
    padding: 5px 10px;
}

.ga-flexible-selector-list .item .fill-width {
    display: block;
    flex: 1 1;
    padding: 5px 10px;
}

.ga-flexible-selector-list .item .title {
    width: 100%;
    display: block;
    font-size: medium;
    font-weight: bold;
}

.ga-flexible-selector-list .item .subtitle {
    width: 100%;
    display: block;
    font-size: small;
    padding-top: 2px;
    font-weight: normal;
}

.usage-statistics-container {
    position: relative;
}

.usage-statistics-container:hover .usage-statistics {
    display: inline-block;
}

.usage-statistics-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 9999;
}

.usage-statistics {
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    background:rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    display: none;
}

.usage-statistics .usage-stat-title {
    display: block;
    padding: 5px;
    font-weight: bold;
    font-size: medium;
}

.usage-statistics .usage-stat-item {
    display: block;
    font-size: small;
    margin-top: 5px;
}

.usage-statistics .usage-stat-item .usage-stat-subhead {
    display: block;
    font-weight: bold;
}

.usage-statistics .usage-stat-item .usage-stat-value {
    display: block;
}

.loading-spinner-alt {
    width: 100%;
    height: 64px;
    display: block;
    background: url('../img/spinner.gif') no-repeat center;
    background-size: contain;
}