.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;
  }
}

/* Picture Gallery */
.profile-page #previewImage {
  max-width: 100%;
  top: 20px;
  left: 5px;
  margin: 0;
  display: none;
}

.profile-page #previewImage.open {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media (min-width: 768px) {
  .profile-page #previewImage.open {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 1;
    width: auto;
    bottom: auto;
  }
}

@media (min-width: 768px) {
  .profile-page #previewImage {
    position: fixed;
    text-align: center;
    z-index: 1050;
    opacity: 0;
  }
}

.profile-page #previewImage .img-wrapper {
  width: 100%;
  height: 100vh;
  display: inline-block;
  position: relative;
  background-color: #000;
  padding: 0;
  border: 0 none;
}

@media (min-width: 768px) {
  .profile-page #previewImage .img-wrapper {
    margin: auto;
    padding: 24px 24px 34px;
    background-color: #ffffff;
    width: auto;
    height: auto;
  }
}

.profile-page #previewImage .likes {
  right: 20px;
  position: absolute;
  bottom: 112px;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .profile-page #previewImage .likes {
    right: 40px;
    bottom: 50px;
    width: 64px;
    height: 64px;
  }
}

.profile-page #previewImage .likes__count {
  color: #373a3c;
  font-size: 12px;
  font-weight: 700;
}

.profile-page #previewImage .likes__heart {
  padding: 0;
}

.profile-page #previewImage .likes__heart .heart {
  margin: 0;
}

.profile-page #previewImage .close-btn {
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  background-image: none;
  background-color: #BBBBBB;
  color: #fff;
  font-size: 32px;
  background-image: none;
  border-radius: 50%;
  top: 16px;
  right: 16px;
}

@media (min-width: 768px) {
  .profile-page #previewImage .close-btn {
    width: 14px;
    height: 14px;
    top: 8px;
    right: 8px;
    text-indent: -999em;
    background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/close-carousel.svg") 0 0 no-repeat;
  }
}

.profile-page #previewImage img.toolTip {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  left: 0;
  max-height: none !important;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  cursor: pointer;
  position: absolute;
}

@media (min-width: 768px) {
  .profile-page #previewImage img.toolTip {
    max-width: 800px;
    width: auto;
    max-height: 600px !important;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.profile-page #previewImage img.toolTip.loading {
  margin: 0;
  border: 0;
}

.profile-page #previewImage p {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .profile-page #previewImage p {
    background-color: transparent;
    color: #737373;
    height: 34px;
    line-height: 34px;
  }
}

.profile-page #previewImage .carousel-control {
  position: absolute;
  bottom: 11px;
  top: auto;
  width: 28px;
  height: 28px;
  font-size: 40px;
  font-weight: 400;
  line-height: 23px;
  color: #000;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  z-index: 1;
}

.profile-page #previewImage .carousel-control:hover {
  background: #333;
  padding-right: 7px;
}

.profile-page #previewImage .carousel-control.left {
  left: -9999px;
}

@media (min-width: 768px) {
  .profile-page #previewImage .carousel-control.left {
    left: 40px;
  }
}

.profile-page #previewImage .carousel-control.right {
  right: -9999px;
}

@media (min-width: 768px) {
  .profile-page #previewImage .carousel-control.right {
    right: 40px;
  }
}

@media (min-width: 768px) {
  .profile-page #previewImage .carousel-control {
    line-height: 23px;
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    top: 50%;
  }
}

