@charset "UTF-8";
/* Default theme colors
$theme-colors: (
  primary: #3097D1,
  secondary: $gray-200,
  success: #5cb85c,
  info: #5bc0de,
  warning: #f0ad4e,
  danger: #d9534f,
  light: $gray-100,
  dark: $gray-800
);
*/
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; } }

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #3b4851;
  --gray-dark: #122a38;
  --primary: #1C8E3D;
  --secondary: #d4dbe0;
  --success: #5cb85c;
  --info: #5bc0de;
  --warning: #f0ad4e;
  --danger: #d9534f;
  --light: #f5f8fa;
  --dark: #122a38;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

@-ms-viewport {
  width: device-width; }

article, dialog, section {
  display: block; }

body {
  margin: 0;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #f5f8fa; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

b {
  font-weight: bolder; }

a {
  color: #1C8E3D;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }
  a:hover {
    color: #0f4e22;
    text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }

img {
  vertical-align: middle;
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

table {
  border-collapse: collapse; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button {
  text-transform: none; }

button,
html [type="button"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="date"],
input[type="time"],
input[type="month"] {
  -webkit-appearance: listbox; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

h4, .h4 {
  font-size: 1.5rem; }

h5, .h5 {
  font-size: 1.25rem; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.img-fluid {
  max-width: 100%;
  height: auto; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 992px) {
    .container {
      max-width: 990px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1230px; } }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

 .col-lg-6, .col-lg-12, .col-xl-8 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

@media (min-width: 992px) {
  .col-lg-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .offset-lg-3 {
    margin-left: 25%; } }

@media (min-width: 1200px) {
  .col-xl-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .offset-xl-2 {
    margin-left: 16.66667%; } }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  background-color: transparent; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #9da9b0; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #9da9b0; }
  .table tbody + tbody {
    border-top: 2px solid #9da9b0; }
  .table .table {
    background-color: #f5f8fa; }

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075); }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e3948;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #718899;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #1e3948;
    background-color: #fff;
    border-color: #4edc77;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(28, 142, 61, 0.25); }
  .form-control::-webkit-input-placeholder {
    color: #3b4851;
    opacity: 1; }
  .form-control::-moz-placeholder {
    color: #3b4851;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #3b4851;
    opacity: 1; }
  .form-control::placeholder {
    color: #3b4851;
    opacity: 1; }
  .form-control:disabled {
    background-color: #d4dbe0;
    opacity: 1; }

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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; }
  .btn:hover, .btn:focus {
    text-decoration: none; }
  .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(28, 142, 61, 0.25); }
   .btn:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none; }

.btn-primary {
  color: #fff;
  background-color: #1C8E3D;
  border-color: #1C8E3D; }
  .btn-primary:hover {
    color: #fff;
    background-color: #166e2f;
    border-color: #14632b; }
  .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(28, 142, 61, 0.5); }
   .btn-primary:disabled {
    color: #fff;
    background-color: #1C8E3D;
    border-color: #1C8E3D; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #14632b;
    border-color: #125926; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus {
      box-shadow: 0 0 0 0.2rem rgba(28, 142, 61, 0.5); }

.btn-secondary {
  color: #212529;
  background-color: #d4dbe0;
  border-color: #d4dbe0; }
  .btn-secondary:hover {
    color: #212529;
    background-color: #bec8d0;
    border-color: #b6c2cb; }
  .btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 219, 224, 0.5); }
   .btn-secondary:disabled {
    color: #212529;
    background-color: #d4dbe0;
    border-color: #d4dbe0; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #b6c2cb;
    border-color: #afbcc5; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
      box-shadow: 0 0 0 0.2rem rgba(212, 219, 224, 0.5); }

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.fade {
  opacity: 0;
  transition: opacity 0.15s linear; }

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-danger {
  color: #712b29;
  background-color: #f7dddc;
  border-color: #f4cfce; }
  .alert-danger hr {
    border-top-color: #efbbb9; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start; }

.media-body {
  -ms-flex: 1;
      flex: 1; }

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none; }
   .list-group-item:disabled {
    color: #3b4851;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #1C8E3D;
    border-color: #1C8E3D; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    opacity: .75; }
  .close:not(:disabled):not(.disabled) {
    cursor: pointer; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%); }

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #d4dbe0;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 1rem; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-sm {
    max-width: 300px; } }

.bg-white {
  background-color: #fff !important; }

.border {
  border: 1px solid #9da9b0 !important; }

.d-none {
  display: none !important; }

.d-block {
  display: block !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }

.w-auto {
  width: auto !important; }

.mt-0 {
  margin-top: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.pt-0 {
  padding-top: 0 !important; }


.px-2 {
  padding-right: 0.5rem !important; }


.px-2 {
  padding-left: 0.5rem !important; }


.py-3 {
  padding-top: 1rem !important; }


.py-3 {
  padding-bottom: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }


.py-4 {
  padding-top: 1.5rem !important; }


.px-4 {
  padding-right: 1.5rem !important; }


.py-4 {
  padding-bottom: 1.5rem !important; }


.px-4 {
  padding-left: 1.5rem !important; }


.py-5 {
  padding-top: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }


.mx-auto {
  margin-right: auto !important; }


.mx-auto {
  margin-left: auto !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.text-white {
  color: #fff !important; }

body {
  font-weight: 300;
  letter-spacing: 0; }

button,
input {
  font-family: inherit; }

.btn {
  text-transform: default;
  letter-spacing: none; }

.modal-body + .modal-body {
  border-top: 1px solid #d4dbe0; }

@font-face {
  font-family: "toolkit-entypo";
  src: url("../fonts/toolkit-entypo.eot");
  src: url("../fonts/toolkit-entypo.eot?#iefix") format("eot"), url("../fonts/toolkit-entypo.woff2") format("woff2"), url("../fonts/toolkit-entypo.woff") format("woff"), url("../fonts/toolkit-entypo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

.icon:before {
  position: relative;
  top: 2px;
  display: inline-block;
  font-family: "toolkit-entypo";
  speak: none;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.media,
.media-body {
  overflow: visible; }

@keyframes slide-from-right {
  0% {
    transform: translateX(30%);
    opacity: 0; }
  40% {
    opacity: 1; }
  100% {
    transform: translateX(0); } }

@keyframes slide-from-top {
  0% {
    transform: translateY(-30%);
    opacity: 0; }
  70% {
    opacity: 1; }
  100% {
    transform: translateY(0); } }

.media-list {
  padding-left: 0;
  list-style: none; }

.media-list-stream .media.list-group-item {
  display: -ms-flexbox;
  display: flex;
  margin-top: 0; }

@media (min-width: 992px) {
  .container {
    max-width: 1300px; } }

 th, b {
  font-weight: 600; }

h1 {
  font-size: 1.4rem; }

@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem; } }

h2 {
  font-size: 1.3rem; }

@media (min-width: 992px) {
  h2 {
    font-size: 2.0rem; } }

h3 {
  font-size: 1.2rem; }

@media (min-width: 992px) {
  h3 {
    font-size: 1.75rem; } }

h4 {
  font-size: 1.2rem; }

@media (min-width: 992px) {
  h4 {
    font-size: 1.5rem; } }

/* Positional Coloring */
b {
  font-weight: 600; }

/*
 * Footer
  *
   * Separated section of content at the bottom of all pages, save the homepage.
    */

/* Home Page */

div.mobile-full-width {
  margin-top: 0px; }

@media (min-width: 576px) {
  div.mobile-full-width {
    margin-top: 1.5rem; } }

@media (max-width: 768px) {
  div.mobile-full-width {
    padding-left: 0px;
    padding-right: 0px; }
  div.mobile-full-width li.list-group-item {
    border-left: 0px;
    border-right: 0px; }
  div.mobile-full-width li.list-group-item:first-child {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px; }
  div.mobile-full-width li.list-group-item:last-child {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px; } }

/* Navigation */

/* End Navigation */

@media (min-width: 768px) {
  .by {
    width: 750px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 992px) {
  .by {
    width: 990px; } }

@media (min-width: 1260px) {
  .by {
    width: 1230px; } }

/* Draft board styles */

/* ADP */

/* Keepers */

/* Mock draft lobby */

/* Custom rankings */

/* ADP Twitter */

/* Player Page */

/* for backwards compatibility with CMS images */
/* use .img-fluid for future use */
.img-responsive {
  max-width: 100%;
  height: auto; }

/* Contact Us */

/* Articles */

.list-group-item, .list-group-item:hover {
  z-index: auto; }

/* Premium Page */

span.new, p.new {
  color: red; }

table.rankings {
  max-width: 600px; }

table.rankings td {
  padding: 3px 2px; }

@media (min-width: 992px) {
  table.rankings td {
    padding: 4px 8px; } }

/* Link to Text Widget */

html {
  font-size: 14px; }
