/*

 */


.g-page-width {
    display: block;
    margin: auto;
    max-width: 1600px;
}


.g-page-title {
    font-size: 150%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #798a8f;
    font-weight: bold;
    text-transform: uppercase;
}

.g-page-title-sub {
    font-size: 150%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444444;
    font-weight: lighter;
    text-transform: uppercase;
}

.g-section-title {
    font-size: 130%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #8c9341;
    font-weight: bold;
    text-transform: uppercase;
}

.g-disabled-row .table-cell {
    background-color: #bbbbbb !important;
}

.g-error-msg {
    padding: 10px;
    border: 1px solid #444444;
    font-weight: bold;
    color: #461400;
    font-size: 110%;
    background-color: #ccb1b1;
    text-align: left;
}


.g-row-border > .table-cell {
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
}

.g-row-border-bottom > .table-cell {
    border-bottom: 1px solid #666666;
}

.g-row-completed > .table-cell {
    background-color: #adadad;
}

.g-input-warning {
    background-color: #d5a1c3;
}


.g-icon-image {
    display: inline-block;
    width: auto;
    height: 30px;
    cursor: pointer;
}

.g-opacity-hover {
    opacity: 0.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.g-opacity-hover:hover {
    opacity: 0.8;
}

.g-input-checkbox {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: auto;
    height: 34px;
    vertical-align: middle;
}



/*========================*/

.spinner-slow {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.spinner {
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}