/* 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%;
}

.mv-toggle-switch {
  position: relative;
  width: 60px;
  height: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mv-toggle-switch__checkbox {
  display: none;
}

.mv-toggle-switch__text {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}

.mv-toggle-switch__label {
  white-space: nowrap;
  padding: 0 0 0 10px;
}

.mv-toggle-switch__inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.mv-toggle-switch__inner:before, .mv-toggle-switch__inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 24px;
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mv-toggle-switch__inner:before {
  content: "";
  padding-left: 10px;
  background-color: #2196F3;
  color: #FFFFFF;
}

.mv-toggle-switch__inner:after {
  content: "";
  padding-right: 10px;
  background-color: #666;
  color: #666666;
  text-align: right;
}

.mv-toggle-switch__switch {
  display: block;
  width: 36px;
  margin: -6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(49, 63, 106, 0.5);
          box-shadow: 0 2px 4px 0 rgba(49, 63, 106, 0.5);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.mv-toggle-switch__checkbox:checked + .mv-toggle-switch__text .mv-toggle-switch__inner {
  margin-left: 0;
}

.mv-toggle-switch__checkbox:checked + .mv-toggle-switch__text .mv-toggle-switch__switch {
  right: 0px;
}

.mv-profile-content {
  margin-top: 0;
}

@media (min-width: 992px) {
  .mv-profile-content {
    margin-top: 1.3rem;
  }
}

.mv-profile-content__cards-container {
  margin-top: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .mv-profile-content__cards-container {
    margin-top: 2.6rem;
  }
}

.mv-profile-content__cards-container .card-title {
  margin-top: 14px;
  max-width: 262px;
  text-align: center;
}

@media (min-width: 992px) {
  .mv-profile-content__cards-container .card-title {
    max-width: none;
  }
}

.icon-tmv {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-right: 1.4rem;
  fill: #b3b3b3;
}

.icon-tmv.-social {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.icon-tmv.-social.-facebook {
  fill: #3B5998;
}

.icon-tmv.-social.-fetlife {
  fill: #B51E26;
}

.icon-tmv.-social.-gplus {
  fill: #D34836;
}

.icon-tmv.-social.-instagram {
  fill: #7D36BA;
}

.icon-tmv.-social.-pinterest {
  fill: #BD081C;
}

.icon-tmv.-social.-reddit {
  fill: #FF4500;
}

.icon-tmv.-social.-tumblr {
  fill: #35465C;
}

.icon-tmv.-social.-twitter {
  fill: #00ACED;
}

.icon-tmv.-social.-twitch {
  fill: #6441A4;
}

.icon-tmv.-social.-youtube {
  fill: #f00;
}

.icon-tmv.-social.-twitter {
  fill: #00ACED;
}

.icon-tmv.-vids {
  width: 22px;
  height: 20px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin-top: -2px;
}

.icon-tmv.-items {
  width: 20px;
  height: 17px;
}

.profile-main-contents {
  grid-area: main-contents;
  margin-top: 32px;
}

@media (min-width: 992px) {
  .profile-main-contents {
    margin-top: 0;
  }
}

.-fixed-nav .profile-main-contents {
  padding-top: 65px;
}

.option-more-card {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.option-more-card + .inline-video-preview .vid-extras-right {
  right: 10px;
  top: 36px;
}

@media (min-width: 992px) {
  .option-more-card {
    display: inline;
    right: 0;
    top: 0;
    z-index: 7;
  }
}

.item-card .option-more-card .mv-icon-more {
  background-color: rgba(255, 255, 255, 0);
  width: 40px !important;
  height: 40px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-card .option-more-card .mv-icon-more:before {
  color: #fff;
  font-size: 13px;
  display: block;
  margin: auto;
  background-color: #373a3c;
  border-radius: 50%;
  padding: 4px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.option-more-card .dropdown-menu {
  min-width: 7rem;
  left: -5px !important;
  top: 0 !important;
  z-index: 1;
  border: 0;
  -webkit-box-shadow: 1px 1px 16px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 1px 16px 0 rgba(30, 43, 58, 0.41);
}

.item-card .option-more-card .dropdown-menu {
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  left: -16px !important;
  top: 42px !important;
}

.option-more-card .dropdown-menu:after {
  content: '';
  position: absolute;
  top: -7px;
  right: 35px;
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 0;
}

.option-more-card .dropdown-menu a {
  color: #737373;
  font-size: 1.2rem;
}

.option-more-card .dropdown-menu a:focus, .option-more-card .dropdown-menu a:hover {
  background-color: #fff;
  font-weight: 500;
  color: #373a3c;
}

.option-more-card .dropdown-item {
  padding: 0.15rem 1.5rem;
}

@media (min-width: 992px) {
  .option-more-card .dropdown-item {
    padding: 0.35rem 1.5rem;
  }
}

.item-stat-popup {
  display: none;
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-box-shadow: 13px -11px 24px -8px rgba(0, 0, 0, 0.25), -13px 11px 24px -8px rgba(0, 0, 0, 0.25);
          box-shadow: 13px -11px 24px -8px rgba(0, 0, 0, 0.25), -13px 11px 24px -8px rgba(0, 0, 0, 0.25);
  z-index: 7;
}

.item-stat-popup__btn-close {
  position: absolute;
  top: 3px;
  right: 7px;
}

.item-stat-popup .icon.x-icon {
  width: 14px;
  height: 14px;
  text-indent: -9999px;
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/close-carousel.svg") 0 0 no-repeat;
}

.item-stat-popup__contents {
  padding: 16px 24px;
}

@media (min-width: 992px) {
  .item-stat-popup__contents {
    padding: 32px 40px;
  }
}

.item-stat-popup__list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  width: auto;
}

@media (min-width: 992px) {
  .item-stat-popup__list {
    width: 140px;
  }
}

.item-stat-popup__item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.item-stat-popup__item:last-of-type {
  border-bottom: 0 none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.item-stat-popup__item__header {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.item-stat-popup__item__stat {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-top: -2px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .item-stat-popup__item__stat {
    font-size: 20px;
  }
}

.item-stat-popup__item__stat.-earned {
  color: #ff4081;
}

.mv-model-achievements {
  display: none;
}

@media (min-width: 992px) {
  .mv-model-achievements {
    display: block;
    margin-top: 48px;
  }
}

.mv-about__container__achievements .mv-model-achievements {
  display: block;
  margin-top: 32px;
}

@media (min-width: 992px) {
  .mv-about__container__achievements .mv-model-achievements {
    display: none;
  }
}

.mv-model-achievements__award-list {
  width: 100%;
}

.mv-model-achievements__award {
  display: inline-block;
  margin: 0 10px 5px;
}

.mv-model-achievements__award:nth-of-type(4n-3) {
  margin-left: 0;
}

.mv-model-achievements__award img {
  width: 48px;
  height: 48px;
}

.no-achievements .mv-model-achievements {
  display: none;
}

.mv-model-display {
  grid-area: model-display;
}

.mv-model-display .mv-model-display-mobile__info__actions {
  margin: auto 9px auto 0;
}

.mv-model-display .mv-model-display-mobile__info__actions .notFollowed {
  background-color: white;
  color: #b53bfe;
}

.mv-model-display .mv-model-display-mobile__info__actions .followed {
  color: #fff;
  background-color: #b53bfe;
}

.mv-model-display .mv-model-display-mobile__info__actions .btn-primary:hover {
  background-color: #2196F3 !important;
  background-image: none;
}

@media (max-width: 991px) {
  .mv-model-display.-fixed-profile {
    width: 100%;
    position: fixed;
    top: 54px;
    left: 0;
    background-color: white;
    z-index: 17;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__container {
    padding: 0 10px;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info__country-age {
    display: none;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info {
    margin: auto 0;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info__name {
    padding: 0;
    margin: 0;
    max-width: calc(100vw - 150px);
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info__name-type-ellipses {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto 5px;
    padding: 0;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info__name-type-ellipses .mv-type-icon {
    position: static;
  }
  .mv-model-display.-fixed-profile .mv-type {
    top: 14px;
  }
  .mv-model-display.-fixed-profile .profile-avatar {
    width: 36px;
    height: 36px;
    margin: 8px 0;
    top: 0;
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__container {
    height: 52px;
    position: relative;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .mv-model-display.-fixed-profile .mv-model-display-mobile__info__actions {
    margin: auto 0;
  }
  .mv-model-display.-fixed-profile .-stickbanner-contest-enabled {
    padding-top: 53px;
  }
  .mv-model-display.-fixed-profile.-fixed-profile-wvote {
    top: 0;
  }
}

.mv-model-display__block {
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  .mv-model-display__block {
    margin-bottom: 12px;
  }
}

.mv-model-display[data-current-vivid=''] .mv-model-display__container::after {
  border: 6px solid transparent;
}

.mv-model-display__container {
  position: relative;
  height: 576px;
  margin-bottom: 1.2rem;
  display: none;
  background-color: #000;
  background-size: cover;
}

.mv-model-display__container::before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(23, 20, 53, 0.55)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(23, 20, 53, 0.55) 100%);
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.mv-model-display__container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 992px) {
  .mv-model-display__container {
    display: block;
  }
}

.mv-model-display__container .inline-video-preview-video {
  max-width: 100%;
  background-color: #000;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv-model-display__container .preview-ready::before {
  border: 6px solid rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.mv-model-display__name-display {
  position: absolute;
  bottom: 61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.mv-model-display__name-display .-is-live {
  color: #ff4081;
}

.mv-model-display__stage-name {
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv-model-display__stage-name .mv-type-icon,
.mv-model-display__stage-name .mv-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 1rem;
  position: relative;
  top: 2px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.mv-model-display__stage-name .mv-type-icon {
  width: 20px;
  height: 20px;
}

.mv-model-display__stage-name .mv-type {
  width: 18px;
  height: 18px;
}

.mv-model-display__country-age {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.mv-model-display__btn {
  border-radius: 3px;
  margin-bottom: 15px;
  color: #2196F3;
  border: 1px solid #2196F3;
  background-color: transparent;
  position: absolute;
  top: 36px;
  right: 10px;
  padding: 0.5rem 2rem;
}

@media (min-width: 992px) {
  .mv-model-display__btn {
    width: 100%;
    position: static;
  }
}

.mv-model-display__btn.disabled {
  color: #ffffff;
  border: 0px;
}

.mv-model-display__btn.following {
  color: #ffffff;
  background-color: #2196F3;
}

.mv-model-display__btn.following .mv-model-display__btn-label {
  font-weight: 500;
}

.mv-model-display__btn.following .mv-model-display__btn-label.-follow {
  display: none !important;
}

.mv-model-display__btn.following .mv-model-display__btn-label.-following {
  display: block !important;
}

.mv-model-display__btn-label {
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  .mv-model-display__btn-label {
    font-size: 1.6rem;
  }
}

.mv-model-display__btn-label.-is-following {
  display: none !important;
}

.mv-model-display__quote-container {
  border: none;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.mv-model-display__user-quote {
  margin: 16px 0 0 0;
  text-align: left;
  line-height: 15px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.mv-model-display__user-quote::after {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 992px) {
  .mv-model-display__user-quote {
    margin: 24px 0 0;
    line-height: 1.71;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.mv-model-display__user-quote__edit-btn {
  float: right;
  font-weight: 500;
  font-size: 14px;
  margin-top: 16px;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__edit-btn {
    font-size: 14px;
    margin-top: 0;
  }
}

.mv-model-display__user-quote__edit-btn .edit-pencil {
  display: none;
  margin: -4px 0 0 8px;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__edit-btn .edit-pencil {
    width: 12px;
    height: 12px;
    display: inline-block;
  }
}

.mv-model-display__user-quote__edit-area {
  width: 100%;
  margin: 0;
  line-height: 19px;
  border: 0;
  border-radius: 0;
  padding: 0 0 4px 0;
  color: #737373;
  -webkit-appearance: none;
  resize: none;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__edit-area {
    height: 63px;
    padding: 12.5px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    color: #000000;
    resize: vertical;
  }
}

.mv-model-display__user-quote__edit-area::-webkit-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-model-display__user-quote__edit-area::-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-model-display__user-quote__edit-area::-ms-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-model-display__user-quote__edit-area::placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__edit-area {
    margin: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media (max-width: 1199px) {
  .mv-model-display__user-quote textarea {
    overflow: hidden;
    margin: 0;
    font-size: 14px;
  }
}

.mv-model-display__user-quote__edit-area:focus {
  background-color: transparent;
  resize: none;
  outline: none;
  -webkit-appearance: none;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__edit-area:focus {
    border: 1px solid #e0e0e0;
  }
}

.mv-model-display__user-quote .-mobile-border {
  border-bottom: 1px solid #737373;
  -webkit-appearance: none;
}

.mv-model-display__user-quote__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__btns {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.mv-model-display__user-quote__btns .user-quote-edit {
  font-weight: 500;
  margin: -4px 0 0 21px;
  font-size: 14px;
}

@media (min-width: 992px) {
  .mv-model-display__user-quote__btns .user-quote-edit {
    font-size: 14px;
    margin: 2px 0 0 21px;
  }
}

.mv-model-display__user-quote__btns .user-quote-edit.user-quote-edit-cancel {
  color: #737373;
}

.mv-model-display__wrapper-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 570px;
  margin-right: 3.3rem;
  display: none;
}

.mv-model-display__wrapper-image.-has-no-images {
  background-color: #333;
}

.mv-model-display__wrapper-image.-has-no-images::after {
  content: "PORTRAIT PLACEHOLDER";
  color: #ffffff;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 500;
}

.mv-model-display__image {
  width: 100%;
}

@media (min-width: 992px) {
  .mv-model-display__image {
    position: relative;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
  }
}

.mv-model-display-mobile__container {
  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;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__container {
    display: none;
  }
}

.mv-model-display-mobile__container-contest {
  width: 100%;
  display: grid;
  height: 67px;
  padding: 15px 16px 8px 18px;
  position: relative;
  top: -12px;
  left: 0;
  background-color: #101010;
  grid-template-areas: "contest-text context-vote" "contest-name context-vote";
  grid-template-columns: auto 40px;
  grid-template-rows: 22px 22px;
  z-index: 6;
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__container-contest {
    display: none;
  }
}

.mv-model-display-mobile__container-contest__text {
  font-size: 16px;
  color: #FFFFFF;
  text-align: left;
  line-height: 22px;
  grid-area: contest-text;
}

.mv-model-display-mobile__container-contest img {
  position: absolute;
  top: 0;
  left: 2px;
  max-height: 54px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  opacity: 0.3;
}

.mv-model-display-mobile__container-contest__intro {
  position: relative;
  z-index: 2;
}

.mv-model-display-mobile__container-contest__name {
  grid-area: contest-name;
  position: relative;
  z-index: 2;
}

.mv-model-display-mobile__container-contest__name-ellipses {
  grid-area: contest-name;
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-align: left;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 0 8px 0 0;
}

.mv-model-display-mobile__profile-avatar {
  display: block;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__profile-avatar {
    display: none;
  }
}

.mv-model-display-mobile__wrapper-img {
  width: 6.4rem;
  height: 6.4rem;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.4rem;
          flex: 0 0 6.4rem;
}

.mv-model-display-mobile__wrapper-img::after {
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.mv-model-display-mobile__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-model-display-mobile__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto 0 auto 8px;
  text-align: left;
  color: #373a3c;
  font-weight: 500;
  min-height: 49px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv-model-display-mobile__info__name-type {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 0;
}

.mv-model-display-mobile__info__name-type-ellipses {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5px;
}

.mv-model-display-mobile__info__name {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #373a3c;
  padding: 5px 0 1px 0;
}

.mv-model-display-mobile__info__name.-is-live {
  color: #ff4081;
}

.mv-model-display-mobile__info__country-age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 12px;
  margin: 1px 0 5px 0;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .mv-model-display-mobile__info__country-age {
    margin: -2px 0 5px 0;
  }
}

.mv-model-display-mobile__info__country-age__details {
  margin: 1px 0 7px;
  font-size: 10px;
}

.mv-model-display-mobile__info__country-age-ellipses {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px 0 0;
}

.mv-model-display-mobile__info__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv-model-display-mobile__info__actions .btn {
  width: 104px;
  font-size: 12px;
  font-weight: 500;
  padding: 0 12px;
  height: 32px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__info__actions .btn {
    width: unset;
  }
}

.mv-model-display-mobile__info__actions__follow {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid;
  font-weight: 500;
  width: 78px;
  padding: 5px 0;
  font-size: 12px;
  background: #ffffff;
}

.mv-model-display-mobile__info__actions__follow.mdBtnAnimated:before {
  -webkit-animation: none;
          animation: none;
}

.mv-model-display-mobile__info__actions__follow.followed {
  color: #fff;
  background-color: #b53bfe;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__info__actions__follow.followed-hover {
    color: #fff;
    background-color: #a5a5a5 !important;
    background-image: none !important;
    border-color: #a5a5a5 !important;
  }
}

.mv-model-display-mobile__info__actions__options-more {
  display: inline-block;
}

.mv-model-display-mobile__info__actions__options-more .btn {
  color: #a3a3a3;
  border-color: #a3a3a3;
  background-color: #ffffff;
  padding: 0 10px;
}

.mv-model-display-mobile__info__actions__options-more .mv-icon-more {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
}

.mv-model-display-mobile__info__actions__options-more .mv-icon-more:before {
  color: #a3a3a3;
}

.mv-model-display-mobile__info .mv-type-icon,
.mv-model-display-mobile__info .mv-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 1rem;
  position: relative;
  top: 2px;
}

.mv-model-display-mobile__info .mv-type-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-left: 4px;
}

.mv-model-display-mobile__info .mv-type {
  width: 12px;
  height: 12px;
  color: #373a3c;
  font-size: 0.9rem;
  border-color: #373a3c;
  top: -1px;
  margin: 0;
  padding-top: 1px;
}

@media (min-width: 992px) {
  .mv-model-display-mobile__info .mv-type {
    top: -1px;
  }
}

.mv-model-display-mobile__info .mv-type.-is-live {
  color: #ff4081;
  border-color: #ff4081;
}

.mv-model-display__follow {
  display: none;
  width: 100%;
  height: 43px;
  padding: 8.5px 0;
  font-size: 16px;
  font-weight: 600;
  background-image: none !important;
}

.mv-model-display__follow.mdBtnAnimated:before {
  -webkit-animation: none;
          animation: none;
}

.mv-model-display__follow.followed {
  padding: 8.5px 7.5px;
  color: #fff;
  background-color: #b53bfe;
}

@media (min-width: 992px) {
  .mv-model-display__follow.followed-hover {
    color: #fff;
    background-color: #a5a5a5 !important;
    background-image: none !important;
    border-color: #a5a5a5 !important;
  }
}

@media (min-width: 992px) {
  .mv-model-display__follow {
    display: inline-block;
  }
}

.mv-model-display__vote-mobile {
  width: 40px;
  height: 40px;
  opacity: 1;
  display: inline-block;
  background: transparent linear-gradient(135deg, #4F53EE 0%, #A94AF7 100%) 0 0 no-repeat padding-box;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  font: normal normal bold 10px/40px Roboto;
  letter-spacing: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 50%;
  z-index: 1;
}

@media (min-width: 992px) {
  .mv-model-display__vote-mobile {
    display: none;
  }
}

.profile-pics-edit {
  display: none;
  position: absolute;
  bottom: 0;
  left: calc(50% - 36px);
  width: 72px;
  height: 36px;
  z-index: 5;
  overflow: hidden;
}

@media (min-width: 992px) {
  .profile-pics-edit {
    display: block;
  }
}

.profile-pics-edit__button {
  background: #FFFFFF;
  display: inline-block;
  width: 100%;
  height: 72px;
  border-radius: 50%;
}

.profile-pics-edit__button .icon {
  margin-top: 12px;
  width: 20px;
  height: 20px;
}

.profile-pics-cropper {
  padding: 0 !important;
}

.profile-pics-cropper .modal-content {
  border-radius: 0;
  padding: 14px 40px !important;
}

@media (min-width: 576px) {
  .profile-pics-cropper .modal-content {
    border-radius: 3px;
  }
}

.profile-pics-cropper .modal-dialog,
.profile-pics-cropper .modal-content {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
}

@media (min-width: 576px) {
  .profile-pics-cropper .modal-dialog,
  .profile-pics-cropper .modal-content {
    max-width: 360px;
    width: 360px;
    height: 606px;
    margin: 0px auto;
  }
}

.profile-pics-cropper .modal-dialog .modal-header,
.profile-pics-cropper .modal-content .modal-header {
  padding: 0 !important;
}

.profile-pics-cropper .modal-dialog .modal-header h3,
.profile-pics-cropper .modal-content .modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 10px;
}

@media (min-width: 992px) {
  .profile-pics-cropper .modal-dialog .modal-header h3,
  .profile-pics-cropper .modal-content .modal-header h3 {
    font-size: 14px;
  }
}

.profile-pics-cropper .modal-dialog .modal-close,
.profile-pics-cropper .modal-content .modal-close {
  border-radius: 50%;
  line-height: 27px;
  display: block;
  width: 28px;
  height: 28px;
  font-size: 32px;
  text-align: center;
  color: white;
  top: 16px;
  right: 16px;
}

@media (min-width: 992px) {
  .profile-pics-cropper .modal-dialog .modal-close,
  .profile-pics-cropper .modal-content .modal-close {
    line-height: 14px;
    width: 14px;
    height: 14px;
    font-size: 14px;
    padding: 0 0 0 1px;
    top: 8px;
    right: 8px;
  }
}

.profile-pics-cropper .modal-dialog .modal-body,
.profile-pics-cropper .modal-content .modal-body {
  padding: 0 !important;
}

.profile-pics-cropper__description {
  text-align: left;
}

.profile-pics-cropper__body {
  position: relative;
}

.profile-pics-cropper__preview {
  width: 100%;
  height: 320px;
  background: rgba(161, 170, 204, 0.08);
  position: relative;
  margin: 20px auto;
}

.profile-pics-cropper__upload {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 20px;
  overflow: hidden;
  z-index: 3;
}

.profile-pics-cropper__upload.-empty, .profile-pics-cropper__upload.-preview {
  bottom: 0;
  width: 100%;
  height: 100%;
}

.profile-pics-cropper__upload-label {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.profile-pics-cropper__upload-label-background {
  display: none;
  position: absolute;
  background-size: contain;
  background-position: center center;
}

.-empty .profile-pics-cropper__upload-label-background {
  display: block;
}

.profile-pics-cropper__upload-label-background.-has-media .icon {
  display: none;
}

[data-edit-type="portrait"] .profile-pics-cropper__upload-label-background.-has-media,
[data-edit-type="vivid"] .profile-pics-cropper__upload-label-background.-has-media {
  background-repeat: no-repeat;
  background-size: 154px 274px;
}

@media (min-width: 576px) {
  [data-edit-type="portrait"] .profile-pics-cropper__upload-label-background.-has-media,
  [data-edit-type="vivid"] .profile-pics-cropper__upload-label-background.-has-media {
    background-size: 180px 320px;
  }
}

.profile-pics-cropper__upload-label-background .icon {
  width: 240px;
  height: 274px;
}

@media (min-width: 576px) {
  .profile-pics-cropper__upload-label-background .icon {
    width: 280px;
    height: 320px;
  }
}

[data-edit-type="avatar"] .profile-pics-cropper__upload-label-background,
[data-edit-type="teaser"] .profile-pics-cropper__upload-label-background {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

[data-edit-type="avatar"] .profile-pics-cropper__upload-label-background .icon,
[data-edit-type="teaser"] .profile-pics-cropper__upload-label-background .icon {
  position: absolute;
  top: -38px;
  left: -20px;
  background-size: 72%;
  background-position-y: top;
}

@media (min-width: 576px) {
  [data-edit-type="avatar"] .profile-pics-cropper__upload-label-background .icon,
  [data-edit-type="teaser"] .profile-pics-cropper__upload-label-background .icon {
    top: -60px;
    left: -40px;
  }
}

[data-edit-type="portrait"] .profile-pics-cropper__upload-label-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.profile-pics-cropper__upload-label-play {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  display: none;
  bottom: 85px;
  left: calc(50% - 16px);
}

[data-edit-type="teaser"] .-empty .profile-pics-cropper__upload-label-play,
[data-edit-type="vivid"] .-empty .profile-pics-cropper__upload-label-play {
  display: block;
}

.profile-pics-cropper__upload-label-play .icon {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 1;
  width: 16px;
  height: 16px;
}

.profile-pics-cropper__upload-btn {
  background: #FFFFFF;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
}

.profile-pics-cropper__upload-btn .icon {
  margin-top: 3px;
}

.-empty .profile-pics-cropper__upload-btn,
.-preview .profile-pics-cropper__upload-btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.profile-pics-cropper__hand {
  position: absolute;
  bottom: 67px;
  right: 22px;
  width: 30px;
  height: 30px;
  z-index: 2;
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/hand.png");
  background-size: 100%;
  display: none;
  text-indent: -999em;
}

.profile-pics-cropper__cropper {
  position: absolute;
  top: 0;
  left: calc(50% - 140px);
  width: 280px;
  height: 320px;
  z-index: 1;
  overflow: hidden;
  background: #3A3A4C;
}

.profile-pics-cropper__cropper .cropit-preview {
  cursor: -webkit-grab;
  cursor: grab;
}

[data-edit-type="avatar"] .profile-pics-cropper__cropper .cropit-preview {
  margin: 60px auto 0;
  width: 200px;
  height: 200px;
}

[data-edit-type="portrait"] .profile-pics-cropper__cropper .cropit-preview {
  margin: 0 auto;
  width: 180px;
  height: 320px;
}

.profile-pics-cropper__cropper .cropit-preview-background {
  opacity: .2;
}

.profile-pics-cropper__cropper .cropit-preview-image-container {
  z-index: 1;
}

[data-edit-type="avatar"] .profile-pics-cropper__cropper .cropit-preview-image-container {
  border-radius: 50%;
}

.profile-pics-cropper__cropper-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 12px;
  height: 48px;
  z-index: 2;
}

.profile-pics-cropper__cropper-zoom {
  width: 12px;
  height: 12px;
  line-height: 0;
  background: #fff;
  border-radius: 50%;
  color: #3A3A4C;
  font-size: 14px;
  font-weight: bold;
  display: none;
  margin-top: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1px;
}

@media (min-width: 992px) {
  .profile-pics-cropper__cropper-zoom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.profile-pics-cropper__cropper-panzoom {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .profile-pics-cropper__cropper-panzoom {
    display: none;
  }
}

.profile-pics-cropper__video {
  position: absolute;
  z-index: 1;
  overflow: hidden;
}

[data-edit-type="teaser"] .profile-pics-cropper__video {
  border-radius: 50%;
  left: calc(50% - 100px);
  top: 60px;
  width: 200px;
  height: 200px;
}

[data-edit-type="vivid"] .profile-pics-cropper__video {
  left: calc(50% - 90px);
  top: 0;
  width: 180px;
  height: 320px;
}

.profile-pics-cropper__progress {
  margin-top: 5px;
  text-align: center;
  display: none;
}

.profile-pics-cropper__progress-bar {
  position: relative;
  width: 80px;
  height: 12px;
  border-radius: 6px;
  background-color: #e0e0e0;
  margin: 15px auto 10px;
}

.profile-pics-cropper__progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 12px;
  border-radius: 6px;
  background: #31B49E;
}

.profile-pics-cropper__progress-percentage {
  font-size: 12px;
  line-height: 14px;
  color: #A5A5A5;
}

.profile-pics-cropper__submit {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile-pics-cropper__submit-save:not(.btn-outline) {
  border: 1px solid #2196F3;
  color: #fff !important;
  padding: 5px 0;
  font-size: 12px;
  width: 85px;
}

@media (min-width: 576px) {
  .profile-pics-cropper__submit-save:not(.btn-outline) {
    padding: 7px 0;
    width: 93px;
  }
}

.profile-pics-cropper__submit-cancel {
  border: 1px solid #A5A5A5;
  padding: 5px 0;
  color: #737373;
  font-size: 12px;
  margin-right: 20px;
  width: 85px;
}

@media (min-width: 576px) {
  .profile-pics-cropper__submit-cancel {
    padding: 7px 0;
    width: 93px;
  }
}

.profile-pics-cropper__confirmation {
  display: none;
}

.profile-pics-cropper__confirmation-message {
  width: 100%;
  text-align: center;
  color: #373a3c;
  font-size: 14px;
}

.profile-pics-cropper__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin-bottom: -14px;
}

.profile-pics-cropper__footer-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  text-align: center;
}

.profile-pics-cropper__footer-link .tab-name {
  display: inline-block;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  padding-bottom: 8px;
}

.profile-pics-cropper__footer-link .tab-name span {
  margin-left: 3px;
}

.profile-pics-cropper__footer-link.selected .tab-name {
  position: relative;
  color: #373a3c;
}

.profile-pics-cropper__footer-link.selected .tab-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #2196F3;
  border-radius: 2px;
}

.profile-pics-cropper__footer-link .-desktop {
  display: none;
}

@media (min-width: 576px) {
  .profile-pics-cropper__footer-link .-desktop {
    display: inline-block;
  }
}

.profile-pics-cropper .-template {
  display: none !important;
}

.profile-pics-cropper .-avatar,
.profile-pics-cropper .-teaser,
.profile-pics-cropper .-portrait,
.profile-pics-cropper .-vivid {
  display: none;
}

.profile-pics-cropper[data-edit-type="avatar"] .-avatar {
  display: inline-block;
  line-height: 24px;
}

.profile-pics-cropper[data-edit-type="teaser"] .-teaser {
  display: inline-block;
  line-height: 24px;
}

.profile-pics-cropper[data-edit-type="portrait"] .-portrait {
  display: inline-block;
  line-height: 24px;
}

.profile-pics-cropper[data-edit-type="vivid"] .-vivid {
  display: inline-block;
  line-height: 24px;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {
  .profile-avatar {
    width: 48px;
    height: 48px;
    overflow: visible;
  }
}

.-is-small .profile-avatar {
  width: 45px;
  height: 45px;
  margin: 0 15px 0 0;
  position: relative;
  overflow: visible;
  top: -1px;
}

.-is-medium .profile-avatar {
  width: 88px;
  height: 88px;
}

@media (min-width: 992px) {
  .profile-avatar {
    width: 88px;
    height: 88px;
  }
}

.profile-avatar__pic-wrapper.-is-preview::before {
  border: 6px solid rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.profile-avatar__pic-wrapper.-is-preview:hover::before {
  cursor: pointer;
  border: 0px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar__pic-wrapper.-is-preview .vid-toggle-sound {
  display: none;
}

.profile-avatar__pic-wrapper.-is-live {
  font-size: 12px;
  height: 15px;
  padding: 3px 0 4px 0;
}

.profile-avatar__pic-wrapper.-is-live::after {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  bottom: 2px;
  right: 2px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  z-index: 10;
  content: '';
  background-color: #ff4081;
}

.-is-small .profile-avatar__pic-wrapper.-is-live::after {
  content: '';
  width: 7px;
  height: 7px;
  bottom: 1px;
  right: 1px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  z-index: 2;
}

.profile-avatar__pic-wrapper img, .profile-avatar__pic-wrapper video {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.mv-model-ranking {
  grid-area: model-ranking;
}

.mv-model-ranking__block {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .mv-model-ranking__block {
    margin-top: -0.4rem;
  }
}

.mv-model-ranking__block hr {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #E0E1E1;
  height: 1px;
  border: none;
  color: #E0E1E1;
  /* old IE */
}

@media (min-width: 992px) {
  .mv-model-ranking__block hr {
    display: none;
  }
}

.mv-model-ranking__ranking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mv-model-ranking__ranking__unit,
.mv-model-ranking__ranking a {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-weight: 500;
  color: #373a3c;
  text-transform: uppercase;
  text-align: center;
  border-left: 1px solid #E0E0E0;
  line-height: 1;
}

