﻿/*Copy pasted from the provided CSS file for Datatable. Gives us sorting arrows*/  
 table.dataTable thead .sorting,
  table.dataTable thead .sorting_asc,
  table.dataTable thead .sorting_desc,
  table.dataTable thead .sorting_asc_disabled,
  table.dataTable thead .sorting_desc_disabled {
    background-repeat: no-repeat; }
table.dataTable thead .sorting {
    background-image: url("../images/sort_both.png"); }
table.dataTable thead .sorting_asc {
    background-image: url("../images/sort_asc.png"); }
table.dataTable thead .sorting_desc {
    background-image: url("../images/sort_desc.png"); }
table.dataTable thead .sorting_asc_disabled {
    background-image: url("../images/sort_asc_disabled.png"); }
table.dataTable thead .sorting_desc_disabled {
    background-image: url("../images/sort_desc_disabled.png"); }


#datatable_wrapper {
    display: inline-block;
}

  .dataTables_wrapper .dataTables_filter {
        float: left;
        text-align: right;
        margin-bottom: 15px;
    }
  .dataTables_wrapper .datatables_filter .headings {
      color: #777;
      margin-bottom: 6px;

  }
        .dataTables_wrapper .dataTables_filter label input{
            height: 30px;
            width: 220px;
        }

        .dataTables_wrapper .dataTables_filter .filter-labels {
            text-align: left;
            float: left;
            font-size: 14px;
            font-family: Proxima Nova Lt;
            margin-bottom: 2px;
            white-space: nowrap;
        }

    
    .dataTables_wrapper .dataTables_paginate {
        margin-top: 20px;
        margin-right: 5px;
    }

       .dataTables_wrapper .dataTables_paginate span {
           text-align: center;
        }
        
       .dataTables_wrapper .dataTables_paginate .datatable_previous {
           float: left;
        }

.dataTables_wrapper .dataTables_paginate .paginate_button {
    text-shadow: none;
    font-family: Proxima Nova Lt;
    border-radius: 3px;
    border: 2px solid #679fbb;
    background-color: transparent;
    color: #679fbb;
    padding: 3px 8px;
    font-family: Proxima Nova Lt;
    height: 28px;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
    margin-right: 5px;
}

  .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        border-color: #AAA;
  }
  table.dataTable.no-footer {
      clear: left;
  }

  table.dataTable tr {
      border-bottom: solid 1px #333;
  }

  .dataTables_wrapper .dataTables_filter input {
      display: block;
      border-radius: 3px;
  }
        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
            border-color: #AAA;
            color: #AAA;
            margin-right: 5px;
        }

        #datatable_previous {
            padding: 3px 15px;
        }

        #datatable_next {
            padding: 3px 15px;
        }

        .paginate_button.disabled:hover {
            border-color: #AAA;
            color: #AAA; 
            background: none;
            margin-right: 5px;
        }

      .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-color: rgba(255,255,255,0);
        -moz-transition: all 0.15s ease-in;
        -o-transition: all 0.15s ease-in;
        -ms-transition: all 0.15s ease-in;
        transition: all 0.15s ease-in;
        cursor: pointer;
      }

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    text-shadow: none;
    border: 2px solid #679fbb;
    background-color: transparent;
    color: #679fbb;
    font-family: Proxima Nova Lt;
    height: 28px;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
    margin-right: 5px;
}

      .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background-color: #679fbb;
          color: #FFF;
          border: 2px solid #679fbb;
      }

    .spacer-line {
        margin-top: -4px;
        opacity: 0.12;
    }

    #datatable_info {
        margin-left: 2px;
    }

    /*testing the backgrounds for every other row*/

       .odd {
        background: #f9f9f9;
    }

#datatable_paginate {
    float: left;
}

#datatable_length {
    margin-top: 15px;
    float: right;
}