﻿html {
    margin: 0;
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    background-color: #FFF;
}

body, input, button, select, table, td textarea, textarea, p, div, h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
    color: black;
}

img {
    -ms-interpolation-mode: bicubic;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    font-weight: bold;
}

h1 {
    font-size: 1.66em;
}

h2 {
    font-size: 1.5em;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #999;
    color: #999;
}

br {
    clear: both !important;
}

/* Links */
a:link {
    color: #00799e;
    text-decoration: none;
}

a:visited {
    color: #00799e;
    text-decoration: none;
}

a:hover {
    color: #2099Be;
    text-decoration: underline;
}

a:active {
    color: blue;
    text-decoration: underline;
}

.JDnote {
    font-size: .70em;
    color: #666;
    font-style: italic;
}

/* Inputs */
.DefaultInput { /* No special styling */
    width: initial;
    border: initial;
    padding: initial;
    margin: initial;
    border-radius: initial;
}

    .DefaultInput:focus {
        box-shadow: none;
    }

input, textarea {
    width: 100%;
    margin: 0;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #666;
    outline: none;
    transition: box-shadow 0.2s ease-out;
}

    input:focus, textarea:focus {
        box-shadow: 0px 0px 4px 1px #55AAEE;
        transition: box-shadow 0.2s ease-out;
    }

    input[type="checkbox"] {
        width: auto;
        display: inline;
    }

    input::-ms-clear {
        display: none;
    }

select {
    width: 100%;
    margin: 0;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #666;
    outline: none;
    transition: box-shadow 0.2s ease-out;
}

select:focus {
    box-shadow: 0px 0px 4px 1px #55AAEE;
    transition: box-shadow 0.2s ease-out;
}

select[type="checkbox"] {
    width: auto;
    display: inline;
}

select::-ms-clear {
    display: none;
}

input[type="button"] {
    text-align: center;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #666;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1.25em;
    padding-right: 1.25em;
    font-weight: bold;
    margin-top: .5em;
    background-color: #DEDEDE;
    margin-left: .5em;
    margin-right: .5em;
    width: unset;
}

input[type="submit"] {
    text-align: center;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #666;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1.25em;
    padding-right: 1.25em;
    font-weight: bold;
    margin-top: .5em;
    background-color: #DEDEDE;
    margin-left: .5em;
    margin-right: .5em;
    width: unset;
}

button {
    text-align: center;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #666;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1.25em;
    padding-right: 1.25em;
    font-weight: bold;
    margin-top: .5em;
    background-color: #DEDEDE;
    margin-left: .5em;
    margin-right: .5em;
}