@media (min-width: 992px) {
  .mv-model-ranking__ranking__unit,
  .mv-model-ranking__ranking a {
    width: unset;
    line-height: unset;
    font-weight: 700;
    border-left: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mv-model-ranking__ranking a {
  color: #000000;
  width: 100%;
  border-left: 0;
}

.mv-model-ranking__ranking a .mv-model-ranking__ranking__value {
  color: #000000;
  margin: 2px 0 0 0;
}

@media (min-width: 992px) {
  .mv-model-ranking__ranking a .mv-model-ranking__ranking__value {
    color: #373a3c;
  }
  .mv-model-ranking__ranking a .mv-model-ranking__ranking__value .mv-model-ranking__ranking__value {
    color: #373a3c;
  }
}

.mv-model-ranking__ranking__unit:first-child {
  border-left: none;
}

.mv-model-ranking__ranking__value {
  font-size: 14px;
  color: #000000;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 992px) {
  .mv-model-ranking__ranking__value {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 3rem;
    margin-left: 0;
    color: inherit;
    height: 44px;
    text-align: center;
  }
}

.mv-model-ranking__ranking__label {
  font-size: 10px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-weight: normal;
  margin-top: 5px;
  color: #737373;
}

@media (min-width: 992px) {
  .mv-model-ranking__ranking__label {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    color: #000000;
  }
}

.mv-model-ranking__menu {
  max-width: 366px;
  padding: 0 10px 16px 10px;
  margin: 16px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

@media (min-width: 992px) {
  .mv-model-ranking__menu {
    display: none;
  }
}

.mv-model-ranking__menu div {
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mv-model-ranking__menu__container {
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
}

@media (min-width: 992px) {
  .mv-model-ranking__menu__container {
    border-bottom: none;
  }
}

.mv-model-ranking__menu__icons {
  width: 42px;
  height: 42px;
  margin: 3px;
  text-align: center;
  border-radius: 50%;
  -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;
}

.mv-model-ranking__menu .-menu-earning, .mv-model-ranking__menu .-menu-new-post {
  background-color: #b53bfe;
}

.mv-model-ranking__menu .-menu-new-post img {
  width: 61%;
}

.mv-model-ranking__menu .-menu-add-content {
  background: url("https://cdn3.manyvids.com/site_files/images/icons/upload_white.svg") no-repeat #b53bfe center center;
}

.mv-model-ranking__menu .-menu-add-content.active {
  border: 2px solid #2196F3;
  background: url("https://cdn3.manyvids.com/site_files/images/icons/upload_blue_Icon.svg") no-repeat #ffffff center center;
}

.mv-model-ranking__menu .-menu-crush img {
  width: 42px;
  height: 42px;
}

.mv-model-ranking__menu__crush-content, .mv-model-ranking__menu__upload-create {
  display: none;
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid #E0E0E0;
}

.mv-model-ranking__menu__crush-content .btn, .mv-model-ranking__menu__upload-create .btn {
  width: 123px;
  height: 32px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
}

.mv-model-ranking__menu__crush-content .is-disabled, .mv-model-ranking__menu__upload-create .is-disabled {
  color: #E0E0E0;
}

.mv-model-ranking__menu__crush-content .-btn-create-item, .mv-model-ranking__menu__crush-content .-btn-upload-vid, .mv-model-ranking__menu__upload-create .-btn-create-item, .mv-model-ranking__menu__upload-create .-btn-upload-vid {
  padding: 7px 0 0 0;
}

.mv-model-ranking__menu__crush-content .-btn-create-item img, .mv-model-ranking__menu__crush-content .-btn-upload-vid img, .mv-model-ranking__menu__upload-create .-btn-create-item img, .mv-model-ranking__menu__upload-create .-btn-upload-vid img {
  width: 19px;
  margin: -3px 0px 0 0;
  display: inline;
}

.mv-model-ranking__menu__crush-content .-btn-create-item span, .mv-model-ranking__menu__crush-content .-btn-upload-vid span, .mv-model-ranking__menu__upload-create .-btn-create-item span, .mv-model-ranking__menu__upload-create .-btn-upload-vid span {
  display: inline;
}

.mv-model-ranking__menu__crush-content .-btn-upload-vid, .mv-model-ranking__menu__upload-create .-btn-upload-vid {
  margin-right: 18px;
}

.mv-model-ranking__menu__crush-content .-btn-upload-vid img, .mv-model-ranking__menu__upload-create .-btn-upload-vid img {
  width: 14px;
  margin: -3px 4px 0 0;
}

.mv-model-ranking__menu__crush-content .btn-primary-outline:hover, .mv-model-ranking__menu__upload-create .btn-primary-outline:hover {
  background-color: unset;
  color: #2196F3;
}

.mv-model-ranking__menu__crush-content {
  padding: 16px 0;
}

.mv-model-ranking__menu__crush-content .btn {
  width: 115px;
  padding: 6px 8px;
  margin-right: 5px;
}

.mv-model-ranking__menu__crush-content__blurb {
  display: block;
  width: 100%;
  margin: 0 0 50px;
}

.mv-model-ranking__menu__crush-content__blurb__input {
  width: 100%;
  min-height: 46px;
  padding: 15px 12px;
  line-height: 16px;
  border: 1px solid #DFE3E9;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #9A9FA8;
}

.mv-model-ranking__menu__crush-content__blurb__input:focus {
  border-color: #8D98A9;
  outline: 0;
  color: #354052;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.mv-model-ranking__menu__crush-content__blurb__count {
  float: left;
  color: #BBBBBB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mv-model-ranking__menu__crush-content__blurb__count .count, .mv-model-ranking__menu__crush-content__blurb__count .max-count {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.mv-model-ranking__menu__crush-content__blurb__edit {
  float: right;
  font-weight: 500;
  color: #b53bfe;
}

.mv-model-ranking__menu__crush-content__blurb__edit .icon.edit-pencil.mini {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: -4px 0 0 8px;
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/v2/edit-button-small.svg");
}

.mv-model-ranking__menu__crush-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 16px 0;
  font-size: 11px;
}

.mv-model-ranking__menu__crush-content__list div {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #E0E0E0;
}

.mv-model-ranking__menu__crush-content__list div:first-child {
  border-left: none;
}

.mv-model-ranking__menu__crush-content__list span {
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
}

.mv-model-ranking__menu__crush-content__list span:first-child {
  font-weight: bold;
  color: black;
  font-size: 12px;
}

.mv-model-ranking__menu__title {
  font-size: 10px;
  font-weight: 500;
  color: #000000;
}

@media (min-width: 992px) {
  .mv-model-ranking__services-mobile {
    display: none;
  }
}

.mv-model-ranking__services-mobile .mv-model-services {
  display: block;
  height: 64px;
}

.mv-model-ranking__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.mv-model-ranking__buttons .btn {
  padding: 9.5px 0;
  font-weight: 500;
  margin-top: 24px;
  width: calc(50% - 8px);
}

.mv-model-ranking__buttons .btn:only-child {
  margin: 20px auto 0;
}

@media (min-width: 992px) {
  .mv-model-ranking__buttons .btn {
    padding: 9.5px 0;
    margin-top: 17px;
  }
}

.mv-model-ranking__buttons .btn-send-love {
  background-color: #FF4081;
  color: white;
  border-radius: 90px !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mv-model-ranking__buttons .btn-send-love:hover {
  background-color: #CC074A;
}

.mv-model-ranking__buttons .btn-send-love img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  position: relative;
  bottom: 2px;
  margin-left: 4px;
}

.mv-model-ranking__buttons .is-disabled {
  cursor: default;
}

.mv-model-ranking__buttons .is-disabled.mdBtnAnimated:before {
  -webkit-animation: none;
          animation: none;
}

.mv-model-ranking__buttons.is-gapped {
  gap: 10px;
}

.mv-model-ranking__social {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 17px;
}

.mv-model-ranking__social a {
  display: inline-block;
}

.mv-model-ranking__social .icon {
  border-radius: 50%;
  background-size: cover;
  width: 24px;
  height: 24px;
}

.mv-model-ranking .mv-model-crush {
  display: block;
}

@media (min-width: 992px) {
  .mv-model-ranking .mv-model-crush {
    display: none;
  }
}

.mv-model-ranking .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv-model-services {
  grid-area: model-services;
  display: none;
}

@media (min-width: 992px) {
  .mv-model-services {
    display: block;
    margin-top: 48px;
  }
}

.mv-profile-content .mv-model-services {
  display: block;
}

.mv-model-services .profile-header {
  display: none;
}

@media (min-width: 992px) {
  .mv-model-services .profile-header {
    display: block;
  }
}

@media (min-width: 992px) {
  .profile-main-contents .mv-model-services .profile-header {
    display: none;
  }
}

.mv-model-services__container {
  display: block;
}

@media (min-width: 992px) {
  .mv-model-services__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mv-profile-content .mv-model-services__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mv-model-services__container .profile-header {
  display: none;
}

.mv-model-services__container .slick-list {
  margin: 24px 0 16px 0;
}

.mv-model-services__container .slick-dots {
  height: 7px;
  top: 58px;
}

.mv-model-services__container .slick-dots .slick-dots li button {
  height: 8px;
  width: 8px;
}

.mv-model-services__container .slick-dots li {
  width: 11px;
  height: 7px;
  top: -11px;
}

.mv-model-services__container .slick-dots li.slick-active button:before {
  height: 6px;
  width: 6px;
  color: #A5A5A5;
  font-size: 0;
  border: 1px solid #A5A5A5;
  border-radius: 50%;
  background-color: #A5A5A5;
  opacity: 1;
}

.mv-model-services__container .slick-dots li button {
  height: 6px;
  width: 6px;
  color: #A5A5A5;
  font-size: 0;
  border: 1px solid #A5A5A5;
  border-radius: 50%;
  background-color: white;
  opacity: 1;
  padding: 2px;
}

.mv-model-services__container .slick-dots li button:before {
  font-size: 0;
}

.mv-model-services__container .slick-slide .is-link {
  color: #000000;
}

@media (min-width: 992px) {
  .mv-model-services__container .slick-slide .is-link {
    color: #2196F3;
  }
}

.mv-model-services__container .slick-slide .icon-tmv {
  margin: 0 0 2px 0;
}

.mv-model-services__container .slick-slide a .mv-model-services__item__label .-disabled {
  color: #BBBBBB;
}

.mv-model-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 16px);
          flex: 0 0 calc(50% - 16px);
  font-weight: 500;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  font-size: 10px;
}

@media (min-width: 992px) {
  .mv-model-services__item {
    font-size: inherit;
  }
}

@media (min-width: 992px) {
  .mv-model-services__item:first-child .mv-edit-services__options {
    top: 5px;
  }
}

.mv-model-services__item:last-of-type {
  margin-bottom: 0;
}

.mv-model-services__item__link {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  .mv-model-services__item__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: unset;
  }
}

.mv-model-services__item__link.-disabled {
  color: #BBBBBB;
  cursor: not-allowed;
  pointer-events: none;
}

.mv-model-services__item__link.-disabled:focus, .mv-model-services__item__link.-disabled:hover, .mv-model-services__item__link.-disabled:hover {
  color: #BBBBBB;
}

.mv-model-services__item .icon-tmv {
  width: 30px;
  height: 26px;
  background: transparent none 0 0 no-repeat;
  background-position: center center;
  margin: auto;
}

@media (min-width: 992px) {
  .mv-model-services__item .icon-tmv {
    margin-right: 8px;
    background-position: unset;
  }
}

.mv-model-services__item .icon-tmv.-service-skype {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-video-chat.svg");
}

.mv-model-services__item .icon-tmv.-service-skype.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-video-chat.svg");
}

.mv-model-services__item .icon-tmv.-service-texting {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-text.svg");
}

.mv-model-services__item .icon-tmv.-service-texting.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-texting.svg");
}

.mv-model-services__item .icon-tmv.-service-phoneNumber {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-phone.svg");
}

.mv-model-services__item .icon-tmv.-service-phoneNumber.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-phone.svg");
}

.mv-model-services__item .icon-tmv.-service-fundMe {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-fund-me.svg");
}

.mv-model-services__item .icon-tmv.-service-fundMe.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-fund-me.svg");
}

.mv-model-services__item .icon-tmv.-service-customVid {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-custom-vid.svg");
}

.mv-model-services__item .icon-tmv.-service-customVid.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-custom-vids.svg");
}

.mv-model-services__item .icon-tmv.-service-membershipVids {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-get-my-vids.svg");
}

.mv-model-services__item .icon-tmv.-service-membershipVids.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-get-my-vids.svg");
}

.mv-model-services__item .icon-tmv.-service-makeItRain {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-make-it-rain.svg");
}

.mv-model-services__item .icon-tmv.-service-makeItRain.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-make-it-rain.svg");
}

.mv-model-services__item .icon-tmv.-service-mvContest {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-my-contest.svg");
}

.mv-model-services__item .icon-tmv.-service-mvContest.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-contest.svg");
}

.mv-model-services__item .icon-tmv.-service-mvCrush {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/small-colored-my-crush.svg");
}

.mv-model-services__item .icon-tmv.-service-mvCrush.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-crush.svg");
}

.mv-profile-content .mv-model-services__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-width: 0;
  border-radius: 4px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 20px 0 16px;
  position: relative;
}

.mv-profile-content .mv-model-services__item:first-of-type {
  padding-top: 2px;
}

.mv-profile-content .mv-model-services__item:first-of-type .mv-model-services__item__label {
  top: 4px;
}

.mv-profile-content .mv-model-services__item ~ .-filler {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 1.4rem);
  min-width: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (min-width: 992px) {
  .mv-profile-content .mv-model-services__item {
    padding: 30px 0 18px;
    margin: 0 64px;
    width: calc(100% - 128px);
  }
}

@media (min-width: 992px) and (min-width: 1200px) {
  .mv-profile-content .mv-model-services__item {
    padding: 30px 0 18px;
  }
}

@media (min-width: 992px) {
  .mv-profile-content .mv-model-services__item ~ .-filler {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(33.3% - 1.4rem);
    min-width: 0;
  }
}

@media (min-width: 1366px) {
  .mv-profile-content .mv-model-services__item {
    margin: 0 30px;
    width: calc(100% - 60px);
  }
}

@media (min-width: 1600px) {
  .mv-profile-content .mv-model-services__item {
    margin: 0 64px;
    width: calc(100% - 128px);
  }
}

.mv-profile-content .mv-model-services__item__label {
  font-weight: 700;
  font-size: 1.8rem;
  color: #373a3c;
  width: 124px;
  position: absolute;
  left: 31px;
  top: 22px;
  margin: 0 0 0 16px;
  line-height: 15px;
}

@media (min-width: 992px) {
  .mv-profile-content .mv-model-services__item__label {
    top: 34px;
    left: 40px;
  }
}

@media (min-width: 1200px) {
  .mv-profile-content .mv-model-services__item__label {
    margin: 0 0 0 16px;
    position: static;
  }
}

@media (min-width: 1366px) {
  .mv-profile-content .mv-model-services__item__label {
    position: absolute;
    left: 40px;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content .mv-model-services__item__label {
    margin: 0 0 0 16px;
    position: static;
  }
}

.mv-profile-content .mv-model-services__item__label.-disabled {
  color: #BBBBBB;
}

.mv-profile-content .mv-model-services__item__label-percentage {
  color: #ff4081;
  font-size: 12px;
  font-weight: normal;
  white-space: pre;
  word-wrap: normal;
  display: block;
}

.mv-profile-content .mv-model-services__item__link {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .mv-profile-content .mv-model-services__item__link {
    margin-top: 3.2rem;
  }
}

.mv-profile-content .mv-model-services__item__desc {
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-top: 15px;
  line-height: 24px;
}

@media (min-width: 1200px) {
  .mv-profile-content .mv-model-services__item__desc {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 250px;
            flex: 1 1 250px;
    padding: 0 60px 0 25px;
    margin-top: 0;
  }
}

@media (min-width: 1366px) {
  .mv-profile-content .mv-model-services__item__desc {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-top: 15px;
    padding: 0;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content .mv-model-services__item__desc {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 250px;
            flex: 1 1 250px;
    padding: 0 60px 0 25px;
    margin-top: 0;
  }
}

.mv-profile-content .mv-model-services__item__desc.-disabled {
  color: #737373;
}

.mv-profile-content .mv-model-services__item.-disabled {
  background-color: transparent;
  background-image: none;
  border: 1px solid #e0e0e0;
}

.mv-profile-content .mv-model-services__item .icon-tmv {
  margin: 0;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center center;
}

@media (min-width: 992px) {
  .mv-profile-content .mv-model-services__item .icon-tmv {
    width: 40px;
    height: 40px;
  }
}

.mv-profile-content .mv-model-services__item .-service-skype {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-video-chat-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-skype.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-video-chat.svg");
}

.mv-profile-content .mv-model-services__item .-service-texting {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-texting-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-texting.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-texting.svg");
}

.mv-profile-content .mv-model-services__item .-service-phoneNumber {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-phone-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-phoneNumber.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-phone.svg");
}

.mv-profile-content .mv-model-services__item .-service-fundMe {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-fund-me-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-fundMe.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-fund-me.svg");
}

.mv-profile-content .mv-model-services__item .-service-customVid {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-custom-vids-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-customVid.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-custom-vids.svg");
}

.mv-profile-content .mv-model-services__item .-service-membershipVids {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-get-my-vids-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-membershipVids.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-get-my-vids.svg");
}

.mv-profile-content .mv-model-services__item .-service-makeItRain {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-make-it-rain-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-makeItRain.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-make-it-rain.svg");
}

.mv-profile-content .mv-model-services__item .-service-mvContest {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-contest-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-mvContest.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-contest.svg");
}

.mv-profile-content .mv-model-services__item .-service-mvCrush {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-vip-fanclub-color.svg");
}

.mv-profile-content .mv-model-services__item .-service-mvCrush.-disabled {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-vip-fanclub.svg");
}

.mv-profile-content .mv-model-services__item .btn {
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93px;
  height: 34px;
  line-height: 34px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.mv-profile-content .mv-model-services__item .btn:hover {
  background-color: #2196F3;
}

@media (min-width: 1600px) {
  .mv-profile-content .mv-model-services__item .btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.mv-profile-content .mv-model-services__item .btn.-disabled {
  background-color: #BBBBBB;
  border-color: #BBBBBB;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
}

.mv-model-services__popup {
  display: none;
  position: absolute;
  top: calc(-100% - 50px);
  z-index: 20;
  background-color: #fff;
  -webkit-box-shadow: 13px -11px 24px -8px rgba(0, 0, 0, 0.25), -13px 11px 24px -8px rgba(0, 0, 0, 0.25);
          box-shadow: 13px -11px 24px -8px rgba(0, 0, 0, 0.25), -13px 11px 24px -8px rgba(0, 0, 0, 0.25);
}

.mv-model-services__popup .icon.x-icon {
  width: 14px;
  height: 14px;
  text-indent: -9999px;
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/close-carousel.svg") 0 0 no-repeat;
}

.mv-model-services__popup.-left {
  left: calc(100% - 20px);
}

.mv-model-services__popup.-right {
  right: calc(100% + 20px);
}

.mv-model-services__add, .mv-model-services__add:hover {
  color: #a5a5a5;
}

.mv-model-services__add {
  padding-right: 5px;
}

.mv-model-services__left-panel .mv-edit-services__options-btn .fa {
  padding-right: 10px;
  width: inherit;
  height: inherit;
}

@media (min-width: 992px) {
  .mv-model-services__left-panel .mv-edit-services__options-menu-container {
    top: 20px;
    right: 80%;
  }
}

.mv-model-services__left-panel .mv-edit-services__mv-icon-more {
  margin-right: 10px;
}

.description-title {
  font-size: 1.6rem;
  line-height: 20px;
  overflow-wrap: normal;
}

.description-title + span {
  font-size: 1.2rem;
  position: relative;
  left: -4px;
}

.description-title sup {
  font-size: 12px;
}

@media (min-width: 768px) {
  .description-title {
    font-size: 18px;
    line-height: 24px;
  }
}

.best-deal {
  right: -18px;
}

.make-it-rain__item {
  width: 33%;
  float: left;
  border-bottom: 1px solid #fff !important;
  padding: 0.75rem !important;
}

@media (min-width: 768px) {
  .make-it-rain__item {
    padding: 1.4rem !important;
  }
}

.make-it-rain__max-width {
  max-width: 100%;
}

.services-exclude {
  width: 10px;
  height: 10px;
  margin-top: -2px;
}

.mv-edit-services__options {
  position: relative;
}

@media (min-width: 992px) {
  .mv-edit-services__options {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    position: absolute;
    right: 0;
    top: 34px;
  }
}

.mv-edit-services__options-dd {
  position: relative;
  width: 14px;
  right: 10px;
  font-size: 14px;
}

.mv-edit-services__options-btn .mv-icon-more {
  background-color: #373a3c;
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 24px !important;
  height: 24px !important;
  padding: 5px 5px 0;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .mv-edit-services__options-btn .mv-icon-more {
    color: #a5a5a5;
    background-color: transparent;
  }
}

.mv-edit-services__options-btn .mv-icon-more:before {
  color: #ffffff;
}

@media (min-width: 992px) {
  .mv-edit-services__options-btn .mv-icon-more:before {
    color: #a5a5a5;
  }
}

.mv-edit-services__options-menu-container {
  position: absolute;
  top: 35px;
  right: 100%;
}

@media (min-width: 992px) {
  .mv-edit-services__options-menu-container {
    top: 25px;
    right: 70%;
  }
}

.mv-edit-services__options-menu {
  position: relative !important;
  left: calc(50% - 5px) !important;
  float: none;
  min-width: 0;
  margin: 0;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  -webkit-transform: none !important;
          transform: none !important;
  line-height: 1;
  -webkit-box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
}

.mv-edit-services__options-menu.service-crush-option {
  left: calc(50% - 30px) !important;
}

@media (min-width: 992px) {
  .mv-edit-services__options-menu.service-crush-option {
    left: calc(50% + 5px) !important;
  }
}

.mv-edit-services__options-menu.service-crush-option:before {
  left: calc(100% - 8px);
}

@media (min-width: 992px) {
  .mv-edit-services__options-menu.service-crush-option:before {
    left: calc(50% + 5px);
  }
}

@media (min-width: 992px) {
  .mv-edit-services__options-menu {
    left: calc(50% + 5px) !important;
  }
}

.mv-edit-services__options-menu:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 90%;
  margin-left: -10px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  content: ' ';
  -webkit-box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 992px) {
  .mv-edit-services__options-menu:before {
    left: calc(50% + 5px);
  }
}

.mv-edit-services__options-menu:after {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  content: ' ';
}

.mv-edit-services__option-item {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
}

.mv-edit-services__option-item a {
  display: block;
  padding: 5px 0;
  font-size: 12px;
  line-height: 1;
  color: #737373;
  white-space: nowrap;
}

.mv-edit-services__option-item a:hover {
  color: #373a3c;
}

.mv-edit-services__option-item.-disabled span {
  color: #BBBBBB;
  cursor: not-allowed;
  pointer-events: none;
}

.crush-service-modal .modal-content {
  border-radius: 24px;
}

.crush-service-modal .mv-controls input[type="radio"]:checked + label span {
  border-color: #b53bfe;
}

.crush-service-modal .modal-body ul.radio-large-list li.selected {
  background-color: #faefff;
}

body.profile-page {
  margin-bottom: 55px;
}

@media (min-width: 992px) {
  body.profile-page {
    margin-bottom: 0;
  }
}

.container-vote-banner {
  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;
  height: 54px;
  background-color: #FFF0BD;
  padding: 13px;
}

@media (min-width: 992px) {
  .container-vote-banner {
    display: none;
  }
}

.mv-profile {
  display: grid;
  grid-column-gap: 0;
  padding: 1.2rem 1rem 0;
  grid-template-columns: 1fr;
  grid-template-areas: "main-aside" "secondary-aside" "main-contents";
}

.mv-profile > * {
  min-width: 0;
}

@media (min-width: 992px) {
  .mv-profile {
    grid-template-columns: 320px 1fr;
    grid-template-areas: "main-aside         main-contents" "secondary-aside    main-contents" ".                  main-contents";
    grid-column-gap: 2rem;
    padding: 2.4rem 3.2rem 0;
  }
}

@media (min-width: 1366px) {
  .mv-profile {
    grid-template-columns: 320px 1fr 400px;
    grid-template-areas: "main-aside     main-contents  secondary-aside";
    grid-column-gap: 2.5rem;
    padding: 2.5rem 2.4rem 0;
  }
}

@media (min-width: 1600px) {
  .mv-profile {
    grid-column-gap: 5.2rem;
  }
}

.profile-header {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #373a3c;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.mv-profile-content {
  grid-area: mv-profile-content;
  margin: 0 0 22px;
}

@media (min-width: 992px) {
  .mv-profile-content {
    margin: 0;
  }
}

.mv-profile-content__container {
  margin-top: 16px;
}

@media (min-width: 992px) {
  .mv-profile-content__container {
    margin-top: 32px;
  }
}

.mv-profile-content .info {
  margin: 0 0 1.7rem 0;
}

.mv-profile-content .no-content {
  margin: 5rem 0;
  text-align: center;
}

@media (min-width: 992px) {
  .mv-profile-content .no-content {
    margin: 10rem 0;
  }
}

.mv-profile-content .no-content__label {
  color: #373a3c;
  font-weight: 500;
}

.mv-profile-content .no-content span {
  display: inline-block;
  margin-bottom: 25px;
}

.profile-main-aside {
  grid-area: main-aside;
}

.profile-secondary-aside {
  grid-area: secondary-aside;
}

#mfe-profile {
  padding-top: 10px;
}

.profile-about {
  display: none;
}

.mv-follow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media (min-width: 992px) {
  .mv-follow-list {
    padding: 25px 6px;
  }
}

.mv-follow-card {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  min-width: 255px;
  overflow: unset;
}

@media (min-width: 992px) {
  .mv-follow-card {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 160px;
            flex: 1 1 160px;
    margin: 0.9rem 1rem;
    min-width: 160px;
    border: 0;
    -webkit-box-shadow: 0 3px 8px 0 rgba(36, 44, 80, 0.12);
            box-shadow: 0 3px 8px 0 rgba(36, 44, 80, 0.12);
  }
}

.mv-follow-card__profile .mv-profile {
  padding: 0.7rem;
}

.mv-follow-card__pic {
  width: 6.4rem;
  height: 6.4rem;
  margin: 1rem;
  float: left;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .mv-follow-card__pic {
    width: 9rem;
    height: 9rem;
    margin: 2.6rem auto 0 auto;
    float: none;
  }
}

.mv-follow-card__name {
  margin: 0.6rem 0 0 0;
  position: relative;
  font-size: 1.4rem;
  font-family: 'Roboto';
  font-weight: 700;
  color: #373A3C;
}

@media (min-width: 992px) {
  .mv-follow-card__name {
    text-align: center;
    font-size: 1.8rem;
  }
}

.mv-follow-card__country-age {
  margin: 0.3rem 0 0 0;
  position: relative;
  font-size: 1.4rem;
  font-family: 'Roboto';
  font-weight: 500;
  color: #A5A5A5;
}

@media (min-width: 992px) {
  .mv-follow-card__country-age {
    font-size: 1.4rem;
    text-align: center;
  }
}

.mv-follow-card__btn {
  position: absolute;
  top: 36px;
  right: 10px;
  margin-bottom: 15px;
  padding: 0.3rem 2.0rem;
  border-radius: 3px;
  border: 1px solid #2196F3;
  background-color: transparent;
  color: #2196F3;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .mv-follow-card__btn {
    width: 54%;
    position: relative;
    top: auto;
    right: auto;
    margin: 1.7rem auto;
    padding: 0.5rem 1rem;
  }
}

.mv-follow-card .dropdown-menu {
  border: 0;
  -webkit-box-shadow: 1px 1px 16px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 1px 16px 0 rgba(30, 43, 58, 0.41);
  margin: 0.5rem 0 0;
}

.mv-follow-card .dropdown-menu:after {
  content: "";
  position: absolute;
  bottom: 86px;
  left: 42px;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: white transparent;
  display: block;
  width: 0;
  z-index: 1;
}

.mv-follow-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-follow-card .mv-live-model {
  font-size: 9px;
}

.mv-follow-card .mv-live-model:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: 'Live';
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: normal;
  font-weight: bold;
  color: #fff;
  background-color: #ff4081;
  z-index: 1;
  overflow: hidden;
  height: 14px;
  padding: 4px 0;
}

