﻿
html, body, div, span {
    background: transparent;
    border: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    outline: none 0;
    padding: 0;
    vertical-align: baseline;
}

body {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAA3SURBVHjavM4hEgAxEAJBgkDs5/e3CEzOnkJGTrWZs7s3CSRhZmAb/2ZD22DDJGBDSWDDRw/fAILlX9oY73KEAAAAAElFTkSuQmCC');
    background-repeat: repeat;
}


div.checkBoxContainer {
    float: right;
    margin: 10px 20px;
    background-color: white;
}

    div.checkBoxContainer input {
        display: none;
    }

    div.checkBoxContainer label:first-child {
        margin-left: 6px;
        color: #769724;
        text-transform: uppercase;
        font-size: 12px;
    }

    div.checkBoxContainer input[type=checkbox] + label {
        height: 10px;
        width: 10px;
        border: 2px solid #769724;
        display: inline-block;
        margin-left: 5px;
    }

    div.checkBoxContainer input[type=checkbox]:checked + label {
        background-color: #769724;
        padding: 1px;
    }


div.buttonContainer {
    text-align: left;
    float: left;
    background-color: white;
}

div.reportButtonContainer {
    text-align: left;
    float: right;
}

    div.buttonContainer button + button, div.buttonContainer .button + .button, div.reportButtonContainer .button + .button {
        border-left: 1px solid #769724;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    div.buttonContainer button, div.buttonContainer .button, div.reportButtonContainer .button {
        padding-left: 20px;
        padding-right: 20px;
    }


select {
    font-size: 13px;
    height: 25px;
    margin-left: 5px;
}

table.noStripe tr:nth-child(odd) {
    background-color: white;
}

table.noStripe td {
    cursor: default;
}

table {
    border-spacing: 0;
    width: 100%;
    border: none;
    clear: both;
}

    table tr:nth-child(odd) {
        background-color: #e5e5e5;
    }

    table tr:nth-child(even) {
        background-color: white;
    }

    table tr th {
        padding-left: 20px;
        border: none;
    }

        table tr th + th {
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAUCAYAAAC9BQwsAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wQaASAb+7uSGAAAADBJREFUOMtjnDlz5n8GMgATA5kAp0YREREGEREROto4qnFU44jXyIJL4s2bN7SxEQCKbwYwV8ZNjQAAAABJRU5ErkJggg==');
            background-position-y: 9px;
            background-repeat: no-repeat;
        }

    table td {
        padding-bottom: 5px;
        padding-left: 20px;
        padding-top: 5px;
        text-align: left;
        vertical-align: top;
        border: none;
        cursor: pointer;
    }

    table th {
        background-color: #999999;
        color: white;
        height: 25px;
        padding: 5px;
        text-align: left;
        vertical-align: middle;
    }

        table th a, table th a:visited {
            color: white;
            text-decoration: none;
        }

    table tr.selected {
        background-color: rgb(251, 251, 197);
    }

.tableColumnSelected {
    text-decoration: underline;
}


/* RESETS FOR DATE PICKER TABLE */
div.calendar-table > table {
    font-weight: unset;
}

div.calendar-table > table tr th {
    padding-left: unset;
    border: unset;
}

div.calendar-table > table td {
    padding-bottom: unset;
    padding-left: unset;
    padding-top: unset;
    text-align: unset;
    vertical-align: unset;
    border: unset;
    cursor: unset;
}

div.calendar-table > table th, div.calendar-table > table tr:nth-child(odd) {
    background-color: unset;
    color: unset;
}

div.calendar-table > table tr th + th {
    background-image: none;
    background-position-y: unset;
}

div.drp-calendar.left > .calendar-table {
    border-right: 1px solid #ddd !important;
}
/* //RESETS FOR DATE PICKER TABLE */