input[type="button"]:hover {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

input[type="submit"]:hover {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

button:hover {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

input[type="button"]:focus {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

input[type="submit"]:focus {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

button:focus {
    box-shadow: 0px 0px 3px 1px #66BBFF;
    transition: box-shadow 0.2s ease-out;
}

input[type="button"].JDSubmit {
    background-color: #69AfFF !important;
}

input[type="submit"].JDSubmit {
    background-color: #69AfFF !important;
}

button.JDSubmit {
    background-color: #69AfFF !important;
}

input[type="button"].JDCopy {
    background-color: #b366ff !important;
}

input[type="submit"].JDCopy {
    background-color: #b366ff !important;
}

button.JDCopy {
    background-color: #b366ff !important;
}

button.JDDanger {
    background: #EE5F5F !important;
}

input[type="button"].JDDanger {
    background: #EE5F5F !important;
}

input[type="submit"].JDDanger {
    background: #EE5F5F !important;
}

input[type="button"].Run {
    background: #fd8103 !important;
}

input[type="submit"].Run {
    background: #fd8103 !important;
}

button.Run {
    background: #fd8103 !important;
}

input[type="button"].DefaultInput {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.16, rgb(207, 207, 207)), color-stop(0.79, rgb(252, 252, 252)));
    background-image: -moz-linear-gradient(center bottom, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    background-image: linear-gradient(to top, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    padding: 3px;
    border: 1px solid #000;
    color: black;
    text-decoration: none;
}

input[type="submit"].DefaultInput {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.16, rgb(207, 207, 207)), color-stop(0.79, rgb(252, 252, 252)));
    background-image: -moz-linear-gradient(center bottom, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    background-image: linear-gradient(to top, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    padding: 3px;
    border: 1px solid #000;
    color: black;
    text-decoration: none;
}

button.DefaultInput {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.16, rgb(207, 207, 207)), color-stop(0.79, rgb(252, 252, 252)));
    background-image: -moz-linear-gradient(center bottom, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    background-image: linear-gradient(to top, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%);
    padding: 3px;
    border: 1px solid #000;
    color: black;
    text-decoration: none;
}

.JDFormLabel {
    font-size: .8em;
    font-weight: bold;
}

.JDFormInformationLabel {
    font-size: .7em;
    font-style: italic;
    padding-bottom: 1px;
}

.JDInput {
    margin-bottom: .66em;
}

input:disabled {
    background-color: #ddd;
}

input[type="button"]:disabled, input[type="button"][disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

input[type="submit"]:disabled, input[type="submit"][disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

button:disabled, button[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

button:disabled:hover, button[disabled]:hover {
    box-shadow: 0px 0px 0px 0px;
}

input[type="button"]:disabled:hover, input[type="button"][disabled]:hover {
    box-shadow: 0px 0px 0px 0px;
}

input[type="submit"]:disabled:hover, input[type="submit"][disabled]:hover {
    box-shadow: 0px 0px 0px 0px;
}

/* Tabs */
.JDTabs {
    margin-bottom: 0;
    list-style: none;
    padding-left: 5px;
}

.JDTabs li {
    padding: .4em;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    background-color: #DDD;
    display: inline-block;
    margin-left: 2px;
    margin-right: 0px;
    margin-bottom: -1px;
    border-bottom: 1px solid #999;
    cursor: default;
    z-index: 3;
    position: relative;
}

.JDTabs li:hover {
    background-color: #EEE;
}

.JDTabs li.active {
    border-bottom: 2px solid white;
    background-color: white;
    z-index: 3;
}

.JDTab {
    background-color: white;
    border: 1px solid #999;
    display: none;
    margin: 0;
    padding: .5em;
    box-sizing:border-box;
}

.JDTab.active {
    display: inline-block;
    min-width: 100%;
    z-index: 2;
    position: relative;
}

/* Modals */
.JD_Modal {
    display: none;
    border: 1px solid black;
    box-shadow: 0px 0px 20px 0px #000000;
    border-radius: 7px;
    background-color: white;
    padding-left: .33em;
    padding-right: .33em;
    padding-bottom: 2em;
    margin-top: 3.5em;
    margin-bottom: 3em;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
    overflow-y: auto;
}

.JD_Modal_Smoke {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.58);
    overflow-y: auto;
}

/* Accordians */
.JDAccordion {
    cursor: pointer;
    display: inline-block;
}

.JDAccordion + div {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s;
}

.JDAccordion.active + div {
    max-height: 1000px;
}

/* Menu */
.JDMenu {
    list-style: none;
    cursor: pointer;
    display: inline-block;
}

.JDMenu ul {
    list-style: none;
    border: 1px solid black;
    box-shadow: 0px 0px 7px 0px #666;
    border-radius: 5px;
    background-color: white;
    padding: .33em;
    display: inline-block;
    vertical-align: top;
    position: absolute;
    margin-top: -2px;
}

.JDMenu ul a {
    width: 100%;
    display: block;
}

.JDMenu ul li {
    overflow-x: hidden;
    white-space: nowrap;
    padding-top: 3px;
    padding-bottom: 3px;
}

.JDMenu ul li:hover {
    background-color: lightblue;
}

.JDMenu ul ul {
    position: absolute;
    display: none;
    right: 0;
}

.JDMenu ul li:hover > ul {
    display: inline-block;
}

.JDMenu ul {
    display: none;
}

/* Calendars */
.JDCalendarMain {
    border: 1px solid black;
    box-shadow: 0px 0px 10px 0px #000000;
    border-radius: 6px;
    background-color: #FBFBFB;
    display: none;
    position: absolute;
    padding: 3px;
}

.JDCalendarNavBar {
    margin-bottom: 7px;
    margin-top: 7px;
    text-align: center;
}

.JDCalendarNav {
    display: inline-block;
    text-align: center;
    width: 20%;
    font-size: 1.2em;
    font-weight: bold;
}

.JDCalendarDayHeader {
    display: inline-block;
    border: 1px solid #CCC;
    width: 20px;
    padding: .25em;
    text-align: center;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 3px;
}

.JDCalendarDay {
    text-align: center;
    border: 1px solid black;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    width: 20px;
    padding: .25em;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 3px;
    transition: box-shadow 0.2s ease-out;
}
.JDCalendarDayEmpty {
    text-align: center;
    border: 1px solid #FBFBFB;
    font-weight: 400;
    cursor: default;
    display: inline-block;
    width: 20px;
    padding: .25em;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 3px;
}

.JDCalendarDay:hover {
    box-shadow: 0px 0px 4px 1px #3399FF;
    transition: box-shadow 0.2s ease-out;
}

.JDCalendarToday {
    background-color: #DDD;
}

.JDCalendarSelectedDate {
    border: 2px solid #0768c6;
    background-color: lightblue;
    font-weight: bold;
    margin-left: 1px;
    margin-right: 1px;
}

/* Tables */
table.JDTable {
    border-collapse: collapse;
    width: 100%;
}

table.JDTable td, table th {
    border: 1px solid #ddd;
    padding: 8px;
    border: 0;
    vertical-align: top;
}

table.JDTable tr:nth-child(odd) {
    background-color: #FFFFFF;
}

table.JDTable tr:nth-child(even) {
    background-color: #D3F4FF;
}

table.JDTable tr:hover {
    background-color: #B8D9F7;
}

table.JDTable thead tr {
    text-decoration: underline;
    font-weight: bold;
    text-align: left;
    font-size: .75em;
    color: #003399;
    background-color: #FFFFFF;
    vertical-align: bottom;
}

table.JDTable thead tr:hover {
    background-color: #FFFFFF;
}

table.JDTable td .JDnote, table th .JDnote {
    font-size: 1em;
    font-style: italic;
    text-decoration: none !important;
    display: inline-block;
}

/* Progress Bars */
.JDProgress {
    width: 100%;
    height: 1.7em;
    border: 1px solid black;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #F9F9F9;
    overflow: hidden;
    box-shadow: inset 0 0 7px #999999;
}

.JDProgress div:first-child {
    height: 100%;
    width: 0;
    box-sizing: border-box;
    border: 0px solid #FFF;
    border-radius: inherit;
    transition: width .5s;
    overflow: hidden;
    background: repeating-linear-gradient( 60deg, #428bca, #3a7fb6 30px );
}

.circle {
    width: 100%;
    border-radius: 50%;
    text-align: center;
    padding: 50% 0;
    line-height: 0;
    position: relative;
    border: 1px solid black;
}

/* DDL Filter */
.JD_SelectFilter {
    padding-top: 6px;
    padding-bottom: 6px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: #FFF;
    position: relative;
    display: block;
    overflow-x: hidden;
}

.JD_SelectFilter_Itm {
    margin: 1px;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #FFF;
}

.JD_SelectFilter_Itm_selected {
    background-color: #1e90ff;
    border: 1px solid #1e90ff;
    color: #FFF;
    margin: 0
}

.JD_SelectFilter_txt {
    margin-bottom: 2px;
    display: inline;
    box-shadow: none;
    border: 0;
}

.JD_SelectFilter_txt:focus {
    box-shadow: none;
}

.JD_SelectFilter_txt:after {
    content: ' \25BE';
}

.JD_SelectFilterOrig {
    display: none;
}

.JD_SelectFilterDiv {
    border: 1px solid #7b9dd4;
    background-color: #FFF;
    position: absolute;
    overflow-x: hidden;
    z-index: 10;
    font-weight: normal;
}

.JD_SelectFilterDiv:empty {
    border: 0;
}

/* Active Tables*/
.JD_ActiveTable {
    border: 1px solid #999;
    background-image: linear-gradient(#DDD, #F9F9F9 35px);
    border-radius: 6px;
    width: 100%;
    border-spacing: 0;
    padding: 0;
}

table.JD_ActiveTable td, table th {
    padding: 3px;
    vertical-align: top;
    border-collapse: collapse;
}

.JD_ActiveTableSorter {
    cursor: pointer;
    text-align: left;
}

.JD_ActiveTableSorterArrows {
    font-size: .65em;
    float: right;
    margin-right: .1em;
    color: #D3D3D3;
}

.JD_ActiveTableSorterArrows_Up {
    margin-top: -1px;
    float: right;
}

.JD_ActiveTableSorterArrows_Down {
    margin-top: 5px;
    float: right;
    margin-right: -.975em;
}

.JD_ActiveTableSorterArrows_Active {
    color: #000;
}

tbody.JD_ActiveTable_body {
    background-color: white;
    width: 100%;
    box-shadow: 0 0 0 1px #999;
    border-collapse: collapse;
}

tbody.JD_ActiveTable_body td {
    padding: 3px;
}

tbody.JD_ActiveTable_body tr:nth-child(even) {
    background-color: #F1F1F1;
}

tbody.JD_ActiveTable_body tr:hover {
    background-color: #A6A6A6;
}

tbody.JD_ActiveTable_body tr.JD_ActiveTable_del {
    background-color: #FFCCCC;
}

tbody.JD_ActiveTable_body tr.JD_ActiveTable_del:nth-child(even) {
    background-color: #FFB6B6;
}

tbody.JD_ActiveTable_body tr.JD_ActiveTable_del:hover {
    background-color: #FF9999;
}

JD_ActiveTable_foot {
    font-size: .75em;
}

.JD_ActiveTable_Arrow {
    margin-left: 1.5em;
    margin-right: 1.5em;
    color: #aaa;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    font-size: 1.25em;
}

.JD_ActiveTable_Arrow:hover {
    color: #000;
}

.JD_ActiveTableSorterArrows_FootPager {
    float: right;
    text-align: right;
}

.JD_ActiveTableSorterArrows_FootAdder {
    float: left;
    text-align: left;
}

.JD_ActiveTable_PageInput {
    width: 5.5em;
    font-size: .8em;
    text-align: right;
}

.JD_ActiveTable_FilterSelector {
    background-color: #DDD;
    position: fixed;
    font-weight: normal;
    text-align: left;
    padding: 4px;
    display: none;
    cursor: pointer;
    z-index: 100;
    border: 1px solid #AAA;
    width: 7em;
    box-shadow: 0px 0px 5px 1px rgb(207, 207, 207);
}

.JD_ActiveTable_FilterSelectorItem div {
    margin-bottom: .1em;
    font-size: 2em;
}

.JD_ActiveTable_FilterSelectedBox {
    background-color: #DDD;
    display: inline-block;
    width: 20px;
    margin-left: -1px;
    vertical-align: top;
    cursor: pointer;
    height: 100%;
    text-align: center;
}

.JD_ActiveTable_FilterSelectedBoxMoveShadow {
    box-shadow: inset 5px 0px 5px -5px rgba(0,0,0,0.45), inset -5px 0px 5px -5px rgba(0,0,0,0.45);
}

.JD_ActiveTable_FilterSelectedBoxMoveSelectLeft {
    border-left: 2px solid black;
}

.JD_ActiveTable_FilterSelectedBoxMoveSelectRight {
    border-right: 2px solid black;
}

.JD_ActiveTable_NoSelect {
    -ms-user-select: none;
    user-select: none;
}


.redX {
    color: red;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    margin-left: .75em;
    margin-right: .75em;
}

.redX:before {
    content: "\2718";
}

.editX {
    color: #0033A9;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    margin-left: .75em;
    margin-right: .75em;
    font-size: 1.25em;
}

.editX:before {
    content: "\270E";
}

#divJDSmallAlert {
    z-index: 2147483647;
    position: fixed;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 40px;
    padding-left: 40px;
    border-radius: 25px;
    top: 25px;
    background-color: #777;
    color: white;
    left: 50%;
    transform: translate(-50%, 0);
}

.JDValErrorMsg {
    color: red;
    font-size: .75em;
}

.JDValErrorInput {
    border-color: red;
}

.rotate90 {
    transform: rotate(-90deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(-90deg);
    /* Firefox */
    -moz-transform: rotate(-90deg);
    /* IE */
    -ms-transform: rotate(-90deg);
    /* Opera */
    -o-transform: rotate(-90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.rotate180 {
    transform: rotate(-180deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(-180deg);
    /* Firefox */
    -moz-transform: rotate(-180deg);
    /* IE */
    -ms-transform: rotate(-180deg);
    /* Opera */
    -o-transform: rotate(-180deg);
}

.rotate270 {
    transform: rotate(-270deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(-270deg);
    /* Firefox */
    -moz-transform: rotate(-270deg);
    /* IE */
    -ms-transform: rotate(-270deg);
    /* Opera */
    -o-transform: rotate(-270deg);
}

.rotate1 {
    animation: rotation 1s infinite linear;
}

.rotate2 {
    animation: rotation 2s infinite linear;
}

.rotate3 {
    animation: rotation 3s infinite linear;
}

.rotate4 {
    animation: rotation 4s infinite linear;
}

.rotate5 {
    animation: rotation 5s infinite linear;
}

.rotate6 {
    animation: rotation 6s infinite linear;
}

.rotate7 {
    animation: rotation 7s infinite linear;
}

.rotate8 {
    animation: rotation 8s infinite linear;
}

.rotate9 {
    animation: rotation 9s infinite linear;
}

.rotate10 {
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

/* Responsive Grids */
@media only screen and (max-width: 320px) {
    input[type="button"] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    input[type="submit"] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .sm-1 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 8.33%;
    }

    .sm-2 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 16.66%;
    }

    .sm-3 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 24.99%;
    }

    .sm-4 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 33.32%;
    }

    .sm-5 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 41.65%;
    }

    .sm-6 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 49.98%;
    }

    .sm-7 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 58.31%;
    }

    .sm-8 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 66.64%;
    }

    .sm-9 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 74.97%;
    }

    .sm-10 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 83.3%;
    }

    .sm-11 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 91.63%;
    }

    .sm-12 {
        padding-left: 1%;
        padding-right: 1%;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

    .sm-hide {
        display: none;
    }
}

@media only screen and (min-width: 321px) and (max-width: 480px) {
    input[type="button"] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    input[type="submit"] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .sm-1 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 8.33%;
    }

    .sm-2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 16.66%;
    }

    .sm-3 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 24.99%;
    }

    .sm-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 33.32%;
    }

    .sm-5 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 41.65%;
    }

    .sm-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 49.98%;
    }

    .sm-7 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 58.31%;
    }

    .sm-8 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 66.64%;
    }

    .sm-9 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 74.97%;
    }

    .sm-10 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 83.3%;
    }

    .sm-11 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 91.63%;
    }

    .sm-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

    .sm-hide {
        display: none;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .md-1 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 8.33%;
    }

    .md-2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 16.66%;
    }

    .md-3 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 24.99%;
    }

    .md-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 33.32%;
    }

    .md-5 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 41.65%;
    }

    .md-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 49.98%;
    }

    .md-7 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 58.31%;
    }

    .md-8 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 66.64%;
    }

    .md-9 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 74.97%;
    }

    .md-10 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 83.3%;
    }

    .md-11 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 91.63%;
    }

    .md-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

    .md-hide {
        display: none;
    }
}