.mv-model-gallery {
  grid-area: mv-gallery;
  display: none;
}

@media (min-width: 992px) {
  .mv-model-gallery {
    display: block;
  }
}

.mv-model-gallery__block {
  margin-top: 48px;
}

.mv-model-gallery__header {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 1.6rem;
}

.mv-model-gallery__header.-is-main-content {
  margin: 0 0 1.3rem 0;
}

@media (min-width: 992px) {
  .mv-model-gallery__header.-is-main-content {
    display: none;
  }
}

.mv-model-gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.mv-model-gallery__list__item {
  width: calc((100% / 3) - 1px);
  height: auto;
  overflow: hidden;
  position: relative;
  border: 1px solid #fff;
}

.mv-model-gallery__list__item .thumb {
  width: 100%;
  padding-top: 100%;
  position: relative;
  display: block;
}

.mv-model-gallery__list__item img {
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.mv-model-gallery__list__item .icon-tmv {
  position: absolute;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.mv-model-gallery__list__item .icon-tmv.icon-tmv--be-my-crush {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/crush-lock.svg");
}

.mv-model-gallery__list__item .icon-tmv.icon-tmv--be-my-crush.own-profile {
  top: auto;
  left: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin: 0;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
}

.mv-model-gallery__list__item .ctn-crush {
  position: absolute;
  width: 120px;
  height: 60px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv-model-gallery__list__item .ctn-crush .icon-tmv {
  position: static;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mv-model-gallery__list__item .label-crush {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.mv-model-gallery__list__item__caption {
  display: none;
}

@media (min-width: 992px) {
  .mv-model-gallery__list__item__caption {
    display: block;
    text-align: center;
    margin-top: 0.4rem;
  }
}

.mv-model-gallery__list__item__caption a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #737373;
}

.mv-model-gallery__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2rem;
}

.mv-model-gallery__nav-direction {
  margin: 0 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.mv-model-gallery__nav-current {
  font-weight: 700;
}

.mv-profile-menu {
  grid-area: mv-profile-menu;
  position: relative;
}

.mv-profile-menu__profile-avatar {
  display: none;
}

.mv-profile-menu__profile-avatar__follow {
  display: none;
  width: 93px;
  height: 34px;
  font-size: 12px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  background-image: none !important;
}

.mv-profile-menu__profile-avatar__follow.mdBtnAnimated:before {
  -webkit-animation: none;
          animation: none;
}

.mv-profile-menu__profile-avatar__follow.followed {
  padding: 8.5px 7.5px;
  color: #fff;
  background-color: #b53bfe;
}

@media (min-width: 992px) {
  .mv-profile-menu__profile-avatar__follow.followed-hover {
    color: #fff;
    background-color: #a5a5a5 !important;
    background-image: none !important;
    border-color: #a5a5a5 !important;
  }
}

@media (min-width: 992px) {
  .mv-profile-menu__profile-avatar__follow {
    display: inline-block;
  }
}

.mv-profile-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 18;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0 10px env(safe-area-inset-bottom);
  padding: 0 10px constant(safe-area-inset-bottom);
  /* targeting when there are just two menu items */
}

@media (min-width: 992px) {
  .mv-profile-menu__container .mv-profile-menu__item:first-child:nth-last-child(2),
  .mv-profile-menu__container .mv-profile-menu__item:first-child:nth-last-child(2) ~ .mv-profile-menu__item {
    width: auto;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .mv-profile-menu__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 1.2rem;
    border-top: 0 none;
    bottom: auto;
    padding: 0;
  }
}

.mv-profile-menu__container:after {
  position: absolute;
  /* preloading images for preventing images hover from flickering */
  overflow: hidden;
  left: -999em;
  content: url("https://cdn3.manyvids.com/site_files/images/icons/nav_store.svg") url("https://cdn3.manyvids.com/site_files/images/icons/nav_services.svg") url("https://cdn3.manyvids.com/site_files/images/icons/nav_pics.svg") url("https://cdn3.manyvids.com/site_files/images/icons/nav_about.svg") url("https://cdn3.manyvids.com/site_files/images/icons/nav_purchase.svg");
}

.mv-profile-menu__container .edit-pencil {
  display: none;
}

@media (min-width: 992px) {
  .mv-profile-menu__container .edit-pencil {
    display: inline-block;
    margin-left: 6px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    width: 12px;
    height: 12px;
  }
}

.mv-profile-menu__container .icon-tmv {
  margin: 2px auto 2px;
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/nav_store.svg") 0 0 no-repeat;
  width: 21px;
  height: 20px;
}

@media (min-width: 992px) {
  .mv-profile-menu__container .icon-tmv {
    display: none;
  }
}

.mv-profile-menu__container .icon-tmv.active, .mv-profile-menu__container .icon-tmv:active, .mv-profile-menu__container .icon-tmv:hover {
  -webkit-filter: invert(40%) sepia(88%) saturate(1149%) hue-rotate(186deg) brightness(102%) contrast(91%);
          filter: invert(40%) sepia(88%) saturate(1149%) hue-rotate(186deg) brightness(102%) contrast(91%);
}

.mv-profile-menu__container [data-state*='active'] .icon-tmv {
  -webkit-filter: invert(40%) sepia(88%) saturate(1149%) hue-rotate(186deg) brightness(102%) contrast(91%);
          filter: invert(40%) sepia(88%) saturate(1149%) hue-rotate(186deg) brightness(102%) contrast(91%);
}

.mv-profile-menu__container [data-state*='active'] .icon-tmv.-menu-activity {
  -webkit-filter: none;
          filter: none;
  background-image: url(https://cdn3.manyvids.com/site_files/images/icons/v2/fanclub_pink.svg);
}

.mv-profile-menu__container .-menu-home {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/v2/home.svg");
}

.mv-profile-menu__container .-menu-activity {
  background-image: url(https://cdn3.manyvids.com/site_files/images/icons/v2/fanclub_grey.svg);
}

.mv-profile-menu__container .-menu-more {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/v2/more.svg");
}

.mv-profile-menu__container .-menu-followers {
  background-image: url(https://cdn3.manyvids.com/site_files/images/icons/v2/followers.svg);
}

.mv-profile-menu__container .-menu-message {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/message.svg");
}

.mv-profile-menu__container .-menu-report {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/report.svg");
}

.mv-profile-menu__container .-menu-block {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/block.svg");
}

.mv-profile-menu__container .-menu-suggested-followers {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/v2/suggested-followers.svg");
}

.mv-profile-menu__container .-menu-memberships {
  background-image: url(https://cdn3.manyvids.com/site_files/images/icons/v2/my-crush-ico.svg);
}

.mv-profile-menu__container .-menu-store {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_store.svg");
}

.mv-profile-menu__container .-menu-services {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_services.svg");
}

.mv-profile-menu__container .-menu-pics {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_pics.svg");
}

.mv-profile-menu__container .-menu-library {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_library.svg");
}

.mv-profile-menu__container .-menu-about {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/viewers.svg");
}

.mv-profile-menu__container .-menu-purchases {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_purchase.svg");
}

.mv-profile-menu__container .-menu-publications {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_publications.svg");
}

.mv-profile-menu__container .-menu-custom-vid {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/custom-vid.svg");
  background-size: 20px 20px;
}

.mv-profile-menu__container .-menu-more {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/v2/more.svg");
  background-position-y: 50%;
}

.mv-profile-menu__container .-menu-store-videos {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/service-get-my-vids.svg");
}

.mv-profile-menu__container .-menu-store-items {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_items.svg");
}

.mv-profile-menu__container .disabled {
  pointer-events: none;
  cursor: not-allowed;
  -webkit-filter: invert(100%) sepia(0%) saturate(2292%) hue-rotate(176deg) brightness(109%) contrast(73%);
          filter: invert(100%) sepia(0%) saturate(2292%) hue-rotate(176deg) brightness(109%) contrast(73%);
}

.mv-profile-menu__container .disabled.pointer-active {
  pointer-events: all;
  cursor: pointer;
}

.mv-profile-menu__actions {
  top: 3px;
  right: 12px;
  display: none;
  position: absolute;
  z-index: 6;
}

@media (min-width: 992px) {
  .mv-profile-menu__actions {
    display: block;
  }
}

.mv-profile-menu__actions .mv-icon-more {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.mv-profile-menu__actions__dropdown .dropdown-item.active {
  background-color: #fff;
  font-weight: 500;
  color: #373a3c;
}

.mv-profile-menu__item {
  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;
  padding: 6px 0 1px;
  color: #737373;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .mv-profile-menu__item {
    margin: 0 12px;
    font-size: 1.4rem;
    padding: 5px 0 16px;
  }
}

@media (min-width: 1200px) {
  .mv-profile-menu__item {
    margin: 0 25px;
  }
}

@media (min-width: 1366px) {
  .mv-profile-menu__item {
    margin: 0 12px;
  }
}

@media (min-width: 1600px) {
  .mv-profile-menu__item {
    margin: 0 25px;
  }
}

.mv-profile-menu-container .mv-profile-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0 1px;
}

.mv-profile-menu-container .mv-profile-menu__item .icon-menu {
  margin: 0 auto 2px;
  width: 20px;
  height: 20px;
}

@media (min-width: 992px) {
  .mv-profile-menu-container .mv-profile-menu__item {
    padding: 5px 0 16px;
  }
  .mv-profile-menu-container .mv-profile-menu__item .icon-menu {
    display: none;
  }
}

.mv-profile-menu__item .icon-menu {
  fill: #737373;
}

.mv-profile-menu__item:active .icon-menu {
  fill: #2196F3;
}

.mv-profile-menu__item .pics-num {
  display: none;
}

@media (min-width: 992px) {
  .mv-profile-menu__item .pics-num {
    display: inline;
  }
}

.mv-profile-menu__item[data-state*='active'] {
  color: #373a3c;
  position: relative;
}

.mv-profile-menu__item[data-state*='active']::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #2196F3;
  border-radius: 4px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mv-profile-menu__item[data-state*='active'] .icon-menu {
  fill: #373a3c;
}

.mv-profile-menu__item[data-state*='active'] .edit-pencil {
  -webkit-filter: grayscale(100%) invert(19%) sepia(7%) saturate(407%) hue-rotate(161deg) brightness(45%) contrast(86%);
          filter: grayscale(100%) invert(19%) sepia(7%) saturate(407%) hue-rotate(161deg) brightness(45%) contrast(86%);
}

.mv-profile-menu__container .mv-profile-menu__item[data-state*='active'] {
  color: #2196F3;
}

.mv-profile-menu__container .mv-profile-menu__item[data-state*='active']::after {
  display: none;
}

.mv-profile-menu__container .mv-profile-menu__item[data-state*='active'] .icon-menu {
  fill: #2196F3;
}

@media (min-width: 992px) {
  .mv-profile-menu__container .mv-profile-menu__item[data-state*='active'] {
    color: #373a3c;
    position: relative;
  }
  .mv-profile-menu__container .mv-profile-menu__item[data-state*='active']::after {
    display: block;
  }
}

.mv-profile-menu.-has-triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}

@media (min-width: 992px) {
  .-fixed-nav .mv-profile-menu {
    position: fixed;
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-column-gap: 2rem;
    height: 68px;
    top: 54px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0 3.2rem;
    z-index: 16;
  }
  .-fixed-nav .mv-profile-menu::after {
    content: '';
    width: 100%;
    height: 15px;
    position: absolute;
    background-color: white;
    bottom: -15px;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1600px) {
  .-fixed-nav .mv-profile-menu {
    grid-column-gap: 5.2rem;
    grid-template-columns: 320px 1fr 400px;
    padding: 0 2.4rem;
  }
}

.-fixed-nav .mv-profile-menu__profile-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e0e0e0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.-fixed-nav .mv-profile-menu__profile-avatar .profile-avatar {
  height: 48px;
  width: 48px;
  margin-right: 8px;
}

.-fixed-nav .mv-profile-menu__profile-avatar-stage-name {
  display: inline-block;
  color: #373A3C;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  max-width: 143px;
}

.-fixed-nav .mv-profile-menu__profile-avatar-stage-name.-is-live {
  color: #ff4081;
}

.-fixed-nav .mv-profile-menu__profile-avatar-stage-name-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.-fixed-nav .mv-profile-menu__profile-avatar .mv-type-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.-fixed-nav .mv-profile-menu__profile-avatar__follow {
  margin-left: 16px;
  font-size: 12px;
  width: 84px;
}

@media (min-width: 992px) {
  .-fixed-nav .mv-profile-menu__container {
    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;
    margin: 7px 12px 0;
  }
}

.-fixed-nav .mv-profile-menu__item {
  padding: 5px 0;
}

.-fixed-nav .mv-profile-menu__item[data-state*='active']:after {
  bottom: -15px;
}

.-fixed-nav .mv-profile-menu__actions {
  top: 21px;
}

.mv-profile-menu__mobile-more-menus {
  display: none;
  position: fixed;
  right: 4px;
  bottom: 55px;
  width: 180px;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}

.mv-profile-menu__mobile-more-menus.show {
  display: block;
}

.mv-profile-menu__mobile-more-menus .mv-profile-menu__item {
  display: block;
  margin: 12px 0 0 0;
}

.mv-profile-menu__mobile-more-menus .mv-profile-menu__item:first-child {
  margin: 0;
}

.mv-profile-menu__mobile-more-menus .mv-profile-menu__item .icon-tmv {
  display: inline-block;
  width: 21px;
  height: 20px;
  vertical-align: middle;
}

.mv-profile-menu__mobile-more-menus .mv-profile-menu__item span {
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  margin-left: 16px;
}

.mv-profile-menu__mobile-more-menus .mv-profile-menu__item.disabled {
  pointer-events: none;
  cursor: not-allowed;
  -webkit-filter: invert(100%) sepia(0%) saturate(2292%) hue-rotate(176deg) brightness(109%) contrast(73%);
          filter: invert(100%) sepia(0%) saturate(2292%) hue-rotate(176deg) brightness(109%) contrast(73%);
}

.mv-top-contributors {
  grid-area: top-contributors;
  margin: 2.2rem 0;
  display: none;
}

@media (min-width: 992px) {
  .mv-top-contributors {
    display: block;
    margin-top: 48px;
  }
}

.mv-about__container__top-contributors .mv-top-contributors {
  display: block;
  margin-top: 32px;
}

@media (min-width: 992px) {
  .mv-about__container__top-contributors .mv-top-contributors {
    display: none;
  }
}

.mv-top-contributors__item {
  width: 6.4rem;
  height: 6.4rem;
  position: relative;
  margin: 0 calc((100% - (4 * 6.4rem)) / 3) 0 0;
}

.mv-top-contributors__item:last-child {
  margin-right: 0;
}

.mv-top-contributors__subtitle {
  padding: 0 0 1.7rem 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #373a3c;
  display: block;
}

.mv-top-contributors__list {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.mv-top-contributors__name {
  width: 100%;
  margin: 1rem auto 0 auto;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
}

.mv-top-contributors__name.-is-link {
  color: #373a3c;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 1.33rem;
}

.mv-top-contributors__wrapper-pic {
  position: relative;
  width: 6.4rem;
  height: 6.4rem;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.mv-top-contributors img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.mv-model-banner {
  grid-area: model-banner;
  margin: 12px 0;
  position: relative;
}

@media (min-width: 992px) {
  .mv-model-banner {
    margin: 48px 0 0 0;
  }
}

@media (min-width: 1366px) {
  .mv-model-banner {
    margin-top: 4px;
  }
}

.mv-model-banner__live-label {
  position: absolute;
  display: block;
  color: #fff;
  top: 10px;
  left: 10px;
  height: 20px;
  width: 50px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #ff4081;
  z-index: 5;
}

.mv-model-banner__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding-top: 56.25%;
}

.mv-model-banner__container a {
  width: 100%;
  height: auto;
}

.mv-model-banner__media {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.mv-model-banner__media[data-video-src-list="[]"] {
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.mv-model-banner__quote {
  margin-top: 1rem;
}

.mv-model-banner__controls {
  display: none;
  position: absolute;
  bottom: 18px;
  right: 33px;
  z-index: 1;
}

.-is-editable .mv-model-banner__controls {
  display: block;
}

.mv-model-banner__controls .btn {
  padding: 0;
  width: 93px;
  height: 34px;
  line-height: 34px;
  font-size: 12px;
  font-weight: 500;
}

.mv-submenu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .mv-submenu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 15px 12px 0;
    padding: 9px 32px 0;
    -webkit-box-shadow: 0 3px 8px 0 rgba(36, 44, 80, 0.12);
            box-shadow: 0 3px 8px 0 rgba(36, 44, 80, 0.12);
    border-radius: 3px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mv-submenu__container, .mv-submenu__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.5rem;
}

.mv-submenu__container {
  border-bottom: 1px solid #e0e0e0;
  padding-top: 0;
}

@media (min-width: 992px) {
  .mv-submenu__container {
    border-bottom: 0 none;
  }
}

.mv-submenu__container-item {
  font-size: 1.2rem;
  margin: 0 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0 20px;
}

.mv-submenu__container-item:first-of-type {
  margin-left: 0;
}

@media (min-width: 992px) {
  .mv-submenu__container-item {
    padding: 14px 0 17px;
    margin: 0 20px;
  }
}

.mv-submenu__container .-menu-vids {
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/service-get-my-vids.svg") 0 0 no-repeat;
  width: 16px;
  height: 20px;
}

.mv-submenu__container .-menu-items {
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/nav_items.svg") 0 0 no-repeat;
  width: 20px;
  height: 16px;
}

.mv-submenu__container .icon-tmv {
  background-size: 100%;
  -webkit-filter: grayscale(100%) brightness(0);
          filter: grayscale(100%) brightness(0);
  opacity: 0.6;
  margin-right: 8px;
}

@media (min-width: 992px) {
  .mv-submenu__container .icon-tmv {
    margin-right: 12px;
  }
}

.mv-submenu__container [data-state*='active'] .icon-tmv {
  opacity: 1;
}

.mv-submenu__dropdown {
  padding-top: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 12px;
}

@media (min-width: 992px) {
  .mv-submenu__dropdown {
    -ms-flex-item-align: center;
        align-self: center;
    margin-top: 0;
  }
}

.mv-submenu__dropdown > div {
  margin-left: 40px;
}

@media (min-width: 1366px) {
  .mv-submenu__dropdown > div {
    margin-left: 20px;
  }
}

@media (min-width: 1600px) {
  .mv-submenu__dropdown > div {
    margin-left: 40px;
  }
}

.mv-submenu .chosen-single,
.mv-submenu .chosen-container-active.chosen-with-drop .chosen-single,
.mv-submenu .nice-select {
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: none;
}

.mv-submenu .chosen-single span,
.mv-submenu .chosen-container-active.chosen-with-drop .chosen-single span,
.mv-submenu .nice-select span {
  font-size: 1.2rem;
  color: #373a3c;
  font-weight: 500;
  margin-right: 0;
}

.mv-submenu .chosen-single div,
.mv-submenu .chosen-container-active.chosen-with-drop .chosen-single div,
.mv-submenu .nice-select div {
  display: none;
}

.mv-submenu select {
  font-size: 1.2rem;
  color: #373a3c;
  font-weight: 500;
  display: none;
  border: 0 none;
  outline: 0 none;
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/dropdown-arrow.svg") 94% 5px no-repeat;
  -webkit-filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
          filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 0 0 24px;
}

@media (min-width: 992px) {
  .mv-submenu select {
    margin: 0 0 0 26px;
  }
}

.mv-submenu .dropdown-toggle {
  font-size: 1.2rem;
  color: #373a3c;
  font-weight: 500;
  padding: 0;
}

.mv-submenu .dropdown-toggle:after {
  background-color: transparent;
  -webkit-filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
          filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
}

.mv-submenu .dropdown-menu.show {
  background-color: #fff;
  border-radius: 0.3rem;
  -webkit-box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
  padding: 0.8rem 1.6rem 0.1rem;
  min-width: 14rem;
}

.mv-submenu .dropdown-menu.show .dropdown-item {
  padding: 0 0 0.6rem;
}

.mv-submenu .dropdown-menu.show .dropdown-item a {
  font-size: 1.2rem;
  font-weight: 500;
}

.mv-submenu .dropdown-menu.show .dropdown-item a.selected, .mv-submenu .dropdown-menu.show .dropdown-item a:hover {
  color: #373a3c;
}

.mv-submenu .chosen-single {
  overflow: visible;
  padding-right: 1.6rem;
  height: auto;
}

.mv-submenu .chosen-single::after {
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/dropdown-arrow.svg") top left no-repeat;
  -webkit-filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
          filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
  content: "";
  display: block;
  height: 7px;
  pointer-events: none;
  width: 10px;
  position: absolute;
  top: 1rem;
  right: 0;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.mv-submenu .chosen-single .chosen-focus-input {
  display: none;
}

.mv-submenu .chosen-drop {
  width: 212px;
  height: auto;
  min-height: 115px;
  max-height: 275px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
  z-index: 16;
}

.mv-submenu .chosen-container .chosen-results {
  margin: 0;
  padding: 0 16px 5px;
  max-height: 165px;
}

.mv-submenu .chosen-container .chosen-results::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
}

.mv-submenu .chosen-container .chosen-results::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.mv-submenu .chosen-container .chosen-results .active-result {
  padding: 7px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.mv-submenu .chosen-container .chosen-results .active-result.result-selected, .mv-submenu .chosen-container .chosen-results .active-result.highlighted {
  background-color: transparent;
  color: #373a3c;
}

.mv-profile-content__library .mv-submenu .chosen-drop {
  width: 250px;
  max-height: 308px;
}

.mv-profile-content__library .mv-submenu .chosen-container .chosen-results {
  max-height: 250px;
}

.mv-profile-content__library .mv-submenu .chosen-container .chosen-results .active-result {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: cover;
  white-space: nowrap;
  margin-bottom: 20px;
  font-weight: 500;
  color: #373a3c;
}

.mv-profile-content__library .mv-submenu .chosen-container .chosen-results .active-result::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 15px;
  background-color: transparent;
}

.mv-profile-content__library .mv-submenu .chosen-container .chosen-results .active-result[data-option-array-index="0"] {
  margin-bottom: 0;
}

.mv-profile-content__library .mv-submenu .chosen-container .chosen-results .active-result[data-option-array-index="0"]::before {
  display: none;
}

.mv-submenu .chosen-container .chosen-search {
  padding: 15px 16px 8px;
}

.mv-submenu .chosen-container .chosen-search::after {
  content: '';
  background: transparent url("https://cdn3.manyvids.com/site_files/images/icons/search.svg") 0 0 no-repeat;
  background-size: 14px 14px;
  -webkit-filter: invert(100%) sepia(0%) saturate(4959%) hue-rotate(184deg) brightness(108%) contrast(87%);
          filter: invert(100%) sepia(0%) saturate(4959%) hue-rotate(184deg) brightness(108%) contrast(87%);
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 26px;
  right: 28px;
  opacity: 0.5;
}

.mv-submenu .chosen-container .chosen-search input[type="text"] {
  background-image: none;
  border: 1px solid #e0e0e0;
  border-radius: 17px;
  height: 34px;
  padding: 1.25rem 1.4rem;
}

.mv-submenu .chosen-container .chosen-search input[type="text"]:focus {
  padding: 1.25rem 1.4rem;
}

.mv-submenu .no-search .chosen-container .chosen-search {
  display: none;
}

.mv-submenu .no-search .chosen-container .chosen-search ~ .chosen-results {
  padding: 15px 16px 8px;
}

.mv-submenu .chosen-container-active.chosen-with-drop .chosen-single::after {
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 1.6rem;
}

.mv-submenu .nice-select {
  padding-right: 0;
  margin-right: 0;
}

.mv-submenu .nice-select::after {
  -webkit-filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
          filter: invert(20%) sepia(6%) saturate(100%) hue-rotate(161deg) brightness(0) contrast(88%);
  left: 5px;
}

.mv-submenu .nice-select .list {
  background-color: #fff;
  border-radius: 0.3rem;
  -webkit-box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
          box-shadow: 1px 3px 15px 0 rgba(30, 43, 58, 0.41);
  padding: 9px 16px 2px;
  left: auto;
  right: -70px;
}

.mv-submenu .nice-select .option {
  font-size: 1.2rem;
  padding: 0;
}

.mv-submenu .nice-select .option.selected, .mv-submenu .nice-select .option:hover {
  color: #373a3c;
  font-weight: 500;
}

.mv-profile-content__store .flex-list,
.mv-profile-content__library .flex-list,
.mv-profile-content__followers .flex-list,
.mv-profile-content__following .flex-list,
.mv-profile-content__suggested .flex-list {
  margin-top: 5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .mv-profile-content__store .flex-list,
  .mv-profile-content__library .flex-list,
  .mv-profile-content__followers .flex-list,
  .mv-profile-content__following .flex-list,
  .mv-profile-content__suggested .flex-list {
    margin: 32px 12px 18px;
  }
}

.mv-profile-content__store .flex-list.own-profile .item-card,
.mv-profile-content__library .flex-list.own-profile .item-card,
.mv-profile-content__followers .flex-list.own-profile .item-card,
.mv-profile-content__following .flex-list.own-profile .item-card,
.mv-profile-content__suggested .flex-list.own-profile .item-card {
  overflow: visible;
}

.mv-profile-content__store .flex-list.own-profile .item-card .vid-extras-right,
.mv-profile-content__library .flex-list.own-profile .item-card .vid-extras-right,
.mv-profile-content__followers .flex-list.own-profile .item-card .vid-extras-right,
.mv-profile-content__following .flex-list.own-profile .item-card .vid-extras-right,
.mv-profile-content__suggested .flex-list.own-profile .item-card .vid-extras-right {
  top: 37px;
  right: 10px;
}

.mv-profile-content__store .flex-list.own-profile .item-card .card-title,
.mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
.mv-profile-content__library .flex-list.own-profile .item-card .card-title,
.mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
.mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
.mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
.mv-profile-content__following .flex-list.own-profile .item-card .card-title,
.mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
.mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
.mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
  width: 42vw;
}

@media (min-width: 768px) {
  .mv-profile-content__store .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
    width: 29vw;
  }
}

@media (min-width: 992px) {
  .mv-profile-content__store .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
    width: 27vw;
  }
}

@media (min-width: 1200px) {
  .mv-profile-content__store .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
    width: 18vw;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content__store .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
    width: 12vw;
  }
}

@media (min-width: 1900px) {
  .mv-profile-content__store .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card .ellipsis {
    width: 11vw;
  }
}

.mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
.mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
.mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
.mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
.mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
.mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
.mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
.mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
.mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
.mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
  width: 89vw;
}

@media (min-width: 768px) {
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
    width: 42vw;
  }
}

@media (min-width: 992px) {
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
    width: 26vw;
  }
}

@media (min-width: 1200px) {
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
    width: 19vw;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
    width: 12vw;
  }
}

