.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #868e96;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #ddd;
}

.nav-tabs .nav-link.disabled {
  color: #868e96;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-group .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-group .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group .card:only-child .card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group .card:only-child .card-img-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.modal-open {
  overflow: hidden;
}

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

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

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

.modal-header .close {
  padding: 15px;
  margin: -15px -15px -15px auto;
}

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

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 15px;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

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

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  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-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
}

.tooltip .arrow::before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tooltip.bs-tooltip-top, .tooltip.bs-tooltip-auto[x-placement^="top"] {
  padding: 5px 0;
}

.tooltip.bs-tooltip-top .arrow, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.bs-tooltip-right, .tooltip.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 5px;
}

.tooltip.bs-tooltip-right .arrow, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
}

.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.bs-tooltip-bottom, .tooltip.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 5px 0;
}

.tooltip.bs-tooltip-bottom .arrow, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bs-tooltip-left, .tooltip.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 5px;
}

.tooltip.bs-tooltip-left .arrow, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
}

.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  border-color: transparent;
  border-style: solid;
}

.popover .arrow::before {
  content: "";
  border-width: 0.8rem;
}

.popover .arrow::after {
  content: "";
  border-width: 0.8rem;
}

.popover.bs-popover-top, .popover.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.8rem;
}

.popover.bs-popover-top .arrow, .popover.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before,
.popover.bs-popover-top .arrow::after,
.popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-bottom-width: 0;
}

.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: -0.8rem;
  margin-left: -0.8rem;
  border-top-color: rgba(0, 0, 0, 0.25);
}


.popover.bs-popover-top .arrow::after,
.popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: calc((0.8rem - 1px) * -1);
  margin-left: -0.8rem;
  border-top-color: #fff;
}

.popover.bs-popover-right, .popover.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.8rem;
}

.popover.bs-popover-right .arrow, .popover.bs-popover-auto[x-placement^="right"] .arrow {
  left: 0;
}

.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before,
.popover.bs-popover-right .arrow::after,
.popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  margin-top: -0.8rem;
  border-left-width: 0;
}

.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: -0.8rem;
  border-right-color: rgba(0, 0, 0, 0.25);
}


.popover.bs-popover-right .arrow::after,
.popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: calc((0.8rem - 1px) * -1);
  border-right-color: #fff;
}

.popover.bs-popover-bottom, .popover.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.8rem;
}

.popover.bs-popover-bottom .arrow, .popover.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.popover.bs-popover-bottom .arrow::after,
.popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  margin-left: -0.8rem;
  border-top-width: 0;
}

.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: -0.8rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}


.popover.bs-popover-bottom .arrow::after,
.popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: calc((0.8rem - 1px) * -1);
  border-bottom-color: #fff;
}

.popover.bs-popover-bottom .popover-header::before, .popover.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 20px;
  margin-left: -10px;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.popover.bs-popover-left, .popover.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.8rem;
}

.popover.bs-popover-left .arrow, .popover.bs-popover-auto[x-placement^="left"] .arrow {
  right: 0;
}

.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before,
.popover.bs-popover-left .arrow::after,
.popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  margin-top: -0.8rem;
  border-right-width: 0;
}

.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: -0.8rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}


.popover.bs-popover-left .arrow::after,
.popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: calc((0.8rem - 1px) * -1);
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

/* Or #42afd0? - HJK */
/* Bootstrap 4 alpha 6 hack */
/* Hacking Bootstrap 4 alpha 6 */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #f7f7f9;
}

/* Missing variables start here */
/* Missing variables end here */
/* Missing variables start here */
/* Missing variables end here */
.br-xs-only::after, .br-xs-up::after, .br-xs-down::after, .br-sm-only::after, .br-sm-up::after, .br-sm-down::after, .br-md-only::after, .br-md-up::after, .br-md-down::after, .br-lg-only::after, .br-lg-up::after, .br-lg-down::after, .br-xl-only::after, .br-xl-up::after, .br-xl-down::after {
  content: '';
  font-size: 0;
  line-height: 0;
  display: none;
}

.br-xs-up {
  display: block;
}

@media (max-width: 575px) {
  .br-xs-down {
    display: block;
  }
}

@media (max-width: 575px) {
  .br-xs-only {
    display: block;
  }
}