.primary-button {
    background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
    background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    background-repeat: repeat-x;
    border-color: #3e8f3e;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}

    .primary-button:active,
    .primary-button.active {
        background-color: #419641;
        border-color: #3e8f3e;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    }

    .primary-button:hover,
    .primary-button:focus {
        background-color: #419641;
        background-position: 0 -15px;
    }

button, .button {
    background: none;
    border: none;
    color: #769724;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: bold;
    padding: 5px;
    text-decoration: none;
    text-transform: uppercase;
}

    button:hover, .button:hover {
        color: #333333;
        cursor: pointer;
    }

    button:focus, .button:focus {
        border: none;
        outline: 0;
    }

    .button.disabled {
        color: gray;
        cursor: default;
    }

        .button.disabled:hover {
            color: gray;
            cursor: default;
        }

a, a.hover, a.visited {
    color: #5f5f5f;
}

#container {
    background-color: white;
    margin: 0 auto;
    width: 100%;
    clear: both;
}

#logo {
    position: absolute;
    top: 8px;
    width: 100%;
    z-index: 2;
}

#bottom-content {
    clear: both;
    padding-top: 80px;
}

#divClubSelectionDropDown {
    float: right;
    margin: 15px 10px 0 10px;
}

#username {
    color: gray;
    margin-left: 6px;
    margin-bottom: 3px;
}


    #divClubSelectionDropDown select {
        -webkit-appearance: none;
        background: #333;
        border-bottom: none;
        border-left: 1px #769724 solid;
        border-right: none;
        border-top: none;
        color: #769724;
        cursor: pointer;
        font-size: 14px;
        overflow: hidden;
        padding-left: 20px;
        width: 240px;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAALCAYAAAB/Ca1DAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wQbDhQcbRXUFAAAAFVJREFUKM9jNDY2/s9ARcDEQGVAdQNZsAlah39m4OD9h1fjj89MDEdX8hLnwqMreRl+fGYi2TC8XsZlKD7DCIYhuqGEDCMqUmCGEmMYAwMDA+PIS4cAlQ0khwNAdE8AAAAASUVORK5CYII=');
        background-repeat: no-repeat;
        background-position-x: 220px;
        background-position-y: 6px;
    }

        #divClubSelectionDropDown select:focus {
            outline: none;
        }

    #divClubSelectionDropDown option {
        border-bottom: 1px #769724 solid;
        height: 40px;
    }

    #divClubSelectionDropDown select::-ms-expand {
        display: none;
    }

@media (max-width:1594px) {
    #header {
        height: 124px !important;
    }

    #bottom-content {
        padding-top: 128px;
    }
}

@media (max-width:1142px) {
    #header {
        height: 160px !important;
    }

    #bottom-content {
        padding-top: 164px;
    }
}

@media (max-width:1056px) {
    #bottom-content {
        padding-top: 154px;
    }
}


#header {
    height: 76px;
    /*min-width: 1150px;*/
    min-width: 880px;
    position: fixed;
    width: 100%;
    z-index: 100000;
}

    #header.live {
        background-color: #333333;
    }

    #header.testing {
        background-color: #681c1c;
    }


#linxTitle {
    font-size: 28pt;
    margin-right: 35px;
}

#pageTitle {
    color: #769724;
    /*position: absolute;*/
    margin: 0px 20px;
}

#top-content {
    background-repeat: no-repeat;
    margin-top: 1px;
    padding-top: 1px;
}

#form {
    background-repeat: repeat-y;
    color: #c1c1c1;
    float: right;
    font-size: 12px;
}

#video {
    float: left;
    height: 342px;
    margin-top: 11px;
}

#right_content {
    color: #dad8cd;
    font-size: 12px;
    line-height: 23px;
    margin: 25px;
}

#right {
    background-color: #393939;
    float: right;
    height: 800px;
    margin-bottom: 15px;
    margin-right: 10px;
    margin-top: 15px;
    width: 648px;
}

#left_form {
    margin-right: 20px;
    margin-top: 20px;
}

#left {
    background-color: #0d0d0d;
    float: left;
    height: 840px;
}