@media (min-width: 1900px) {
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__store .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__library .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__followers .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__following .flex-list.own-profile .item-card.-video .ellipsis,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .card-title,
  .mv-profile-content__suggested .flex-list.own-profile .item-card.-video .ellipsis {
    width: 12vw;
  }
}

.mv-profile-content__store .item-card,
.mv-profile-content__library .item-card,
.mv-profile-content__followers .item-card,
.mv-profile-content__following .item-card,
.mv-profile-content__suggested .item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  margin: 7px 0;
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mv-profile-content__store .item-card:nth-child(2n+1),
.mv-profile-content__library .item-card:nth-child(2n+1),
.mv-profile-content__followers .item-card:nth-child(2n+1),
.mv-profile-content__following .item-card:nth-child(2n+1),
.mv-profile-content__suggested .item-card:nth-child(2n+1) {
  margin-right: 1%;
}

.mv-profile-content__store .item-card:nth-child(2n+2),
.mv-profile-content__library .item-card:nth-child(2n+2),
.mv-profile-content__followers .item-card:nth-child(2n+2),
.mv-profile-content__following .item-card:nth-child(2n+2),
.mv-profile-content__suggested .item-card:nth-child(2n+2) {
  margin-left: 1%;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1), .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+3),
  .mv-profile-content__library .item-card:nth-child(3n+3),
  .mv-profile-content__followers .item-card:nth-child(3n+3),
  .mv-profile-content__following .item-card:nth-child(3n+3),
  .mv-profile-content__suggested .item-card:nth-child(3n+3) {
    margin-left: 1%;
  }
}

@media (min-width: 992px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    padding: 0 0 26px;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1), .mv-profile-content__store .item-card:nth-child(3n+2), .mv-profile-content__store .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+1) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 1%;
  }
}

@media (min-width: 1200px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1), .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+3),
  .mv-profile-content__library .item-card:nth-child(3n+3),
  .mv-profile-content__followers .item-card:nth-child(3n+3),
  .mv-profile-content__following .item-card:nth-child(3n+3),
  .mv-profile-content__suggested .item-card:nth-child(3n+3) {
    margin-left: 1%;
  }
}

@media (min-width: 1366px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1), .mv-profile-content__store .item-card:nth-child(3n+3), .mv-profile-content__store .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+3),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+3),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+3),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+3),
  .mv-profile-content__suggested .item-card:nth-child(3n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 1%;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1), .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card:nth-child(3n+3),
  .mv-profile-content__library .item-card:nth-child(3n+3),
  .mv-profile-content__followers .item-card:nth-child(3n+3),
  .mv-profile-content__following .item-card:nth-child(3n+3),
  .mv-profile-content__suggested .item-card:nth-child(3n+3) {
    margin-left: 1%;
  }
}

