
/*!
 * Bootstrap Reboot v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */*,::after,::before{-webkit-box-sizing:border-box;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:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}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}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}
.react-toggle {
  -ms-touch-action: pan-x;
      touch-action: pan-x;

  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27;
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15;
}

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27;
}

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
  box-shadow: 0px 0px 2px 3px #0099E0;
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
  box-shadow: 0px 0px 5px 5px #0099E0;
}


.toggle-wrapper {
  margin: 0.5em auto;
}

.toggle-wrapper label {
  padding: 0.3em;
  font-size: 17px;
  display: block;
}

.toggleContainer {
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 1px solid #eeeeee;

}

.toggleContainer .toggleOption {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #807b77;
  font-size: 1em;

}

.toggleContainer .toggleOption.selected {
  color: #ffffff;
  cursor: initial;
}

.toggleContainer .toggle {
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #df5d5d;
}
@font-face {
  font-family: 'DaxlinePro-Regular';
  src: url('/fonts/DaxlinePro-Regular.eot?#iefix') format('embedded-opentype'), url('/fonts/DaxlinePro-Regular.woff') format('woff'), url('/fonts/DaxlinePro-Regular.ttf') format('truetype'), url('/fonts/DaxlinePro-Regular.svg#DaxlinePro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3 {
  font-family: "DaxlinePro-Regular", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  h1,
  h2,
  h3 {
    margin: 30px 0 40px 0;
    font-size: 32px;
  }
}
h2 {
  font-size: 20px;
  margin: 0 0 20px 0;
}
h3 {
  font-size: 16px;
  margin: 0 0 15px 0;
}
.grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.grid__col__inner {
  margin: 0 15px 30px 15px;
}
.grid__col__sm6 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .grid__col__sm6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media screen and (min-width: 992px) {
  .grid__col__md3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}
@media screen and (min-width: 992px) {
  .grid__col__md5 {
    -ms-flex-preferred-size: 41.6666667%;
        flex-basis: 41.6666667%;
  }
}
@media screen and (min-width: 992px) {
  .grid__col__md4 {
    -ms-flex-preferred-size: 33.3333334%;
        flex-basis: 33.3333334%;
  }
}
@media screen and (min-width: 992px) {
  .grid__col__md6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media screen and (min-width: 992px) {
  .grid__col__md8 {
    -ms-flex-preferred-size: 66.6666667%;
        flex-basis: 66.6666667%;
  }
}
.contract-view {
  margin-bottom: 30px;
  width: 100%;
}
.contract-view thead tr th {
  font-weight: normal;
  font-size: 14px;
  border-bottom: solid 1px #efefef;
  padding: 15px;
  cursor: pointer;
}
.contract-view tbody tr td {
  font-weight: normal;
  font-size: 14px;
  padding: 15px;
}
.contract-view tbody tr:nth-child(even) td {
  border-bottom: solid 1px #efefef;
  padding-top: 0;
  padding-bottom: 0;
}
.contract-view tbody tr:last-child td {
  border-bottom: 0;
}
.contract-view__tagged {
  background: #54a6e0;
  border-radius: 6px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  text-align: center;
  -webkit-transition: background 150ms linear,
            color 150ms linear;
  transition: background 150ms linear,
            color 150ms linear;
  width: 100%;
}
.contract-view__tagged:hover {
  background: #6ec0fa;
}
.contract-view__tagged--expired {
  background: #ec2727;
}
.contract-view__tagged--expired:hover {
  background: #f05656 !important;
}
.contract-view__tagged--renewal-due {
  background: #ee8326;
}
.contract-view__tagged--renewal-due:hover {
  background: #f29e55 !important;
}
.contract-view__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
}
.contract-view__actions__buttons {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contract-view__actions button {
  background: transparent;
  font-size: 12px;
  border: 0;
  color: #b0b0b0;
  cursor: pointer;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
  margin-right: 15px;
}
.contract-view__actions button:hover {
  color: #54a6e0 !important;
}
.contract-view__actions button.delete:hover {
  color: #dd0000 !important;
}
.contract-view__actions:hover button {
  color: #444444;
}
.contract-view__actions__info button {
  color: #444444;
  font-size: 16px;
}
.contract-view__detail {
  background: #f4f4f4;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  padding: 0 15px;
  margin: 0 -15px;
}
.contract-view__detail--open {
  max-height: 500px;
  padding-top: 30px;
  padding-bottom: 15px;
}
.contract-view__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}
.contract-view__pagination span {
  display: inline-block;
  padding: 3px 8px;
  cursor: pointer;
}
.contract-view__pagination span.disabled {
  color: #d1d1d1;
  cursor: default;
}
.contract-view__pagination span.active {
  background: #54a6e0;
  border-radius: 3px;
  color: #ffffff;
}
body {
  background: #f4f4f4;
  color: #444444;
}
a.default:link,
a.default:active,
a.default:visited {
  color: #54a6e0;
  text-decoration: none;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
a.default:hover {
  color: #555555;
}
.container {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 15px;
}
.ellipsis-nav li a {
  color: #444444;
  border-left: solid 5px transparent;
  display: block;
  padding: 10px 15px 10px 45px;
  text-align: right;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
.ellipsis-nav li a:hover,
.ellipsis-nav li a.active {
  border-left-color: #54a6e0;
  text-decoration: none;
}
.top-nav a {
  color: #444444;
  margin: 0 15px;
  text-decoration: none;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
.top-nav a:hover,
.top-nav a.active {
  color: #54a6e0;
  text-decoration: none;
}
.react-datepicker__input-container input {
  background: #ffffff;
  border-radius: 4px;
  border: solid 1px #e5e5e5;
  color: #444444;
  display: inline-block;
  font-size: 15px;
  height: 44px;
  outline: none;
  padding: 0 15px 0 45px;
  -webkit-transition: border 150ms linear, padding 150ms linear, -webkit-box-shadow 150ms linear;
  transition: border 150ms linear, padding 150ms linear, -webkit-box-shadow 150ms linear;
  transition: border 150ms linear, box-shadow 150ms linear, padding 150ms linear;
  transition: border 150ms linear, box-shadow 150ms linear, padding 150ms linear, -webkit-box-shadow 150ms linear;
  width: 100%;
}
.react-datepicker__input-container input:hover {
  border-color: #48c4f6;
}
.react-datepicker__input-container input:focus {
  border-color: #54a6e0;
  boxShadow: 0 0 8px #2eaadc;
}
.table tr td {
  padding-right: 15px;
}
.contract-table {
  width: 100%;
}
.contract-table__actions {
  background: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  display: none;
  right: 0;
  position: absolute;
  top: 20px;
  width: 150px;
}
.contract-table__actions__area {
  background: transparent;
  height: 20px;
  width: 100%;
  top: -20px;
  position: absolute;
}
.contract-table__actions a {
  color: #444444;
  display: block;
  font-size: 14px;
  padding: 10px 15px;
  border-bottom: solid 1px #e5e5e5;
  text-decoration: none;
  -webkit-transition: color 150ms linear,
                background 150ms linear;
  transition: color 150ms linear,
                background 150ms linear;
}
.contract-table__actions a svg {
  margin-right: 15px;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
.contract-table__actions a:last-child {
  border-bottom: 0;
}
.contract-table__actions a:hover {
  background: #54a6e0;
  color: #ffffff;
}
.contract-table__has-actions {
  cursor: pointer;
  position: relative;
}
.contract-table__has-actions:hover {
  z-index: 100;
}
.contract-table__has-actions:hover .contract-table__actions {
  display: block;
}
.force-info:hover p {
  display: block !important;
}
.toggle-wrapper {
  margin: 0.5em auto;
}
.toggle-wrapper label {
  padding: 0.3em;
  font-size: 17px;
  display: block;
}
.toggleContainer {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  position: relative;
  background: #ffffff;
  border: 1px solid #eeeeee;
}
.toggleContainer .toggleOption {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #807b77;
  font-size: 1em;
}
.toggleContainer .toggleOption.selected:first-child {
  background: #19ab27;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.toggleContainer .toggleOption.selected:last-of-type {
  background: #4d4d4d;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.toggleContainer .toggleOption.selected {
  color: #ffffff;
  cursor: initial;
}
.toggleContainer .toggle {
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #df5d5d;
}
.optionDisabled {
  background: #e6e6e6;
  cursor: no-drop !important;
}
.dashboard-quick {
  -ms-flex-preferred-size: 33.3333334%;
      flex-basis: 33.3333334%;
}
.dashboard-quick--large {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.dashboard-quick > a {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  padding: 15px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 12px;
  color: #a9a9a9;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: color 150ms linear,
            background 150ms linear;
  transition: color 150ms linear,
            background 150ms linear;
}
.dashboard-quick > a svg {
  color: #54a6e0 !important;
  font-size: 30px;
  margin-bottom: 10px;
}
.dashboard-quick > a:hover {
  background: #54a6e0;
  color: #ffffff !important;
}
.dashboard-quick > a:hover svg {
  color: #ffffff !important;
}