#bottom {
    clear: both;
    height: 500px;
    margin-left: 0;
}


li.disabledLinks a.disabledLink:hover, li.disabledLinks a.disabledLink {
    color: rgb(220, 220, 220);
    cursor: not-allowed;
}

.text_field {
    background-color: #030303;
    border-width: 0;
    color: #5f5f5f;
    font-size: 10px;
    height: 50px;
    margin-right: 15px;
    padding: 5px;
    width: 165px;
}

.field {
    background-color: #030303;
    border-width: 0;
    color: #5f5f5f;
    font-size: 10px;
    height: 15px;
    margin-right: 15px;
    padding: 5px;
    width: 165px;
}

.msgarea {
    background-color: #030303;
    border-width: 0;
    color: #5f5f5f;
    font-size: 10px;
    height: 75px;
    margin-right: 15px;
    padding: 5px;
    width: 165px;
}

#footer {
    font-size: 10px;
    margin-top: 10px;
    text-align: right;
    clear: both;
    padding: 40px;
    background: transparent;
    color: white;
}



.custom-combobox {
    display: inline-block;
    position: relative;
}

.custom-combobox-toggle {
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    position: absolute;
    top: 0;
}

.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
}

.silverBox {
    border: 1px solid silver;
}

.shortButton {
    height: 25px;
    padding: 0 1em !important;
    top: -3px;
}

.noResize {
    resize: none;
}

.padded10 {
    font-size: small;
    margin: 2px 10px 2px 10px;
}

.noDisplay {
    display: none;
}

.largerTextBox {
    height: 20px;
    font-size: 15px;
    padding: 5px;
}

.disabledCaddie {
    pointer-events: none;   /*This makes it not appear clickable*/ 
    opacity:0.6;            /*This grays it out to look disabled*/
}

.errorText {
    color: red;
}

.successText {
    color: #769724;
}

.validation-summary-errors {
    color: red;
    margin: 20px;
}

/************** Tool Tip Styles ********************************/
.tool-tip {
    display: inline-block;
    position: relative;
    margin-left: 0.5em;
}

span.tool-tip__text, span.tool-tip__text span {
    color: #999999;
}

.tool-tip .tool-tip__icon {
    background: #27b1f0;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    font-style: italic;
    font-family: times new roman;
    height: 20px;
    line-height: 1.3em;
    text-align: center;
    width: 20px;
}

.tool-tip .tool-tip__info {
    display: none;
    background: #262626;
    border: 1px solid #27b1f0;
    border-radius: 3px;
    font-size: 0.875em;
    padding: .75em 1em;
    position: absolute;
    left: 30px;
    top: -20px;
    width: 350px;
    z-index: 2;
}

.tool-tip .tool-tip__info:before, .tool-tip .tool-tip__info:after {
    content: "";
    position: absolute;
    left: -10px;
    top: 7px;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #27b1f0;
}

.tool-tip .tool-tip__info:after {
    left: -8px;
    border-right-color: #262626;
}

.tool-tip .tool-tip__info .tool-tip__text {
    display: block;
}

.tool-tip .tool-tip__info .info__title {
    color: #5a78f3;
}

.tool-tip:hover .tool-tip__info, .tool-tip:focus .tool-tip__info {
    display: inline-block;
}

a:focus + .tool-tip .tool-tip__info {
    display: inline-block;
}

/*This appears on the Manage Caddies and Job Assignment List pages.*/
#PendingCaddiesTableContainer {
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 10px;
}

.PendingCaddiesColumn1Header {
    text-align: center;
    padding-left: 10px;
    width: 100px;
}

.PendingCaddiesColumn1Data {
    text-align: center;
    padding-left: 5px;
}

.PendingCaddiesColumn {
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.roundedBorderContent {
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 5px;
}

/* z-index of #header is 100000 so the fancybox ends up being under it - need it to be over top. So silly! */
.fancybox-container {
    z-index: 100010 !important;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    border-top: 1px solid lightgray;
    font-size: medium;
}