@media (min-width: 1900px) {
  .mv-profile-content__store .item-card,
  .mv-profile-content__library .item-card,
  .mv-profile-content__followers .item-card,
  .mv-profile-content__following .item-card,
  .mv-profile-content__suggested .item-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
  .mv-profile-content__store .item-card:nth-child(2n+1), .mv-profile-content__store .item-card:nth-child(2n+2),
  .mv-profile-content__library .item-card:nth-child(2n+1),
  .mv-profile-content__library .item-card:nth-child(2n+2),
  .mv-profile-content__followers .item-card:nth-child(2n+1),
  .mv-profile-content__followers .item-card:nth-child(2n+2),
  .mv-profile-content__following .item-card:nth-child(2n+1),
  .mv-profile-content__following .item-card:nth-child(2n+2),
  .mv-profile-content__suggested .item-card:nth-child(2n+1),
  .mv-profile-content__suggested .item-card:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(3n+1), .mv-profile-content__store .item-card:nth-child(3n+2), .mv-profile-content__store .item-card:nth-child(3n+3),
  .mv-profile-content__library .item-card:nth-child(3n+1),
  .mv-profile-content__library .item-card:nth-child(3n+2),
  .mv-profile-content__library .item-card:nth-child(3n+3),
  .mv-profile-content__followers .item-card:nth-child(3n+1),
  .mv-profile-content__followers .item-card:nth-child(3n+2),
  .mv-profile-content__followers .item-card:nth-child(3n+3),
  .mv-profile-content__following .item-card:nth-child(3n+1),
  .mv-profile-content__following .item-card:nth-child(3n+2),
  .mv-profile-content__following .item-card:nth-child(3n+3),
  .mv-profile-content__suggested .item-card:nth-child(3n+1),
  .mv-profile-content__suggested .item-card:nth-child(3n+2),
  .mv-profile-content__suggested .item-card:nth-child(3n+3) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card:nth-child(4n+1),
  .mv-profile-content__library .item-card:nth-child(4n+1),
  .mv-profile-content__followers .item-card:nth-child(4n+1),
  .mv-profile-content__following .item-card:nth-child(4n+1),
  .mv-profile-content__suggested .item-card:nth-child(4n+1) {
    margin-right: calc(4% / 6);
  }
  .mv-profile-content__store .item-card:nth-child(4n+2),
  .mv-profile-content__library .item-card:nth-child(4n+2),
  .mv-profile-content__followers .item-card:nth-child(4n+2),
  .mv-profile-content__following .item-card:nth-child(4n+2),
  .mv-profile-content__suggested .item-card:nth-child(4n+2) {
    margin-left: calc(4% / 6);
    margin-right: calc(4% / 6);
  }
  .mv-profile-content__store .item-card:nth-child(4n+3),
  .mv-profile-content__library .item-card:nth-child(4n+3),
  .mv-profile-content__followers .item-card:nth-child(4n+3),
  .mv-profile-content__following .item-card:nth-child(4n+3),
  .mv-profile-content__suggested .item-card:nth-child(4n+3) {
    margin-left: calc(4% / 6);
    margin-right: calc(4% / 6);
  }
  .mv-profile-content__store .item-card:nth-child(4n+4),
  .mv-profile-content__library .item-card:nth-child(4n+4),
  .mv-profile-content__followers .item-card:nth-child(4n+4),
  .mv-profile-content__following .item-card:nth-child(4n+4),
  .mv-profile-content__suggested .item-card:nth-child(4n+4) {
    margin-left: calc(4% / 6);
  }
}

.mv-profile-content__store .item-card .card-title,
.mv-profile-content__library .item-card .card-title,
.mv-profile-content__followers .item-card .card-title,
.mv-profile-content__following .item-card .card-title,
.mv-profile-content__suggested .item-card .card-title {
  font-size: 14px;
  text-align: center;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 45vw;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card .card-title,
  .mv-profile-content__library .item-card .card-title,
  .mv-profile-content__followers .item-card .card-title,
  .mv-profile-content__following .item-card .card-title,
  .mv-profile-content__suggested .item-card .card-title {
    width: auto;
  }
}

.mv-profile-content__store .item-card__badges,
.mv-profile-content__library .item-card__badges,
.mv-profile-content__followers .item-card__badges,
.mv-profile-content__following .item-card__badges,
.mv-profile-content__suggested .item-card__badges {
  position: absolute;
  z-index: 1;
}

.mv-profile-content__store .item-card__badges :first-child,
.mv-profile-content__library .item-card__badges :first-child,
.mv-profile-content__followers .item-card__badges :first-child,
.mv-profile-content__following .item-card__badges :first-child,
.mv-profile-content__suggested .item-card__badges :first-child {
  left: 0;
}

.mv-profile-content__store .item-card__badges :nth-child(2n),
.mv-profile-content__library .item-card__badges :nth-child(2n),
.mv-profile-content__followers .item-card__badges :nth-child(2n),
.mv-profile-content__following .item-card__badges :nth-child(2n),
.mv-profile-content__suggested .item-card__badges :nth-child(2n) {
  left: 28px;
  top: -73px;
}

.mv-profile-content__store .item-card__badges .badge-best,
.mv-profile-content__library .item-card__badges .badge-best,
.mv-profile-content__followers .item-card__badges .badge-best,
.mv-profile-content__following .item-card__badges .badge-best,
.mv-profile-content__suggested .item-card__badges .badge-best {
  position: relative;
  height: 73px;
  background-color: #90349b;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  border: solid 1px #90349b;
}

.mv-profile-content__store .item-card__badges .badge-best::before,
.mv-profile-content__library .item-card__badges .badge-best::before,
.mv-profile-content__followers .item-card__badges .badge-best::before,
.mv-profile-content__following .item-card__badges .badge-best::before,
.mv-profile-content__suggested .item-card__badges .badge-best::before {
  position: absolute;
  bottom: -23px;
  left: 1px;
  z-index: 2;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  content: '';
  border-left: 20px solid #90349b;
  border-bottom: 24px solid transparent;
}

.mv-profile-content__store .item-card__badges .badge-best span,
.mv-profile-content__library .item-card__badges .badge-best span,
.mv-profile-content__followers .item-card__badges .badge-best span,
.mv-profile-content__following .item-card__badges .badge-best span,
.mv-profile-content__suggested .item-card__badges .badge-best span {
  position: absolute;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(-24px, -16px);
          transform: rotate(-90deg) translate(-24px, -16px);
}

.mv-profile-content__store .item-card__badges .badge-new,
.mv-profile-content__library .item-card__badges .badge-new,
.mv-profile-content__followers .item-card__badges .badge-new,
.mv-profile-content__following .item-card__badges .badge-new,
.mv-profile-content__suggested .item-card__badges .badge-new {
  position: relative;
  height: 37px;
  background-color: #10bfab;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  border: solid 1px #10bfab;
}

.mv-profile-content__store .item-card__badges .badge-new::before,
.mv-profile-content__library .item-card__badges .badge-new::before,
.mv-profile-content__followers .item-card__badges .badge-new::before,
.mv-profile-content__following .item-card__badges .badge-new::before,
.mv-profile-content__suggested .item-card__badges .badge-new::before {
  position: absolute;
  bottom: -23px;
  left: -1px;
  z-index: 2;
  content: '';
  border-left: 24px solid #10bfab;
  border-bottom: 22px solid transparent;
}

.mv-profile-content__store .item-card__badges .badge-new span,
.mv-profile-content__library .item-card__badges .badge-new span,
.mv-profile-content__followers .item-card__badges .badge-new span,
.mv-profile-content__following .item-card__badges .badge-new span,
.mv-profile-content__suggested .item-card__badges .badge-new span {
  position: absolute;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(-8px, 0);
          transform: rotate(-90deg) translate(-8px, 0);
}

.mv-profile-content__store .item-card__badges .is-active,
.mv-profile-content__library .item-card__badges .is-active,
.mv-profile-content__followers .item-card__badges .is-active,
.mv-profile-content__following .item-card__badges .is-active,
.mv-profile-content__suggested .item-card__badges .is-active {
  width: 24px;
  margin: auto;
  padding-right: 9px;
  font-weight: 500;
  font-size: 12px;
  color: white;
  line-height: 25px;
  text-align: right;
}

.mv-profile-content__store .item-card .inline-video-preview,
.mv-profile-content__library .item-card .inline-video-preview,
.mv-profile-content__followers .item-card .inline-video-preview,
.mv-profile-content__following .item-card .inline-video-preview,
.mv-profile-content__suggested .item-card .inline-video-preview {
  width: 100%;
  padding-top: 100%;
  position: relative;
  height: auto;
  min-height: 0;
}

.mv-profile-content__store .item-card .inline-video-preview img,
.mv-profile-content__library .item-card .inline-video-preview img,
.mv-profile-content__followers .item-card .inline-video-preview img,
.mv-profile-content__following .item-card .inline-video-preview img,
.mv-profile-content__suggested .item-card .inline-video-preview img {
  position: absolute;
  top: 0;
  height: auto;
  min-height: 0;
}

.mv-profile-content__store .item-card .inline-video-preview img.loader-icon,
.mv-profile-content__library .item-card .inline-video-preview img.loader-icon,
.mv-profile-content__followers .item-card .inline-video-preview img.loader-icon,
.mv-profile-content__following .item-card .inline-video-preview img.loader-icon,
.mv-profile-content__suggested .item-card .inline-video-preview img.loader-icon {
  top: 50%;
}

.mv-profile-content__store .item-card .inline-video-preview img:not(.loading),
.mv-profile-content__library .item-card .inline-video-preview img:not(.loading),
.mv-profile-content__followers .item-card .inline-video-preview img:not(.loading),
.mv-profile-content__following .item-card .inline-video-preview img:not(.loading),
.mv-profile-content__suggested .item-card .inline-video-preview img:not(.loading) {
  max-height: none;
}

.mv-profile-content__store .item-card .inline-video-preview .vid-length,
.mv-profile-content__store .item-card .inline-video-preview .quantity,
.mv-profile-content__library .item-card .inline-video-preview .vid-length,
.mv-profile-content__library .item-card .inline-video-preview .quantity,
.mv-profile-content__followers .item-card .inline-video-preview .vid-length,
.mv-profile-content__followers .item-card .inline-video-preview .quantity,
.mv-profile-content__following .item-card .inline-video-preview .vid-length,
.mv-profile-content__following .item-card .inline-video-preview .quantity,
.mv-profile-content__suggested .item-card .inline-video-preview .vid-length,
.mv-profile-content__suggested .item-card .inline-video-preview .quantity {
  position: absolute;
  left: 8px;
  bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  background-color: rgba(55, 58, 60, 0.8);
}

.mv-profile-content__store .item-card .inline-video-preview .quantity,
.mv-profile-content__library .item-card .inline-video-preview .quantity,
.mv-profile-content__followers .item-card .inline-video-preview .quantity,
.mv-profile-content__following .item-card .inline-video-preview .quantity,
.mv-profile-content__suggested .item-card .inline-video-preview .quantity {
  border-radius: 2px;
  padding: 2px 12px;
}

.mv-profile-content__store .item-card.-video,
.mv-profile-content__library .item-card.-video,
.mv-profile-content__followers .item-card.-video,
.mv-profile-content__following .item-card.-video,
.mv-profile-content__suggested .item-card.-video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 7px 0;
  position: relative;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card.-video,
  .mv-profile-content__library .item-card.-video,
  .mv-profile-content__followers .item-card.-video,
  .mv-profile-content__following .item-card.-video,
  .mv-profile-content__suggested .item-card.-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+1),
  .mv-profile-content__library .item-card.-video:nth-child(2n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+1),
  .mv-profile-content__following .item-card.-video:nth-child(2n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+2),
  .mv-profile-content__library .item-card.-video:nth-child(2n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+2),
  .mv-profile-content__following .item-card.-video:nth-child(2n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+2) {
    margin-left: 1%;
  }
}

@media (min-width: 1200px) {
  .mv-profile-content__store .item-card.-video,
  .mv-profile-content__library .item-card.-video,
  .mv-profile-content__followers .item-card.-video,
  .mv-profile-content__following .item-card.-video,
  .mv-profile-content__suggested .item-card.-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+1), .mv-profile-content__store .item-card.-video:nth-child(2n+2),
  .mv-profile-content__library .item-card.-video:nth-child(2n+1),
  .mv-profile-content__library .item-card.-video:nth-child(2n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+2),
  .mv-profile-content__following .item-card.-video:nth-child(2n+1),
  .mv-profile-content__following .item-card.-video:nth-child(2n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+1),
  .mv-profile-content__library .item-card.-video:nth-child(3n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+1),
  .mv-profile-content__following .item-card.-video:nth-child(3n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+2),
  .mv-profile-content__library .item-card.-video:nth-child(3n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+2),
  .mv-profile-content__following .item-card.-video:nth-child(3n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+3),
  .mv-profile-content__library .item-card.-video:nth-child(3n+3),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+3),
  .mv-profile-content__following .item-card.-video:nth-child(3n+3),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+3) {
    margin-left: 1%;
  }
}

@media (min-width: 1366px) {
  .mv-profile-content__store .item-card.-video,
  .mv-profile-content__library .item-card.-video,
  .mv-profile-content__followers .item-card.-video,
  .mv-profile-content__following .item-card.-video,
  .mv-profile-content__suggested .item-card.-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+1), .mv-profile-content__store .item-card.-video:nth-child(3n+3), .mv-profile-content__store .item-card.-video:nth-child(3n+2),
  .mv-profile-content__library .item-card.-video:nth-child(3n+1),
  .mv-profile-content__library .item-card.-video:nth-child(3n+3),
  .mv-profile-content__library .item-card.-video:nth-child(3n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+3),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+2),
  .mv-profile-content__following .item-card.-video:nth-child(3n+1),
  .mv-profile-content__following .item-card.-video:nth-child(3n+3),
  .mv-profile-content__following .item-card.-video:nth-child(3n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+3),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+1),
  .mv-profile-content__library .item-card.-video:nth-child(2n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+1),
  .mv-profile-content__following .item-card.-video:nth-child(2n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+2),
  .mv-profile-content__library .item-card.-video:nth-child(2n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+2),
  .mv-profile-content__following .item-card.-video:nth-child(2n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+2) {
    margin-left: 1%;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content__store .item-card.-video,
  .mv-profile-content__library .item-card.-video,
  .mv-profile-content__followers .item-card.-video,
  .mv-profile-content__following .item-card.-video,
  .mv-profile-content__suggested .item-card.-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(2n+1), .mv-profile-content__store .item-card.-video:nth-child(2n+2),
  .mv-profile-content__library .item-card.-video:nth-child(2n+1),
  .mv-profile-content__library .item-card.-video:nth-child(2n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(2n+2),
  .mv-profile-content__following .item-card.-video:nth-child(2n+1),
  .mv-profile-content__following .item-card.-video:nth-child(2n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(2n+2) {
    margin-left: 0;
    margin-right: 0;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+1),
  .mv-profile-content__library .item-card.-video:nth-child(3n+1),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+1),
  .mv-profile-content__following .item-card.-video:nth-child(3n+1),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+1) {
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+2),
  .mv-profile-content__library .item-card.-video:nth-child(3n+2),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+2),
  .mv-profile-content__following .item-card.-video:nth-child(3n+2),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  .mv-profile-content__store .item-card.-video:nth-child(3n+3),
  .mv-profile-content__library .item-card.-video:nth-child(3n+3),
  .mv-profile-content__followers .item-card.-video:nth-child(3n+3),
  .mv-profile-content__following .item-card.-video:nth-child(3n+3),
  .mv-profile-content__suggested .item-card.-video:nth-child(3n+3) {
    margin-left: 1%;
  }
}

.mv-profile-content__store .item-card.-video .inline-video-preview,
.mv-profile-content__library .item-card.-video .inline-video-preview,
.mv-profile-content__followers .item-card.-video .inline-video-preview,
.mv-profile-content__following .item-card.-video .inline-video-preview,
.mv-profile-content__suggested .item-card.-video .inline-video-preview {
  width: 100%;
  padding-top: 56.25%;
}

.mv-profile-content__store .item-card.-video .card-title,
.mv-profile-content__library .item-card.-video .card-title,
.mv-profile-content__followers .item-card.-video .card-title,
.mv-profile-content__following .item-card.-video .card-title,
.mv-profile-content__suggested .item-card.-video .card-title {
  width: 89vw;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card.-video .card-title,
  .mv-profile-content__library .item-card.-video .card-title,
  .mv-profile-content__followers .item-card.-video .card-title,
  .mv-profile-content__following .item-card.-video .card-title,
  .mv-profile-content__suggested .item-card.-video .card-title {
    width: auto;
  }
}