@media only screen and (min-width: 769px) and (max-width:1024px) {
    .lg-1 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 8.33%;
    }

    .lg-2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 16.66%;
    }

    .lg-3 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 24.99%;
    }

    .lg-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 33.32%;
    }

    .lg-5 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 41.65%;
    }

    .lg-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 49.98%;
    }

    .lg-7 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 58.31%;
    }

    .lg-8 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 66.64%;
    }

    .lg-9 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 74.97%;
    }

    .lg-10 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 83.3%;
    }

    .lg-11 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 91.63%;
    }

    .lg-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

    .lg-hide {
        display: none;
    }
}

@media only screen and (min-width: 1025px) {
    .xl-1 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 8.33%;
    }

    .xl-2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 16.66%;
    }

    .xl-3 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 24.99%;
    }

    .xl-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 33.32%;
    }

    .xl-5 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 41.65%;
    }

    .xl-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 49.98%;
    }

    .xl-7 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 58.31%;
    }

    .xl-8 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 66.64%;
    }

    .xl-9 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 74.97%;
    }

    .xl-10 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 83.3%;
    }

    .xl-11 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 91.63%;
    }

    .xl-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
        margin-left: 0;
        float: left;
        box-sizing: border-box;
        width: 100%;
    }

    .xl-hide {
        display: none;
    }
}

.noRightMargin {
    padding-right: 0;
}

.noLeftMargin {
    padding-left: 0;
}

.noMargin {
    padding-left: 0;
    padding-right: 0;
}


.slick-wrapper {
    position: relative;
}

.slick-rail {
    background-color: transparent;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slick-bar {
    background-color: #999;
    height: 100px;
    position: absolute;
    left: 0;
    cursor: pointer;
    width: 100%;
}

.slick-rail.enabled {
    background-color: #ddd;
}

.slick-wrapper.hover > .slick-rail {
    opacity: 0;
    transition: opacity 250ms ease 1000ms;
}

.slick-wrapper.hover:hover > .slick-rail {
    opacity: 1;
    transition: opacity 250ms;
}