@media (min-width: 576px) {
  .br-sm-up {
    display: block;
  }
}

@media (max-width: 767px) {
  .br-sm-down {
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .br-sm-only {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-md-up {
    display: block;
  }
}

@media (max-width: 991px) {
  .br-md-down {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .br-md-only {
    display: block;
  }
}

@media (min-width: 992px) {
  .br-lg-up {
    display: block;
  }
}

@media (max-width: 1199px) {
  .br-lg-down {
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .br-lg-only {
    display: block;
  }
}

@media (min-width: 1200px) {
  .br-xl-up {
    display: block;
  }
}

.br-xl-down {
  display: block;
}

@media (min-width: 1200px) {
  .br-xl-only {
    display: block;
  }
}

.modal-dialog {
  pointer-events: auto !important;
  margin: auto;
  width: 95%;
}

.modal-content,
.modal-header,
.modal-footer {
  border: 0 none;
}

.modal-header {
  padding: 14px 42px;
}

@media (min-width: 768px) {
  .modal-header {
    padding: 28px 42px 14px;
  }
}

.modal-body {
  padding: 14px 42px;
}

.modal-footer {
  padding: 14px 42px 28px;
}

/* NAV TABS */
.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.nav-tabs .nav-item {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 0;
}

@media (max-width: 767px) {
  .nav-tabs .nav-item {
    padding-top: 0;
  }
}

.nav-tabs .nav-link {
  padding: 1em;
  border-radius: 0;
  border: 0;
  border-bottom: 4px solid transparent;
  color: #373a3c;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
}

.nav-tabs .nav-link:hover {
  color: #2196F3;
  border-bottom: 4px solid transparent;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover {
  border-bottom: 4px solid #2196F3;
  background-color: transparent;
  border-color: transparent transparent #2196F3 transparent;
}

@media (max-width: 767px) {
  .nav-tabs .nav-link {
    padding: 1rem 0.7rem;
  }
}

.nav-tabs.nav-faq .nav-item + .nav-item {
  margin-left: 1.5rem;
}

.nav-tabs.nav-faq .nav-link {
  padding: 0.65rem 0;
}

#gritter-notice-wrapper {
  position: fixed;
  top: 5px;
  right: 5px;
  width: 301px;
  z-index: 9001;
}

#gritter-notice-wrapper .success .gritter-item {
  color: #fff;
  background-color: #8cc34b;
  border-color: #4cae4c;
  -webkit-box-shadow: 3px 3px 20px #a3a3a3;
          box-shadow: 3px 3px 20px #a3a3a3;
}

#gritter-notice-wrapper .info .gritter-item {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
  -webkit-box-shadow: 3px 3px 20px #a3a3a3;
          box-shadow: 3px 3px 20px #a3a3a3;
}

#gritter-notice-wrapper .warning .gritter-item {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
  -webkit-box-shadow: 3px 3px 20px #a3a3a3;
          box-shadow: 3px 3px 20px #a3a3a3;
}

#gritter-notice-wrapper .error .gritter-item {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
  -webkit-box-shadow: 3px 3px 20px #a3a3a3;
          box-shadow: 3px 3px 20px #a3a3a3;
}

.modal-header, .modal-header .close, .modal-footer {
  border: none;
}

.modal-header {
  padding: 2.8rem 4.2rem 1.4rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-bottom: 0;
}

.modal-header h1, .modal-header h2, .modal-header h3, .modal-header h4, .modal-header h5, .modal-header h6 {
  margin: 0;
  color: #373a3c;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-body p:only-of-type, .modal-body p:last-of-type {
  margin: 0;
}

.modal-body__custom-tip {
  width: 212px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 14px auto 0 auto;
}

.modal-body__custom-tip input {
  border: 0;
  border-bottom: 1px solid black;
  line-height: 29px;
  color: #737373;
}

.modal-body__custom-tip input:focus {
  outline: none;
  border: 0;
  border-bottom: 1px solid #2196F3;
  color: #737373;
}

.modal-body__custom-tip .custom-tip-limit {
  background-color: #E04639;
  margin: 2px 0 0 0;
  font-size: 11px;
  color: #ffffff;
  padding: 7px 0;
}