.mv-profile-content__store .item-card .ctn-price-cart,
.mv-profile-content__library .item-card .ctn-price-cart,
.mv-profile-content__followers .item-card .ctn-price-cart,
.mv-profile-content__following .item-card .ctn-price-cart,
.mv-profile-content__suggested .item-card .ctn-price-cart {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 8px;
  margin-top: 9px;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card .ctn-price-cart,
  .mv-profile-content__library .item-card .ctn-price-cart,
  .mv-profile-content__followers .item-card .ctn-price-cart,
  .mv-profile-content__following .item-card .ctn-price-cart,
  .mv-profile-content__suggested .item-card .ctn-price-cart {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mv-profile-content__store .item-card .ctn-price-cart span,
.mv-profile-content__library .item-card .ctn-price-cart span,
.mv-profile-content__followers .item-card .ctn-price-cart span,
.mv-profile-content__following .item-card .ctn-price-cart span,
.mv-profile-content__suggested .item-card .ctn-price-cart span {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.mv-profile-content__store .item-card .ctn-price-cart span.price,
.mv-profile-content__library .item-card .ctn-price-cart span.price,
.mv-profile-content__followers .item-card .ctn-price-cart span.price,
.mv-profile-content__following .item-card .ctn-price-cart span.price,
.mv-profile-content__suggested .item-card .ctn-price-cart span.price {
  color: #373a3c;
}

.mv-profile-content__store .item-card .ctn-price-cart span.free,
.mv-profile-content__library .item-card .ctn-price-cart span.free,
.mv-profile-content__followers .item-card .ctn-price-cart span.free,
.mv-profile-content__following .item-card .ctn-price-cart span.free,
.mv-profile-content__suggested .item-card .ctn-price-cart span.free {
  color: #90349b;
}

.mv-profile-content__store .item-card .ctn-price-cart span.membership,
.mv-profile-content__library .item-card .ctn-price-cart span.membership,
.mv-profile-content__followers .item-card .ctn-price-cart span.membership,
.mv-profile-content__following .item-card .ctn-price-cart span.membership,
.mv-profile-content__suggested .item-card .ctn-price-cart span.membership {
  color: #1565c0;
}

.mv-profile-content__store .item-card .ctn-price-cart span.discount,
.mv-profile-content__library .item-card .ctn-price-cart span.discount,
.mv-profile-content__followers .item-card .ctn-price-cart span.discount,
.mv-profile-content__following .item-card .ctn-price-cart span.discount,
.mv-profile-content__suggested .item-card .ctn-price-cart span.discount {
  font-weight: 700;
  line-height: 21px;
}

.mv-profile-content__store .item-card .ctn-price-cart span.original,
.mv-profile-content__library .item-card .ctn-price-cart span.original,
.mv-profile-content__followers .item-card .ctn-price-cart span.original,
.mv-profile-content__following .item-card .ctn-price-cart span.original,
.mv-profile-content__suggested .item-card .ctn-price-cart span.original {
  color: #373a3c;
  font-size: 11px;
  font-weight: 400;
  margin-right: 8px;
  line-height: 15px;
}

.mv-profile-content__store .item-card .ctn-price-cart span.save,
.mv-profile-content__library .item-card .ctn-price-cart span.save,
.mv-profile-content__followers .item-card .ctn-price-cart span.save,
.mv-profile-content__following .item-card .ctn-price-cart span.save,
.mv-profile-content__suggested .item-card .ctn-price-cart span.save {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
}

.mv-profile-content__store .item-card .ctn-price-cart span.sold-out,
.mv-profile-content__library .item-card .ctn-price-cart span.sold-out,
.mv-profile-content__followers .item-card .ctn-price-cart span.sold-out,
.mv-profile-content__following .item-card .ctn-price-cart span.sold-out,
.mv-profile-content__suggested .item-card .ctn-price-cart span.sold-out {
  color: #BBBBBB;
}

.mv-profile-content__store .item-card .ctn-price-cart span.mv-tube,
.mv-profile-content__library .item-card .ctn-price-cart span.mv-tube,
.mv-profile-content__followers .item-card .ctn-price-cart span.mv-tube,
.mv-profile-content__following .item-card .ctn-price-cart span.mv-tube,
.mv-profile-content__suggested .item-card .ctn-price-cart span.mv-tube {
  display: block;
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/MVTube_Logo2_Colours.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 18px;
}

.mv-profile-content__store .item-card .ctn-price-cart .ctn-promo,
.mv-profile-content__library .item-card .ctn-price-cart .ctn-promo,
.mv-profile-content__followers .item-card .ctn-price-cart .ctn-promo,
.mv-profile-content__following .item-card .ctn-price-cart .ctn-promo,
.mv-profile-content__suggested .item-card .ctn-price-cart .ctn-promo {
  line-height: 1;
  text-align: left;
}

.mv-profile-content__store .item-card .ctn-price-cart.-vids,
.mv-profile-content__library .item-card .ctn-price-cart.-vids,
.mv-profile-content__followers .item-card .ctn-price-cart.-vids,
.mv-profile-content__following .item-card .ctn-price-cart.-vids,
.mv-profile-content__suggested .item-card .ctn-price-cart.-vids {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mv-profile-content__store .item-card .ctn-price-cart.-vids .btn,
.mv-profile-content__library .item-card .ctn-price-cart.-vids .btn,
.mv-profile-content__followers .item-card .ctn-price-cart.-vids .btn,
.mv-profile-content__following .item-card .ctn-price-cart.-vids .btn,
.mv-profile-content__suggested .item-card .ctn-price-cart.-vids .btn {
  margin-top: 0;
}

.mv-profile-content__store .item-card .ctn-price-cart.-store .ctn-promo,
.mv-profile-content__library .item-card .ctn-price-cart.-store .ctn-promo,
.mv-profile-content__followers .item-card .ctn-price-cart.-store .ctn-promo,
.mv-profile-content__following .item-card .ctn-price-cart.-store .ctn-promo,
.mv-profile-content__suggested .item-card .ctn-price-cart.-store .ctn-promo {
  text-align: center;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card .ctn-price-cart.-store .ctn-promo,
  .mv-profile-content__library .item-card .ctn-price-cart.-store .ctn-promo,
  .mv-profile-content__followers .item-card .ctn-price-cart.-store .ctn-promo,
  .mv-profile-content__following .item-card .ctn-price-cart.-store .ctn-promo,
  .mv-profile-content__suggested .item-card .ctn-price-cart.-store .ctn-promo {
    text-align: left;
  }
}

.mv-profile-content__store .item-card .ctn-price-cart.-store .btn,
.mv-profile-content__library .item-card .ctn-price-cart.-store .btn,
.mv-profile-content__followers .item-card .ctn-price-cart.-store .btn,
.mv-profile-content__following .item-card .ctn-price-cart.-store .btn,
.mv-profile-content__suggested .item-card .ctn-price-cart.-store .btn {
  margin-top: 9px;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card .ctn-price-cart.-store .btn,
  .mv-profile-content__library .item-card .ctn-price-cart.-store .btn,
  .mv-profile-content__followers .item-card .ctn-price-cart.-store .btn,
  .mv-profile-content__following .item-card .ctn-price-cart.-store .btn,
  .mv-profile-content__suggested .item-card .ctn-price-cart.-store .btn {
    margin-top: 0;
  }
}

.mv-profile-content__store .item-card .ctn-price-cart .btn,
.mv-profile-content__library .item-card .ctn-price-cart .btn,
.mv-profile-content__followers .item-card .ctn-price-cart .btn,
.mv-profile-content__following .item-card .ctn-price-cart .btn,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn {
  border-color: #2196F3;
  color: #2196F3;
  padding: 0;
  text-align: center;
  width: 93px;
  height: 34px;
  line-height: 34px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
}

.mv-profile-content__store .item-card .ctn-price-cart .btn:hover,
.mv-profile-content__library .item-card .ctn-price-cart .btn:hover,
.mv-profile-content__followers .item-card .ctn-price-cart .btn:hover,
.mv-profile-content__following .item-card .ctn-price-cart .btn:hover,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn:hover {
  background-color: #2196F3;
  color: #fff;
}

@media (min-width: 768px) {
  .mv-profile-content__store .item-card .ctn-price-cart .btn,
  .mv-profile-content__library .item-card .ctn-price-cart .btn,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn,
  .mv-profile-content__following .item-card .ctn-price-cart .btn,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn {
    margin-top: 0;
  }
}

.mv-profile-content__store .item-card .ctn-price-cart .btn.crush,
.mv-profile-content__library .item-card .ctn-price-cart .btn.crush,
.mv-profile-content__followers .item-card .ctn-price-cart .btn.crush,
.mv-profile-content__following .item-card .ctn-price-cart .btn.crush,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn.crush {
  background-color: #ff4081;
  border-color: #ff4081;
  color: #fff;
}

.mv-profile-content__store .item-card .ctn-price-cart .btn.added,
.mv-profile-content__library .item-card .ctn-price-cart .btn.added,
.mv-profile-content__followers .item-card .ctn-price-cart .btn.added,
.mv-profile-content__following .item-card .ctn-price-cart .btn.added,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn.added {
  background-color: #2196F3;
  border-color: #2196F3;
  color: #fff;
  opacity: 1;
}

.mv-profile-content__store .item-card .ctn-price-cart .btn.edit-video, .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-item,
.mv-profile-content__library .item-card .ctn-price-cart .btn.edit-video,
.mv-profile-content__library .item-card .ctn-price-cart .btn.edit-item,
.mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-video,
.mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-item,
.mv-profile-content__following .item-card .ctn-price-cart .btn.edit-video,
.mv-profile-content__following .item-card .ctn-price-cart .btn.edit-item,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-video,
.mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-item {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 1600px) {
  .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-video, .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1650px) {
  .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-video, .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1700px) {
  .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-video, .mv-profile-content__store .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__library .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__followers .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__following .item-card .ctn-price-cart .btn.edit-item,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-video,
  .mv-profile-content__suggested .item-card .ctn-price-cart .btn.edit-item {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.mv-profile-content__store .item-card .price-real,
.mv-profile-content__store .item-card .price-reg,
.mv-profile-content__library .item-card .price-real,
.mv-profile-content__library .item-card .price-reg,
.mv-profile-content__followers .item-card .price-real,
.mv-profile-content__followers .item-card .price-reg,
.mv-profile-content__following .item-card .price-real,
.mv-profile-content__following .item-card .price-reg,
.mv-profile-content__suggested .item-card .price-real,
.mv-profile-content__suggested .item-card .price-reg {
  font-size: 16px;
  color: #373a3c;
  font-weight: 700;
}

.mv-profile-content__store .item-card .save,
.mv-profile-content__library .item-card .save,
.mv-profile-content__followers .item-card .save,
.mv-profile-content__following .item-card .save,
.mv-profile-content__suggested .item-card .save {
  font-size: 11px;
}

.mv-profile-content__store .item-card .free,
.mv-profile-content__library .item-card .free,
.mv-profile-content__followers .item-card .free,
.mv-profile-content__following .item-card .free,
.mv-profile-content__suggested .item-card .free {
  color: #90349B;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.mv-profile-content__store .item-card .ctn-item-title,
.mv-profile-content__library .item-card .ctn-item-title,
.mv-profile-content__followers .item-card .ctn-item-title,
.mv-profile-content__following .item-card .ctn-item-title,
.mv-profile-content__suggested .item-card .ctn-item-title {
  margin-top: 14px;
  padding: 0;
}

.mv-profile-content__store .item-card .card-footer,
.mv-profile-content__library .item-card .card-footer,
.mv-profile-content__followers .item-card .card-footer,
.mv-profile-content__following .item-card .card-footer,
.mv-profile-content__suggested .item-card .card-footer {
  background-color: transparent;
  border: 0 none;
  padding: 0 8px;
}

.mv-profile-content__store .item-card .card-footer-links,
.mv-profile-content__library .item-card .card-footer-links,
.mv-profile-content__followers .item-card .card-footer-links,
.mv-profile-content__following .item-card .card-footer-links,
.mv-profile-content__suggested .item-card .card-footer-links {
  padding: 0;
}

.mv-profile-content__store .item-card .card-footer-links span,
.mv-profile-content__store .item-card .card-footer-links a,
.mv-profile-content__library .item-card .card-footer-links span,
.mv-profile-content__library .item-card .card-footer-links a,
.mv-profile-content__followers .item-card .card-footer-links span,
.mv-profile-content__followers .item-card .card-footer-links a,
.mv-profile-content__following .item-card .card-footer-links span,
.mv-profile-content__following .item-card .card-footer-links a,
.mv-profile-content__suggested .item-card .card-footer-links span,
.mv-profile-content__suggested .item-card .card-footer-links a {
  font-size: 1.2rem;
  color: #373a3c;
}

.mv-profile-content__store .item-card .card-footer-links span,
.mv-profile-content__library .item-card .card-footer-links span,
.mv-profile-content__followers .item-card .card-footer-links span,
.mv-profile-content__following .item-card .card-footer-links span,
.mv-profile-content__suggested .item-card .card-footer-links span {
  margin-top: 13px;
  height: 19px;
}

.mv-profile-content__store {
  position: relative;
}

@media (min-width: 1366px) {
  .mv-profile-content__store .flex-list {
    margin-left: 9px;
    margin-right: 9px;
  }
}

@media (min-width: 1600px) {
  .mv-profile-content__store .flex-list {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.store-no-results {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  width: 100%;
  margin: 50px 0;
}

@media (min-width: 992px) {
  .store-no-results {
    margin: 70px 0;
  }
}

.store-no-results .small-text {
  font-weight: 400;
  font-size: 1.4rem;
  color: #737373;
  margin-top: 4px;
}

.pics-container__loader-wrapper {
  position: absolute;
  left: 50%;
  top: 200px;
  background: #fff;
  border-radius: 50%;
  padding: 14px;
  font-size: 30px;
  color: #000;
  display: none;
  z-index: 2000;
  opacity: 0.5;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Safari */
  transform: translate(-50%, -50%);
}

.pics-container__loader-wrapper img {
  height: 32px;
  width: 42px;
}

.pics-container__masonry {
  background: white;
  padding: 0;
  margin-bottom: 20px;
  width: 100%;
}

.pics-container__masonry:after {
  content: "";
  display: block;
  clear: both;
}

@media (min-width: 992px) {
  .pics-container__masonry {
    margin-top: 22px;
  }
}

.pics-container__grid-sizer {
  width: calc(33.33% - 2px);
  margin: 1px;
  float: left;
  position: absolute;
}

@media screen and (min-width: 576px) {
  .pics-container__grid-sizer {
    width: calc(33.33% - 10px);
    margin: 5px;
  }
}

@media screen and (min-width: 768px) {
  .pics-container__grid-sizer {
    width: calc(33.33% - 2%);
    margin: 10px 1%;
  }
}

.pics-container__brick {
  width: calc(33.33% - 2px);
  margin: 1px;
  float: left;
  position: relative;
  overflow: hidden;
}

.pics-container__brick:nth-child(3n) {
  margin-right: 0;
}

.pics-container__brick:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (min-width: 576px) {
  .pics-container__brick {
    width: calc(33.33% - 10px);
    margin: 5px;
  }
}

@media screen and (min-width: 768px) {
  .pics-container__brick {
    width: calc(33.33% - 2%);
    height: auto;
    padding-bottom: 0;
    margin: 10px 1%;
  }
}

.pics-container__brick.texty {
  background: #d8d6d2;
  padding: 10px;
}

.pics-container__brick img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .pics-container__brick img {
    max-width: 100%;
    -o-object-fit: none;
       object-fit: none;
    position: static;
  }
}

.pics-container__brick-crush {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .pics-container__brick-crush {
    top: 50%;
  }
}

.pics-container__brick-crush i.crush-only-icon {
  height: 32px;
  width: 32px;
}

.pics-container__brick-crush p {
  display: none;
}

@media screen and (min-width: 768px) {
  .pics-container__brick-crush p {
    font-size: 13px;
    font-weight: 600;
    display: block;
  }
}

.pics-container__brick-link {
  background: transparent;
  font-size: 11px;
  color: white;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

@media (min-width: 768px) {
  .pics-container__brick-link {
    font-size: 13px;
    padding-top: 0;
    height: auto;
  }
}

.pics-container__brick-link.selected {
  opacity: 0.5;
}

.pics-container__brick-link .crush-only-icon.own-profile {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  z-index: 1;
}

@media (min-width: 992px) {
  .pics-container__brick-link .crush-only-icon.own-profile {
    bottom: 35px;
  }
}

.pics-container__brick-footer {
  width: 100%;
  margin: 0;
  padding: 0 2px;
  color: #333;
  overflow: hidden;
  font-size: 9px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

.pics-container__brick-footer p {
  color: #737373;
}

.pics-container__brick-footer p, .pics-container__brick-footer a {
  font-weight: 500;
}

@media screen and (min-width: 576px) {
  .pics-container__brick-footer {
    font-size: 12px;
    padding: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .pics-container__brick-footer {
    padding: 5px;
    background-color: transparent;
    height: 25px;
    position: static;
  }
}

.pics-container__brick-footer p {
  display: none;
}

@media (min-width: 768px) {
  .pics-container__brick-footer p {
    margin: 0;
    display: block;
  }
}

.pics-container__brick-select-image {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px;
  height: 20px;
  width: 20px;
  background-color: #2196F3;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  z-index: 5;
}

@media (min-width: 992px) {
  .pics-container__brick-select-image {
    display: none;
  }
}

.pics-container__brick-select-image .icon {
  display: none;
  line-height: 16px;
  font-size: 12px !important;
}

.pics-container__brick-select-image.selected {
  display: block;
}

.pics-container__brick-select-image.selected .icon {
  display: block;
}

@media (min-width: 992px) {
  .pics-container__brick:hover .pics-container__brick-select-image {
    display: block;
  }
}

.mv-profile-content__pics {
  position: relative;
}

@media (min-width: 992px) {
  .mv-profile-content__pics .profile-header {
    display: none;
  }
}

.pics-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 12px;
}

.pics-edit + .profile-header {
  display: block;
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .pics-edit + .profile-header {
    margin: 16px 0 16px 1%;
  }
}

@media (min-width: 992px) {
  .pics-edit + .profile-header + #photos .pics-container__masonry {
    margin-top: 0;
  }
}

.pics-edit__main-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #2196F3;
}

@media (min-width: 992px) {
  .pics-edit__main-controls {
    color: #fff;
  }
}

@media (min-width: 992px) {
  .pics-edit__main-controls .pics-upload {
    width: 85px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px 0 !important;
    font-size: 12px;
    font-weight: 500;
  }
}

.pics-edit__main-controls a {
  margin-left: 10px;
}

.pics-edit__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 25%;
  padding-right: 25%;
  visibility: hidden;
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 14;
  height: 63px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}

@media (min-width: 992px) {
  .pics-edit__controls {
    position: static;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    height: auto;
    background-color: transparent;
    padding: 0;
    border-top: 0 none;
    visibility: visible;
  }
}

.pics-edit__controls a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pics-edit__controls .counter {
  padding-left: 5px;
}

.pics-edit__file-uploader {
  display: inline-block;
}

.pics-edit__cancel {
  color: #737373;
}

.pics-edit__delete {
  position: relative;
}

.pics-edit__delete-cancel {
  line-height: normal !important;
}

.pics-edit__delete-unselect, .pics-edit__delete-cancel {
  background-color: #fff;
  border: 1px solid #BBBBBB;
  color: #737373;
  width: 85px;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 0 !important;
  font-size: 12px;
  font-weight: 500;
}

.pics-edit__delete-unselect:hover, .pics-edit__delete-unselect:focus, .pics-edit__delete-cancel:hover, .pics-edit__delete-cancel:focus {
  color: #fff;
  background: #BBBBBB;
}

.pics-edit__delete-picture {
  color: #fff;
  background: #E04639;
  width: 85px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 0 !important;
  font-size: 12px;
  font-weight: 500;
  margin-left: 18px;
}

.pics-edit__delete-picture:hover, .pics-edit__delete-picture:focus {
  color: #fff;
  background: #f54337;
}

.pics-edit__delete-picture.disabled {
  background: #BBBBBB;
  cursor: default;
  pointer-events: none;
}

.pics-edit__delete-picture.disabled:hover, .pics-edit__delete-picture.disabled:focus {
  background: #A4A4A4;
}

.pics-edit__delete-popup {
  text-align: center;
}

.pics-edit__delete-popup .modal-content {
  background: #fff;
  padding: 32px 30px;
  z-index: 10;
  display: block;
}

@media (min-width: 576px) {
  .pics-edit__delete-popup .modal-dialog {
    min-width: 0;
    max-width: 360px;
  }
}

.pics-edit__delete-popup h2 {
  margin: 11px 0 15px;
}

.pics-edit__upload {
  text-align: left;
}

.pics-edit__upload-content {
  max-width: 360px;
}

.pics-edit__upload-content ol {
  padding: 0 10px !important;
}

.pics-edit__upload-content li {
  line-height: 24px;
  padding-bottom: 15px;
}

.pics-edit__upload-content input[type="text"] {
  border: none !important;
  border-bottom: 1px solid #BBBBBB !important;
  width: 100%;
}

.pics-edit__upload-content [data-upload*="slide"] {
  display: none;
}

.pics-edit__upload-content [data-upload*="slide"].-is-active {
  display: block;
}

.pics-edit__upload-content .modal-close {
  border-radius: 50%;
  line-height: 27px;
  display: block;
  width: 14px;
  height: 14px;
  font-size: 32px;
  text-align: center;
  color: white;
}

@media (min-width: 992px) {
  .pics-edit__upload-content .modal-close {
    line-height: 14px;
    display: block;
    font-size: 14px;
  }
}

.pics-edit__upload-content .modal-body a {
  font-weight: 500;
}

.pics-edit__upload-mask {
  width: 100%;
  height: 320px;
  background-color: #a1aacc0f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .pics-edit__upload-mask {
    width: 280px;
  }
}

.pics-edit__upload-placeholder {
  opacity: 0.4;
}

.pics-edit__upload-placeholder .upload-pic-icon {
  background-image: url("https://cdn3.manyvids.com/site_files/images/icons/nav_pics.svg");
  width: 200px;
  height: 200px;
}

.pics-edit__upload-thumbnail {
  margin: 0;
  overflow: hidden;
}

.pics-edit__upload-thumbnail img {
  max-width: 280px;
}

.pics-edit__upload-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pics-edit__upload-footer .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pics-edit__upload-footer .control--checkbox {
  margin-top: 20px;
}

.pics-edit__upload-footer .control__indicator {
  padding-left: 5px;
  font-size: 12px;
}

.pics-edit__upload-note {
  font-size: 12px;
  font-style: italic;
}

.pics-edit .upload-list {
  text-align: center;
}

.pics-edit .qq-upload-status-text-selector {
  margin-top: 10px;
}

.pics-edit .qq-thumbnail-selector {
  display: none;
}

.pics-edit .qq-upload-list-selector {
  display: none;
}

.pics-edit .qq-total-progress-bar-container {
  display: none;
}

.pics-edit .qq-upload-button-selector {
  display: block;
  line-height: 13px;
}

@media (min-width: 992px) {
  .pics-edit .qq-upload-button-selector {
    font-size: 12px;
  }
}

.pics-edit .qq-upload-button-hover {
  background: #fff;
}

.pics-edit .qq-progress-bar-container-selector {
  margin: 20px 35% 0;
}

.pics-edit .qq-progress-bar-container-selector .progress {
  height: 12px;
  border-radius: 16px;
}

.pics-edit .qq-progress-bar-container-selector .progress .progress-bar {
  background-color: #31B49E !important;
}

.pics-edit .qq-upload-list-selector {
  padding: 25px 35% 0px;
}

.pics-edit .qq-upload-list-selector li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
  padding: 0;
}

.pics-edit .qq-upload-list-selector li.alert-success {
  display: contents;
  height: 12px;
  width: 80px;
  border-radius: 16px;
  background-color: #E6E6E6;
}

.pics-edit .qq-upload-list-selector li.alert-success:before {
  content: '';
}

.mv-model-contest {
  grid-area: model-contest;
  display: none;
  width: 100%;
  height: 67px;
  position: relative;
  top: -1.2rem;
  padding: 15px 16px 8px 18px;
  background: #101010;
  border-radius: 0 0 16px 16px;
  margin: 0 0 16px;
  color: #FFFFFF;
  grid-template-areas: "contest-text context-vote" "contest-name context-vote";
  grid-template-columns: auto 40px;
  grid-template-rows: 22px 22px;
}

@media (min-width: 992px) {
  .mv-model-contest {
    display: grid;
  }
}

.no-contest .mv-model-contest {
  display: none;
}

.mv-model-contest__quote {
  text-align: left;
}

.mv-model-contest__quote__cta {
  grid-area: contest-text;
}

.mv-model-contest__quote__name {
  font-weight: bold;
  font-weight: contest-name;
}

.mv-model-contest__vote {
  width: 40px;
  height: 40px;
  opacity: 1;
  display: inline-block;
  background: transparent linear-gradient(135deg, #4F53EE 0%, #A94AF7 100%) 0 0 no-repeat padding-box;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  font: normal normal bold 10px/40px Roboto;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 50%;
}

.mv-model-contest__vote a {
  color: #FFFFFF;
}

.mv-publications {
  grid-area: mv-publications;
  margin: 2.2rem 0;
}

.mv-publications__block {
  margin: 0;
}

@media (min-width: 992px) {
  .mv-publications__block {
    margin-top: 48px;
  }
}

.mv-publications__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.mv-publications__container .mv-mag .profile-header {
  display: none;
}

.mv-publications__container .mv-blog .profile-header {
  display: none;
}

.mv-publications__container .mv-mag__block {
  margin-top: 0;
}

.mv-publications__container .mv-blog__block {
  margin-top: 0;
}

.mv-mag {
  grid-area: mv-mag;
}

.mv-mag__block {
  margin: 2.2rem 0;
}

.mv-mag__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0.2rem;
}

@media (min-width: 992px) {
  .mv-mag__container {
    grid-column-gap: 0.5rem;
  }
}

.mv-mag__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  background-clip: border-box;
  border: 0px solid #e0e0e0;
  border-radius: 0.25rem;
}

.mv-mag__card-image {
  margin-bottom: 0;
  min-height: 230px;
}

@media (min-width: 1200px) {
  .mv-mag__card-image {
    height: 254px;
  }
}

.mv-mag__card-pic-fit {
  background-size: cover;
  height: auto;
  max-height: 100%;
  width: 100%;
}

.mv-mag__card-info {
  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-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 100px;
  padding-top: 1.4rem;
}

.mv-mag__card-info h3 {
  color: #A4A4A4;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: 0;
}

.mv-mag__card-info h2 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-top: 0.7rem;
  margin-bottom: 0.8rem;
}

.mv-mag__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
}

.mv-blog {
  grid-area: mv-blog;
}

.mv-blog__block {
  margin: 2.2rem 0;
}

.mv-blog__container {
  height: auto;
  overflow: visible;
}

.mv-blog__card {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  background-color: transparent;
  background-clip: border-box;
  border: 0px solid #e0e0e0;
  border-radius: 0.25rem;
  margin-bottom: calc((1.4rem * 3) / 2);
}

.mv-blog__card-image {
  margin-bottom: 0;
}

.mv-blog__card-pic-fit {
  -o-object-fit: contain;
     object-fit: contain;
  background-size: cover;
  height: 400px;
  width: 100%;
}

.mv-blog__card-info {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 150px;
  padding-top: 1.4rem;
}

.mv-blog__card-info h3 {
  color: #373a3c;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.3px;
  line-height: 2.1rem;
  text-align: center;
  margin-bottom: 0;
}

.mv-blog__card-info h2 {
  color: #A5A5A5;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6rem;
  margin: 0.8rem 0;
}

.mv-blog__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #A5A5A5;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4rem;
  margin-top: 1.6rem;
}

.mv-blog__card-meta span {
  margin-right: 1.6rem;
  color: #A5A5A5;
}

.mv-member-purchase-history .mv-submenu {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mv-member-purchase-history .mv-submenu__dropdown {
  padding: 13px 0;
}

@media (min-width: 992px) {
  .mv-member-purchase-history .mv-submenu__dropdown select {
    padding-right: 15px;
  }
}

.mv-member-purchase-history .mv-submenu__dropdown .nice-select .list {
  min-width: 0;
}

.mv-member-purchase-history__list {
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .mv-member-purchase-history__list {
    margin: 25px 12px 0;
  }
}

.mv-member-purchase-history__list__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 10px;
  font-size: 12px;
  color: #000;
}

@media (min-width: 992px) {
  .mv-member-purchase-history__list__row {
    font-size: 14px;
  }
}

.mv-member-purchase-history__list__row:nth-child(odd) {
  background-color: rgba(33, 150, 243, 0.08);
}

.mv-member-purchase-history__list__row.-title {
  padding: 0 10px 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #ffffff;
  font-weight: 500;
}

.mv-member-purchase-history__list__row.-title .-desktop {
  display: none;
}

@media (min-width: 992px) {
  .mv-member-purchase-history__list__row.-title .-desktop {
    display: inline-block;
  }
}

.mv-member-purchase-history__list__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.mv-member-purchase-history__list__column.-item {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0px;
          flex: 2 1 0;
  font-weight: 500;
  margin-right: 5px;
}

.mv-member-purchase-history__list__column.-item:not(a) {
  color: #000;
}

.mv-member-purchase-history__list__column.-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #737373;
}

