@charset "UTF-8";
@-webkit-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
  }
}

@keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}

@-webkit-keyframes anim-elem {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes anim-elem {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

*:focus {
  outline: none;
}

a.default {
  color: #000000;
  text-decoration: none;
}

a.link-default {
  cursor: pointer;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

a.link-default.link-popup-bubble {
  display: inline-block;
}

a.link-default.link-popup-bubble span {
  line-height: 40px;
}

a.link-default span {
  border-bottom: 1.5px solid transparent;
  color: #484848;
  padding-bottom: 4px;
}

a.link-default:hover span {
  color: #00A8C6;
}

a.link-default:hover.hasBorder span {
  border-color: #00A8C6;
}

a.link-default.borderless span {
  padding: 0;
  border-bottom: none;
}

a.link-default.hasBorder span {
  padding-bottom: 4px;
  border-bottom: 1.5px solid #bdc3c7;
}

a.link-default.not-border span {
  border-bottom: none;
}

a.link-default.not-border:hover span {
  border-bottom: 1.5px solid;
}

a.link-default.active span {
  color: #00A8C6;
}

a.link-default.active svg {
  fill: #00A8C6;
}

a.link-default.active.hasBorder span {
  border-bottom: 1.5px solid #00A8C6;
}

a.link-default.delete:hover span {
  color: #e74c3c;
}

a.link-default.delete:hover svg {
  fill: #e74c3c;
}

a.link-default.link-delete:hover {
  color: #e74c3c;
}

a.link-default.link-delete:hover svg {
  fill: #e74c3c;
}

a.link-default.ico-add svg {
  height: 1.5em;
  width: 12px;
  fill: #00A8C6;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

a.link-default.ico-preview svg {
  opacity: 1;
  -webkit-transition: all 0.5s cubic-bezier(0.27, 1.64, 0.32, 0.95) 0s;
  transition: all 0.5s cubic-bezier(0.27, 1.64, 0.32, 0.95) 0s;
}

a.link-default.ico-preview svg path {
  fill: #00A8C6;
}

a.link-default.ico-preview.active svg {
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

a.link-default.ico-preview.active svg path {
  fill: #484848;
}

a.link-default.link-tutorial {
  display: inline-block;
  line-height: 30px;
  margin-bottom: 10px;
}

a.link-default.link-tutorial span {
  border-bottom: 0px none;
  line-height: inherit;
  padding-bottom: 4px;
}

a.link-default.link-tutorial .ico-video-tutorial {
  display: inline-block;
  margin: 0px 8px 0px 0px;
}

a.link-default.link-tutorial .ico-video-tutorial svg {
  fill: #00A8C6;
  width: 22px;
  height: 30px;
  vertical-align: middle;
}

a.link-default.link-addnew span {
  line-height: 1.5em;
}

a.link-default.link-bcorder span {
  color: #00A8C6;
}

a.link-default.gateway-default {
  pointer-events: none;
}

a.link-default.gateway-default span {
  border-color: #27ae60;
  color: #27ae60;
}

a.link-default.link-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

a.link-default.link-back span {
  padding: 0;
}

a.link-default.link-back svg {
  height: 12px;
  margin: auto;
  margin-right: 5px;
  width: 12px;
}

a.link-default.link-back:hover span {
  color: #00A8C6;
}

a.link-default.link-back:hover svg {
  fill: #00A8C6;
}

a.link-default.link-download {
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

a.link-default.link-download span {
  color: #232830;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0px;
}

a.link-default.disabled {
  cursor: default;
  pointer-events: none;
}

a.link-default.disabled span {
  color: #bdc3c7;
  fill: #bdc3c7;
}

a.link-default.disabled.hasBorder span {
  border-bottom: 1.5px solid #bdc3c7;
}

a.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 130px;
  min-height: 40px;
  text-decoration: none;
}

a.btn.alt span {
  color: #484848;
}

a.btn.light {
  font-weight: 100;
}

a.btn.thin {
  font-weight: 300;
}

a.btn.medium {
  font-weight: 400;
}

a.btn.bold {
  font-weight: 600;
}

a.btn span {
  font-size: 1em;
}

a.btn-default {
  background-color: #00A8C6;
  background-image: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #ffffff;
  padding: 0 20px;
}

a.btn-default:hover {
  background-color: #2980b9;
}

button {
  border: 0 none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  outline: medium none;
  position: relative;
  pointer-events: auto;
  text-align: center;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  vertical-align: middle;
}

button.default {
  padding: 0 20px;
  height: 40px;
}

button.default span {
  line-height: 38px;
  letter-spacing: 0.3px;
}

button.default.hasico svg {
  height: 36px;
  width: 22px;
}

button.default.hasico.hasico-l span {
  margin-left: 10px;
}

button.default.border-thin {
  border: 1px solid;
}

button.default.border-radius {
  border-radius: 4px;
}

button.default.btn-white {
  border-color: #bdc3c7;
  background-color: #ffffff;
  color: #484848;
}

button.default.btn-white svg {
  fill: #95a5a6;
}

button.default.btn-white:hover {
  border-color: #00A8C6;
  background: #fafdff;
}

button.default.btn-white.active {
  border-color: #00A8C6;
  background: #fafdff;
  color: #00A8C6;
}

button.default.btn-white.active svg {
  fill: #00A8C6;
}

button.btn {
  min-width: 130px;
  min-height: 40px;
}

button.btn.alt span {
  color: #484848;
}

button.btn.light {
  font-weight: 100;
}

button.btn.thin {
  font-weight: 300;
}

button.btn.medium {
  font-weight: 400;
}

button.btn.bold {
  font-weight: 600;
}

button.btn span {
  font-size: 1em;
}

button.btn-border {
  background-color: transparent;
  border: 1px solid #95a5a6;
  border-radius: 3px;
  color: #7f8c8d;
  line-height: 40px;
}

button.btn-border span {
  padding: 0 10px;
}

button.btn-border.delete {
  border-color: #e74c3c;
  color: #e74c3c;
}

button.btn-border.delete.hasico svg {
  fill: #e74c3c;
}

button.btn-border.delete:hover {
  background-color: #e74c3c;
  border-color: #e74c3c;
  color: #ffffff;
}

button.btn-border.delete:hover.hasico svg {
  fill: #ffffff;
}

button.btn-border.hasico svg {
  fill: #00A8C6;
  margin-left: -15px;
  margin-right: 5px;
}

button.btn-border:hover {
  background-color: #fafdff;
  border-color: #2980b9;
  color: #2980b9;
}

button.btn-border:hover.hasico svg {
  fill: #2980b9;
}

button.btn-cancel {
  background-color: transparent;
}

button.btn-cancel span {
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border-bottom: 1.5px solid #95a5a6;
  padding-bottom: 4px;
  opacity: 0.65;
}

button.btn-cancel:hover span {
  opacity: 1;
}

button.btn-filter-clear {
  background-color: transparent;
  border-radius: 0;
  border: 0 none;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  right: 64px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button.btn-filter-clear svg {
  height: 12px;
  width: 12px;
}

button.btn-filter-clear.isDisabled {
  opacity: 0;
  pointer-events: none;
}

button.btn-default {
  background-color: #00A8C6;
  background-image: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #ffffff;
  padding: 0 20px;
}

button.btn-default:hover {
  background-color: #2980b9;
}

button.btn-danger {
  background-color: #e74c3c;
  color: #ffffff;
}

button.btn-danger:hover {
  background-color: #c0392b;
  color: #ffffff;
}

button.btn-danger.btn-border {
  background-color: transparent;
  border: none;
}

button.btn-danger.btn-border span {
  border-bottom: 1.5px solid #e74c3c;
  color: #e74c3c;
  opacity: 0.65;
  padding: 0 0 4px;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

button.btn-danger.btn-border:hover span {
  opacity: 1;
}

button.btn-edit {
  background-color: #95a5a6;
  color: #ffffff;
  min-width: inherit;
  padding: 0 20px;
}

button.btn-edit:hover {
  background-color: #484848;
}

button.btn-edit.btn-border {
  background-color: transparent;
  border-color: #484848;
  color: #484848;
}

button.btn-edit.btn-border:hover {
  border-color: #484848;
  background-color: #484848;
  color: #ffffff;
}

button.btn-group {
  float: left;
  margin-left: 5px;
}

button.btn-ico {
  background-color: transparent;
  border: 1px solid;
  border-radius: 50px;
  font-size: 1.125em;
  height: 40px;
  text-align: center;
  width: 40px;
}

button.btn-ico.btn-border {
  border-color: #7f8c8d;
  color: #7f8c8d;
}

button.btn-ico.btn-border[disabled] {
  border-color: #ecf0f1;
  background-color: #ecf0f1;
  color: #bdc3c7;
}

button.btn-ico.btn-border:hover {
  background-color: #00A8C6;
  border-color: #00A8C6;
  color: #ffffff;
}

button.btn-ico.btn-border.btn-danger {
  color: #7f8c8d;
}

button.btn-ico.btn-border.btn-danger:hover {
  border-color: #c0392b;
  background-color: #c0392b;
  color: #ffffff;
}

button.btn-ico.ico-info {
  border: 0 none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: auto;
  margin-left: 5px;
  margin-top: -2px;
  padding: 0;
  width: auto;
}

button.btn-ico.ico-info svg {
  margin: auto;
  height: auto;
  fill: #00A8C6;
  width: 15px;
}

button.btn-ico.ico-warning {
  border: 0 none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: auto;
  margin-left: 5px;
  margin-top: -2px;
  padding: 0;
  width: auto;
}

button.btn-ico.ico-warning svg {
  margin: auto;
  height: auto;
  fill: #00A8C6;
  width: 15px;
}

button.btn-link {
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  color: #58595b;
}

button.btn-link span {
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border-bottom: 1.5px solid #7f8c8d;
  padding-bottom: 4px;
}

button.btn-link:hover span {
  border-bottom-color: #00A8C6;
  color: #00A8C6;
}

button.btn-link.makedefault {
  background-color: transparent !important;
}

button.btn-link.makedefault[disabled] span {
  color: #2ecc71;
  border-bottom-color: #2ecc71;
}

button.btn-link.makedefault[disabled]:hover span {
  color: #2ecc71;
  border-bottom-color: #2ecc71;
}

button.btn-link.makedefault[active] span {
  color: #95a5a6;
}

button.btn-link.makedefault:hover span {
  border-bottom-color: #00A8C6;
  color: #00A8C6;
}

button.btn-success {
  background-color: #2ecc71;
  color: #ffffff;
}

button.btn-success:hover {
  background-color: #27ae60;
  color: #ffffff;
}

button.btn-success.btn-border {
  background-color: transparent;
  border-color: #27ae60;
  color: #27ae60;
}

button.btn-success.btn-border:hover {
  background-color: #27ae60;
  border-color: #27ae60;
  color: #ffffff;
}

button.btn-warning {
  background-color: #f1c40f;
  color: #ffffff;
}

button.btn-warning:hover {
  background-color: #f39c12;
  color: #ffffff;
}

button.btn-warning.btn-border {
  background-color: transparent;
  border-color: #f1c40f;
  color: #f1c40f;
}

button.btn-warning.btn-border:hover {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #ffffff;
}

button.btn-more {
  background-color: transparent;
  border: 1px solid #bdc3c7;
}

button.hasico svg {
  height: 15px;
  vertical-align: sub;
  width: auto;
}

button.hasico-l i {
  margin-right: 8px;
}

button.hasico-r i {
  margin-left: 8px;
}

button.btn-noradius {
  border-radius: 0;
}

button.isloading {
  background-color: transparent !important;
  background-image: url("../img/ico-loading-01.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  pointer-events: none;
}

button.isloading span {
  opacity: 0;
}

button[disabled] {
  background-color: #ecf0f1 !important;
  border-color: #ecf0f1 !important;
  color: #bdc3c7 !important;
  cursor: default;
  pointer-events: none;
}

.checkbox-wrapper {
  position: relative;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default {
  opacity: 0;
  position: absolute;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default + label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 24px;
  height: 24px;
  padding-left: 31.2px;
  position: relative;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default + label:before, .checkbox-wrapper input[type="checkbox"].checkbox-default + label:after {
  background-color: #ffffff;
  border: 2px solid #bdc3c7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default + label:before {
  border-radius: 4px;
  color: #ffffff;
  height: 24px;
  width: 24px;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default + label:after {
  color: #ffffff;
  margin-left: 7px;
  opacity: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:hover + label:before {
  border-color: #00A8C6;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:checked + label:after {
  background-color: #00A8C6;
  border: 0px none #00A8C6;
  color: #ffffff;
  content: "✓";
  opacity: 1;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:checked + label:before {
  background-color: #00A8C6;
  border-color: #00A8C6;
  color: #ffffff;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:disabled + label {
  color: #95a5a6;
  cursor: default;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:disabled + label:before {
  background-color: #f9f9f9;
  border-color: #bdc3c7;
  color: #95a5a6;
}

.checkbox-wrapper input[type="checkbox"].checkbox-default:disabled + label:after {
  background-color: transparent;
  border-color: #bdc3c7;
  color: #95a5a6;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week + label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: .875em;
  font-weight: 400;
  height: 32px;
  line-height: 32px;
  padding-left: 0;
  text-align: center;
  width: 33px;
  z-index: 0;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week + label:after, .checkbox-wrapper input[type="checkbox"].checkbox-week + label:before {
  background-color: transparent;
  border: 1px solid #bdc3c7;
  border-radius: 50%;
  height: 32px;
  margin: 0;
  width: 32px;
  z-index: 0;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:checked + label {
  color: #ffffff;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:checked + label:after {
  background-color: #00A8C6;
  border: 0px none #00A8C6;
  color: #ffffff;
  content: '';
  margin: 0;
  opacity: 1;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: -1;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:checked + label:before {
  background-color: #00A8C6;
  border-color: #00A8C6;
  color: #ffffff;
  z-index: -1;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:disabled + label {
  color: #95a5a6;
  cursor: default;
  z-index: 0;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:disabled + label:before {
  background-color: transparent;
  border-color: #bdc3c7;
  color: #95a5a6;
  z-index: 0;
}

.checkbox-wrapper input[type="checkbox"].checkbox-week:disabled + label:after {
  background-color: transparent;
  border-color: #bdc3c7;
  color: #95a5a6;
  z-index: 0;
}

.dropdown-container:before {
  content: " ";
  display: table;
  position: relative;
}

.dropdown-container:after {
  content: " ";
  display: table;
  position: relative;
  clear: both;
}

.dropdown-container .dropdown-group .dropdown-wrapper {
  margin-left: 5px;
}

.dropdown-container .dropdown-group .dropdown-wrapper:first-child {
  margin-left: 0;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-wrapper ul.dropdown-menu {
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25) ;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25) ;
  border: 1px solid #ffffff;
  border-radius: 3px;
  position: absolute;
  top: 55px;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  min-width: 120px;
  z-index: 999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  top: 45px;
  -webkit-transform: translate3d(0px, -10%, 0px);
          transform: translate3d(0px, -10%, 0px);
  -webkit-transform-origin: center top 0;
          transform-origin: center top 0;
  -webkit-transition: all 0.2s cubic-bezier(0.7, 0, 0.175, 1) 0s;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.175, 1) 0s;
  visibility: hidden;
}

.dropdown-wrapper ul.dropdown-menu.active {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  visibility: visible;
  z-index: 99;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt {
  line-height: 45px;
  border-top: 1px solid #eaeaea;
  text-align: center;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt:first-child {
  border-top: 0;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1em;
  display: block;
  padding: 0 15px;
  white-space: nowrap;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a.hasico i {
  width: 40px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a.hasico-l {
  padding: 0 15px 0 0;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a.hasico-r {
  padding: 0 0 0 15px;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a.active {
  background: #fafafa;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt a:hover {
  background-color: #c8e5ec;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt.dropdown-opt-date {
  line-height: 1em;
  padding: 10px 15px;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt.dropdown-opt-date label {
  line-height: 25px;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt.dropdown-opt-date input {
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt.dropdown-opt-date input::-moz-placeholder {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-size: 14px;
}

.dropdown-wrapper ul.dropdown-menu li.dropdown-opt-divider {
  border-top: 1px dotted #95a5a6;
}

.dropdown-wrapper ul.dropdown-menu.dropdown-menu-filterby {
  min-width: 150px;
  left: auto;
}

.dropdown-wrapper button.dropdown-default {
  line-height: 38px;
  height: 40px;
  padding: 0 60px 0 10px;
  position: relative;
  border: 1px solid #bdc3c7;
  background-color: #ffffff;
  color: #95a5a6;
}

.dropdown-wrapper button.dropdown-default svg {
  width: 18px;
  height: 38px;
  vertical-align: middle;
  fill: #95a5a6;
}

.dropdown-wrapper button.dropdown-default:hover {
  color: #00A8C6;
}

.dropdown-wrapper button.dropdown-default:hover svg {
  fill: #00A8C6;
}

.dropdown-wrapper button.dropdown-default span {
  line-height: 38px;
}

.dropdown-wrapper button.dropdown-default span.hasico-l {
  margin-left: 10px;
}

.dropdown-wrapper button.dropdown-default span.hasico-r {
  margin-right: 10px;
}

.dropdown-wrapper button.dropdown-default.active {
  color: #00A8C6;
}

.dropdown-wrapper button.dropdown-default.active svg {
  fill: #00A8C6;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby {
  border-radius: 0px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 0px;
  padding: 0px 0px 0px 10px;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby span {
  line-height: 38px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-right: 5px;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby svg {
  width: 11px;
  height: 8px;
  vertical-align: middle;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby.active {
  color: #00A8C6;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby.active svg {
  fill: #00A8C6;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby.focus {
  background-color: #fafdff;
  border-color: #00A8C6;
  color: #484848;
}

.dropdown-wrapper button.dropdown-default.dropdown-searchby.focus svg {
  fill: #484848;
}

.dropdown-wrapper button.dropdown-default.dropdown-filterby {
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 100%;
}

.dropdown-wrapper button.dropdown-default.dropdown-filterby.active {
  background-color: #fafdff;
  border-color: #00A8C6;
}

dl.numbered-list {
  counter-reset: my-badass-counter;
}

dl.numbered-list dt {
  font: bold 16px Georgia;
  padding: 0px 0px 0px 35px;
  position: relative;
  margin-bottom: 15px;
}

dl.numbered-list dt:before {
  content: counter(my-badass-counter, decimal);
  counter-increment: my-badass-counter;
  font-familY: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 0px 16px;
  color: #484848;
}

.rebillia-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.rebillia-overlay.dialog--open {
  z-index: 100;
}

.dialog {
  -webkit-justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 0px;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.dialog .dialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -webkit-transition-duration: 0.3s;
  background: rgba(126, 140, 153, 0.8);
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  transition-duration: 0.3s;
  width: 100%;
  z-index: 1;
}

.dialog .dialog-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9001;
}

.dialog .dialog-content .loading {
  padding: 2em 4em;
}

.dialog .dialog-loading {
  display: none;
  opacity: 0;
  padding: 2em 4em;
  visibility: visible;
  z-index: 4;
}

.dialog .dialog-loading.loading--show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dialog .dialog-loading svg {
  fill: white;
}

.dialog .dialog-panel {
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -ms-transform: translate(0, 0);
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -webkit-transform: translate(0, 0);
  -webkit-transition: -webkit-transform .1s linear,opacity .1s linear;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 990px;
  min-width: 480px;
  padding: 40px 0;
  position: relative;
  transform: translate(0, 0);
  -webkit-transition: opacity .1s linear,-webkit-transform .1s linear;
  transition: opacity .1s linear,-webkit-transform .1s linear;
  transition: transform .1s linear,opacity .1s linear;
  transition: transform .1s linear,opacity .1s linear,-webkit-transform .1s linear;
  width: 85%;
}

@media (max-width: 767px) {
  .dialog .dialog-panel {
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
}

.dialog .dialog-panel.dialog-time-frame {
  max-width: 320px;
}

.dialog .dialog-header {
  background-color: #ffffff;
  border-bottom: 1px solid #d8dde6;
  padding: 1rem;
  position: relative;
  text-align: center;
}

.dialog .dialog-header svg {
  height: 60px;
  vertical-align: middle;
  width: auto;
}

.dialog .dialog-header h2 {
  font-weight: 300;
  font-size: 32px;
  line-height: 60px;
  margin: 0;
  padding: 0;
}

.dialog .dialog-header h3 {
  font-size: 22px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.dialog .dialog-header h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 767px) {
  .dialog .dialog-header button {
    display: none;
  }
}

.dialog .dialog-header button.btn-close {
  background-color: transparent;
  border: 0 none;
  position: absolute;
  right: 10px;
  top: 14px;
}

.dialog .dialog-header button.btn-close svg {
  height: 30px;
  vertical-align: middle;
  width: 15px;
}

.dialog .dialog-header.error {
  background-color: #c0392b;
}

.dialog .dialog-header.error svg {
  fill: #ffffff;
}

.dialog .dialog-header.error h2 {
  color: #ffffff;
}

.dialog .dialog-message {
  margin: 0px;
  max-height: 640px;
  overflow-y: auto;
  padding: 2em 4em;
}

@media (max-width: 767px) {
  .dialog .dialog-message {
    height: 100vh;
    max-height: 2048px;
    overflow-y: scroll;
    width: 100%;
  }
}

.dialog .dialog-body {
  background-color: #ffffff;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  overflow: hidden;
  overflow-y: auto;
  padding: 1rem 40px;
  text-align: left;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .dialog .dialog-body {
    height: 100%;
    padding: 1rem;
  }
}

.dialog .dialog-body span {
  line-height: 1.5em;
}

.dialog .dialog-body .dialog-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-bottom: 5px;
}

.dialog .dialog-body .dialog-row label {
  min-width: 80px;
}

.dialog .dialog-body .timeframe-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  padding: 15px 30px;
}

.dialog .dialog-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f6f9;
  border-top: 1px solid #d8dde6;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .75rem 1rem;
  text-align: center;
}

.dialog .dialog-footer .pull-left {
  left: 0;
  position: absolute;
}

.dialog .dialog-nav {
  background-color: #f9f9f9;
  border-top: 1px solid #d4d4d4;
  bottom: 0;
  left: 0;
  margin: 0px;
  padding: 2em 4em;
  position: absolute;
  width: 100%;
}

.dialog .dialog-block {
  border: 1px solid #bdc3c7;
  border-radius: 6px;
  margin-top: 10px;
  padding: 20px;
}

.dialog .dialog-block.enabled span {
  color: inherit;
}

.dialog .dialog-block.enabled input {
  background-color: inherit;
  color: inherit;
}

.dialog .dialog-block.disabled span {
  color: #95a5a6;
}

.dialog .dialog-block.disabled input {
  background-color: #f9f9f9;
  color: #7f8c8d;
}

.dialog.bulk-actions .dialog-content {
  pointer-events: none;
}

.dialog.bulk-actions .dialog-content .dialog-panel {
  background-color: #232830;
  bottom: 0;
  color: #ffffff;
  height: auto;
  left: 0;
  max-width: 100%;
  padding: 0;
  position: fixed;
  width: 1000%;
}

.dialog.bulk-actions .dialog-content .dialog-panel .container-fluid {
  padding: 20px 5px;
  line-height: 40px;
}

.dialog.bulk-actions .dialog-content .dialog-panel .container-fluid p {
  font-size: 1.25em;
  font-weight: 100;
}

.dialog.dialog--open {
  z-index: 100;
}

.dialog.dialog--open .dialog-overlay {
  opacity: 1;
  pointer-events: auto;
}

.dialog.dialog--open .dialog-content {
  -webkit-animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: anim-open;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: anim-open;
  pointer-events: auto;
}

.dialog.dialog--open.bulk-actions {
  z-index: 99;
}

.dialog.dialog--open.bulk-actions .dialog-content {
  pointer-events: none;
}

.dialog.dialog--open h1, .dialog.dialog--open h2, .dialog.dialog--open h3, .dialog.dialog--open h4, .dialog.dialog--open p, .dialog.dialog--open button {
  -webkit-animation: anim-elem 0.3s both;
  -webkit-animation-delay: 0.05s;
  animation: anim-elem 0.3s both;
  animation-delay: 0.05s;
}

.dialog.dialog--close .dialog-overlay {
  opacity: 0;
  pointer-events: none;
}

.dialog.dialog--close .dialog-content {
  -webkit-animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: anim-close;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: anim-close;
}

.date-picker-wrapper {
  z-index: 100 !important;
}

div.rebillia-loading-nav .rebillia-svg-wrapper {
  display: inline-block;
}

div.rebillia-loading-nav .rebillia-span-wrapper {
  display: inline-block;
}

div.rebillia-loading-nav svg {
  float: left;
  height: 35px;
  width: 30px;
}

div.rebillia-loading-nav span {
  float: left;
  line-height: 35px;
  padding: 0px 0px 0px 5px;
}

div.time-loading svg {
  height: 60px;
}

div.svg-wrapper {
  float: left;
}

div.svg-wrapper svg {
  float: left;
  vertical-align: middle;
}

div.svg-container svg {
  vertical-align: middle;
}

.form-content {
  position: relative;
}

.form-content .form-group.message .form-group-content .form-group-wrapper {
  background-color: #F4F6F9;
  border: 1px solid #ecf0f1;
  padding: 40px;
}

.form-content .form-group.message.attention .form-group-content .form-group-wrapper {
  background-color: #ffeebf;
  border: 1px solid #ffeebf;
}

.form-content .form-group .form-group-header {
  margin: 30px 0 15px;
  padding: 0 5px;
}

.form-content .form-group .form-group-header .svg-logo svg {
  height: 30px;
  vertical-align: middle;
  width: auto;
}

.form-content .form-group .form-group-header .svg-logo.svg-recaptcha svg {
  height: 92px;
}

.form-content .form-group .form-group-title {
  background-color: #f4f6f9;
  color: #16325c;
  margin: .25rem 0;
  padding: .5rem .75rem;
}

.form-content .form-group .form-group-title h2 {
  background-color: inherit;
  border: none;
  color: #16325c;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-transform: none;
}

.form-content .form-group .form-group-content {
  display: block;
  margin: 0;
  padding: .5rem .75rem;
  position: relative;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper {
  width: 100%;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper {
  width: 100%;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper input {
  background-position: 1em;
  border-color: #bdc3c7;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  height: 40px;
  width: 100%;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper input::-webkit-input-placeholder {
  -webkit-transition: all -webkit-transform 0.3s ease;
  color: #bdc3c7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper input:-ms-input-placeholder {
  -webkit-transition: all -webkit-transform 0.3s ease;
  color: #bdc3c7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper input::-ms-input-placeholder {
  -webkit-transition: all -webkit-transform 0.3s ease;
  color: #bdc3c7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper input::placeholder {
  -webkit-transition: all -webkit-transform 0.3s ease;
  color: #bdc3c7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul {
  z-index: 100;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li {
  padding: 1em;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li mark {
  background-color: transparent;
  color: #00A8C6;
  font-weight: bold;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li p.search-result-info {
  color: #95a5a6;
  font-size: .75em;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li:hover {
  background-color: #F4F6F9;
  cursor: pointer;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li:first-child {
  background-color: #f9f9f9;
  border-radius: 0;
  margin: 0;
  padding: .5em;
}

.form-content .form-group .form-group-content .form-row .input-wrapper.autoComplete_wrapper .autoComplete_wrapper ul li:first-child:hover {
  background-color: #f9f9f9;
  cursor: default;
}

.form-content .form-nav {
  margin-top: 5px;
  text-align: right;
}

.form-messages {
  background: no-repeat 15px 50%;
  background-size: 30px 30px;
  border-radius: 4px;
  color: #4c4c4c;
  font-weight: 300;
  line-height: 16px;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.form-messages.messages--open {
  max-height: 2048px;
}

.form-messages.messages--open.hasmargin {
  margin-bottom: 20px;
}

.form-messages.success {
  background-color: #E4F0D8;
  background-image: url("../img/ico-success-01.svg");
}

.form-messages.error {
  background-color: #f8d0c8;
  background-image: url("../img/ico-error-01.svg");
}

.form-messages.warning {
  background-color: #ffeebf;
  background-image: url("../img/ico-warning-01.svg");
}

.form-messages.info {
  background-color: #ccebf3;
  background-image: url("../img/ico-info-01.svg");
}

.form-messages .messages-wrapper {
  padding: 20px 20px 20px 55px;
}

h1.rebillia, h2.rebillia, h3.rebillia, h4.rebillia, h5.rebillia, h6.rebillia {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h1.rebillia {
  font-size: 2.25em;
}

h2.rebillia {
  font-size: 1.875em;
}

h3.rebillia {
  font-size: 1.5em;
}

h4.rebillia {
  font-size: 1.375em;
}

h5.rebillia {
  font-size: 1.125em;
}

h6.rebillia {
  font-size: 1em;
}

h1.rebillia.font-size-big {
  font-size: 1.75em;
}

h1.rebillia.font-size-medium {
  font-size: 1.25em;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input.default {
  -webkit-appearance: none;
  background-color: #ffffff;
  border-color: #bdc3c7;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  height: 40px;
  padding: 0 8px;
  opacity: 1;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  width: 100%;
}

.input-wrapper input.default.condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-size: inherit;
}

.input-wrapper input.default.hasico-l {
  padding: 0;
  padding-left: 40px;
}

.input-wrapper input.default.hasico-r {
  padding: 0;
  padding-right: 40px;
}

.input-wrapper input.default:-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #484848;
  opacity: 0.75;
}

.input-wrapper input.default::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.input-wrapper input.default:-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.input-wrapper input.default::-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.input-wrapper input.default::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #484848;
  opacity: 0.75;
}

.input-wrapper input.default::-moz-placeholder {
  color: #484848;
  opacity: 0.75;
}

.input-wrapper input.default:-ms-input-placeholder {
  color: #484848;
  opacity: 0.75;
}

.input-wrapper input.default:focus {
  border-color: #00A8C6;
  background: #fafdff;
}

.input-wrapper input.default:focus.success {
  border-color: #27ae60;
  color: #27ae60;
}

.input-wrapper input.default:focus.error {
  border-color: #c0392b;
  color: #c0392b;
}

.input-wrapper input.default:focus ~ span.input-ico {
  color: #00A8C6;
}

.input-wrapper input.default:focus.is--required {
  border-color: #c0392b;
}

.input-wrapper input.default.success {
  background-color: #ffffff;
  border-color: #2ecc71;
  color: #2ecc71;
}

.input-wrapper input.default.error {
  background-color: #ffffff;
  border-color: #e74c3c;
  color: #e74c3c;
}

.input-wrapper input.default.is--required {
  background-color: #f8d0c8;
  border-color: #e74c3c;
}

.input-wrapper input.default.autocomplete {
  background-image: url("../img/ico-search-01.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 40px 18px;
  padding: 0 0 0 40px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.input-wrapper input.default.autocomplete[readonly] {
  background-color: #fafdff;
  background-image: url("../img/ico-search-01.svg");
  background-repeat: no-repeat;
  background-position: -40px 50%;
  padding: 0 0 0 10px;
  border-color: #00A8C6;
}

.input-wrapper input.default[disabled] {
  background-color: #ecf0f1;
  border-color: #ecf0f1;
  color: #bdc3c7;
}

.input-wrapper svg {
  height: 20px;
  vertical-align: middle;
  width: 20px;
}

.input-wrapper .clear-filter {
  background-color: transparent;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  visibility: hidden;
  width: 40px;
}

.input-wrapper .clear-filter.btn--show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

label {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
}

label.uppercase {
  text-transform: uppercase;
}

label.rebillia-required:after {
  content: '●';
  margin: 0 0 0 5px;
  font-size: 12px;
  color: #c0392b !important;
}

nav:after, nav:before {
  content: " ";
  display: table;
  position: relative;
}

nav:after {
  clear: both;
}

nav button:first-child {
  margin-left: 0;
}

p {
  margin: 0;
  padding: 0;
}

p.condensed {
  font-family: "Roboto Condensed", sans-serif;
}

p.paragraph {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

p.regular {
  font-size: 0.875em;
}

p.small {
  font-size: 0.75em;
}

.popup-bubble {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  position: absolute;
  border-radius: 4px;
  width: 280px;
  height: auto;
  top: -210px;
  opacity: 0;
  background-color: #ecf0f1;
  text-align: left;
  color: #345;
  overflow: hidden;
  z-index: -99;
}

.popup-bubble .popup-bubble-container {
  padding: 10px;
}

.popup-bubble .bubble-note {
  font-size: 12px;
}

.popup-bubble.tax-popup {
  top: 25px;
  max-width: 220px;
}

.popup-bubble.tax-popup .popup-bubble-container {
  padding: 10px 20px;
}

.popup-bubble.tax-popup .price-description {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  line-height: 24px;
}

.popup-bubble.bubble--open {
  opacity: 1;
  z-index: 99;
}

.radio-wrapper {
  position: relative;
}

.radio-group-box {
  opacity: 0;
  display: none;
  padding: 20px;
}

.radio-group-box.box--open {
  opacity: 1;
  display: block;
}

input[type="radio"].radio-default {
  position: absolute;
  opacity: 0;
}

input[type="radio"].radio-default + label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  height: 24px;
  position: relative;
  padding-left: 31.2px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

input[type="radio"].radio-default + label:before, input[type="radio"].radio-default + label:after {
  content: '';
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="radio"].radio-default + label:before {
  height: 24px;
  width: 24px;
  border: 1px solid;
  border-radius: 50%;
}

input[type="radio"].radio-default + label:after {
  height: 12px;
  width: 12px;
  border: 6px solid;
  border-radius: 50%;
  margin-top: 6px;
  margin-left: 6px;
  opacity: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

input[type="radio"].radio-default:hover + label:before {
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

input[type="radio"].radio-default:checked + label {
  cursor: default;
}

input[type="radio"].radio-default:checked + label:after {
  opacity: 1;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  cursor: default;
}

input[type="radio"].radio-default:disabled + label {
  cursor: default;
}

input[data-type="radio-group"].radio-default:checked ~ div.radio-group-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  display: block;
}

input[type="radio"].radio-default + label:before {
  border-color: #bdc3c7;
  background-color: #ffffff;
}

input[type="radio"].radio-default + label:after {
  border-color: #484848;
  background-color: #ffffff;
}

input[type="radio"].radio-default:hover + label:before {
  border-color: #484848;
}

input[type="radio"].radio-default:hover + label:after {
  border-color: #484848;
}

input[type="radio"].radio-default:checked + label:before {
  border-color: #484848;
}

input[type="radio"].radio-default:checked + label:after {
  border-color: #484848;
}

section {
  padding: 0.8em;
}

@media (max-width: 767px) {
  section {
    padding: 0.8em 0;
  }
}

span {
  font-family: "Roboto", sans-serif;
  line-height: inherit;
  margin: 0;
  padding: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

span.hasico-l {
  margin-left: 5px;
}

span.hasico-r {
  margin-right: 5px;
}

span.input-ico {
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  width: 40px;
}

span.input-ico-l {
  left: 0;
}

span.input-ico-r {
  right: 0;
}

span.input-ico-l i {
  line-height: 40px;
}

span.input-ico-r i {
  line-height: 40px;
}

span.required {
  font-size: 0.5em;
  line-height: 50px;
}

span.text-note {
  font-style: italic;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

span.condensed {
  font-family: "Roboto Condensed", sans-serif;
}

span.tiny {
  font-size: 0.6875em;
}

span.small {
  font-size: 0.75em;
}

span.regular {
  font-size: 0.875em;
}

span.std {
  font-size: 1em;
}

span.medium {
  font-size: 1.25em;
}

span.input-ico {
  color: #bdc3c7;
}

span.required {
  color: #c0392b;
}

span.text-note {
  color: #95a5a6;
}

span.divider {
  display: inline-block;
  margin: 0 10px;
}

span.ico-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

span.ico-wrapper svg {
  margin: auto;
}

span.ico-wrapper.ico-size.ico-xs {
  height: 12px;
  width: 12px;
}

strong.fw300 {
  font-weight: 300;
}

strong.fw400 {
  font-weight: 400;
}

strong.fw500 {
  font-weight: 500;
}

strong.fw600 {
  font-weight: 600;
}

strong.fw800 {
  font-weight: 800;
}

.svg-ico-cc {
  width: 120px;
  height: auto;
  vertical-align: middle;
}

.switch-wrapper {
  position: relative;
  display: inline-block;
}

input[type="checkbox"].switch-default:not(:checked),
input[type="checkbox"].switch-default:checked {
  position: absolute;
  opacity: 0;
}

input[type="checkbox"].switch-default:not(:checked) + label,
input[type="checkbox"].switch-default:checked + label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  widows: 50px;
  height: 35px;
  display: inline-block;
}

input[type="checkbox"].switch-default:not(:checked) + label:before,
input[type="checkbox"].switch-default:checked + label:before,
input[type="checkbox"].switch-default:not(:checked) + label:after,
input[type="checkbox"].switch-default:checked + label:after {
  content: '';
  position: absolute;
}

input[type="checkbox"].switch-default:not(:checked) + label:before,
input[type="checkbox"].switch-default:checked + label:before {
  left: 0;
  top: 0;
  width: 50px;
  height: 35px;
  border: 1px solid;
  border-radius: 24px;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

input[type="checkbox"].switch-default:not(:checked) + label:after,
input[type="checkbox"].switch-default:checked + label:after {
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1) ;
  width: 35px;
  height: 35px;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-radius: 50%;
  border: 1px solid;
  top: 0;
  left: 0;
}

input[type="checkbox"].switch-default:checked + label:after {
  left: 15px;
}

input[type="checkbox"].switch-default:not(:checked) + label:before {
  background-color: #f9f9f9;
  border-color: #bdc3c7;
}

input[type="checkbox"].switch-default:checked + label:before {
  background-color: #f9f9f9;
  border-color: #bdc3c7;
}

input[type="checkbox"].switch-default:not(:checked) + label:after,
input[type="checkbox"].switch-default:checked + label:after {
  background-color: #ecf0f1;
  border-color: #bdc3c7;
}

input[type="checkbox"].switch-default:checked + label:before {
  background-color: #00A8C6;
}

input[type="checkbox"].switch-default:checked + label:after {
  background-color: #ffffff;
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea.default {
  -webkit-appearance: none;
  background-color: #ffffff;
  border-color: #bdc3c7;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  padding: 8px;
  opacity: 1;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  width: 100%;
}

.textarea-wrapper textarea.default.condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-size: inherit;
}

.textarea-wrapper textarea.default.success {
  background-color: #ffffff;
  border-color: #2ecc71;
  color: #2ecc71;
}

.textarea-wrapper textarea.default.error {
  background-color: #ffffff;
  border-color: #e74c3c;
  color: #e74c3c;
}

.textarea-wrapper textarea.default.editor {
  min-height: 220px;
}

.textarea-wrapper textarea.default.is--required {
  background-color: #f8d0c8;
  border-color: #e74c3c;
}

.textarea-wrapper textarea.default:focus {
  border-color: #00A8C6;
  background: #fafdff;
}

.textarea-wrapper textarea.default:focus.success {
  border-color: #27ae60;
  color: #27ae60;
}

.textarea-wrapper textarea.default:focus.error {
  border-color: #c0392b;
  color: #c0392b;
}

.textarea-wrapper textarea.default:focus ~ span.input-ico {
  color: #00A8C6;
}

.textarea-wrapper textarea.default:-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #484848;
  opacity: 0.75;
}

.textarea-wrapper textarea.default::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.textarea-wrapper textarea.default:-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.textarea-wrapper textarea.default::-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

.textarea-wrapper textarea.default::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #484848;
  opacity: 0.75;
}

.textarea-wrapper textarea.default::-moz-placeholder {
  color: #484848;
  opacity: 0.75;
}

.textarea-wrapper textarea.default:-ms-input-placeholder {
  color: #484848;
  opacity: 0.75;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li.simple-line-space {
  margin-bottom: 15px;
}

ul li.double-line-space {
  margin-bottom: 30px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper:after {
  content: '▾';
  position: absolute;
  top: 0;
  right: 12px;
  z-index: 1;
  color: #bbbbbb;
  line-height: 40px;
  font-size: 14px;
}

.select-wrapper select {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #bdc3c7;
  padding: 0 8px;
  margin: 0;
  opacity: 1;
  font-size: 1em;
  height: 40px;
  width: 100%;
  background-color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  outline: 0;
}

.select-wrapper select:focus {
  border-color: #00A8C6;
  background: #fafdff;
}

.select-wrapper select[disabled] {
  background-color: #ecf0f1;
  border-color: #ecf0f1;
  color: #bdc3c7;
}

.select-wrapper select::-ms-expand {
  display: none;
}

.select-wrapper select.is--required {
  background-color: #f8d0c8;
  border-color: #e74c3c;
}

span.disabled {
  color: #bdc3c7;
}

span.success {
  color: #2ecc71;
}

.subscription-form {
  background-color: #f9f9f9;
  border-color: #ecf0f1;
}

.cconfile {
  border-color: #ecf0f1;
}

.newcardform-title {
  border-color: #ecf0f1;
}

.newcardform-container {
  border-color: #ecf0f1;
}

@media (min-width: 768px) {
  .newcardform input:-moz-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input::-moz-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input:-ms-input-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input::-ms-input-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input::-webkit-input-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input::-moz-placeholder {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .newcardform input:-ms-input-placeholder {
    opacity: 0;
  }
}

.newcardform.disabled label.required:after {
  color: #bdc3c7 !important;
}

.newcardform.disabled.bg-overlay {
  opacity: 0;
}

.newcardform .bg-overlay {
  background-color: #f9f9f9;
  opacity: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

h4.rebillia-cconfile-nro {
  font-size: 18px;
  font-weight: 400;
  text-transform: inherit;
  padding: 0px;
  display: block;
  margin-bottom: 5px;
  line-height: 20px;
}

a.rebillia-cconfile-editlink {
  line-height: 20px;
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
}

.rebillia-cconfile-address {
  margin-top: 10px;
}

.perspective {
  text-align: left;
  border-radius: 4px;
}

.bar {
  display: inline-block;
  width: 100%;
  height: 15px;
  margin-top: 1em;
  position: relative;
  -webkit-transform: rotateX(60deg);
          transform: rotateX(60deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.bar.cyan .floor {
  -webkit-box-shadow: 0 -0.2em 1em rgba(0, 0, 0, 0.15), 0 0.2em 0.1em -5px rgba(0, 0, 0, 0.3), 0 -0.75em 1.75em rgba(255, 255, 255, 0.6);
          box-shadow: 0 -0.2em 1em rgba(0, 0, 0, 0.15), 0 0.2em 0.1em -5px rgba(0, 0, 0, 0.3), 0 -0.75em 1.75em rgba(255, 255, 255, 0.6);
}

.bar.cyan .left {
  background-color: rgba(87, 202, 244, 0.5);
}

.bar.cyan .percentage:before {
  background-color: rgba(87, 202, 244, 0.5);
}

.bar .bar-face {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(236, 240, 241, 0.6);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.bar .bar-face.roof {
  -webkit-transform: translateZ(1em);
          transform: translateZ(1em);
}

.bar .bar-face.front {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.bar .bar-face.right {
  left: auto;
  right: -.5em;
  width: 1em;
  -webkit-transform: rotateX(-90deg) rotateY(90deg) translateX(0.5em);
          transform: rotateX(-90deg) rotateY(90deg) translateX(0.5em);
}

.bar .bar-face.back {
  -webkit-transform: rotateX(-90deg) rotateY(0deg) translateZ(-1em);
          transform: rotateX(-90deg) rotateY(0deg) translateZ(-1em);
}

.bar .bar-face.left {
  width: 1em;
  -webkit-transform: rotateX(-90deg) rotateY(-90deg) translateX(-0.5em) translateZ(0.5em);
          transform: rotateX(-90deg) rotateY(-90deg) translateX(-0.5em) translateZ(0.5em);
}

.bar .bar-face.percentage:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 100%;
  margin: 0;
  background-color: rgba(0, 168, 198, 0.8);
  -webkit-transition: width .6s ease-in-out;
  transition: width .6s ease-in-out;
}

.bar[aria-valuenow='0'] .percentage:before {
  width: 0%;
}

.bar[aria-valuenow='1'] .percentage:before {
  width: 1%;
}

.bar[aria-valuenow='2'] .percentage:before {
  width: 2%;
}

.bar[aria-valuenow='3'] .percentage:before {
  width: 3%;
}

.bar[aria-valuenow='4'] .percentage:before {
  width: 4%;
}

.bar[aria-valuenow='5'] .percentage:before {
  width: 5%;
}

.bar[aria-valuenow='6'] .percentage:before {
  width: 6%;
}

.bar[aria-valuenow='7'] .percentage:before {
  width: 7%;
}

.bar[aria-valuenow='8'] .percentage:before {
  width: 8%;
}

.bar[aria-valuenow='9'] .percentage:before {
  width: 9%;
}

.bar[aria-valuenow='10'] .percentage:before {
  width: 10%;
}

.bar[aria-valuenow='11'] .percentage:before {
  width: 11%;
}

.bar[aria-valuenow='12'] .percentage:before {
  width: 12%;
}

.bar[aria-valuenow='13'] .percentage:before {
  width: 13%;
}

.bar[aria-valuenow='14'] .percentage:before {
  width: 14%;
}

.bar[aria-valuenow='15'] .percentage:before {
  width: 15%;
}

.bar[aria-valuenow='16'] .percentage:before {
  width: 16%;
}

.bar[aria-valuenow='17'] .percentage:before {
  width: 17%;
}

.bar[aria-valuenow='18'] .percentage:before {
  width: 18%;
}

.bar[aria-valuenow='19'] .percentage:before {
  width: 19%;
}

.bar[aria-valuenow='20'] .percentage:before {
  width: 20%;
}

.bar[aria-valuenow='21'] .percentage:before {
  width: 21%;
}

.bar[aria-valuenow='22'] .percentage:before {
  width: 22%;
}

.bar[aria-valuenow='23'] .percentage:before {
  width: 23%;
}

.bar[aria-valuenow='24'] .percentage:before {
  width: 24%;
}

.bar[aria-valuenow='25'] .percentage:before {
  width: 25%;
}

.bar[aria-valuenow='26'] .percentage:before {
  width: 26%;
}

.bar[aria-valuenow='27'] .percentage:before {
  width: 27%;
}

.bar[aria-valuenow='28'] .percentage:before {
  width: 28%;
}

.bar[aria-valuenow='29'] .percentage:before {
  width: 29%;
}

.bar[aria-valuenow='30'] .percentage:before {
  width: 30%;
}

.bar[aria-valuenow='31'] .percentage:before {
  width: 31%;
}

.bar[aria-valuenow='32'] .percentage:before {
  width: 32%;
}

.bar[aria-valuenow='33'] .percentage:before {
  width: 33%;
}

.bar[aria-valuenow='34'] .percentage:before {
  width: 34%;
}

.bar[aria-valuenow='35'] .percentage:before {
  width: 35%;
}

.bar[aria-valuenow='36'] .percentage:before {
  width: 36%;
}

.bar[aria-valuenow='37'] .percentage:before {
  width: 37%;
}

.bar[aria-valuenow='38'] .percentage:before {
  width: 38%;
}

.bar[aria-valuenow='39'] .percentage:before {
  width: 39%;
}

.bar[aria-valuenow='40'] .percentage:before {
  width: 40%;
}

.bar[aria-valuenow='41'] .percentage:before {
  width: 41%;
}

.bar[aria-valuenow='42'] .percentage:before {
  width: 42%;
}

.bar[aria-valuenow='43'] .percentage:before {
  width: 43%;
}

.bar[aria-valuenow='44'] .percentage:before {
  width: 44%;
}

.bar[aria-valuenow='45'] .percentage:before {
  width: 45%;
}

.bar[aria-valuenow='46'] .percentage:before {
  width: 46%;
}

.bar[aria-valuenow='47'] .percentage:before {
  width: 47%;
}

.bar[aria-valuenow='48'] .percentage:before {
  width: 48%;
}

.bar[aria-valuenow='49'] .percentage:before {
  width: 49%;
}

.bar[aria-valuenow='50'] .percentage:before {
  width: 50%;
}

.bar[aria-valuenow='51'] .percentage:before {
  width: 51%;
}

.bar[aria-valuenow='52'] .percentage:before {
  width: 52%;
}

.bar[aria-valuenow='53'] .percentage:before {
  width: 53%;
}

.bar[aria-valuenow='54'] .percentage:before {
  width: 54%;
}

.bar[aria-valuenow='55'] .percentage:before {
  width: 55%;
}

.bar[aria-valuenow='56'] .percentage:before {
  width: 56%;
}

.bar[aria-valuenow='57'] .percentage:before {
  width: 57%;
}

.bar[aria-valuenow='58'] .percentage:before {
  width: 58%;
}

.bar[aria-valuenow='59'] .percentage:before {
  width: 59%;
}

.bar[aria-valuenow='60'] .percentage:before {
  width: 60%;
}

.bar[aria-valuenow='61'] .percentage:before {
  width: 61%;
}

.bar[aria-valuenow='62'] .percentage:before {
  width: 62%;
}

.bar[aria-valuenow='63'] .percentage:before {
  width: 63%;
}

.bar[aria-valuenow='64'] .percentage:before {
  width: 64%;
}

.bar[aria-valuenow='65'] .percentage:before {
  width: 65%;
}

.bar[aria-valuenow='66'] .percentage:before {
  width: 66%;
}

.bar[aria-valuenow='67'] .percentage:before {
  width: 67%;
}

.bar[aria-valuenow='68'] .percentage:before {
  width: 68%;
}

.bar[aria-valuenow='69'] .percentage:before {
  width: 69%;
}

.bar[aria-valuenow='70'] .percentage:before {
  width: 70%;
}

.bar[aria-valuenow='71'] .percentage:before {
  width: 71%;
}

.bar[aria-valuenow='72'] .percentage:before {
  width: 72%;
}

.bar[aria-valuenow='73'] .percentage:before {
  width: 73%;
}

.bar[aria-valuenow='74'] .percentage:before {
  width: 74%;
}

.bar[aria-valuenow='75'] .percentage:before {
  width: 75%;
}

.bar[aria-valuenow='76'] .percentage:before {
  width: 76%;
}

.bar[aria-valuenow='77'] .percentage:before {
  width: 77%;
}

.bar[aria-valuenow='78'] .percentage:before {
  width: 78%;
}

.bar[aria-valuenow='79'] .percentage:before {
  width: 79%;
}

.bar[aria-valuenow='80'] .percentage:before {
  width: 80%;
}

.bar[aria-valuenow='81'] .percentage:before {
  width: 81%;
}

.bar[aria-valuenow='82'] .percentage:before {
  width: 82%;
}

.bar[aria-valuenow='83'] .percentage:before {
  width: 83%;
}

.bar[aria-valuenow='84'] .percentage:before {
  width: 84%;
}

.bar[aria-valuenow='85'] .percentage:before {
  width: 85%;
}

.bar[aria-valuenow='86'] .percentage:before {
  width: 86%;
}

.bar[aria-valuenow='87'] .percentage:before {
  width: 87%;
}

.bar[aria-valuenow='88'] .percentage:before {
  width: 88%;
}

.bar[aria-valuenow='89'] .percentage:before {
  width: 89%;
}

.bar[aria-valuenow='90'] .percentage:before {
  width: 90%;
}

.bar[aria-valuenow='91'] .percentage:before {
  width: 91%;
}

.bar[aria-valuenow='92'] .percentage:before {
  width: 92%;
}

.bar[aria-valuenow='93'] .percentage:before {
  width: 93%;
}

.bar[aria-valuenow='94'] .percentage:before {
  width: 94%;
}

.bar[aria-valuenow='95'] .percentage:before {
  width: 95%;
}

.bar[aria-valuenow='96'] .percentage:before {
  width: 96%;
}

.bar[aria-valuenow='97'] .percentage:before {
  width: 97%;
}

.bar[aria-valuenow='98'] .percentage:before {
  width: 98%;
}

.bar[aria-valuenow='99'] .percentage:before {
  width: 99%;
}

.bar[aria-valuenow='100'] .percentage:before {
  width: 100%;
}