.modal-close {
  text-indent: -9999px;
  width: 14px;
  height: 14px;
  top: 8px;
  right: 8px;
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/close-carousel.svg") 0 0 no-repeat;
  background-size: 100%;
}

.modal-footer {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.4rem 4.2rem 2.8rem;
}

.modal-footer .btn {
  width: 93px;
  height: 34px;
  line-height: 34px !important;
  text-align: center;
  padding: 0 !important;
  font-size: 12px;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 1.4rem;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-item-align: center;
      align-self: center;
  background: no-repeat center center/contain;
}

.icon.xmini {
  width: 10px;
  height: 10px;
}

.icon.mini {
  width: 14px;
  height: 14px;
}

.icon.xsmall {
  width: 18px;
  height: 18px;
}

.icon.small {
  width: 22px;
  height: 22px;
}

.icon.medium {
  width: 26px;
  height: 26px;
}

.icon.large {
  width: 41px;
  height: 41px;
}

.icon.larger {
  width: 46px;
  height: 46px;
}

.icon.xlarge {
  width: 65px;
  height: 65px;
}

.icon.avatar {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/avatar-v2.svg");
}

.icon.cloud-upload {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/upload-v2.svg");
}

.icon.edit-pencil {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/edit-v2.svg");
}

.icon.play {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/play.svg");
}

.scroll-animation {
  position: relative;
  display: none;
}

.scroll-animation img {
  margin-top: 15px;
}

.noUi-connect {
  background-color: #2196F3;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-horizontal .noUi-handle {
  width: 14px;
  height: 14px;
  border: none 0;
  right: -20px !important;
}

.noUi-horizontal .noUi-handle.noUi-handle-lower {
  margin-right: 6px;
}

.noUi-horizontal .noUi-handle.noUi-handle-upper {
  margin-right: 10px;
}

.noUi-handle {
  border-radius: 50%;
  background: #2196F3;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-horizontal[disabled] .noUi-handle {
  background: #B8B8B8;
}

.noUi-handle:after, .noUi-handle:before {
  display: none;
}

.noUi-handle:focus {
  outline: none;
}

.noUi-background {
  background: #e0e0e0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-target {
  border-radius: 6px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-horizontal {
  height: 2px;
}

.noUi-base {
  width: 95%;
}

.price-range-label {
  width: 50%;
  display: inline-block;
  color: #a6a6a6;
}

.price_control_slider {
  padding: 0.8rem 1rem !important;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  width: 75px;
}

.noUi-tooltip {
  display: none;
}

.noUi-active .noUi-tooltip {
  display: block;
  border: 1px solid #D9D9D9;
  font: 400 12px/12px Arial;
  border-radius: 3px;
  background: #fff;
}

.kiwi-btn-primary {
  color: white;
  background: transparent linear-gradient(97deg, #4F53EE 0%, #A94AF7 100%) 0% 0% no-repeat padding-box;
  border-radius: 90px !important;
  font-weight: 700;
  text-transform: uppercase !important;
}

.kiwi-btn-primary:hover {
  background: transparent linear-gradient(263deg, #4F53EE 0%, #A94AF7 100%) 0% 0% no-repeat padding-box;
  color: white !important;
}

.kiwi-btn-secondary, .kiwi-btn-secondary:active, .kiwi-btn-secondary:visited {
  color: #b53bfe;
  border: 1px solid #b53bfe !important;
  font-weight: 700;
  background-color: white;
  border-radius: 90px !important;
  text-transform: uppercase;
}

.kiwi-btn-secondary:hover {
  color: white !important;
  background-color: #b53bfe;
}

.kiwi-btn-outline {
  background-color: white;
  color: #707070;
  border: 1px solid #707070;
  border-radius: 90px !important;
  font-weight: 700;
}

.kiwi-btn-outline:hover {
  color: #b53bfe;
  border: 1px solid #b53bfe;
}

.kiwi-btn-primary.is-disabled,
.kiwi-btn-secondary.is-disabled,
.kiwi-btn-outline.is-disabled {
  pointer-events: none;
  background: white;
  border: 1px solid #bbbbbb !important;
  color: #bbbbbb;
}

#blackops-journey-kiwi-header {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 54px;
  margin-top: -54px;
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 0.4em;
}

#mv-navbar .nav-bar {
  -webkit-box-shadow: 0 0 8px #00000029;
          box-shadow: 0 0 8px #00000029;
}

#mv-header .nav-utilities {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

body.mfe-header-activated #blackops-journey-kiwi-header .mv-icon-cart {
  visibility: hidden;
}