.-title .mv-member-purchase-history__list__column.-type {
  color: #000;
}

@media (min-width: 992px) {
  .mv-member-purchase-history__list__column.-type {
    display: inline-block;
    text-align: center;
  }
}

.mv-member-purchase-history__list__column.-date {
  text-align: center;
  color: #737373;
}

.-title .mv-member-purchase-history__list__column.-date {
  color: #000;
}

.mv-member-purchase-history__list__column.-price {
  text-align: right;
  font-weight: 500;
}

.mv-member-purchase-history__list__column.-price.-promo {
  color: #ff4081;
}

.mv-member-purchase-history__total-earned {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.new-cummers {
  display: none;
  margin-top: 48px;
}

@media (min-width: 992px) {
  .new-cummers {
    display: block;
  }
}

.new-cummers__list {
  width: 100%;
}

.new-cummers__model {
  width: 24%;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

.new-cummers__picture {
  width: 70px !important;
  height: 70px !important;
  margin: 0 5px 5px;
}

.-live .new-cummers__picture {
  font-size: 9px;
}

.-live .new-cummers__picture:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: 'Live';
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: normal;
  font-weight: bold;
  color: #fff;
  background-color: #ff4081;
  z-index: 1;
  overflow: hidden;
  height: 14px;
  padding: 4px 0;
}

.new-cummers__name {
  display: block;
  width: 70px;
  margin: 0 5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #373a3c;
  font-size: 13px;
}

.-live .new-cummers__name {
  color: #ff4081;
}

.new-cummers__follow {
  position: absolute;
  right: 6px;
  top: 53px;
  width: 16px !important;
  height: 16px;
  background: #ffffff;
  padding: 1px;
  z-index: 1;
  line-height: 15px;
  border-radius: 50%;
  display: none;
}

.new-cummers__follow span {
  border: 1px solid;
  border-radius: 50%;
  display: inline-block;
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mv-top-tags {
  margin-top: 32px;
}

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

.mv-top-tags__item a {
  width: auto;
  color: #ffffff;
  margin: -6px 5px 5px 0;
  font-size: 12px;
  color: #4690CF;
  display: inline-block;
  background-color: rgba(33, 150, 243, 0.15);
  padding: .15rem 1.4rem .075rem;
  border-radius: .2rem;
}

.mv-profile-content__library .flex-list.own-profile .item-card {
  overflow: hidden;
}

.mv-profile-content__library .item-card .ctn-profile-info {
  padding: 8px 0;
}

.mv-profile-content__library .item-card .ctn-profile-info .pic-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 3px solid #fff;
}

.mv-profile-content__library .item-card .ctn-profile-info h5 a {
  font-size: 12px;
  color: #a5a5a5;
  font-weight: 500;
}

.mv-profile-content__library .item-card .ctn-profile-info .profile-thumb {
  margin-right: 13px;
  margin-top: -30px;
}

.mv-profile-content__library .item-card .ctn-item-title {
  margin-top: 0;
}

.mv-profile-content__library .suggested-list {
  margin: 0;
}

@media (min-width: 992px) {
  .mv-profile-content__library .suggested-list {
    margin: 0 12px;
  }
}

.mv-profile-content__library .suggested-list .scroll-wrapper {
  margin-top: 14px;
}

@media (min-width: 992px) {
  .mv-profile-content__library .suggested-list .scroll-wrapper {
    border-bottom: 2px solid #e0e0e0;
  }
  .mv-profile-content__library .suggested-list .scroll-wrapper:last-of-type {
    border-bottom: 0 none;
  }
}

.mv-profile-content__library .suggested-list .scroll-wrapper .-video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 303px;
          flex: 0 0 303px;
  margin: 0 12px;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .-video:first-of-type {
  margin-left: 0;
}

@media (min-width: 992px) {
  .mv-profile-content__library .suggested-list .scroll-wrapper .-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100%/3) - 16px);
            flex: 0 0 calc((100%/3) - 16px);
  }
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-y {
  display: none !important;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x {
  width: 32px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x.scroll-arrow_less, .mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x.scroll-arrow_more {
  background-image: none;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x.scroll-arrow_less::after, .mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x.scroll-arrow_more::after {
  content: '';
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: rgba(55, 58, 60, 0.7) url("https://cdn3.manyvids.com/site_files/images/icons/arrow-down-white.svg") center center no-repeat;
  background-size: 9px 9px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-position: 3px 4px;
}

.mv-profile-content__library .suggested-list .scroll-wrapper .scroll-arrow.scroll-x.scroll-arrow_more::after {
  -webkit-transform: translate(-50%, -50%) rotate(270deg);
          transform: translate(-50%, -50%) rotate(270deg);
  background-position: 3px 4px;
}

.mv-profile-content__library .suggested-list__header {
  margin: 16px 0 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline-block;
}

@media (min-width: 992px) {
  .mv-profile-content__library .suggested-list__header {
    margin: 32px 0 0;
  }
}

.mv-profile-content__library .suggested-list__header .quotes::before {
  content: '"';
  display: inline-block;
  color: #373a3c;
  margin-right: 2px;
}

.mv-profile-content__library .suggested-list__header .quotes::after {
  content: '",';
  display: inline-block;
  color: #373a3c;
  margin-left: 2px;
}

.mv-profile-content__library .suggested-list__header .quotes:last-of-type::after {
  content: '"';
}

.mv-profile-content__library .suggested-list .no-content {
  margin: 67px 0;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 1366px) {
  .mv-profile-content__library .suggested-list .no-content {
    margin: 102px 109px;
  }
}

.mv-profile-content__library .card-body,
.mv-profile-content__library .card-footer {
  position: relative;
  z-index: 15;
}

.mv-profile-content__library .display-option-all {
  font-weight: 400;
}

@media (min-width: 992px) {
  .mv-about {
    margin: 32px 12px 0;
  }
}

.mv-about__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

@media (min-width: 992px) {
  .mv-about__banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mv-about__banner-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: -4px;
}

@media (min-width: 992px) {
  .mv-about__banner-toggle {
    position: static;
    top: -8px;
  }
}

.mv-about__banner-subtitle {
  margin: 1rem 0 1rem 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #373a3c;
}

@media (min-width: 992px) {
  .mv-about__banner-subtitle {
    display: none;
  }
}

.mv-about__banner-pic {
  margin-right: 3.3rem;
  display: none;
}

@media (min-width: 992px) {
  .mv-about__banner-pic {
    display: block;
  }
}

.mv-about__banner-name {
  font-size: 1.8rem;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: none;
}

@media (min-width: 992px) {
  .mv-about__banner-name {
    display: block;
  }
}

.mv-about__banner-name.-is-live {
  color: #ff4081;
}

.mv-about__banner-social {
  -webkit-transition: -webkit-filter ease 0.5s;
  transition: -webkit-filter ease 0.5s;
  transition: filter ease 0.5s;
  transition: filter ease 0.5s, -webkit-filter ease 0.5s;
  margin-top: 13px;
}

.mv-about__banner-social .is-disabled {
  color: currentColor;
  display: inline-block;
  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}

.mv-about__banner-social .is-disabled .icon {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.45;
}

.mv-about__banner-social a {
  display: inline-block;
  width: 32px;
  margin: 0 6px 6px 0;
}

@media (min-width: 992px) {
  .mv-about__banner-social a {
    margin: 0 8px 0 0;
    width: 24px;
  }
}

.mv-about__banner-social .icon {
  border-radius: 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
}

@media (min-width: 992px) {
  .mv-about__banner-social .icon {
    width: 24px;
    height: 24px;
  }
}

.mv-about__banner-info {
  color: #373a3c;
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.mv-about__banner-info .separator::before {
  content: "|";
  margin: 0 1rem 0 1rem;
  display: inline-block;
}

.mv-about__container {
  margin-top: 16px;
}

@media (min-width: 992px) {
  .mv-about__container {
    margin-top: 32px;
  }
}

.mv-about__container .form-control:hover::after {
  width: 100%;
}

.mv-about__container input {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 8px 14px;
  margin-bottom: 5px;
  max-width: 100%;
  line-height: 1.25;
}

.mv-about__container input.form-control:focus {
  border-color: #BBBBBB;
}

.mv-about__container input.form-control::-webkit-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-about__container input.form-control::-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-about__container input.form-control::-ms-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-about__container input.form-control::placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-style: italic;
}

.mv-about__container select {
  margin-bottom: 5px;
}

.mv-about__container__description textarea {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: .3rem;
  padding: 1.25rem 1.4rem;
  width: 100%;
  line-height: 1.25;
  font-size: 1.4rem;
  color: #737373;
}

.mv-about__container__description textarea:focus {
  border-color: #BBBBBB;
}

.mv-about__container__description p {
  line-height: 1.72;
}

.mv-about__container__description p:last-of-type {
  margin-bottom: 0;
}

.mv-about__container__info {
  color: #373a3c;
  font-size: 1.2rem;
  margin: 1.6rem 0 0;
}

.mv-about__container__info .separator::before {
  content: "|";
  margin: 0 1rem 0 1rem;
  display: inline-block;
}

.mv-about__container__details {
  margin-top: 32px;
}

.mv-about__container__details h3 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 992px) {
  .mv-about__container__details h3 {
    display: none;
  }
}

.mv-about__container__details__list {
  padding: 0;
  list-style-type: none;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 1.5rem;
}

.mv-about__container__details__list-unit {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 2.2rem;
}

.mv-about__container__details__list-unit:nth-child(2n) {
  margin-right: 0;
}

@media (min-width: 992px) {
  .mv-about__container__details__list-unit {
    width: 22%;
    margin-right: 4%;
  }
  .mv-about__container__details__list-unit:nth-child(2n) {
    margin-right: 4%;
  }
  .mv-about__container__details__list-unit:nth-child(4n) {
    margin-right: 0;
  }
}

.mv-about__container__details__list-unit .form-control {
  line-height: 16px;
  height: auto !important;
  color: #BBBBBB;
  font-style: italic;
}

.mv-about__container__details__list-unit input[type=text] {
  color: #BBBBBB;
}

.mv-about__container__details__list-unit .nice-select {
  padding: 5px 7px 9px 0;
  color: #BBBBBB;
  margin-bottom: 15px;
}

.mv-about__container__details__list-unit .nice-select::after {
  -webkit-filter: grayscale(100%) invert(20%) sepia(6%) saturate(402%) hue-rotate(161deg) brightness(95%) contrast(90%);
          filter: grayscale(100%) invert(20%) sepia(6%) saturate(402%) hue-rotate(161deg) brightness(95%) contrast(90%);
}

.mv-about__container__details__list-label {
  display: inherit;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.mv-about__container__details__list-label .heart.xsmall {
  width: 1.3rem !important;
  height: 1.1rem !important;
  position: relative;
  top: -1px;
  margin: 0 1px;
}

.mv-about__container__details__list-label .heart.xsmall.active {
  width: 1.4rem !important;
  height: 1.18rem !important;
  top: -2px;
}

.mv-about__container__details__list-info {
  font-weight: 500;
  font-size: 1.4rem;
  color: #373a3c;
  margin-bottom: 0.6rem;
}

.mv-about__container__details__list-info.-country .flag {
  margin-left: 10px;
}

.mv-about__container__details__list-info a {
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 45vw;
}

@media (min-width: 768px) {
  .mv-about__container__details__list-info a {
    width: auto;
    max-width: 250px;
  }
}

.mv-about__container__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv-about__container__actions button {
  margin-left: 20px;
  padding: 0 !important;
  width: 85px;
  height: 30px;
  line-height: 30px;
  font-size: 1.2rem;
  font-weight: 500;
}

.mv-about__container__actions button:first-of-type {
  margin-left: 0;
}

.mv-about__container__actions button.cancel {
  color: #737373;
  border-color: #a5a5a5;
}

.vid-edit__delete-popup .modal-content {
  padding: 18px 0;
}

.vid-edit__delete {
  background-color: #e04639;
  color: #fff;
  font-size: 12px;
}

.vid-edit__delete:hover, .vid-edit__delete:focus, .vid-edit__delete:active {
  opacity: 0.75;
  color: #fff;
}

.vid-edit__delete-cancel {
  border: 1px solid #e0e0e0 !important;
  font-size: 12px;
  color: #737373;
}

.vid-edit__delete-cancel:hover, .vid-edit__delete-cancel:focus, .vid-edit__delete-cancel:active {
  opacity: 0.75;
  color: #737373;
}

input.invalid,
textarea.invalid {
  border: 1px solid red;
}

input:focus.invalid,
textarea:focus.invalid {
  outline: none;
}