body.mfe-navbar-activated .vids-page .model-name a.link:not(.mav-button) {
  color: #000 !important;
}

body.mfe-navbar-activated .vids-page .video-title a.link:not(.mav-button) {
  color: #000 !important;
}

.js-checkout-cart {
  position: fixed;
  top: 5px;
  right: 50px;
  pointer-events: all;
}

.js-checkout-cart-before-search {
  position: fixed;
  top: 5px;
  right: 83px;
  pointer-events: all;
}

@media only screen and (min-width: 777px) {
  .js-checkout-cart-before-search {
    right: 50px;
  }
}

.non-clickable {
  pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1439px) {
  /* Vids, Contest etc in medium size screen */
  body.mfe-navbar-activated > .vids-page,
  body.mfe-navbar-activated > .container-fluid:not(#checkout-kiwi),
  body.mfe-navbar-activated > .sub-header:not(.checkout-sub-header) {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

@media only screen and (min-width: 1440px) {
  /* Vids page in big size screen */
  body.mfe-navbar-activated.mfe-navbar-expanded > .vids-page,
  body.mfe-navbar-activated:not(.collapsed-nav-bar) > .container-fluid:not(#checkout-kiwi),
  body.mfe-navbar-activated:not(.collapsed-nav-bar) > .sub-header:not(.checkout-sub-header) {
    width: calc(100% - 240px) !important;
    margin-left: 240px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  body.mfe-navbar-activated.mfe-navbar-collapsed > .vids-page,
  body.mfe-navbar-activated.collapsed-nav-bar > .container-fluid:not(#checkout-kiwi),
  body.mfe-navbar-activated.collapsed-nav-bar > .sub-header:not(.checkout-sub-header) {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

@media only screen and (min-width: 768px) {
  /* Legacy Section */
  body.mfe-navbar-activated.mfe-navbar-expanded > .sub-header:not(.checkout-sub-header),
  body.mfe-navbar-activated.mfe-navbar-expanded > .container-fluid:not(#checkout-kiwi) {
    width: calc(100% - 240px) !important;
    margin-left: 240px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  body.mfe-navbar-activated.mfe-navbar-collapsed > .sub-header:not(.checkout-sub-header),
  body.mfe-navbar-activated.mfe-navbar-collapsed > .container-fluid:not(#checkout-kiwi) {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  /* Profile Section */
  body.mfe-navbar-activated > .mv-profile,
  .mv-profile-block {
    width: calc(100% - 122px) !important;
    margin-left: 97px !important;
    padding: 2.5rem 0 0 !important;
  }
  body.mfe-navbar-activated .mv-profile-menu {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
  }
  body.mfe-navbar-activated > .mfe-navbar-overwrites {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
    padding: 2.5rem 0 0 !important;
  }
  body.mfe-navbar-activated .mv-controls .video-player-edit-page {
    right: 0 !important;
    width: 45% !important;
  }
  body.mfe-navbar-activated .video-player-edit-page-left-column .footer-buttons-wrapper {
    left: 72px !important;
  }
  /* Footer */
  body.mfe-navbar-activated.mfe-navbar-expanded .footer {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  body.mfe-navbar-activated.mfe-navbar-collapsed .footer {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  body.mfe-navbar-activated .mv-model-display-mobile__container {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.mfe-navbar-activated .mv-profile-menu__container {
    left: 72px !important;
  }
  body.mfe-navbar-activated .mv-model-display-mobile__info {
    width: 50% !important;
  }
  body.mfe-navbar-activated .mv-model-display-mobile__container {
    width: calc(100% - 72px) !important;
    margin-left: 72px !important;
  }
}

@media only screen and (max-width: 767px) {
  .mv-model-display-mobile__container {
    background-color: #fff;
  }
  body.mfe-navbar-activated .mv-model-ranking__block {
    margin-top: 66px !important;
  }
  body.mfe-navbar-activated .mv-profile-menu__container {
    bottom: auto;
    -webkit-box-shadow: 0 0 8px #00000029;
            box-shadow: 0 0 8px #00000029;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed .mv-model-ranking__block {
    margin-top: 116px !important;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed .mv-profile-menu__container {
    position: fixed;
    top: 105px;
    margin-top: 0 !important;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed .mv-profile-menu__mobile-more-menus {
    top: 155px;
    bottom: auto;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed.-profile-wvote-fixed .mv-model-display-mobile__container-contest {
    top: 56px !important;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed.-profile-wvote-fixed .mv-model-display-mobile__container {
    position: relative;
    top: 56px;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed.-profile-wvote-fixed .mv-model-ranking__block {
    margin-top: 175px !important;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed.-profile-wvote-fixed .mv-profile-menu__container {
    top: 175px;
    margin-top: -137px;
    z-index: 18;
  }
  #mv-header .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #mv-header .modal-footer .search-mobile-modal .item {
    display: block;
    width: 100%;
    height: auto;
  }
  body.mfe-navbar-activated {
    padding-bottom: 70px;
  }
  body.mfe-navbar-activated.-mobile-subnav-fixed {
    padding-bottom: 20px;
  }
  body.mfe-navbar-activated #dixa-widget-wrapper {
    bottom: 67px !important;
  }
  body.mfe-navbar-activated.dixa-widget-small-open #dixa-widget-wrapper {
    position: absolute !important;
    top: 55px;
    height: calc(100vh - 122px) !important;
  }
  body.mfe-navbar-activated .container-fluid .mv-controls .upload-images-wrapper .btn-wrapper.flex-row-space-between {
    padding: 0 0 80px 0;
  }
  body.mfe-navbar-activated .vids-mobile-icon-filter,
  body.mfe-navbar-activated .mv-icon-filter {
    bottom: 95px !important;
  }
  body.mfe-navbar-activated .inbox-conversation__mobile-tab-display .icon-chat {
    bottom: 157px !important;
  }
  body.mfe-navbar-activated .inbox-conversation__mobile-tab-display,
  body.mfe-navbar-activated .video-player-edit-page-left-column .footer-buttons-wrapper {
    bottom: 67px !important;
  }
  body.mfe-navbar-activated .messages-nav {
    z-index: 1040 !important;
  }
  body.mfe-navbar-activated .main-footer {
    margin-top: 67px !important;
  }
}

/* ROTATING SLIDER */
.mv-slider__container {
  position: relative;
  height: auto;
  overflow: hidden;
}

.mv-slider__container .-slider-arrow {
  position: absolute;
  background: rgba(55, 58, 60, 0.7) none;
  width: 35px;
  height: 35px;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* top value defined by 'sliderSetHeight' function in scripts.js for dynamic, responsive positioning */
  border-radius: 50%;
  cursor: pointer;
}

.mv-slider__container .-slider-arrow::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-size: 14px 14px;
}

@media (min-width: 992px) {
  .mv-slider__container .-slider-arrow {
    display: block;
  }
}

.mv-slider__container .arrow-left-grey-icon {
  left: 7%;
  right: auto;
}

.mv-slider__container .arrow-left-grey-icon::after {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/arrow-left-grey.svg");
}

.mv-slider__container .arrow-right-grey-icon {
  right: 7%;
  left: auto;
}

.mv-slider__container .arrow-right-grey-icon::after {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/arrow-right-grey.svg");
}

.mv-slider__container:hover .-slider-arrow {
  opacity: 1;
}

.mv-slider__container .slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 42.7% 0;
  pointer-events: none;
}

.mv-slider__container .slide-dots .dot {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #737373;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.mv-slider__container .slide-dots .dot.active {
  background-color: #737373;
  border-color: transparent;
  width: 6px;
  height: 6px;
  margin-top: -1px;
}

.mv-slider__card {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
}

.mv-slider__card > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.user-quotes-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px;
}

.user-quotes-slider .mv-slidee h2 {
  font-size: 18px;
  line-height: 1.35;
}

.user-quotes-slider .slide-dots {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: 0;
}

@media (min-width: 768px) {
  .user-quotes-slider .slide-dots {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.user-quotes-slider .slide-dots .dot {
  margin: 0 3px;
}

@media (min-width: 768px) {
  .user-quotes-slider .slide-dots .dot {
    margin: 0 4px;
  }
}
