@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://fonts.googleapis.com/css?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
/* Model card colors */
.theme-cams--light .CamsViewer__FavoritePromptPopover {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__FavoritePromptPopover__arrow {
    border-bottom: 10px solid rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__FavoritePromptPopover__favorite {
    color: white; }

.CamsViewer__FavoritePromptPopover {
  width: 250px;
  background: rgba(var(--FALLBACK, 22, 24, 51), 0.8);
  padding: 10px;
  position: absolute;
  font-size: 14px;
  color: #cd264f;
  top: 55px;
  left: 0;
  text-align: center;
  border-radius: 10px;
  cursor: initial; }
  .CamsViewer__FavoritePromptPopover p {
    margin: 2px 0;
    line-height: 20px; }
  .CamsViewer__FavoritePromptPopover__arrow {
    position: absolute;
    top: -10px;
    left: 12px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(var(--FALLBACK, 22, 24, 51), 0.8); }
  .CamsViewer__FavoritePromptPopover__close {
    font-size: 20px !important;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: white; }
  .CamsViewer__FavoritePromptPopover__cta {
    color: white; }
  .CamsViewer__FavoritePromptPopover__favorite {
    font-size: 20px !important;
    vertical-align: middle;
    margin-right: 0 !important;
    color: #cd264f; }

/* Model card colors */
@-webkit-keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@-webkit-keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

@keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

.border-ripple-white {
  animation: border-ripple-white 0.6s linear 1; }

.border-ripple-rainbow {
  animation: border-ripple-rainbow 0.6s linear 1; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.animation-rotate {
  animation: rotate 2s linear infinite; }

@keyframes wiggle {
  0% {
    transform: rotate(10deg); }
  25% {
    transform: rotate(-10deg); }
  50% {
    transform: rotate(20deg); }
  75% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.animation-wiggle {
  animation: wiggle 1s ease-in-out; }

@keyframes rainbowColor {
  0% {
    background-color: #f966a2 !important; }
  20% {
    background-color: #cb40ec !important; }
  40% {
    background-color: #00fdad !important; }
  60% {
    background-color: #e8f864 !important; }
  80% {
    background-color: #ff9000 !important; }
  100% {
    background-color: #f86464 !important; } }

@keyframes jumpJump {
  0% {
    transform: scale(1, 1) translateY(0); }
  2% {
    transform: scale(1.1, 0.9) translateY(0); }
  3% {
    transform: scale(0.9, 1.1) translateY(-25px); }
  3.5% {
    transform: scale(1, 1) translateY(0); }
  100% {
    transform: scale(1, 1) translateY(0); } }

.animation-rainbow {
  animation: rainbowColor 5s linear infinite; }

.theme-cams--light .ActionButtons__button--blue {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

.theme-cams--light .ActionButtons__down-arrow {
  border-top-color: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

/*-------linear-gradient-------*/
/*-----------------------------*/
.BottomButtons {
  width: 100%;
  height: 48px;
  padding-top: 3px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: flex-end;
  z-index: 100;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important; }

.BottomButton {
  display: flex;
  flex-direction: row;
  flex: 1;
  border-radius: 3px;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  margin-right: 3px; }
  .BottomButton:active {
    transform: translateY(1px); }
  .BottomButton--yellow {
    background: #cd264f;
    background: -webkit-linear-gradient(90deg, #cd264f 0%, #ef951b 100%);
    background: linear-gradient(0deg, #cd264f 0%, #ef951b 100%); }
  .BottomButton--blue {
    background: #1b224b;
    background: -webkit-linear-gradient(0deg, #1b224b 0%, #181b3b 100%);
    background: linear-gradient(90deg, #1b224b 0%, #181b3b 100%); }
  .BottomButton--orange {
    background: #ef951b;
    background: -webkit-linear-gradient(0deg, #ef951b 0%, #cd264f 100%);
    background: linear-gradient(90deg, #ef951b 0%, #cd264f 100%); }
  .BottomButton--pink {
    background: #ff62ee;
    background: -webkit-linear-gradient(0deg, #ff62ee 0%, #c70808 100%);
    background: linear-gradient(90deg, #ff62ee 0%, #c70808 100%); }
  .BottomButton--green {
    background: #55d604;
    background: -webkit-linear-gradient(0deg, #55d604 0%, #117e91 100%);
    background: linear-gradient(90deg, #55d604 0%, #117e91 100%); }
  .BottomButton--lilac {
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
  .BottomButton__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    fill: white;
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease; }
    .BottomButton__icon img {
      margin-left: -2px;
      width: 24px;
      height: 24px; }
    .BottomButton__icon--small {
      fill: white;
      width: 15px;
      height: 15px; }
    .BottomButton__icon--head {
      margin-right: 10px; }
    .BottomButton__icon--circle {
      border-radius: 50%;
      background: whitesmoke;
      box-shadow: inset 2px 1px 2px gray;
      height: 34px;
      width: 34px; }
    .BottomButton__icon--cobrand {
      fill: var(--COLOR_BUTTONS_TEXT); }
  .BottomButton__tooltip {
    display: none;
    position: absolute;
    background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
    padding: 15px;
    min-width: 100px;
    max-width: 200px;
    text-align: center;
    color: rgba(var(--COLOR_PRIMARY_TEXT_RGB, 255, 255, 255), 0.8);
    bottom: 75px;
    font-size: 14px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity ease 0.2s;
    z-index: 1000;
    font-family: Lato, sans-serif;
    white-space: nowrap; }
    .BottomButton__tooltip-triangle {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 10px);
      background-color: transparent;
      width: 0;
      height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 10px solid rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8); }
    .BottomButton__tooltip-token {
      width: 14px;
      height: 14px;
      margin-right: 2px; }
    @media (max-width: 959px) {
      .BottomButton__tooltip {
        bottom: 60px; } }
  .BottomButton:last-child {
    margin-right: 0; }
  .BottomButton--hover .BottomButton__tooltip, .BottomButton:hover .BottomButton__tooltip {
    display: block;
    opacity: 1; }
  .BottomButton--cobrand {
    background-color: var(--COLOR_BUTTONS_BACKGROUND);
    color: var(--COLOR_BUTTONS_TEXT); }
    .BottomButton--cobrand:hover {
      background-color: var(--COLOR_BUTTONS_HOVER); }

/* Model card colors */
/* Model card colors */
.theme-cams--light .CamsViewer__fanclub-list-item b {
  color: var(--COLOR_PRIMARY_BACKGROUND, #ef951b);
  font-weight: bold; }

.theme-cams--light .CamsViewer__fanclub-list-item .material-icons, .theme-cams--light .CamsViewer__terms-text {
  color: var(--COLOR_PRIMARY_BACKGROUND, #ef951b); }

.CamsViewer {
  /* add tokens */ }
  .CamsViewer__popover {
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    max-width: 100%;
    max-height: 100%; }
    @media screen and (orientation: landscape) and (max-width: 960px) {
      .CamsViewer__popover {
        width: 100%; } }
    @media (max-width: 959px) {
      .CamsViewer__popover {
        align-self: stretch; } }
    .CamsViewer__popover-title {
      font-size: 16px;
      color: var(--COLOR_PRIMARY_TEXT, white);
      text-align: center;
      margin-top: 0;
      margin-bottom: 20px; }
      @media (max-width: 959px) {
        .CamsViewer__popover-title {
          font-size: 12px; } }
    .CamsViewer__popover-container {
      position: absolute;
      left: 50%;
      transform: translate(-50%);
      display: none;
      bottom: 50px;
      transition: opacity 0.2s ease;
      padding-bottom: 30px; }
      @media (max-width: 959px) {
        .CamsViewer__popover-container {
          left: 70px;
          transform: translate(-55%);
          bottom: 35px;
          padding-bottom: 10px; } }
      .CamsViewer__popover-container--show {
        cursor: initial;
        display: block; }
      @media (max-width: 960px) {
        .CamsViewer__popover-container.privateChat {
          left: 0;
          transform: translate(-46%); }
          .CamsViewer__popover-container.privateChat .CamsViewer__popover {
            width: 90vw; } }
    .CamsViewer__popover-close {
      position: absolute !important;
      top: 0;
      right: 5px; }
      .CamsViewer__popover-close .material-icons {
        color: var(--COLOR_PRIMARY_TEXT, white) !important; }
    .CamsViewer__popover-subtitle {
      font-size: 14px;
      color: var(--COLOR_PRIMARY_TEXT, white);
      text-align: center;
      margin-top: 0;
      line-height: 30px; }
    .CamsViewer__popover-content {
      width: 100%; }
    .CamsViewer__popover--fan-club {
      width: 660px; }
    .CamsViewer__popover--Gift-Tip {
      width: 900px; }
    .CamsViewer__popover--privateChat {
      width: 660px; }
      .CamsViewer__popover--privateChat button {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%; }
        @media (max-width: 960px) {
          .CamsViewer__popover--privateChat button {
            width: auto; } }
      .CamsViewer__popover--privateChat .CamsViewer__popover-content {
        display: flex;
        justify-content: space-around; }
        @media (max-width: 960px) {
          .CamsViewer__popover--privateChat .CamsViewer__popover-content {
            flex-direction: column; } }
    .CamsViewer__popover--connexion {
      width: 380px; }
      .CamsViewer__popover--connexion .accessCode {
        height: 40px; }
      .CamsViewer__popover--connexion .connexionCode {
        height: 100%; }
    @media (max-width: 959px) {
      .CamsViewer__popover--fan-club, .CamsViewer__popover--Gift-Tip, .CamsViewer__popover--privateChat, .CamsViewer__popover--connexion {
        width: 100%; } }
  .CamsViewer__AddTokenPopover-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    .CamsViewer__AddTokenPopover-option-row > .cams-option-card {
      margin: 0; }
  .CamsViewer__terms-text {
    color: var(--COLOR_SECONDARY_LINK, #ef951b);
    font-size: 12px;
    text-align: center;
    cursor: pointer; }
  .CamsViewer__fanclub-list-item {
    color: var(--COLOR_PRIMARY_TEXT, white);
    align-items: center;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    line-height: 30px; }
    @media (max-width: 749px) {
      .CamsViewer__fanclub-list-item {
        align-items: flex-start; } }
    .CamsViewer__fanclub-list-item .material-icons {
      font-size: 16px;
      margin-right: 5px;
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
      @media (max-width: 749px) {
        .CamsViewer__fanclub-list-item .material-icons {
          line-height: 20px; } }
    .CamsViewer__fanclub-list-item > p {
      margin: 0; }
      @media (max-width: 749px) {
        .CamsViewer__fanclub-list-item > p {
          line-height: 20px; } }
      .CamsViewer__fanclub-list-item > p > span {
        margin: 0 2.5px; }
    .CamsViewer__fanclub-list-item b {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
      font-weight: normal;
      margin: 0 2.5px; }
  .CamsViewer__privateInvitation {
    position: absolute;
    bottom: 70px;
    background: none;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    width: auto;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    z-index: 999; }
    .CamsViewer__privateInvitation-arrow-down {
      position: absolute;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid rgba(255, 255, 255, 0.8);
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%); }
    .CamsViewer__privateInvitation .CamsViewer__popover {
      padding: 12px 10px;
      height: 40px;
      flex-direction: row;
      align-items: center; }
      .CamsViewer__privateInvitation .CamsViewer__popover p {
        margin: 0 !important;
        white-space: nowrap; }
    .CamsViewer__privateInvitation .CamsViewer__popover-close {
      position: initial !important;
      padding: 0; }
      .CamsViewer__privateInvitation .CamsViewer__popover-close .material-icons {
        font-size: 16px;
        color: black !important; }
    .CamsViewer__privateInvitation .CamsViewer__popover-title {
      color: black;
      font-size: 14px; }
    .CamsViewer__privateInvitation .CamsViewer__PrivateAcceptButton {
      height: 30px;
      margin: 0 10px; }
      .CamsViewer__privateInvitation .CamsViewer__PrivateAcceptButton button {
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: width 0.2s linear;
        padding-top: 0;
        padding-bottom: 0; }
      .CamsViewer__privateInvitation .CamsViewer__PrivateAcceptButton-Pricing {
        display: none; }
      .CamsViewer__privateInvitation .CamsViewer__PrivateAcceptButton:hover .CamsViewer__PrivateAcceptButton-Pricing {
        display: flex;
        margin-left: 5px; }

.showPriceToken {
  height: 15px; }

.CamsWheelOfFunSpinner-container {
  min-width: 280px;
  width: 280px;
  margin: 10px auto 30px auto;
  position: relative;
  border-radius: 100%;
  border: 5px solid white;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }
  @media screen and (orientation: landscape) and (max-width: 960px) {
    .CamsWheelOfFunSpinner-container {
      margin: 0 auto 0 auto; } }

.CamsWheelOfFunSpinner-arrow {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 110;
  top: 50%;
  margin-top: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid white;
  right: -2px; }

.CamsWheelOfFunSpinner-rotation-box {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
  background-color: #FFBB17; }

.CamsWheelOfFunSpinner-center-pin {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  border-radius: 100%; }

.CamsWheelOfFunSpinner-slice {
  transform-origin: bottom left;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background-color: blue;
  position: absolute; }
  .CamsWheelOfFunSpinner-slice .border-line {
    height: 100%;
    position: absolute;
    left: 0;
    transform: translateX(-0.5px);
    bottom: 0;
    width: 1px;
    background-color: white; }
  .CamsWheelOfFunSpinner-slice .slice-extension {
    background: inherit;
    height: inherit;
    width: 1000%;
    position: absolute;
    transform-origin: bottom left;
    bottom: 0;
    transform: rotate(30deg); }
  .CamsWheelOfFunSpinner-slice:last-child {
    background: linear-gradient(135deg, #FFBB17 50%, transparent 50%, transparent 100%); }

.CamsWheelOfFunSpinner-option-text-container {
  display: flex;
  text-align: center;
  width: 70%;
  position: absolute;
  bottom: -6.5px;
  padding-left: 20%;
  transform-origin: 0; }
  .CamsWheelOfFunSpinner-option-text-container > span {
    color: white;
    text-transform: uppercase;
    font-size: 12px; }

.CamsViewer__gameWheel__buttons {
  display: flex;
  flex-direction: column; }

.CamsViewer__gameWheel--landscape .CamsViewer__gameWheel__wheel,
.CamsViewer__gameWheel--landscape .CamsViewer__gameWheel__buttons {
  width: 50%;
  justify-content: center;
  align-items: center; }

.CamsViewer__gameWheel--landscape .CamsViewer__gameWheel__container {
  display: flex;
  flex-direction: row;
  width: 100%; }

.CamsViewer__gameWheel--landscape .CamsButton,
.CamsViewer__gameWheel--landscape .cams-button {
  width: 100% !important; }

.CamsViewer__gameWheel--landscape .CamsWheelOfFunSpinner-container {
  max-width: 30vw !important;
  width: 30vw !important;
  min-width: 30vw !important; }

.CamsViewer__gameWheel-arrow {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 110;
  top: 50%;
  margin-top: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid white;
  right: -2px; }

.CamsViewer__gameWheel-rotation-box {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
  background-color: #53777a; }

.CamsViewer__gameWheel-center-pin {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  border-radius: 100%; }

.CamsViewer__gameWheel-slice {
  transform-origin: bottom left;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background-color: blue;
  position: absolute; }
  .CamsViewer__gameWheel-slice .border-line {
    height: 100%;
    position: absolute;
    left: 0;
    transform: translateX(-0.5px);
    bottom: 0;
    width: 1px;
    background-color: white; }
  .CamsViewer__gameWheel-slice .slice-extension {
    background: inherit;
    height: inherit;
    width: 1000%;
    position: absolute;
    transform-origin: bottom left;
    bottom: 0;
    transform: rotate(30deg); }
  .CamsViewer__gameWheel-slice:last-child {
    background: linear-gradient(135deg, #53777a 50%, transparent 50%, transparent 100%); }

.CamsViewer__gameWheel-option-text-container {
  display: flex;
  text-align: center;
  max-width: 75%;
  position: absolute;
  bottom: -6.5px;
  padding-left: 2vw;
  transform-origin: 0; }
  .CamsViewer__gameWheel-option-text-container > span {
    color: white;
    text-transform: uppercase;
    font-size: 12px; }

.CamsViewer__gameWheel .cams-button {
  width: 280px; }
  .CamsViewer__gameWheel .cams-button[disabled] {
    cursor: default; }

.CamsWheelOfFunSpinner-container {
  min-width: 280px;
  width: 280px;
  margin: 10px auto 30px auto;
  position: relative;
  border-radius: 100%;
  border: 5px solid white;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }
  @media screen and (orientation: landscape) and (max-width: 960px) {
    .CamsWheelOfFunSpinner-container {
      margin: 0 auto 0 auto; } }

.CamsWheelOfFunSpinner-arrow {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 110;
  top: 50%;
  margin-top: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid white;
  right: -2px; }

.CamsWheelOfFunSpinner-rotation-box {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
  background-color: #FFBB17; }

.CamsWheelOfFunSpinner-center-pin {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  border-radius: 100%; }

.CamsWheelOfFunSpinner-slice {
  transform-origin: bottom left;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background-color: blue;
  position: absolute; }
  .CamsWheelOfFunSpinner-slice .border-line {
    height: 100%;
    position: absolute;
    left: 0;
    transform: translateX(-0.5px);
    bottom: 0;
    width: 1px;
    background-color: white; }
  .CamsWheelOfFunSpinner-slice .slice-extension {
    background: inherit;
    height: inherit;
    width: 1000%;
    position: absolute;
    transform-origin: bottom left;
    bottom: 0;
    transform: rotate(30deg); }
  .CamsWheelOfFunSpinner-slice:last-child {
    background: linear-gradient(135deg, #FFBB17 50%, transparent 50%, transparent 100%); }

.CamsWheelOfFunSpinner-option-text-container {
  display: flex;
  text-align: center;
  width: 70%;
  position: absolute;
  bottom: -6.5px;
  padding-left: 20%;
  transform-origin: 0; }
  .CamsWheelOfFunSpinner-option-text-container > span {
    color: white;
    text-transform: uppercase;
    font-size: 12px; }

/* Model card colors */
.theme-cams--light .dialog--Viewer--Popover .dialog__container {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

@media (max-width: 959px) {
  .theme-cams--light .dialog--Viewer--Popover {
    background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .dialog--Viewer--Popover .dialog__container {
    background: none; } }

.dialog__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1210; }

.dialog--Viewer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  z-index: 110;
  top: 0; }
  .dialog--Viewer--Popover {
    z-index: 100; }
    @media (max-width: 959px) {
      .dialog--Viewer--Popover {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.92);
        z-index: 1300; } }
    .dialog--Viewer--Popover .dialog__container {
      position: relative;
      bottom: 0;
      background: none;
      height: auto;
      background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.92);
      padding: 30px;
      width: 100%;
      max-width: 100%;
      max-height: 100%; }
      @media (max-width: 959px) {
        .dialog--Viewer--Popover .dialog__container {
          background: none;
          position: static;
          bottom: auto;
          left: 0;
          width: 100%; } }
      @media (max-width: 960px) {
        .dialog--Viewer--Popover .dialog__container {
          padding: 15px; } }

.dialog__container {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  width: 600px;
  max-width: 70%;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1215; }
  @media (min-width: 960px) {
    .dialog__container {
      width: 100%;
      max-width: 100%;
      height: 100%;
      padding: 20px 30px; } }
  @media (max-width: 959px) {
    .dialog__container .dialog__container {
      padding: 10px 15px;
      position: fixed;
      left: 0;
      top: 0; } }

.dialog__title {
  font-size: 20px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  text-align: center;
  padding: 16px 24px; }

.dialog__description {
  font-size: 0.9rem;
  font-weight: lighter;
  padding: 8px 24px;
  flex: 1 1 auto;
  overflow-y: auto;
  color: #fff; }

.dialog__actions {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px;
  align-items: center; }
  .dialog__actions > button {
    margin: 5px !important;
    min-width: 170px; }
  @media (max-width: 749px) {
    .dialog__actions {
      flex-direction: column; } }

.dialog .MuiPaper-root {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  padding: 40px 60px; }

.dialog .MuiDialogTitle-root h2,
.dialog .MuiDialogContentText-root {
  color: white;
  font-size: 20px;
  text-align: center; }

.dialog .MuiDialogContent-root {
  padding-top: 0;
  padding-bottom: 0; }

.dialog .MuiTypography-root {
  font-weight: 500;
  font-size: 1rem; }

.dialog .MuiDialogContentText-root {
  font-size: 0.9rem;
  font-weight: lighter; }

.dialog .MuiDialogActions-root {
  display: flex;
  justify-content: center; }

.MessageCenterOldSiteIframe {
  width: 100%;
  height: calc(100% - 64px); }

.MessageCenterNavigator {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .MessageCenterNavigator--desktop {
    border-right: 1px solid rgba(69, 64, 153, 0.8); }
  .MessageCenterNavigator__header {
    display: flex;
    height: 40px; }
  .MessageCenterNavigator__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow: hidden; }

.MessageCenterNavigatorHeader {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #52526c;
  border-bottom: 1px solid rgba(69, 64, 153, 0.8);
  padding: 0 10px; }
  .MessageCenterNavigatorHeader__column {
    flex: 1;
    display: flex;
    align-items: center; }
    .MessageCenterNavigatorHeader__column--left {
      justify-content: flex-start; }
    .MessageCenterNavigatorHeader__column--center {
      justify-content: center; }
      .MessageCenterNavigatorHeader__column--center .MessageCenterIconButton {
        margin-left: 10px !important;
        margin-right: 10px !important; }
    .MessageCenterNavigatorHeader__column--right {
      justify-content: flex-end; }

/*-------linear-gradient-------*/
/*-----------------------------*/
.MessageCenterInput {
  color: #656673;
  background-color: #161833;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 10px;
  position: relative;
  max-width: 100%;
  width: 100%;
  margin-right: 1rem; }
  .MessageCenterInput__with-icon--left input {
    margin-left: 30px; }
  .MessageCenterInput__with-icon--right input {
    margin-right: 30px; }
  .MessageCenterInput__icon {
    position: absolute;
    font-size: 12px; }
    .MessageCenterInput__icon--left {
      left: 10px; }
    .MessageCenterInput__icon--right {
      right: 10px; }
  .MessageCenterInput__input, .MessageCenterInput__contenteditable {
    width: 100%;
    background-color: transparent;
    border: 0;
    color: #FFFFFF;
    resize: none; }
  .MessageCenterInput__contenteditable {
    width: 100%;
    height: 100%;
    max-height: 100%;
    white-space: pre-wrap;
    max-width: 100%; }
    .MessageCenterInput__contenteditable-container {
      overflow-x: hidden;
      overflow-y: auto;
      max-height: calc(20vh);
      width: 100%;
      max-width: 100%;
      height: 100%; }
      .MessageCenterInput__contenteditable-container::-webkit-scrollbar {
        width: 5px;
        position: absolute;
        right: 0;
        bottom: 0; }
      .MessageCenterInput__contenteditable-container::-webkit-scrollbar:horizontal {
        height: 5px; }
      .MessageCenterInput__contenteditable-container::-webkit-scrollbar-track, .MessageCenterInput__contenteditable-container::-webkit-scrollbar-track:horizontal {
        margin: 0px; }
      .MessageCenterInput__contenteditable-container::-webkit-scrollbar-track, .MessageCenterInput__contenteditable-container::-webkit-scrollbar-track:horizontal {
        background-color: #101233; }
      .MessageCenterInput__contenteditable-container::-webkit-scrollbar-thumb, .MessageCenterInput__contenteditable-container::-webkit-scrollbar-thumb:horizontal {
        background-color: #21244d; }
    .MessageCenterInput__contenteditable:empty:before {
      content: attr(placeholder);
      display: block;
      color: #45465c;
      height: 100%;
      width: 100%; }
  .MessageCenterInput__font-size--small {
    font-size: 12px; }
  .MessageCenterInput__font-size--large {
    font-size: 15px; }
  .MessageCenterInput--no-padding {
    padding: 0; }

.MessageCenterReader {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #1e1f47;
  padding: 1rem 1.5rem 1rem 0; }
  .MessageCenterReader--mobile {
    padding: 0 !important; }

.MessageCenterReaderHeader {
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #161833;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem; }
  .MessageCenterReaderHeader--mobile {
    height: 40px; }
  .MessageCenterReaderHeader__contacts {
    font-size: 16px;
    font-weight: bold; }
    .MessageCenterReaderHeader__contacts--me {
      color: #FFFFFF; }
    .MessageCenterReaderHeader__contacts--sender {
      color: #b3b3b3; }
  .MessageCenterReaderHeader__actions {
    color: rgba(213, 232, 255, 0.35); }

.MessageCenterReaderFooter {
  background-color: #161833;
  padding: 0 0.5rem;
  max-height: 20vh;
  overflow: hidden; }
  .MessageCenterReaderFooter__body {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: .75rem .25rem;
    max-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; }
  .MessageCenterReaderFooter__input {
    max-height: 100%;
    width: calc(100% - 100px - 10px);
    display: flex;
    align-content: center;
    margin-right: 10px; }
  .MessageCenterReaderFooter__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 100px; }
  .MessageCenterReaderFooter__action-button {
    padding: 0;
    margin-left: 10px; }
  .MessageCenterReaderFooter__emoji-icon {
    width: 20px;
    height: 20px;
    fill: white; }

/*-------linear-gradient-------*/
/*-----------------------------*/
.MessageCenterMessageList {
  background-color: #161833;
  padding: 1rem;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex: 1; }
  .MessageCenterMessageList__body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    flex-direction: column-reverse;
    display: flex; }
    .MessageCenterMessageList__body::-webkit-scrollbar {
      width: 5px;
      position: absolute;
      right: 0;
      bottom: 0; }
    .MessageCenterMessageList__body::-webkit-scrollbar:horizontal {
      height: 5px; }
    .MessageCenterMessageList__body::-webkit-scrollbar-track, .MessageCenterMessageList__body::-webkit-scrollbar-track:horizontal {
      margin: 0px; }
    .MessageCenterMessageList__body::-webkit-scrollbar-track, .MessageCenterMessageList__body::-webkit-scrollbar-track:horizontal {
      background-color: #101233; }
    .MessageCenterMessageList__body::-webkit-scrollbar-thumb, .MessageCenterMessageList__body::-webkit-scrollbar-thumb:horizontal {
      background-color: #21244d; }
    .MessageCenterMessageList__body--has-more {
      padding-top: 3rem; }
    .MessageCenterMessageList__body--self-align {
      display: flex;
      flex-direction: column;
      justify-content: flex-end; }
  .MessageCenterMessageList__new-conversation {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

.MessageCenterMessage {
  display: flex;
  flex-shrink: 0;
  width: 100%; }
  .MessageCenterMessage__avatar {
    display: flex;
    align-items: flex-end; }
    .MessageCenterMessage__avatar--sender {
      margin-right: 10px; }
    .MessageCenterMessage__avatar--receiver {
      margin-left: 10px; }
  .MessageCenterMessage--from-me {
    justify-content: flex-end; }
    .MessageCenterMessage--from-me .MessageCenterMessage__message {
      background-color: rgba(46, 43, 102, 0.95); }
  .MessageCenterMessage--from-sender {
    justify-content: flex-start; }
    .MessageCenterMessage--from-sender .MessageCenterMessage__message {
      background-color: #666666; }
  .MessageCenterMessage--has-avatar .MessageCenterMessage__message {
    margin-bottom: 0; }
  .MessageCenterMessage--no-avatar .MessageCenterMessage__message, .MessageCenterMessage--no-avatar .MessageCenterMessage--from-me .MessageCenterMessage__message {
    margin-right: 40px; }
  .MessageCenterMessage--no-avatar .MessageCenterMessage__message, .MessageCenterMessage--no-avatar .MessageCenterMessage--from-sender .MessageCenterMessage__message {
    margin-left: 40px; }
  .MessageCenterMessage__message {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 10px 10px 30px 10px;
    position: relative;
    border-radius: 6px;
    max-width: 65%;
    min-width: 150px;
    word-break: break-word;
    white-space: pre; }
    @media (min-width: 1280px) {
      .MessageCenterMessage__message {
        min-width: 20%;
        max-width: 50%; } }
    @media (max-width: 1279px) {
      .MessageCenterMessage__message {
        min-width: 50%;
        max-width: 75%; } }
    @media (max-width: 959px) {
      .MessageCenterMessage__message {
        min-width: 50%;
        max-width: 75%; } }
    @media (max-width: 749px) {
      .MessageCenterMessage__message {
        min-width: 70%;
        max-width: 85%; } }
  .MessageCenterMessage__detail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px; }

/*-------linear-gradient-------*/
/*-----------------------------*/
.MessageCenterContact {
  min-height: 90px;
  padding: 1rem 0.5rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  cursor: pointer; }
  .MessageCenterContact:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .MessageCenterContact__avatar img {
    border-radius: 50%;
    border: 2px solid white; }
  .MessageCenterContact:hover, .MessageCenterContact--active {
    background-color: rgba(33, 63, 133, 0.95); }
  .MessageCenterContact--unselected {
    color: #b3b3b3; }
  .MessageCenterContact--selected {
    color: white;
    font-weight: bold; }
  .MessageCenterContact__message {
    display: flex;
    flex-direction: column;
    padding: 5px 10px; }
  .MessageCenterContact__sender--name {
    font-size: 14px;
    font-weight: bolder; }
  .MessageCenterContact__datetime {
    font-size: 14px;
    font-weight: initial !important;
    text-align: right; }
  .MessageCenterContact__body {
    font-size: 12px; }

.MessageCenterContactList {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden; }
  .MessageCenterContactList__body {
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column; }
    .MessageCenterContactList__body::-webkit-scrollbar {
      width: 5px;
      position: absolute;
      right: 0;
      bottom: 0; }
    .MessageCenterContactList__body::-webkit-scrollbar:horizontal {
      height: 5px; }
    .MessageCenterContactList__body::-webkit-scrollbar-track, .MessageCenterContactList__body::-webkit-scrollbar-track:horizontal {
      margin: 0px; }
    .MessageCenterContactList__body::-webkit-scrollbar-track, .MessageCenterContactList__body::-webkit-scrollbar-track:horizontal {
      background-color: #101233; }
    .MessageCenterContactList__body::-webkit-scrollbar-thumb, .MessageCenterContactList__body::-webkit-scrollbar-thumb:horizontal {
      background-color: #21244d; }
  .MessageCenterContactList__loading {
    margin-top: 1rem; }
  .MessageCenterContactList__no-contacts {
    color: #FFFFFF;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

/* Model card colors */
.MessageCenter {
  margin: 10px;
  height: calc(100% - 84px);
  width: calc(100% - 20px) !important;
  border: 1px solid rgba(69, 64, 153, 0.8);
  background-color: #1e1f47;
  position: relative; }

.MessageCenterIcons__favorite {
  color: #cd264f;
  width: 14px;
  height: 14px; }

.MessageCenterIcons__fan-club {
  color: #FFFFFF;
  font-size: 14px !important; }

.MessageCenterDeleteModal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(22, 24, 51, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #FFFFFF;
  z-index: 10; }
  .MessageCenterDeleteModal__title {
    margin-bottom: 1.5rem; }
  .MessageCenterDeleteModal__actions {
    display: flex; }
    .MessageCenterDeleteModal__actions--confirm {
      margin-left: 2rem;
      min-width: 158px; }

.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

.MyModels {
  margin-top: 30px;
  margin-left: 8px;
  margin-right: 8px; }
  .MyModels *:not(.material-icons) {
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }

.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .MyPurchases__header-title {
  color: var(--THEME_INVERTED, #b3b3b3); }

.MyPurchases {
  margin-top: 30px;
  margin-left: 8px;
  margin-right: 8px; }
  .MyPurchases *:not(.material-icons) {
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }
  .MyPurchases__header {
    margin-bottom: 20px; }
    .MyPurchases__header-title {
      color: var(--COLOR_PRIMARY_TEXT, #cccccc);
      font-size: 18px;
      font-weight: bold;
      margin-right: 10px; }

.theme-cams--light .Search__header {
  color: var(--COLOR_SECONDARY_TEXT, white); }
  .theme-cams--light .Search__header--resetIcon {
    color: var(--THEME_INVERTED, black); }

.Search__header {
  padding: 16px 36px 16px;
  color: var(--COLOR_PRIMARY_TEXT, #cccccc); }
  .Search__header--title {
    margin-bottom: 3px;
    font-size: 18px; }
  .Search__header--subtitle {
    font-size: 12px;
    margin-right: 10px; }
  .Search__header--resetIcon {
    color: white; }

.InfiniteLoader {
  text-align: center;
  color: #cccccc;
  width: 100%;
  padding: 20px 0;
  font-size: 14px; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .TopAdmirerCard__nav {
  background: var(--COLOR_PRIMARY_BACKGROUND, #ef951b); }
  .theme-cams--light .TopAdmirerCard__nav-item.active {
    color: var(--COLOR_SECONDARY_LINK, #ef951b);
    border-color: var(--COLOR_SECONDARY_LINK, #ef951b); }

.theme-cams--light .TopAdmirerCard__content {
  background: var(--COLOR_CONTENT_BACKGROUND, #616161); }

.theme-cams--light .TopAdmirerCard .TopAdmirerProgram__table tbody > tr:nth-child(odd) > td:not(:first-child) {
  background: rgba(var(--COLOR_PRIMARY_TEXT_RGB, 255, 255, 255), 0.1); }

.theme-cams--light .TopAdmirerCardMobile__nav {
  background: var(--COLOR_PRIMARY_BACKGROUND, #ef951b); }

.theme-cams--light .TopAdmirerCardMobile__detail-card {
  background: var(--COLOR_CONTENT_BACKGROUND, #616161); }

.theme-cams--light .TopAdmirerProgram__table tbody > tr:nth-child(odd) > td:not(:first-child) {
  background: rgba(var(--COLOR_PRIMARY_TEXT_RGB, 255, 255, 255), 0.1); }

.TopAdmirerCard {
  padding: 40px 65px;
  min-height: 830px;
  display: flex;
  flex-direction: row; }
  @media (max-width: 959px) {
    .TopAdmirerCard {
      display: none; } }

.TopAdmirerCard__nav {
  background-color: var(--COLOR_SECONDARY_BACKGROUND, #1e1f47);
  padding: 30px 27px;
  width: 240px;
  min-height: 830px;
  display: flex;
  flex-direction: column;
  align-items: start; }

.TopAdmirerCard__nav-item {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: var(--COLOR_PRIMARY_LINK_TEXT, #b3b3b3);
  outline: none;
  margin-bottom: 40px;
  cursor: pointer;
  padding: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent; }
  .TopAdmirerCard__nav-item.active {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    border-bottom: 1px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.TopAdmirerCard__content {
  flex: 1;
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  min-height: 830px;
  padding: 30px 60px;
  color: var(--COLOR_PRIMARY_TEXT, white); }

.TopAdmirerProgram__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px; }
  .TopAdmirerProgram__table thead td {
    font-size: 14px; }
    @media (max-width: 749px) {
      .TopAdmirerProgram__table thead td {
        font-size: 12px; } }
  .TopAdmirerProgram__table thead tr {
    height: 50px; }
  .TopAdmirerProgram__table tr {
    height: 40px; }
  .TopAdmirerProgram__table tr > td:first-child {
    width: 365px;
    font-size: 14px;
    line-height: 20px;
    color: var(--COLOR_PRIMARY_TEXT, #e6e6e6);
    padding-right: 20px; }
    @media (max-width: 749px) {
      .TopAdmirerProgram__table tr > td:first-child {
        width: 200px;
        font-size: 12px;
        line-height: 12px; } }
  .TopAdmirerProgram__table tr > td:not(:first-child) {
    text-align: center; }
  .TopAdmirerProgram__table tbody > tr:nth-child(odd) > td:not(:first-child) {
    background-color: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
    border-bottom: 1px solid var(--THEME, transparent); }
  .TopAdmirerProgram__table tbody > tr:nth-child(even) > td:not(:first-child) {
    border-bottom: 1px solid var(--THEME, transparent); }

.AdmiredModel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 25px; }
  .AdmiredModel__avatar {
    width: 108px;
    height: 108px;
    border-radius: 54px;
    background-color: white;
    position: relative;
    padding: 4px;
    overflow: hidden;
    cursor: pointer; }
    .AdmiredModel__avatar-image {
      width: 100px;
      height: 100px;
      border-radius: 50px;
      overflow: hidden; }
    .AdmiredModel__avatar img {
      width: 100%; }
  .AdmiredModel__badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    border-radius: 25px;
    padding-top: 3.5px; }
    .AdmiredModel__badge-icon {
      width: 18px;
      fill: #f03c32; }
  .AdmiredModel__admirer-info {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 46px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8); }
    .AdmiredModel__admirer-info-admired {
      color: #f03c32;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      margin: 2px 0; }
    .AdmiredModel__admirer-info-become-top {
      color: black;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      margin: 0;
      transform: scale(0.7); }
  .AdmiredModel__name {
    font-size: 12px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    margin: 4px 0; }
  .AdmiredModel__actions {
    margin-top: 5px; }
    .AdmiredModel__actions button {
      font-size: 12px;
      width: 42px;
      padding: 5px;
      margin: 0 2.5px; }
  .AdmiredModel__popover {
    background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
    border-radius: 3px;
    padding: 20px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center; }

.AdmiredModelContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  width: 100%;
  margin: -20px; }

.TopAdmirerCardMobile {
  display: none;
  width: 100%;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  @media (max-width: 959px) {
    .TopAdmirerCardMobile {
      display: initial; } }
  .TopAdmirerCardMobile__nav {
    min-height: 500px;
    overflow: hidden; }
  .TopAdmirerCardMobile__NavItem {
    color: var(--COLOR_PRIMARY_TEXT, white); }
  .TopAdmirerCardMobile__detail-card {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 56px;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.2s linear;
    background: var(--COLOR_SECONDARY_BACKGROUND, #21244d);
    padding: 60px 0 20px 0;
    z-index: 1; }
    .TopAdmirerCardMobile__detail-card--show-detail {
      transform: translateX(0px); }
  .TopAdmirerCardMobile__detail-container {
    height: 100%;
    overflow-y: scroll;
    padding: 0 20px; }
  .TopAdmirerCardMobile__detail-header {
    background: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
    height: 50px;
    text-align: center;
    position: absolute;
    color: var(--COLOR_PRIMARY_TEXT, white);
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  .TopAdmirerCardMobile__detail-header-back-icon {
    left: 20px;
    top: 15px;
    position: absolute !important;
    color: var(--COLOR_PRIMARY_TEXT, white);
    padding: 0 !important; }
    .TopAdmirerCardMobile__detail-header-back-icon .material-icons {
      color: white !important; }

/* Model card colors */
.GiveGift__title {
  font-size: 16px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px; }

.GiveGift__gift-item {
  border: 1px solid transparent;
  padding: 5px 20px;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  @media (max-width: 959px) {
    .GiveGift__gift-item {
      padding: 5px; } }
  .GiveGift__gift-item.selected {
    border: 2px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  @media (max-width: 959px) {
    .GiveGift__gift-item {
      font-size: 10px; } }

.GiveGift__gift-item-image {
  width: 50px;
  height: auto;
  margin-bottom: 1rem; }

.GiveGift__gift-send {
  width: 240px; }

.GiveGift__container {
  overflow-y: scroll;
  max-height: 350px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  width: 100%; }
  @media (max-width: 959px) {
    .GiveGift__container {
      flex-wrap: nowrap !important;
      overflow-y: hidden;
      overflow-x: scroll;
      max-height: 100px;
      justify-content: flex-start; } }

/* Model card colors */
/* Model card colors */
.theme-cams--light .GiveTip__container .cams-button--grey-border:hover,
.theme-cams--light .GiveTip__container .cams-button--gradient-no-animation {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #ef951b);
  border-color: var(--COLOR_PRIMARY_BACKGROUND, #ef951b) !important; }

.GiveTip {
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .GiveTip__container {
    color: var(--COLOR_PRIMARY_TEXT, white);
    width: 90%; }
    @media (max-width: 959px) {
      .GiveTip__container {
        overflow-y: hidden;
        overflow-x: scroll;
        max-height: 100px;
        left: 10px; } }
    .GiveTip__container--cobrand button {
      color: var(--COLOR_PRIMARY_TEXT) !important;
      border: 1px solid var(--COLOR_PRIMARY_TEXT) !important; }
      .GiveTip__container--cobrand button svg {
        fill: var(--COLOR_PRIMARY_TEXT) !important; }
  .GiveTip__title {
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px; }
    @media (max-width: 959px) {
      .GiveTip__title {
        margin-bottom: 5px;
        margin-top: 5px; } }
  .GiveTip__fanclub-list-item {
    font-size: 14px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    display: flex;
    align-items: center;
    line-height: 30px; }
    @media (max-width: 959px) {
      .GiveTip__fanclub-list-item {
        font-size: 10px;
        line-height: 1px; } }
    .GiveTip__fanclub-list-item .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, #ef951b);
      margin-right: 6px; }

.OverlayToast {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 90%;
  display: flex;
  justify-content: center;
  z-index: 666;
  left: 50px; }
  .OverlayToast__visible {
    animation-delay: 3s;
    animation: 500ms slide-up;
    bottom: 30px; }
  .OverlayToast__not-visible {
    transition: visibility 0s 300ms, opacity 300ms linear;
    animation-delay: 3s;
    animation: 500ms slide-down;
    bottom: 0px;
    visibility: hidden; }
  .OverlayToast--content {
    display: flex;
    flex-direction: row;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
    border-radius: 5px;
    height: 70px; }
    .OverlayToast--content-body {
      padding-top: 20px;
      padding-left: 30px;
      padding-right: 20px;
      color: white;
      text-align: center; }
    .OverlayToast--content-close-button {
      padding-top: 10px;
      padding-right: 10px; }
      .OverlayToast--content-close-button .material-icons {
        color: var(--COLOR_PRIMARY_TEXT, white); }

@keyframes slide-up {
  from {
    bottom: -20px;
    opacity: 0; }
  to {
    bottom: 30px;
    opacity: 1; } }

@keyframes slide-down {
  from {
    bottom: 30px;
    opacity: 1; }
  to {
    bottom: -20px;
    opacity: 0; } }

/* Model card colors */
/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.CamsViewer__BuzzmodeOverlay {
  margin-top: 5px; }
  .CamsViewer__BuzzmodeOverlay--reminder-price {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .CamsViewer__BuzzmodeOverlay--reminder-icon-buzz-area {
    width: 30px; }
  .CamsViewer__BuzzmodeOverlay--reminder-icon-buzz-area, .CamsViewer__BuzzmodeOverlay--reminder-icon-superbuzz {
    margin: -4px 3px; }
  .CamsViewer__BuzzmodeOverlay--reminder-icon-superbuzz {
    top: 5px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    color: white;
    border-radius: 100%;
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
    .CamsViewer__BuzzmodeOverlay--reminder-icon-superbuzz img {
      width: 25px;
      margin-left: 3px; }
  .CamsViewer__BuzzmodeOverlay--reminder-icon-token {
    fill: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    height: 13px; }

.CamsViewer__BuzzRipple-ripple {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  animation-name: buzzRipple;
  animation-duration: 1s;
  transform: scale(0);
  opacity: 0.6; }
  .CamsViewer__BuzzRipple-ripple:nth-child(1) {
    animation-delay: 0.2s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(2) {
    animation-delay: 0.4s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(3) {
    animation-delay: 0.6s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(4) {
    animation-delay: 0.8s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(5) {
    animation-delay: 1s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(6) {
    animation-delay: 1.2s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(7) {
    animation-delay: 1.4s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(8) {
    animation-delay: 1.6s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(9) {
    animation-delay: 1.8s; }

@keyframes buzzRipple {
  from {
    opacity: 0.6;
    transform: scale(0); }
  to {
    opacity: 0;
    transform: scale(1); } }

.CamsViewer__BalanceaddOverlay {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000 !important; }

.CamsViewer__BalanceaddOverlay-title {
  font-size: 30px;
  margin-bottom: 67px; }
  @media (max-width: 959px) {
    .CamsViewer__BalanceaddOverlay-title {
      font-size: 15px;
      margin: 0 20px 0 0; } }

.CamsViewer__BalanceaddOverlay-cta-container {
  justify-content: space-between;
  max-width: 460px;
  color: white;
  margin: auto;
  font-size: 30px;
  text-align: center; }
  @media (max-width: 959px) {
    .CamsViewer__BalanceaddOverlay-cta-container {
      margin: 0 20px 0 0;
      max-width: 250px; } }
  .CamsViewer__BalanceaddOverlay-cta-container .cams-button {
    width: 100%;
    margin-left: 70px;
    margin-right: 70px; }
  .CamsViewer__BalanceaddOverlay-cta-container .BalanceaddOverlay__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

.CamsViewer__BalanceaddOverlay-cta {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }
  @media (max-width: 959px) {
    .CamsViewer__BalanceaddOverlay-cta {
      font-size: 12px;
      padding: 20px 0 20px 0; } }
  .CamsViewer__BalanceaddOverlay-cta > img {
    margin-bottom: 20px; }
    @media (max-width: 959px) {
      .CamsViewer__BalanceaddOverlay-cta > img {
        width: 25px;
        margin: 0 20px 20px 0; } }
  .CamsViewer__BalanceaddOverlay-cta > span {
    text-align: center; }
    @media (max-width: 959px) {
      .CamsViewer__BalanceaddOverlay-cta > span {
        font-size: 12px; } }

.CamsViewer__BuzzmodeOverlay-cta-image-bg {
  background-image: linear-gradient(90deg, #d05cf7 0%, #4942db 100%);
  width: 72px;
  height: 72px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; }
  @media (max-width: 959px) {
    .CamsViewer__BuzzmodeOverlay-cta-image-bg {
      width: 30px;
      height: 30px;
      margin-bottom: 24px; } }
  .CamsViewer__BuzzmodeOverlay-cta-image-bg img {
    width: 25px; }
    @media (max-width: 959px) {
      .CamsViewer__BuzzmodeOverlay-cta-image-bg img {
        width: 20px; } }

.CamsViewer__BuzzmodeOverlay-cta-button {
  width: 360px;
  background-image: linear-gradient(90deg, #d05cf7 0%, #4942db 100%);
  border-radius: 3px;
  height: 40px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border: none;
  color: white;
  cursor: pointer; }
  @media (max-width: 959px) {
    .CamsViewer__BuzzmodeOverlay-cta-button {
      width: 100px;
      font-size: 15px; } }

.CamsViewer__BuzzRipple-ripple {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  animation-name: buzzRipple;
  animation-duration: 1s;
  transform: scale(0);
  opacity: 0.6; }
  .CamsViewer__BuzzRipple-ripple:nth-child(1) {
    animation-delay: 0.2s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(2) {
    animation-delay: 0.4s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(3) {
    animation-delay: 0.6s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(4) {
    animation-delay: 0.8s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(5) {
    animation-delay: 1s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(6) {
    animation-delay: 1.2s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(7) {
    animation-delay: 1.4s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(8) {
    animation-delay: 1.6s; }
  .CamsViewer__BuzzRipple-ripple:nth-child(9) {
    animation-delay: 1.8s; }

@keyframes buzzRipple {
  from {
    opacity: 0.6;
    transform: scale(0); }
  to {
    opacity: 0;
    transform: scale(1); } }

.BalanceaddOverlay__close-button {
  position: absolute;
  top: 10px;
  right: 10px; }
  .BalanceaddOverlay__close-button .material-icons {
    color: white; }

/* Model card colors */
.theme-cams--light .CamsViewer__QuickBuyOverlay {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.5); }

.CamsViewer__QuickBuyOverlay {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000 !important; }
  .CamsViewer__QuickBuyOverlay p {
    text-align: center;
    font-size: 25px;
    line-height: 35px; }
  @media (max-width: 959px) {
    .CamsViewer__QuickBuyOverlay p {
      text-align: center;
      font-size: 14px;
      line-height: 20px; } }
  .CamsViewer__QuickBuyOverlay--buttons-container {
    display: flex;
    flex-direction: row;
    width: 400px;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center; }
    @media (max-width: 959px) {
      .CamsViewer__QuickBuyOverlay--buttons-container {
        width: 200px;
        justify-content: space-evenly; } }

.QuickBuyOverlay__close-button {
  position: absolute;
  top: 10px;
  right: 10px; }
  .QuickBuyOverlay__close-button .material-icons {
    color: var(--COLOR_PRIMARY_TEXT, white); }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.theme-cams--light .CamsViewer__ChatBox {
  background: none; }
  .theme-cams--light .CamsViewer__ChatBox-input {
    background: none; }
  .theme-cams--light .CamsViewer__ChatBox .CamsViewer__ChatBox-header-viewer-count {
    color: var(--THEME_INVERTED) !important; }
  .theme-cams--light .CamsViewer__ChatBox-login {
    color: var(--THEME_INVERTED) !important; }
  .theme-cams--light .CamsViewer__ChatBox-exit-button {
    background: var(--COLOR_POPOVER_BACKGROUND, black); }
    .theme-cams--light .CamsViewer__ChatBox-exit-button:hover {
      background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.9); }

.CamsViewer__ChatBox {
  width: 320px;
  border: 1px solid #666666;
  border-radius: 3px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #161833; }
  .CamsViewer__ChatBox--keyboard {
    max-height: 120px; }
  @media (max-width: 959px) {
    .CamsViewer__ChatBox {
      width: 100%;
      margin-left: 0;
      border-width: 1px 0 1px 0;
      border-radius: 0; } }
  .CamsViewer__ChatBox--cobrand {
    background-color: var(--THEME); }
    .CamsViewer__ChatBox--cobrand .CamsViewer__ChatBox-input {
      background-color: var(--THEME); }
    .CamsViewer__ChatBox--cobrand .CamsViewer__ChatItemBox.Text {
      color: var(--THEME_INVERTED); }
    .CamsViewer__ChatBox--cobrand .CamsViewer__ChatBox-login {
      color: var(--THEME_INVERTED) !important; }
    .CamsViewer__ChatBox--cobrand .CamsViewer__ChatBox-exit-button {
      background-color: var(--COLOR_BUTTONS_BACKGROUND);
      color: var(--COLOR_BUTTONS_TEXT); }
      .CamsViewer__ChatBox--cobrand .CamsViewer__ChatBox-exit-button:hover {
        background-color: var(--COLOR_BUTTONS_HOVER); }
    .CamsViewer__ChatBox--cobrand .CamsViewer__ChatBox-header-viewer-count {
      color: var(--THEME_INVERTED_LIGHTENED); }

.CamsViewer__ChatBox-login {
  font-size: 14px;
  flex-grow: 1;
  padding-left: 15px;
  color: #FFFFFF; }
  .CamsViewer__ChatBox-login a {
    cursor: pointer;
    color: #ef951b; }

.CamsViewer__ChatChannel--show {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1; }

.CamsViewer__ChatChannel--hide {
  display: none; }

.CamsViewer__ChatBox-exit-button {
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 3px;
  padding: 7px;
  background: var(--FALLBACK, #383552);
  font-size: 14px;
  cursor: pointer;
  width: 125px;
  height: 32px;
  z-index: 50; }
  .CamsViewer__ChatBox-exit-button svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    fill: var(--COLOR_BUTTONS_TEXT, white); }
  @media (max-width: 959px) {
    .CamsViewer__ChatBox-exit-button {
      height: 20px;
      font-size: 12px;
      width: 100px; }
      .CamsViewer__ChatBox-exit-button img {
        width: 10px;
        height: 10px;
        margin-right: 3px; } }

.CamsViewer__ChatBox-exit-button:hover {
  background: var(--FALLBACK, #57537e); }

.CamsViewer__ChatBox-header-title {
  color: var(--THEME_INVERTED, white);
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .CamsViewer__ChatBox-header-title {
      font-size: 12px; } }
  .CamsViewer__ChatBox-header-title-icon {
    margin-left: 10px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    fill: var(--THEME_INVERTED, white); }
    @media (max-width: 959px) {
      .CamsViewer__ChatBox-header-title-icon {
        width: 10px;
        height: 10px; } }

.CamsViewer__ChatBox-input {
  background: var(--FALLBACK, #2d2b4d);
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; }
  .CamsViewer__ChatBox-input .MuiIconButton-root {
    padding: 0; }
  .CamsViewer__ChatBox-input .material-icons {
    color: rgba(255, 255, 255, 0.5); }
  .CamsViewer__ChatBox-input-icon {
    fill: var(--THEME_INVERTED, rgba(255, 255, 255, 0.5));
    width: 24px; }
    .CamsViewer__ChatBox-input-icon--active {
      fill: #0280d7; }

.CamsViewer__ChatBox-header-viewer-count {
  color: var(--COLOR_PRIMARY_TEXT, #b3b3b3); }

.CamsViewer__ChatBox-input-field {
  flex-grow: 1;
  background: transparent;
  padding: 0 10px;
  height: 100%;
  border: none;
  color: var(--THEME_INVERTED, white);
  font-size: 14px; }
  .CamsViewer__ChatBox-input-field:focus {
    outline: none; }

.CamsViewer__ChatBox-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid #666666; }
  .CamsViewer__ChatBox-header--whisper {
    background-color: #0280d7; }

.CamsViewer__ChatList {
  color: var(--FALLBACK, white);
  position: relative;
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch; }

.CamsViewer__ChatItem {
  padding: 5px 10px;
  font-size: 14px; }

.CamsViewer__ChatItem-superbuzz {
  height: 40px;
  width: 41px !important;
  margin: -5px 10px -5px -5px; }

.CamsViewer__ChatItem-whisper-icon {
  width: 18px;
  height: 18px; }

.CamsViewer__ChatItem-badge {
  width: 20px;
  fill: #f03c32;
  margin-right: 5px;
  vertical-align: middle; }

.CamsViewer__ChatItem-translation {
  width: 16px;
  fill: #ef951b;
  margin-right: 5px;
  vertical-align: middle; }

.CamsViewer__ChatItem-from {
  color: #bbbbbb;
  display: inline-flex;
  flex-direction: row;
  align-items: center; }
  .CamsViewer__ChatItem-from--model {
    color: var(--FALLBACK, #ef951b); }
  .CamsViewer__ChatItem-from--user {
    color: #30aefc; }
  .CamsViewer__ChatItem-from img {
    margin-right: 5px;
    width: 18px; }

.CamsViewer__ChatItemBox-container {
  display: flex;
  min-height: 60px;
  position: relative;
  margin: 2.5px 0; }
  .CamsViewer__ChatItemBox-container.Text {
    min-height: auto; }

.CamsViewer__ChatItemBox {
  display: flex;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  position: relative;
  align-items: center;
  padding: 15px;
  color: var(--THEME_INVERTED, white); }
  .CamsViewer__ChatItemBox.Private.Invitation {
    align-items: flex-start; }
    .CamsViewer__ChatItemBox.Private.Invitation svg {
      margin-top: 4px; }
    .CamsViewer__ChatItemBox.Private.Invitation > div {
      display: flex;
      flex-direction: column;
      align-items: center; }
    .CamsViewer__ChatItemBox.Private.Invitation button {
      margin: 5px 40px 0 0;
      max-width: 150px;
      position: static !important; }
  .CamsViewer__ChatItemBox--icon {
    fill: var(--THEME_INVERTED, white);
    width: 30px;
    height: 30px;
    margin-right: 15px; }
  .CamsViewer__ChatItemBox.Buzzmode.Info {
    padding: 0; }
  .CamsViewer__ChatItemBox > img {
    width: 30px;
    margin-right: 15px;
    vertical-align: middle; }
  .CamsViewer__ChatItemBox > span {
    vertical-align: middle; }
  .CamsViewer__ChatItemBox.Text {
    color: var(--THEME_INVERTED, white);
    display: block;
    height: initial;
    padding: 5px 10px;
    font-size: 14px;
    word-wrap: break-word; }
    .CamsViewer__ChatItemBox.Text:before {
      display: none; }
  .CamsViewer__ChatItemBox.Private.Invitation svg {
    width: 30px;
    margin-right: 15px;
    fill: white; }
  .CamsViewer__ChatItemBox--payChat {
    background-image: linear-gradient(90deg, rgba(26, 213, 253, 0.3) 0%, rgba(25, 59, 252, 0.15) 100%); }

.CamsViewer__SystemChatItem {
  width: 100%; }
  .CamsViewer__SystemChatItem--reminder-price {
    color: #ef951b; }
  .CamsViewer__SystemChatItem--reminder-buzz-mode {
    font-size: 14px;
    line-height: 30px;
    align-items: flex-start;
    color: var(--THEME_INVERTED, white); }
  .CamsViewer__SystemChatItem--reminder-buzz-mode {
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: linear-gradient(0deg, rgba(242, 97, 255, 0.2) 0%, rgba(73, 66, 219, 0.2) 100%); }
  .CamsViewer__SystemChatItem--reminder-icon-buzz-area {
    display: inline-flex;
    width: 25px;
    vertical-align: top;
    align-items: center; }
  .CamsViewer__SystemChatItem--reminder-icon-buzz-area {
    margin: 6px 5px; }
  .CamsViewer__SystemChatItem--reminder-icon-superbuzz {
    margin: 3px 5px; }
  .CamsViewer__SystemChatItem--reminder-icon-superbuzz {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    color: var(--THEME_INVERTED, white);
    border-radius: 100%;
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
    .CamsViewer__SystemChatItem--reminder-icon-superbuzz img {
      width: 22px; }
  .CamsViewer__SystemChatItem--reminder-icon-token {
    fill: #ef951b;
    height: 13px; }

.CamsViewer__ChatItemBoxBg {
  width: 100%;
  opacity: 0.3;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background-position: center center;
  background-size: cover; }
  .CamsViewer__ChatItemBoxBg:before {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Buzz {
    background-image: linear-gradient(90deg, #f261ff 0%, #412fc4 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Tip {
    background-image: linear-gradient(90deg, #00ff37 0%, rgba(166, 255, 0, 0.7) 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Gift {
    background-image: linear-gradient(90deg, #2abd76 0%, #124a87 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Connexion {
    background-image: linear-gradient(90deg, #ff0048 0%, #580096 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Superbuzz {
    background-image: linear-gradient(90deg, #f261ff 0%, #412fc4 100%);
    background-position: center center;
    background-size: cover;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
    .CamsViewer__ChatItemBoxBg.Superbuzz img {
      width: 80px;
      margin-right: -10px;
      margin-left: -25px; }
  .CamsViewer__ChatItemBoxBg.Wheel {
    background-image: linear-gradient(90deg, #cfe9ff 0%, #33496b 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Private {
    background-image: linear-gradient(90deg, rgba(26, 213, 253, 0.3) 0%, rgba(25, 59, 252, 0.15) 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
  .CamsViewer__ChatItemBoxBg.Private.Invitation {
    opacity: 0.3;
    background-image: linear-gradient(90deg, #ef951b 0%, #cd264f 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }

.CamsViewer__WhisperNoteContainer {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 0, 0, 0), 0.8);
  color: var(--COLOR_PRIMARY_TEXT, white);
  padding: 20px;
  position: absolute;
  text-align: center;
  bottom: 50px;
  width: 100%; }
  .CamsViewer__WhisperNoteContainer-close {
    position: absolute !important;
    top: 0px;
    right: 0px; }
    .CamsViewer__WhisperNoteContainer-close .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white);
      font-size: 12px; }

.theme-cams--light .CamsViewer__ControlButton {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__ControlButton--volume-container {
    background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

.CamsViewer__ControlButtons {
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  z-index: 102; }

.CamsViewer__ControlButton {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
  background: rgba(var(--FALLBACK, 22, 24, 51), 0.8);
  margin: 0 5px 10px; }
  .CamsViewer__ControlButton:last-child {
    margin-bottom: 0; }
  .CamsViewer__ControlButton img {
    width: 22px; }
  @media (max-width: 959px) {
    .CamsViewer__ControlButton {
      width: 20px;
      height: 20px; }
      .CamsViewer__ControlButton img {
        width: 12px; } }
  .CamsViewer__ControlButton-buzzModeOff {
    width: 25px;
    height: 1px;
    background-color: white;
    position: absolute;
    transform: rotateZ(45deg); }
  .CamsViewer__ControlButton--spacer {
    width: 50px;
    position: absolute;
    height: 40px;
    left: 40px; }
  .CamsViewer__ControlButton--volume {
    margin-left: 5px; }
    .CamsViewer__ControlButton--volume .MuiPopover-paper {
      background: none;
      border-radius: 100px; }
    .CamsViewer__ControlButton--volume-container {
      position: absolute;
      width: 200px;
      height: 40px;
      left: 50px;
      border-radius: 100px;
      background-color: rgba(var(--FALLBACK, 22, 24, 51), 0.7);
      padding: 0 20px;
      overflow: hidden; }
      @media (max-width: 959px) {
        .CamsViewer__ControlButton--volume-container {
          width: 100px;
          height: 20px;
          padding: 0 10px; } }
    .CamsViewer__ControlButton--volume-slider {
      color: #ef951b !important; }
      .CamsViewer__ControlButton--volume-slider .MuiSlider-rail,
      .CamsViewer__ControlButton--volume-slider .MuiSlider-track {
        height: 4px;
        border-radius: 2px; }
      .CamsViewer__ControlButton--volume-slider .MuiSlider-rail {
        opacity: 1;
        color: #222222; }
      .CamsViewer__ControlButton--volume-slider .MuiSlider-thumb {
        width: 18px;
        height: 18px;
        margin-top: -7px; }
      @media (max-width: 959px) {
        .CamsViewer__ControlButton--volume-slider .MuiSlider-rail,
        .CamsViewer__ControlButton--volume-slider .MuiSlider-track {
          height: 2px;
          border-radius: 1px; }
        .CamsViewer__ControlButton--volume-slider .MuiSlider-thumb {
          width: 9px;
          height: 9px;
          margin-top: -3px; } }
  .CamsViewer__ControlButton-volumeControl {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    border-radius: 100%; }
    @media (max-width: 959px) {
      .CamsViewer__ControlButton-volumeControl {
        width: 20px;
        height: 20px; } }
    .CamsViewer__ControlButton-volumeControl--muted {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABwElEQVRIS7VV0VECMRTc7QA7wA4oASpQOpAOpAKkArECtALpQEqwAy2BDp6zmZdMuLnkEmbMz83dJfve7tv3Qvzz4i34ZrYEcCR5n583sye9k3yP37sDmNkLgJ0DpfMOfgRwIXnXHcDM5gA+ASzSYTIEyMEBrEh+dwVwgFcAMwBnfy5IsgYeWNZqYGYCFO1H37cleTCzLw/y5v8vw8wnGcRCApA0oryJ1L0OAhWrIniRgZnp4LNncQCwJymgsKZkyVWRhipalED/HryQAlyTlOZp9YAHBmb24zLkOCeXJGU9kvnGE5FllYSSudofA5hrvPUI8nGyWUEW7ZWMa39KhQPJiJGSFQMFOJNclRw1lMVBl25TmUAqjGJMBhjT3G2qcaGkxGSSwS+Aj4zBSTKVCpoF2PvYqNZATaNs8qUDChhmy7CJYgBJVGvU1AfeVHFvnDXFJuoOUPG5XCEbakTIurHRAutmBqUO9QYMo1k2jB19E4NKQdXlqoUGX5hJuU1ba6CbaLSg3sEC110QzaDCz5ok6pkt+W0WHNLiIp+cYnB1E1W6Wi4Tm3lTAJdAm9VsTcsvot3Y7BkCTDZKU8TKpj+upQgoG6n8iQAAAABJRU5ErkJggg=="); }
    .CamsViewer__ControlButton-volumeControl--volumeUp {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAB5klEQVQ4T53US6hNURzH8c/KW3lMDDyHJJIYiZG6Bh4lkYiudCkmBpREIkKEkMtAIYpESimlTE3kNWAgA1wGJuRRCH/9tU9t517n1F3DtdrfvX6P/yrarIgYjFk4j9ullG2tPimtDiNiBNZjO8biaAIjYh968ACPSim/G5z/AiNiEM5gFe5gWQ2YgO/4hHvYWkp5l9BewIgYiKk4h8k4i/34UgNOwBSsxRK8wTo8+QcYEQOwEjsxDHtwo5TyNSKiBryLF7iOkbmP5+gsEXET0ysP8gdj8BhdeNnwpwl4CQuQP1mO8ZWirgTm5nu8raAPsbvhScPsJuA0jMKp6gIdOI1vDeDf9NokXpf8oUo+5R7EUixOu/oLzJQzrPuV1E7MwaYGMD05Xt0w03xVSvlRv3GT5FvYi81YjfnYgpkJzIKmqY31Gseyg3VoEzCrshArcBFXcA1XEzgRQypadjCrsijHDBtLKVleTcCPVYe7cQCpcDY6+ir2aOzChixqJeUpftZ6uAbPqr0MZV42A919jl5EDK3k7MAvHMLlGvAwJmFu1cUjuFBK+dxqlvNsBk6m2Y2JqB6HDC5vmEOR/vWUUlJB71lu7mJEjKsakEF0t+try+erNiXDM6CUV0o50e/3sN3j29f5H/Vz7ofTyXHAAAAAAElFTkSuQmCC"); }
  .CamsViewer__ControlButton .material-icons {
    color: white; }

.CamsViewer__EOS {
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.97);
  color: #555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.2s, opacity 0.5s;
  overflow: hidden; }

.CamsViewer__EOS.active {
  height: 100%;
  opacity: 0.97;
  transition: height 0.2s, opacity 0.5s;
  z-index: 2; }

.theme-cams--light .CamsViewer__FavoriteButton {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__FavoriteButton .CamsViewer__FavoriteButton__icon {
    color: white; }

.CamsViewer__FavoriteButton {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(var(--FALLBACK, 22, 24, 51), 0.8);
  color: white;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  z-index: 100;
  font-size: 14px;
  cursor: pointer; }
  @media (max-width: 959px) {
    .CamsViewer__FavoriteButton {
      left: 2px;
      top: 2px;
      padding: 2px;
      font-size: 12px; } }
  .CamsViewer__FavoriteButton .material-icons {
    margin-right: 4px; }
  .CamsViewer__FavoriteButton:hover ~ .CamsViewer__TopBanner {
    opacity: 1; }
  .CamsViewer__FavoriteButton__icon {
    color: var(--COLOR_PRIMARY_TEXT, #cd264f); }
    .CamsViewer__FavoriteButton__icon--disabled {
      opacity: 0.7; }

.theme-cams--light .CamsViewer__Voyeur-background {
  background: rgba(var(--COLOR_CONTENT_BACKGROUND_RGB, 97, 97, 97), 0.7); }

.CamsViewer__Overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none !important;
  transition: opacity 0.2s linear;
  opacity: 0;
  z-index: 100;
  top: 0; }
  .CamsViewer__Overlay--show {
    display: flex !important;
    transition: opacity 0.2s linear;
    opacity: 1; }

.CamsViewer__Voyeur {
  background-size: cover; }

.CamsViewer__Voyeur-background {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; }

.CamsViewer__Voyeur-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .CamsViewer__Voyeur-content .other-online-description {
    margin-bottom: 3rem; }
  @media (max-width: 959px) {
    .CamsViewer__Voyeur-content button {
      width: 100%;
      font-size: 15px;
      margin-bottom: 10px !important; }
    .CamsViewer__Voyeur-content .other-online-description {
      margin-bottom: 2rem; } }
  @media (max-width: 960px) {
    .CamsViewer__Voyeur-content button {
      font-size: 14px; }
    .CamsViewer__Voyeur-content .other-online-description {
      margin-bottom: 1rem; } }

.CamsViewer__Voyeur-title {
  font-size: 30px;
  margin-bottom: 32px; }
  @media (max-width: 959px) {
    .CamsViewer__Voyeur-title {
      margin-bottom: 5px;
      font-size: 20px; } }
  .CamsViewer__Voyeur-title-buttons {
    width: 100%;
    display: flex;
    justify-content: center; }
    @media (max-width: 959px) {
      .CamsViewer__Voyeur-title-buttons {
        flex-direction: column;
        align-items: center; } }

.CamsViewer__Voyeur-image-gallery {
  display: flex;
  justify-content: center;
  width: 100%; }
  .CamsViewer__Voyeur-image-gallery .image-gallery-content {
    width: 100%; }
  .CamsViewer__Voyeur-image-gallery .image-gallery-slide-wrapper {
    display: flex;
    justify-content: center; }
  .CamsViewer__Voyeur-image-gallery .image-gallery-slide {
    display: flex;
    line-height: 100%; }

.CamsViewer__Voyeur-other-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  .CamsViewer__Voyeur-other-container img {
    width: 160px;
    height: 160px;
    margin: 0 30px;
    cursor: pointer;
    border-radius: 50%;
    object-fit: cover; }
  @media (max-width: 959px) {
    .CamsViewer__Voyeur-other-container {
      margin-top: -20px; }
      .CamsViewer__Voyeur-other-container svg {
        width: 20px; } }
  @media (max-width: 960px) {
    .CamsViewer__Voyeur-other-container {
      margin-top: 0; } }

.CamsViewer__Popover-container {
  text-align: center; }

.CamsViewer__Popover-title {
  font-size: 30px;
  margin-bottom: 67px;
  text-align: center; }
  @media (max-width: 959px) {
    .CamsViewer__Popover-title {
      font-size: 15px;
      margin-top: 15px; } }

.CamsViewer #loadingSign-Nplayer, .CamsViewer #audio-Nplayer {
  display: none !important; }

.CamsViewer #nplayer {
  height: 1px;
  transition: height 1s; }

.CamsViewer #middleView-Nplayer, .CamsViewer #playButton-Nplayer {
  display: none; }

.CamsViewer__controls {
  width: 100%;
  z-index: 2;
  top: 0;
  position: absolute;
  height: 100%; }

.CamsViewer__PlayerN {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: #666;
  text-align: center;
  overflow: hidden; }
  @media (max-width: 959px) {
    .CamsViewer__PlayerN {
      overflow: hidden; } }

.CamsViewer__bg {
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8; }
  .CamsViewer__bg--blur {
    filter: blur(15px); }

.CamsViewer__play {
  cursor: pointer;
  width: 20%;
  height: 20%;
  position: absolute;
  top: 40.5%;
  left: 40.5%;
  display: none;
  opacity: 0;
  transition: opacity .5s; }
  .CamsViewer__play.active {
    z-index: 1;
    width: 25%;
    height: 25%;
    position: absolute;
    top: 38%;
    left: 38%;
    opacity: .85;
    transition: opacity .5s;
    display: block; }
  .CamsViewer__play:hover {
    opacity: 1;
    transition: opacity .2s; }

.CamsViewer__Spinner {
  width: 25%;
  height: 25%;
  position: absolute;
  top: 38%;
  left: 38%;
  display: none;
  opacity: 0;
  transition: opacity .5s; }
  .CamsViewer__Spinner.active {
    opacity: 1;
    transition: opacity .5s;
    display: block; }

.CamsViewer__cover {
  position: absolute;
  left: 55px;
  right: 55px;
  top: 55px;
  bottom: 55px;
  z-index: 1; }
  .CamsViewer__cover--click {
    cursor: pointer; }
  @media (max-width: 959px) {
    .CamsViewer__cover {
      left: 50px;
      right: 50px;
      top: 50px;
      bottom: 50px; } }

.CamsViewer__TipCircle {
  position: absolute;
  bottom: 10px;
  right: 65px;
  width: 120px;
  height: 120px;
  padding: 4px;
  cursor: pointer;
  z-index: 3; }
  .CamsViewer__TipCircle .MuiCircularProgress-root {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
  .CamsViewer__TipCircle .MuiCircularProgress-svg circle {
    stroke: url(#freeToTipLinear); }
  .CamsViewer__TipCircle-svg {
    width: 0;
    height: 0; }

.CamsViewer__TipCircle-container {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.CamsViewer__TipCircle-token {
  filter: invert(29%) sepia(74%) saturate(2681%) hue-rotate(350deg) brightness(98%) contrast(91%); }
  .CamsViewer__TipCircle-token--reach-goal {
    filter: invert(55%) sepia(97%) saturate(752%) hue-rotate(127deg) brightness(91%) contrast(99%); }

.CamsViewer__TipCircle-current {
  color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
  font-size: 20px;
  margin-bottom: 7px; }
  .CamsViewer__TipCircle-current--reach-goal {
    color: #01b385; }

.CamsViewer__TipCircle-target {
  color: var(--COLOR_PRIMARY_TEXT, white);
  font-size: 12px; }

/*-------linear-gradient-------*/
/*-----------------------------*/
.CamsViewer__TopBanner {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  padding-left: 180px;
  font-size: 14px;
  padding-top: 5px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden; }
  .CamsViewer__TopBanner:hover {
    opacity: 1; }

.CamsViewer__NudeChatPopover {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 200; }

.CamsViewer__NudeChatPopover-title {
  font-size: 30px;
  margin-bottom: 67px;
  text-align: center; }
  @media (max-width: 959px) {
    .CamsViewer__NudeChatPopover-title {
      font-size: 15px;
      margin-top: 15px; } }

.CamsViewer__LeaveShowConfirmPopover {
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000; }

.CamsViewer__LeaveShowConfirmPopover-container {
  width: 600px;
  height: 200px;
  border-radius: 3px;
  background-size: cover;
  padding: 50px 0 50px 0 !important; }

.CamsViewer__LeaveShowConfirmPopover-button-container {
  width: 100%; }

.CamsViewer__LeaveShowConfirmPopover-title {
  font-size: 20px;
  text-decoration: none solid var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 35px; }

.privateChatButton {
  position: absolute !important;
  right: 0;
  width: 100%;
  max-width: 180px;
  margin: 1rem;
  z-index: 100; }
  @media (max-width: 959px) {
    .privateChatButton {
      margin: 0.25rem; } }

.theme-cams--light .CamsViewer__EndShow {
  background: rgba(var(--COLOR_CONTENT_BACKGROUND_RGB, 97, 97, 97), 0.7); }

.CamsViewer__EOS {
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.97);
  color: #555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.2s, opacity 0.5s;
  overflow: hidden; }

.CamsViewer__EndShow {
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
  color: var(--COLOR_PRIMARY_TEXT, white);
  text-decoration: none solid white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.2s, opacity 0.5s;
  overflow: hidden; }

.CamsViewer__EndShow-title {
  font-size: 30px;
  margin-bottom: 40px; }

.CamsViewer__EndShow-subtitle {
  font-size: 20px; }

.CamsViewer__EndShow-button {
  margin: 0px auto; }

.CamsViewer__EndShow.active {
  height: 100%;
  opacity: 0.97;
  transition: height 0.2s, opacity 0.5s;
  z-index: 120; }

.theme-cams--light .CamsViewer__RegisterOverlay {
  background: rgba(var(--COLOR_CONTENT_BACKGROUND_RGB, 97, 97, 97), 0.7); }

.CamsViewer__RegisterOverlay {
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.95);
  color: var(--COLOR_PRIMARY_TEXT, white);
  text-decoration: none solid white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.2s, opacity 0.5s;
  overflow: hidden; }

.CamsViewer__RegisterOverlay-title {
  font-size: 30px;
  margin-bottom: 40px; }

.CamsViewer__RegisterOverlay-subtitle {
  font-size: 20px; }

.CamsViewer__RegisterOverlay.active {
  height: 100%;
  opacity: 0.95;
  transition: height 0.2s, opacity 0.5s;
  z-index: 1000; }

.RecommendModels__container * {
  cursor: pointer;
  font-size: 13px;
  text-align: center; }

.RecommendModels__name {
  color: var(--COLOR_PRIMARY_TEXT, white); }

.RecommendModels__model-list {
  overflow: hidden; }
  .RecommendModels__model-list.otherModels {
    flex-wrap: wrap; }
    .RecommendModels__model-list.otherModels > div {
      width: 50%;
      padding: 20px 10px; }
    @media (orientation: landscape) and (max-width: 960px) {
      .RecommendModels__model-list.otherModels > div {
        width: auto; } }
    .RecommendModels__model-list.otherModels img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover; }
    @media (max-width: 959px) {
      .RecommendModels__model-list.otherModels img {
        width: 92px;
        height: 92px; } }

.CamsViewer__LowFund-background {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; }

.CamsViewer__LowFund-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--COLOR_PRIMARY_TEXT, white); }

.CamsViewer__LowFund-title-section {
  margin-bottom: 32px; }

.CamsViewer__LowFund-title {
  font-size: 30px; }

.CamsViewer__LowFund-subtitle {
  font-size: 16px; }

/* Model card colors */
.CamsViewer__TopAdmirerPopover {
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: center;
  z-index: 200; }

@media (max-width: 959px) {
  .CamsViewer__TopAdmirerPopover.CamsViewer__Overlay {
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    max-height: 100%; }
  .CamsViewer__TopAdmirerPopover-content {
    max-width: 100% !important;
    padding: 20px 10px; } }
  @media (max-width: 959px) and (max-width: 2559px) {
    .CamsViewer__TopAdmirerPopover-content {
      margin-bottom: 1.5rem; } }
  @media (max-width: 959px) and (max-width: 1919px) {
    .CamsViewer__TopAdmirerPopover-content {
      margin-bottom: 1rem; } }

.CamsViewer__TopAdmirerPopover-title {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 67px;
  text-align: center; }
  @media (max-width: 959px) {
    .CamsViewer__TopAdmirerPopover-title {
      font-size: 15px;
      margin: 0 20px 0 0; } }
  @media (max-width: 2559px) {
    .CamsViewer__TopAdmirerPopover-title {
      margin-bottom: 3rem; } }
  @media (max-width: 1919px) {
    .CamsViewer__TopAdmirerPopover-title {
      margin-bottom: 1rem; } }

.CamsViewer__TopAdmirerPopover-content {
  text-align: center;
  max-height: 100%;
  overflow: auto; }
  .CamsViewer__TopAdmirerPopover-content button {
    width: 100%; }

.CamsViewer__TopAdmirerPopover-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left; }
  .CamsViewer__TopAdmirerPopover-list li {
    vertical-align: middle;
    font-size: 14px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-decoration: none solid var(--COLOR_PRIMARY_TEXT, white);
    display: flex; }
    @media (max-width: 2559px) {
      .CamsViewer__TopAdmirerPopover-list li {
        margin-bottom: 1rem; } }
    @media (max-width: 1919px) {
      .CamsViewer__TopAdmirerPopover-list li {
        margin-bottom: .5rem; } }
    .CamsViewer__TopAdmirerPopover-list li span {
      flex: 1; }

.CamsViewer__TopAdmirerPopover-check {
  fill: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
  width: 18px;
  height: 18px;
  margin-right: 10px; }

.CamsViewer__TopAdmirerPopover-medal {
  width: 72px;
  fill: white; }

.CamsViewer__TopAdmirerBanner {
  display: flex;
  flex-direction: row;
  padding: 10px 5px 10px 15px;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(90deg, #990000 0%, rgba(255, 0, 0, 0.7) 100%);
  color: var(--THEME_INVERTED, white);
  font-size: 14px;
  align-items: center; }
  .CamsViewer__TopAdmirerBanner-badge {
    width: 30px;
    margin-right: 10px;
    fill: var(--THEME_INVERTED, white); }
  .CamsViewer__TopAdmirerBanner-text p {
    margin: 0; }
  .CamsViewer__TopAdmirerBanner-text svg {
    width: 12px;
    fill: var(--THEME_INVERTED, white); }
  .CamsViewer__TopAdmirerBanner-spacing {
    flex-grow: 1; }
  .CamsViewer__TopAdmirerBanner button {
    padding: 5px; }
  .CamsViewer__TopAdmirerBanner .material-icons {
    color: var(--THEME_INVERTED, white) !important;
    font-size: 16px; }

/* Model card colors */
.CamsViewer__OfflineModel {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51);
  z-index: 10;
  overflow: hidden;
  top: 0; }
  .CamsViewer__OfflineModel img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 749px) {
    .CamsViewer__OfflineModel {
      max-height: 256px; } }

.CamsViewer__OfflineModel-loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

.CamsViewer__OfflineStatusBadge {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  top: 10px;
  right: 10px;
  height: 26px;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  color: black;
  z-index: 5; }

.swiper-container {
  width: 100%;
  height: 100%; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 50px 50px;
  background-position: center center;
  background-repeat: no-repeat; }

.swiper-button-prev {
  left: 50px;
  right: auto;
  width: 24px;
  height: 24px;
  border-right-width: 2px;
  border-left-width: 0;
  border-bottom-width: 2px;
  border-top-width: 0;
  border-style: solid;
  border-color: #cccccc;
  background-size: cover;
  transform: rotate(135deg); }

.swiper-button-next {
  right: 50px;
  left: auto;
  width: 24px;
  height: 24px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 0;
  border-top-width: 0;
  border-style: solid;
  border-color: #cccccc;
  background-size: cover;
  transform: rotate(-45deg); }

.OtherModels {
  width: 320px;
  background: var(--COLOR_PRIMARY_BACKGROUND, #1b1b29);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; }
  .OtherModels__title {
    font-size: 24px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-decoration: none solid white; }
  .OtherModels__description {
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-decoration: none solid white; }
  @media (max-width: 959px) {
    .OtherModels {
      width: auto;
      padding: 10px; }
      .OtherModels__title {
        font-size: 16px;
        margin: 0.4rem 0; }
      .OtherModels__description {
        font-size: 12px;
        margin: 0.2rem 0; } }

.joinShowButton {
  width: 100%;
  max-width: 350px;
  margin: 1rem; }
  @media (max-width: 959px) {
    .joinShowButton {
      margin: 0.25rem; } }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.MiniViewer {
  max-width: 375px;
  width: 100%;
  z-index: 1500;
  position: fixed;
  right: 20px;
  bottom: 80px;
  background-color: transparent;
  min-height: 211px; }
  .MiniViewer > div > .CamsViewer__BuzzRipple-ripple {
    z-index: 1000; }
  .MiniViewer #loadingSign-Nplayer, .MiniViewer #audio-Nplayer {
    display: none !important; }
  .MiniViewer__btn {
    position: absolute !important;
    z-index: 10;
    bottom: 10px;
    right: 10px; }
    .MiniViewer__btn--buzz {
      margin: 0;
      background: #d05cf7;
      background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
      background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%);
      border-radius: 3px; }
      .MiniViewer__btn--buzz > button {
        background-image: none;
        padding: 12px 12px; }
  .MiniViewer__buzz-icon {
    height: 20px;
    fill: white;
    display: block; }
  .MiniViewer__close-btn {
    z-index: 1060 !important;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    font-size: 1rem !important;
    z-index: 30;
    fill: var(--COLOR_PRIMARY_TEXT, rgba(255, 255, 255, 0.7)); }
  .MiniViewer__hide {
    display: none; }
  .MiniViewer #MiniViewer > #Nplayer > #h5live-Nplayer {
    transform: translate(0, 0) !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important; }

.MiniViewerOverlay {
  background: rgba(0, 0, 0, 0.9);
  color: var(--COLOR_PRIMARY_TEXT, white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1050;
  height: 1;
  height: 100%;
  width: 100%;
  text-align: center; }
  .MiniViewerOverlay__title {
    margin-bottom: 50px; }
  .MiniViewerOverlay__button {
    text-transform: uppercase; }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.CamsViewer__SwitchTippingShow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; }
  .CamsViewer__SwitchTippingShow--model-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 2px 1px 10px black;
    border: 2px solid white;
    background-size: cover !important; }
  .CamsViewer__SwitchTippingShow--text-bubble {
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 2px black;
    opacity: .8;
    color: var(--COLOR_PRIMARY_TEXT, white); }

.CamsViewer--cobrand .CamsViewer__ControlButton {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .CamsViewer--cobrand .CamsViewer__ControlButton--volume-container {
    background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

.CamsViewer--cobrand .CamsViewer__FavoriteButton {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .CamsViewer--cobrand .CamsViewer__FavoriteButton .CamsViewer__FavoriteButton__icon {
    color: white; }

.CamsViewer--cobrand .CamsViewer__fanclub-list-item .u-color-orange,
.CamsViewer--cobrand .CamsViewer__fanclub-list-item b {
  color: var(--COLOR_PRIMARY_TEXT) !important;
  font-weight: bold; }

.CamsViewer--cobrand .ActionButtons__button--blue {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }

.theme-cams--light .CamsViewer--Fullscreen__Chat .CamsViewer__ChatBox-input {
  border-top: inset 1px black; }

.theme-cams--light .CamsViewer__Chat .CamsViewer__ChatBox {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6); }

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; }

.CamsViewer {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  padding: 15px 15px 0;
  margin-bottom: 50px; }
  @media (max-width: 959px) {
    .CamsViewer {
      height: calc(100vh);
      height: calc((var(--vh, 1vh) * 100));
      flex-direction: column;
      margin-bottom: 20px;
      padding: 0; } }
  .CamsViewer__Player-container {
    flex: 1;
    width: 100%;
    position: relative; }
    .CamsViewer__Player-container--hasBottomButtons {
      max-height: calc(100% - 48px); }
  .CamsViewer__Spinner {
    width: 25%;
    height: 25%;
    position: absolute;
    top: 38%;
    left: 38%;
    display: none;
    opacity: 0;
    transition: opacity .5s; }
    .CamsViewer__Spinner--active {
      opacity: 1;
      transition: opacity .5s;
      display: block; }
  .CamsViewer__Viewer-container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    margin-right: 3px;
    flex: 1; }
    @media (max-width: 959px) {
      .CamsViewer__Viewer-container {
        width: 100%;
        margin-bottom: 55px;
        height: 0 !important;
        padding-top: 0 !important; }
        .CamsViewer__Viewer-container .CamsViewer__bg {
          background-image: none !important; } }
    .CamsViewer__Viewer-container--Fullscreen {
      max-width: 100% !important;
      flex-basis: 100% !important;
      position: absolute !important;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin-right: 0;
      max-height: 100%; }
      .CamsViewer__Viewer-container--Fullscreen .CamsViewer__bg {
        background-image: none !important; }
    .CamsViewer__Viewer-container .CamsViewer__FavoriteButton,
    .CamsViewer__Viewer-container .ActionsContainer,
    .CamsViewer__Viewer-container .invisibleInactive {
      opacity: 0; }
    .CamsViewer__Viewer-container--moving .CamsViewer__FavoriteButton,
    .CamsViewer__Viewer-container--moving .ActionsContainer,
    .CamsViewer__Viewer-container--moving .invisibleInactive {
      opacity: 1; }
  .CamsViewer__Standalone-exit-button {
    position: absolute;
    top: 10px;
    right: 10px; }
  .CamsViewer__ChatDragContainer {
    height: 100%; }
  .CamsViewer__Chat {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    overflow: hidden;
    padding: 0 0; }
    @media (max-width: 959px) {
      .CamsViewer__Chat {
        width: 100%;
        flex: 1; } }
    .CamsViewer__Chat--Fullscreen {
      position: absolute !important;
      right: 10px !important;
      top: 60px !important;
      max-height: calc(100% - 60px);
      min-height: 550px;
      width: 320px;
      height: 100%;
      z-index: 2;
      overflow: initial; }
      .CamsViewer__Chat--Fullscreen .CamsViewer__ChatBox {
        background: rgba(var(--THEME, 22, 24, 51), 0.3);
        height: 600px; }
  .CamsViewer__offline {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--COLOR_PRIMARY_TEXT, white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .CamsViewer__FavoriteButton {
    opacity: 0;
    transition: opacity .2s; }

.CamsViewer-token {
  display: none !important; }

.CamsViewer__token-icon {
  height: 15px; }

/* Model card colors */
.ModelStarRater {
  display: flex; }
  .ModelStarRater__star {
    cursor: pointer; }
    .ModelStarRater__star--chosen {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
    .ModelStarRater__star--disabled {
      cursor: not-allowed; }

/*-------linear-gradient-------*/
/*-----------------------------*/
/* Model card colors */
.notistack {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 4px;
  min-height: 68px;
  width: 500px;
  max-width: 100%;
  background-color: rgba(11, 12, 28, 0.7);
  box-shadow: 1px 7px 14px -5px black; }
  .notistack__line {
    width: 4px; }
  .notistack__content {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; }
  .notistack__description, .notistack__title {
    color: #efefef;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px; }
  .notistack__description {
    font-size: 14px; }
  .notistack__message {
    font-size: 14px;
    margin-top: 0;
    color: #b3b3b3; }
  .notistack__icon {
    width: 28px;
    height: 28px;
    margin: 0 20px;
    border-radius: 50%;
    align-self: center;
    display: flex;
    justify-content: center; }
    .notistack__icon svg {
      width: 14px;
      fill: #fff; }
    .notistack__icon--custom {
      width: unset;
      height: unset; }
  .notistack__actions {
    display: flex;
    align-items: center;
    margin: 0 8px 0; }
  .notistack__button {
    background-image: linear-gradient(90deg, var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b) 3%, var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT-DARKEN, #cd264f) 100%);
    color: #ffffff !important;
    border-radius: 2px !important;
    margin-right: 5px !important;
    min-width: 84px !important; }
  .notistack__close svg {
    width: 14px;
    fill: #b3b3b3; }
  .notistack--success .notistack__icon,
  .notistack--success .notistack__line {
    background-color: #2bde3f; }
  .notistack--default .notistack__icon,
  .notistack--default .notistack__line, .notistack--info .notistack__icon,
  .notistack--info .notistack__line {
    background-color: #1d72f3; }
  .notistack--warning .notistack__icon,
  .notistack--warning .notistack__line {
    background-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .notistack--error .notistack__icon,
  .notistack--error .notistack__line {
    background-color: #cd264f; }
  .notistack--processing .notistack__line {
    background-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .notistack--processing .notistack__icon svg {
    width: 100%; }

/* Model card colors */
.ExplicitMaterialModal {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.85);
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .ExplicitMaterialModal__wrapper-text {
    text-align: left; }
  .ExplicitMaterialModal__wrapper-icon {
    margin-right: 0.625rem; }
  .ExplicitMaterialModal__content {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between; }
  .ExplicitMaterialModal__icon {
    height: 42px;
    width: 42px;
    border: 2px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
    border-radius: 100%;
    background-color: rgba(var(--COLOR_PRIMARY_TEXT_RGB, "255,255,255"), 0.2);
    color: var(--COLOR_PRIMARY_TEXT, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900; }
  .ExplicitMaterialModal__text {
    font-size: 0.75rem; }
  .ExplicitMaterialModal__title {
    font-size: 1.188rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.25rem; }
  .ExplicitMaterialModal__link {
    color: var(--COLOR_SECONDARY_LINK, #ef951b);
    cursor: pointer; }
    .ExplicitMaterialModal__link--cookie-policy {
      margin-right: 3px; }
    .ExplicitMaterialModal__link--cookie-policy, .ExplicitMaterialModal__link--terms-of-use {
      margin-left: 3px; }
    .ExplicitMaterialModal__link:hover {
      text-decoration: underline; }

/* Model card colors */
.theme-cams--light .NotificationModals__link, .theme-cams--light .NotificationModals__Link:hover {
  color: var(--COLOR_SECONDARY_LINK, black); }

.NotificationModals {
  position: fixed;
  z-index: 1300;
  bottom: 0;
  right: 0; }
  .NotificationModals__apple-mobile {
    bottom: 0;
    right: 0;
    left: 0; }
  .NotificationModals__android-apple-tablet {
    top: 0;
    right: 0; }
  .NotificationModals__mobile {
    bottom: 60px; }
  .NotificationModals__modal {
    background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.85);
    width: 620px;
    max-width: 620px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    padding: 2rem 3rem;
    margin-top: 20px;
    display: flex; }
    .NotificationModals__modal:first-child {
      margin-top: 0; }
    @media (max-width: 749px) {
      .NotificationModals__modal {
        bottom: 50px; } }
    @media (max-width: 959px) {
      .NotificationModals__modal {
        width: 100%;
        padding: 1rem 2rem; } }
  .NotificationModals__close {
    fill: var(--COLOR_PRIMARY_TEXT, white);
    cursor: pointer;
    margin-left: 20px; }
  .NotificationModals__content {
    flex-grow: 1; }
  .NotificationModals__text {
    font-size: 0.75rem; }
  .NotificationModals__link {
    color: var(--COLOR_SECONDARY_LINK, #ef951b);
    cursor: pointer; }
    .NotificationModals__link:hover {
      color: var(--COLOR_SECONDARY_LINK_HOVER, #ef951b);
      text-decoration: underline; }

.theme-cams--light .NotificationModals__link:hover {
  color: var(--COLOR_SECONDARY_LINK, black); }

.FeatureSwitch__Cobrand {
  z-index: 1000;
  position: fixed;
  left: 20px;
  bottom: 100px;
  padding: 15px;
  min-height: 300px;
  background-color: rgba(0, 0, 0, 0.7);
  transition: transform 0.2s linear;
  width: 380px;
  max-width: 70%;
  max-height: 80vh;
  overflow-y: auto; }
  .FeatureSwitch__Cobrand-select .CamsSelect__input {
    border: 0 !important; }
  .FeatureSwitch__Cobrand--hide {
    transform: translateX(calc(-100% - 15px));
    overflow: visible; }
    .FeatureSwitch__Cobrand--hide .FeatureSwitch__Cobrand-hide-button {
      position: absolute;
      bottom: 0;
      right: -30px; }
  .FeatureSwitch__Cobrand-hide-button {
    background-color: rgba(var(--THEME_INVERTED, black), 0.7);
    width: 30px;
    height: 30px;
    cursor: pointer; }
    .FeatureSwitch__Cobrand-hide-button .material-icons {
      color: white; }
  .FeatureSwitch__Cobrand-item {
    margin: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 12px; }

.FeatureSwitch__Cookie-item {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .FeatureSwitch__Cookie-item label {
    color: white;
    width: 100px; }
  .FeatureSwitch__Cookie-item input {
    flex-grow: 1; }

/* Model card colors */
.CamsSwitch {
  position: relative;
  width: 48px;
  transition: width 0.2s linear;
  display: inline-flex; }
  .CamsSwitch__root.MuiSwitch-root {
    width: 48px;
    height: 26px;
    padding: 0;
    margin: 0; }
  .CamsSwitch__switchBase.MuiSwitch-switchBase {
    padding: 3px;
    color: black; }
    .CamsSwitch__switchBase.MuiSwitch-switchBase.Mui-checked {
      color: white; }
      .CamsSwitch__switchBase.MuiSwitch-switchBase.Mui-checked + .CamsSwitch__track.MuiSwitch-track {
        background-color: transparent;
        background-image: linear-gradient(90deg, #67d658 0%, #58bfd6 100%);
        opacity: 1;
        border: none; }
  .CamsSwitch__focusVisible.MuiSwitch-focusVisible .CamsSwitch__thumb.MuiSwitch-thumb {
    color: #52d869;
    border: 6px solid #fff; }
  .CamsSwitch__thumb.MuiSwitch-thumb {
    width: 20px;
    height: 20px; }
  .CamsSwitch__track.MuiSwitch-track {
    border-radius: 13px;
    border: 1px solid #BDBDBD;
    background-color: #cccccc;
    opacity: 1;
    transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; }
  .CamsSwitch--loading {
    opacity: 0.7;
    width: 83px; }
  .CamsSwitch__loader {
    position: absolute;
    right: 10px;
    top: 3px; }
    .CamsSwitch__loader > svg {
      color: white; }

/* Model card colors */
.TokenOrderFormDialog {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0 !important;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll; }
  .TokenOrderFormDialog iframe {
    display: flex;
    background: transparent;
    border: 0;
    width: 100vw;
    min-height: 900px; }
  .TokenOrderFormDialog__centered {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--COLOR_PRIMARY_TEXT, white); }
  .TokenOrderFormDialog__backdrop {
    background-color: transparent !important; }
  .TokenOrderFormDialog__close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
    .TokenOrderFormDialog__close-button .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white); }

/* Model card colors */
.theme-cams--light .TokenOrderFormDialog {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.85) !important; }

.TokenOrderFormDialog {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 40px;
  background-color: transparent !important;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  -webkit-overflow-scrolling: touch !important;
  overflow-y: scroll !important; }
  .TokenOrderFormDialog__centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    max-height: 800px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    font-size: 14px; }
    .TokenOrderFormDialog__centered h2 {
      font-size: 24px;
      padding-bottom: 20px; }
    .TokenOrderFormDialog__centered span {
      line-height: normal; }
    .TokenOrderFormDialog__centered .red-text {
      padding-top: 50px;
      width: 100%;
      justify-content: left;
      color: red;
      font-weight: 700; }
  .TokenOrderFormDialog__backdrop {
    background-color: transparent !important; }
  .TokenOrderFormDialog__close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
    .TokenOrderFormDialog__close-button .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white); }

/* Model card colors */
.BalanceNotEnoughDialog {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7) !important; }
  .BalanceNotEnoughDialog__backdrop {
    background-color: transparent !important; }
  .BalanceNotEnoughDialog__close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
    .BalanceNotEnoughDialog__close-button .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white); }
  .BalanceNotEnoughDialog__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
  .BalanceNotEnoughDialog__inner {
    max-width: 620px;
    padding: 32px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    margin: auto;
    font-size: 30px;
    text-align: center; }
  .BalanceNotEnoughDialog .cams-button {
    width: 100%;
    margin-left: 30px;
    margin-right: 30px; }
  .BalanceNotEnoughDialog .inner-text {
    margin-bottom: 10px; }
  .BalanceNotEnoughDialog .inner-text-tail {
    margin-top: 10px; }

/* Model card colors */
.theme-cams--light .TokenOrderFormDialog {
  background: rgba(0, 0, 0, 0.85) !important; }

.TokenOrderFormDialog {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: transparent !important;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%); }
  .TokenOrderFormDialog__backdrop {
    background-color: transparent !important; }
  .TokenOrderFormDialog__close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
    .TokenOrderFormDialog__close-button .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white); }
  .TokenOrderFormDialog .TokenOrderForm__container {
    background-image: none !important; }
  .TokenOrderFormDialog .TokenOrderFormDialog__inner {
    width: 720px;
    max-width: 100%;
    margin-top: 100px; }

/* Model card colors */
.CamsModal {
  background-image: linear-gradient(130deg, rgba(239, 149, 27, 0.8) 2%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 53%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 83%, rgba(205, 38, 79, 0.7) 100%); }
  .CamsModal__icon {
    position: fixed;
    top: 50px;
    right: 50px;
    color: white;
    cursor: pointer; }

/* Model card colors */
.AddToHomescreenModal__text {
  color: var(--COLOR_PRIMARY_TEXT, white); }

.AddToHomescreenModal__ios {
  width: 25px;
  height: 25px; }
  .AddToHomescreenModal__ios > * {
    stroke: var(--COLOR_PRIMARY_TEXT, white);
    stroke-width: 32px; }

.AddToHomescreenModal__android {
  width: 25px;
  height: 25px; }

/* Model card colors */
.theme-cams--light .LoginModal__recaptcha {
  color: var(--COLOR_PRIMARY_TEXT, white); }

.theme-cams--light .LoginModal__benefits {
  background: var(--COLOR_PRIMARY_BACKGROUND, black); }

.theme-cams--light .LoginModal__error {
  color: var(--THEME_INVERTED, black); }

.LoginModal {
  background-color: var(--COLOR_PRIMARY_BACKGROUND);
  background-image: var(--COLOR_PRIMARY_BACKGROUND, linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%));
  height: 70vh;
  min-height: 500px;
  overflow-y: auto; }
  @media (max-width: 959px) {
    .LoginModal {
      height: 90vh;
      background-image: none !important; } }
  .LoginModal--cobrand .LoginModal__benefits {
    background: transparent; }
  .LoginModal--cobrand .LoginModal__cta-text--button:hover,
  .LoginModal--cobrand .LoginModal__input--forget-password:hover {
    color: var(--COLOR_SECONDARY_LINK_HOVER); }
  .LoginModal__paper {
    background-image: var(--COLOR_PRIMARY_BACKGROUND, linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%));
    margin: 0; }
    @media (max-width: 959px) {
      .LoginModal__paper {
        width: 90% !important;
        margin: 0 !important; } }
  .LoginModal__close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    z-index: 30;
    fill: #333333; }
    @media (max-width: 959px) {
      .LoginModal__close-btn {
        fill: var(--COLOR_PRIMARY_TEXT, rgba(255, 255, 255, 0.7)); } }
  .LoginModal__backdrop {
    background: transparent; }
  .LoginModal__container {
    height: 100%;
    display: flex;
    overflow: hidden; }
  .LoginModal__image, .LoginModal__form, .LoginModal__benefits {
    width: 33.333%;
    transform: skew(-10deg, 0deg); }
    .LoginModal__image > *, .LoginModal__form > *, .LoginModal__benefits > * {
      transform: skew(10deg, 0deg); }
  .LoginModal__image {
    position: relative;
    overflow: hidden;
    transform-origin: bottom left; }
  .LoginModal__image::before {
    content: "";
    transform: skew(10deg, 0deg);
    transform-origin: bottom left;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_1920.jpg") no-repeat top left;
    background-size: cover;
    background-position-x: center;
    background-position-y: center; }
    @media (max-width: 2560px) {
      .LoginModal__image::before {
        background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_1366.jpg") no-repeat top left;
        background-size: cover;
        background-position-x: center;
        background-position-y: center; } }
    @media (max-width: 1279px) {
      .LoginModal__image::before {
        background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_1024.jpg") no-repeat top left;
        background-size: cover;
        background-position-x: center;
        background-position-y: center; } }
    @media (max-width: 959px) {
      .LoginModal__image::before {
        background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_768.jpg") no-repeat top left;
        background-size: cover;
        background-position-x: center;
        background-position-y: center; } }
    @media (max-width: 959px) {
      .LoginModal__image::before {
        background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_480.jpg") no-repeat top left;
        background-size: cover;
        background-position-x: center;
        background-position-y: center; } }
    @media (max-width: 749px) {
      .LoginModal__image::before {
        background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/reg_girl_320.jpg") no-repeat top left;
        background-size: cover;
        background-position-x: center;
        background-position-y: center; } }
  .LoginModal__form::after {
    transform: skew(-10deg, 0deg); }
  .LoginModal__form {
    display: flex;
    margin-top: 4em; }
    @media (max-width: 959px) {
      .LoginModal__form {
        margin-top: 1em; } }
  @media (max-width: 959px) {
    .LoginModal__image, .LoginModal__benefits {
      display: none !important; } }
  @media (max-width: 959px) {
    .LoginModal__form {
      width: 100%; } }
  .LoginModal__benefits {
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(90deg, var(--COLOR_TRANSPARENT, #cd264f) 3%, var(--COLOR_TRANSPARENT, #ef951b) 100%);
    transform-origin: top left; }
    .LoginModal__benefits-wrapper {
      max-width: 66.666%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 7em; }
    .LoginModal__benefits-title {
      text-align: center;
      font-size: 26px;
      font-weight: bold;
      text-transform: uppercase;
      margin-top: 0; }
    .LoginModal__benefits-list > li {
      margin-top: 1.5rem; }
      .LoginModal__benefits-list > li:first-child {
        margin-top: 0; }
  .LoginModal__dialog {
    position: relative; }
    @media (max-width: 959px) {
      .LoginModal__dialog {
        top: 56px !important; } }
  .LoginModal__icon {
    position: absolute;
    top: 10px;
    left: 15px; }
  .LoginModal__title {
    font-size: 26px;
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    font-weight: bold;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase; }
    .LoginModal__title--orange {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .LoginModal__form-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 0 auto; }
    @media (max-width: 959px) {
      .LoginModal__form-container {
        padding: 15px;
        width: 100vw;
        max-width: initial; } }
    .LoginModal__form-container .Recaptcha__wrapper {
      width: 100%; }
    .LoginModal__form-container--drawer {
      background: transparent; }
  .LoginModal__error {
    color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
    font-size: 12px;
    margin-bottom: 5px; }
  .LoginModal__input-container {
    display: flex;
    flex-direction: row; }
    @media (max-width: 959px) {
      .LoginModal__input-container {
        flex-direction: column; } }
  .LoginModal__input {
    height: 45px;
    width: 100%;
    outline: none;
    border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
    border-radius: 3px;
    background: transparent;
    color: var(--COLOR_PRIMARY_TEXT, white);
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center; }
    @media (max-width: 959px) {
      .LoginModal__input {
        width: 100%; } }
    .LoginModal__input--no-border {
      border: 1px solid transparent;
      margin: 8px 0;
      color: #cccccc;
      font-size: 12px;
      position: relative;
      padding-left: 0;
      height: initial; }
    .LoginModal__input--forget-password {
      color: var(--COLOR_SECONDARY_LINK, #ef951b);
      cursor: pointer; }
    .LoginModal__input::placeholder {
      color: var(--COLOR_PRIMARY_TEXT, #ffffff);
      padding: 0 10px;
      font-size: 14px;
      text-align: left; }
    .LoginModal__input::-webkit-contacts-auto-fill-button, .LoginModal__input::-webkit-credentials-auto-fill-button {
      visibility: hidden;
      pointer-events: none;
      position: absolute;
      right: 0; }
  .LoginModal__input-btn {
    width: 100%;
    margin: 0 0;
    font-weight: bold;
    text-transform: uppercase; }
  .LoginModal__input-border label {
    position: absolute;
    top: 1px; }
  .LoginModal__cta-container {
    margin-top: 32px; }
  .LoginModal__cta-text {
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white); }
    .LoginModal__cta-text--button {
      cursor: pointer;
      color: var(--COLOR_SECONDARY_LINK, #ef951b); }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.theme-cams--light .JoinModal__terms {
  color: var(--COLOR_PRIMARY_TEXT, white); }

.theme-cams--light .JoinModal__benefits {
  background: var(--COLOR_PRIMARY_BACKGROUND, black); }

.theme-cams--light .JoinModal__error {
  color: var(--THEME_INVERTED, black); }

.JoinModal {
  background-color: var(--COLOR_PRIMARY_BACKGROUND);
  background-image: var(--COLOR_PRIMARY_BACKGROUND, linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%));
  height: 70vh;
  min-height: 600px; }
  @media (max-width: 959px) {
    .JoinModal {
      height: 90vh;
      background-image: none !important; } }
  .JoinModal--cobrand .JoinModal__benefits {
    background: transparent; }
  .JoinModal--cobrand .JoinModal__cta-text--button:hover,
  .JoinModal--cobrand .JoinModal__terms > span:hover {
    color: var(--COLOR_SECONDARY_LINK_HOVER); }
  @media (max-width: 959px) {
    .JoinModal {
      background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%); } }
  .JoinModal__dialog {
    position: relative; }
    @media (max-width: 959px) {
      .JoinModal__dialog {
        top: 56px !important; } }
    .JoinModal__dialog.phone-keyboard-opened {
      top: 0 !important; }
      .JoinModal__dialog.phone-keyboard-opened .MuiDialog-scrollPaper {
        align-items: baseline; }
      .JoinModal__dialog.phone-keyboard-opened .JoinModal__form {
        align-items: baseline; }
      .JoinModal__dialog.phone-keyboard-opened .JoinModal__form-container {
        padding: 30px 30px 30px 15px; }
      .JoinModal__dialog.phone-keyboard-opened .JoinModal__paper {
        margin-top: 3px; }
  .JoinModal__paper {
    background-image: var(--COLOR_PRIMARY_BACKGROUND, linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%));
    margin: 0; }
    @media (max-width: 959px) {
      .JoinModal__paper {
        width: 90% !important;
        margin: 0 !important; } }
  .JoinModal__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    cursor: pointer;
    opacity: 0.5;
    font-size: 1rem !important;
    z-index: 30;
    fill: var(--COLOR_PRIMARY_TEXT, rgba(255, 255, 255, 0.7)); }
  .JoinModal__backdrop {
    background: transparent; }
  .JoinModal__container {
    height: 100%;
    display: flex;
    overflow: hidden; }
  .JoinModal__image, .JoinModal__form, .JoinModal__benefits {
    transform: skew(-10deg, 0deg); }
    .JoinModal__image > *, .JoinModal__form > *, .JoinModal__benefits > * {
      transform: skew(10deg, 0deg); }
  .JoinModal__image {
    width: 36%;
    position: relative;
    overflow: hidden;
    transform-origin: top left; }
  .JoinModal__image::before {
    content: "";
    transform: skew(10deg, 0deg);
    transform-origin: top center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("https://secureimage.securedataimages.com/images/cams/cams2/registration/auth-bg.jpg") no-repeat top center;
    background-size: cover; }
  .JoinModal__form::after {
    transform: skew(-10deg, 0deg); }
  .JoinModal__form {
    width: 33.3333%;
    display: flex;
    align-items: center; }
  @media (max-width: 959px) {
    .JoinModal__image, .JoinModal__benefits {
      display: none !important; } }
  @media (max-width: 959px) {
    .JoinModal__form {
      width: 100%; } }
  .JoinModal__benefits {
    width: 37%;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(90deg, var(--COLOR_TRANSPARENT, #cd264f) 3%, var(--COLOR_TRANSPARENT, #ef951b) 100%);
    transform-origin: bottom left; }
    .JoinModal__benefits-wrapper {
      max-width: 66.666%;
      margin-left: auto;
      margin-right: 22%;
      min-height: 425px; }
    .JoinModal__benefits-title {
      text-align: center;
      font-size: 26px;
      font-weight: bold;
      text-transform: uppercase; }
    .JoinModal__benefits-list > li {
      margin-top: 2.2rem; }
      .JoinModal__benefits-list > li:first-child {
        margin-top: 0; }
  .JoinModal__cta-text {
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white); }
    .JoinModal__cta-text--button {
      color: var(--COLOR_SECONDARY_LINK, #ef951b);
      cursor: pointer; }
  .JoinModal__cta-container {
    margin-top: 16px;
    margin-bottom: 16px; }
  .JoinModal__terms {
    width: 100%;
    font-size: 11px;
    color: var(--COLOR_SECONDARY_TEXT, #999999);
    text-align: justify; }
    .JoinModal__terms > span {
      color: var(--COLOR_SECONDARY_LINK, #ef951b);
      text-decoration: underline;
      cursor: pointer; }
  .JoinModal__input-border label {
    position: absolute;
    top: 1px; }
  .JoinModal__input-btn {
    width: 100%;
    margin: 8px 0;
    font-weight: bold; }
  .JoinModal__input {
    height: 45px;
    width: 100%;
    outline: none;
    border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
    border-radius: 3px;
    background: transparent;
    color: var(--COLOR_PRIMARY_TEXT, white);
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center; }
    @media (max-width: 959px) {
      .JoinModal__input {
        width: 100%; } }
    .JoinModal__input--no-border {
      border: 1px solid transparent;
      margin: 10px 0;
      color: #cccccc;
      font-size: 12px;
      position: relative;
      padding-left: 0;
      height: initial; }
    .JoinModal__input--forget-password {
      color: var(--COLOR_SECONDARY_LINK, #ef951b); }
    .JoinModal__input::placeholder {
      color: var(--COLOR_PRIMARY_TEXT, #ffffff);
      padding: 0 10px;
      font-size: 14px;
      text-align: left; }
  .JoinModal__input-container {
    display: flex;
    flex-direction: row;
    margin: 4px 0; }
    @media (max-width: 959px) {
      .JoinModal__input-container {
        flex-direction: column; } }
  .JoinModal__error {
    color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
    font-size: 12px;
    margin: 5px 0; }
    .JoinModal__error span {
      display: block; }
  .JoinModal__title {
    font-size: 26px;
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    font-weight: bold;
    text-align: center;
    margin-top: .5rem;
    margin-bottom: .5rem;
    text-transform: uppercase; }
    .JoinModal__title:first-child {
      margin-top: 3rem; }
    .JoinModal__title > span:not(:last-child) {
      margin-left: 5px; }
    .JoinModal__title--orange {
      color: var(--COLOR_PRIMARY_TEXT, #ef951b); }
    .JoinModal__title--promotion {
      text-align: center;
      width: 140%;
      transform: translateX(-14.5%); }
  .JoinModal__form-container {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 0 auto; }
    @media (max-width: 959px) {
      .JoinModal__form-container {
        padding: 15px;
        width: 100vw;
        max-width: initial;
        height: 100%; } }
    .JoinModal__form-container .Recaptcha__wrapper {
      width: 100%; }
    .JoinModal__form-container--drawer {
      background: transparent; }
  .JoinModal__icon {
    position: absolute;
    top: 10px;
    left: 15px; }

/* Model card colors */
.ForgotPasswordModal__dialog {
  position: relative; }

.ForgotPasswordModal__title {
  font-size: 19px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 3px; }
  @media (max-width: 959px) {
    .ForgotPasswordModal__title {
      margin-bottom: 2rem; } }

.ForgotPasswordModal__subtitle {
  font-size: 12px;
  width: 200px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 7px; }
  @media (max-width: 959px) {
    .ForgotPasswordModal__subtitle {
      width: 100%; } }

.ForgotPasswordModal__icon {
  position: absolute;
  top: 10px;
  left: 15px; }

.ForgotPasswordModal__close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 10px;
  cursor: pointer;
  color: var(--COLOR_PRIMARY_TEXT, white);
  opacity: 0.5; }

.ForgotPasswordModal__container {
  padding: 71px 83px 71px 83px;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  display: flex;
  flex-direction: column; }
  @media (max-width: 959px) {
    .ForgotPasswordModal__container {
      padding: 40px 15px;
      max-width: 100vw; } }
  .ForgotPasswordModal__container--drawer {
    background: transparent; }

.ForgotPasswordModal__error {
  color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 200px; }

.ForgotPasswordModal__success {
  color: lightgreen;
  font-size: 12px;
  margin-bottom: 5px; }

.ForgotPasswordModal__input {
  height: 45px;
  width: 200px;
  outline: none;
  border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
  border-radius: 3px;
  background: transparent;
  color: var(--COLOR_PRIMARY_TEXT, white);
  padding-left: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .ForgotPasswordModal__input {
      width: 100%; } }
  .ForgotPasswordModal__input--no-border {
    border: 1px solid transparent;
    margin: 10px 0;
    color: #cccccc;
    font-size: 12px;
    position: relative;
    padding-left: 0;
    height: initial; }
  .ForgotPasswordModal__input--captcha {
    width: 150px;
    flex: 1; }
  .ForgotPasswordModal__input::placeholder {
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    padding: 0 10px;
    font-size: 14px;
    text-align: left; }
  .ForgotPasswordModal__input--forget-username {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    cursor: pointer; }
  .ForgotPasswordModal__input-container {
    padding-bottom: 10px;
    display: flex;
    flex-direction: row; }
    @media (max-width: 959px) {
      .ForgotPasswordModal__input-container {
        flex-direction: column; } }
  .ForgotPasswordModal__input-btn {
    width: 200px;
    text-transform: uppercase;
    font-weight: bold; }
    @media (max-width: 959px) {
      .ForgotPasswordModal__input-btn {
        width: 100%; } }
  .ForgotPasswordModal__input-border label {
    position: absolute;
    top: 1px; }

.ForgotPasswordModal__cta-container {
  margin-top: 32px; }

.ForgotPasswordModal__cta-text {
  font-size: 16px;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .ForgotPasswordModal__cta-text--button {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.ForgotPasswordModal__backdrop {
  background-color: transparent; }

.ForgotPasswordModal__paper {
  background-color: transparent !important;
  margin: 0 !important; }
  @media (max-width: 959px) {
    .ForgotPasswordModal__paper {
      width: 90% !important;
      margin: 0 !important; } }

/* Model card colors */
.ForgotUsernameModal__dialog {
  position: relative; }

.ForgotUsernameModal__title {
  font-size: 19px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 3px; }

.ForgotUsernameModal__subtitle {
  font-size: 12px;
  width: 200px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 7px; }

.ForgotUsernameModal__icon {
  position: absolute;
  top: 10px;
  left: 15px; }

.ForgotUsernameModal__close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 10px;
  cursor: pointer;
  color: var(--COLOR_PRIMARY_TEXT, white);
  opacity: 0.5; }

.ForgotUsernameModal__container {
  padding: 71px 83px 71px 83px;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  display: flex;
  flex-direction: column; }
  @media (max-width: 959px) {
    .ForgotUsernameModal__container {
      padding: 40px 80px;
      width: 100vw; } }
  .ForgotUsernameModal__container--drawer {
    background: transparent; }

.ForgotUsernameModal__error {
  color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 200px; }

.ForgotUsernameModal__success {
  color: lightgreen;
  font-size: 12px;
  margin-bottom: 5px; }

.ForgotUsernameModal__input-container {
  display: flex;
  flex-direction: row; }
  @media (max-width: 959px) {
    .ForgotUsernameModal__input-container {
      flex-direction: column; } }

.ForgotUsernameModal__input {
  height: 45px;
  width: 200px;
  outline: none;
  border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
  border-radius: 3px;
  background: transparent;
  color: var(--COLOR_PRIMARY_TEXT, white);
  padding-left: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .ForgotUsernameModal__input {
      width: 100%; } }
  .ForgotUsernameModal__input--no-border {
    border: 1px solid transparent;
    margin: 10px 0;
    color: #cccccc;
    font-size: 12px;
    position: relative;
    padding-left: 0;
    height: initial; }
  .ForgotUsernameModal__input--captcha {
    width: 150px;
    flex: 1; }
  .ForgotUsernameModal__input::placeholder {
    color: #ffffff;
    padding: 0 10px;
    font-size: 14px;
    text-align: left; }
  .ForgotUsernameModal__input--forget-username {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    cursor: pointer; }
  .ForgotUsernameModal__input-btn {
    width: 200px;
    margin-top: 0.5rem; }
  .ForgotUsernameModal__input-border label {
    position: absolute;
    top: 1px; }

.ForgotUsernameModal__cta-container {
  margin-top: 32px; }

.ForgotUsernameModal__cta-text {
  font-size: 16px;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .ForgotUsernameModal__cta-text--button {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.ForgotUsernameModal__backdrop {
  background-color: transparent; }

.ForgotUsernameModal__paper {
  background-color: transparent;
  margin: 0; }

/* Model card colors */
.ResetPasswordModal__dialog {
  position: relative; }

.ResetPasswordModal__title {
  font-size: 19px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 3px; }

.ResetPasswordModal__subtitle {
  font-size: 12px;
  width: 200px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin-bottom: 7px; }

.ResetPasswordModal__icon {
  position: absolute;
  top: 10px;
  left: 15px; }

.ResetPasswordModal__close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 10px;
  cursor: pointer;
  color: var(--COLOR_PRIMARY_TEXT, white);
  opacity: 0.5; }

.ResetPasswordModal__container {
  padding: 71px 83px 71px 83px;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  display: flex;
  flex-direction: column; }
  @media (max-width: 959px) {
    .ResetPasswordModal__container {
      padding: 40px 80px;
      width: 100vw; } }
  .ResetPasswordModal__container--drawer {
    background: transparent; }

.ResetPasswordModal__error {
  color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 200px; }

.ResetPasswordModal__success {
  color: lightgreen;
  font-size: 12px;
  margin-bottom: 5px; }

.ResetPasswordModal__input {
  height: 45px;
  width: 200px;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: transparent;
  color: white;
  padding-left: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .ResetPasswordModal__input {
      width: 100%; } }
  .ResetPasswordModal__input--no-border {
    border: 1px solid transparent;
    margin: 10px 0;
    color: #cccccc;
    font-size: 12px;
    position: relative;
    padding-left: 0;
    height: initial; }
  .ResetPasswordModal__input--captcha {
    width: 150px;
    flex: 1; }
  .ResetPasswordModal__input::placeholder {
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    padding: 0 10px;
    font-size: 14px;
    text-align: left; }
  .ResetPasswordModal__input--forget-username {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    cursor: pointer; }
  .ResetPasswordModal__input-container {
    display: flex;
    flex-direction: row; }
    @media (max-width: 959px) {
      .ResetPasswordModal__input-container {
        flex-direction: column; } }
  .ResetPasswordModal__input-btn {
    width: 200px; }
  .ResetPasswordModal__input-border label {
    position: absolute;
    top: 1px; }

.ResetPasswordModal__cta-container {
  margin-top: 32px; }

.ResetPasswordModal__cta-text {
  font-size: 16px;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .ResetPasswordModal__cta-text--button {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.ResetPasswordModal__backdrop {
  background-color: transparent; }

.ResetPasswordModal__paper {
  background-color: transparent;
  margin: 0; }

/* Model card colors */
.MultipleAccountModal__paper {
  position: relative;
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  padding: 60px 30px;
  width: 100%;
  max-width: 400px !important; }

.MultipleAccountModal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 10px;
  cursor: pointer;
  color: var(--COLOR_PRIMARY_TEXT, white);
  opacity: 0.5; }

.MultipleAccountModal__separator {
  position: relative;
  text-align: center;
  display: flex;
  opacity: 0.3;
  margin: 20px 0; }
  .MultipleAccountModal__separator span {
    padding: 0 10px;
    font-size: 10px;
    color: var(--COLOR_PRIMARY_TEXT, white); }
  .MultipleAccountModal__separator:before, .MultipleAccountModal__separator:after {
    flex-grow: 1;
    height: 1px;
    background-color: white;
    display: block;
    content: "";
    margin-top: 5px; }

.MultipleAccountModal__description {
  color: var(--COLOR_PRIMARY_TEXT, white);
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  margin-bottom: 20px; }

.MultipleAccountModal__line {
  display: inline-block;
  margin: 0 5px; }

.MultipleAccountModal__link {
  cursor: pointer;
  color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
  text-decoration: none; }

/* Model card colors */
.SecurityCodeModal {
  position: relative; }
  .SecurityCodeModal__title {
    font-size: 19px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    margin-bottom: 3px; }
  .SecurityCodeModal__subtitle {
    font-size: 12px;
    width: 200px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    margin-bottom: 7px; }
  .SecurityCodeModal__icon {
    position: absolute;
    top: 10px;
    left: 15px; }
  .SecurityCodeModal__close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 15px;
    cursor: pointer;
    fill: var(--COLOR_PRIMARY_TEXT, white);
    opacity: 0.5; }
  .SecurityCodeModal__container {
    padding: 71px 83px 71px 83px;
    min-height: 380px;
    background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
    display: flex;
    flex-direction: column; }
    @media (max-width: 959px) {
      .SecurityCodeModal__container {
        padding: 30px 40px;
        max-width: 100vw; } }
    .SecurityCodeModal__container--drawer {
      background: transparent; }
  .SecurityCodeModal__error {
    color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 200px; }
  .SecurityCodeModal__success {
    color: lightgreen;
    font-size: 12px;
    margin-bottom: 5px; }
  .SecurityCodeModal__input {
    height: 45px;
    width: 200px;
    outline: none;
    border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
    border-radius: 3px;
    background: transparent;
    color: var(--COLOR_PRIMARY_TEXT, white);
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center; }
    @media (max-width: 959px) {
      .SecurityCodeModal__input {
        width: 100%; } }
    .SecurityCodeModal__input--no-border {
      border: 1px solid transparent;
      margin: 10px 0;
      color: #cccccc;
      font-size: 12px;
      position: relative;
      padding-left: 0;
      height: initial; }
    .SecurityCodeModal__input--captcha {
      width: 150px;
      flex: 1; }
    .SecurityCodeModal__input::placeholder {
      color: var(--COLOR_PRIMARY_TEXT, #ffffff);
      padding: 0 10px;
      font-size: 14px;
      text-align: left; }
    .SecurityCodeModal__input--forget-username {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
      cursor: pointer; }
    .SecurityCodeModal__input-container {
      padding-bottom: 10px;
      display: flex;
      flex-direction: row; }
      @media (max-width: 959px) {
        .SecurityCodeModal__input-container {
          flex-direction: column; } }
    .SecurityCodeModal__input-btn {
      width: 200px; }
    .SecurityCodeModal__input-border label {
      position: absolute;
      top: 1px; }
  .SecurityCodeModal__cta-container {
    margin-top: 32px; }
  .SecurityCodeModal__cta-text {
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white); }
    .SecurityCodeModal__cta-text--button {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .SecurityCodeModal__backdrop {
    background-color: transparent; }
  .SecurityCodeModal__paper {
    background-color: transparent;
    margin: 0; }
  .SecurityCodeModal__resend {
    margin-top: 10px;
    color: var(--COLOR_SECONDARY_LINK, #ef951b);
    font-size: 12px;
    text-align: center;
    cursor: pointer; }
    .SecurityCodeModal__resend--disabled {
      opacity: 0.7;
      cursor: initial; }

.Swipeable-slider {
  position: relative;
  overflow: hidden; }
  .Swipeable-slider .react-swipeable-view-container {
    width: 100%;
    height: 100%; }
  .Swipeable-slider__arrow {
    background-color: transparent;
    color: rgba(140, 148, 193, 0.5); }
    .Swipeable-slider__arrow-left, .Swipeable-slider__arrow-right {
      position: absolute;
      top: 50%;
      z-index: 10;
      line-height: 40px;
      text-align: center;
      height: 40px;
      width: auto;
      transform: translateY(-50%);
      transition: 0.5s;
      color: white;
      cursor: pointer; }
      .Swipeable-slider__arrow-left > svg, .Swipeable-slider__arrow-right > svg {
        color: #fff;
        transition: visibility 0s linear 0.3s, opacity 0.3s linear 0s; }
        .Swipeable-slider__arrow-left > svg:hover, .Swipeable-slider__arrow-right > svg:hover {
          color: #337ab7;
          transform: scale(1.1);
          transition: visibility 0s linear 0.3s, opacity 0.3s linear 0s; }
      .Swipeable-slider__arrow-left--hidden, .Swipeable-slider__arrow-right--hidden {
        visibility: hidden; }
    .Swipeable-slider__arrow--large svg {
      height: 120px; }
    .Swipeable-slider__arrow--medium svg {
      height: 90px; }
    .Swipeable-slider__arrow--small svg {
      height: 60px; }
    .Swipeable-slider__arrow--extra-small svg {
      height: 30px; }
    .Swipeable-slider__arrow-left {
      left: 10px; }
    .Swipeable-slider__arrow-right {
      right: 10px; }

/*-------linear-gradient-------*/
/*-----------------------------*/
/* Model card colors */
@-webkit-keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@-webkit-keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

@keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

.border-ripple-white {
  animation: border-ripple-white 0.6s linear 1; }

.border-ripple-rainbow {
  animation: border-ripple-rainbow 0.6s linear 1; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.animation-rotate {
  animation: rotate 2s linear infinite; }

@keyframes wiggle {
  0% {
    transform: rotate(10deg); }
  25% {
    transform: rotate(-10deg); }
  50% {
    transform: rotate(20deg); }
  75% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.animation-wiggle {
  animation: wiggle 1s ease-in-out; }

@keyframes rainbowColor {
  0% {
    background-color: #f966a2 !important; }
  20% {
    background-color: #cb40ec !important; }
  40% {
    background-color: #00fdad !important; }
  60% {
    background-color: #e8f864 !important; }
  80% {
    background-color: #ff9000 !important; }
  100% {
    background-color: #f86464 !important; } }

@keyframes jumpJump {
  0% {
    transform: scale(1, 1) translateY(0); }
  2% {
    transform: scale(1.1, 0.9) translateY(0); }
  3% {
    transform: scale(0.9, 1.1) translateY(-25px); }
  3.5% {
    transform: scale(1, 1) translateY(0); }
  100% {
    transform: scale(1, 1) translateY(0); } }

.animation-rainbow {
  animation: rainbowColor 5s linear infinite; }

.SideButtons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  z-index: 100;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important; }

.RoundButton {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  font-size: 12px;
  margin: 5px 0px 5px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  color: white;
  flex-direction: column; }
  .RoundButton:hover {
    width: 50px;
    height: 50px; }
    .RoundButton:hover svg {
      width: 14px;
      height: 14px; }
  .RoundButton, .RoundButton--yellow {
    background: #f5cf27;
    background: -webkit-linear-gradient(0deg, #f5cf27 0%, #f55b27 100%);
    background: linear-gradient(90deg, #f5cf27 0%, #f55b27 100%); }
  .RoundButton--blue {
    background: #1b224b;
    background: -webkit-linear-gradient(0deg, #1b224b 0%, #181b3b 100%);
    background: linear-gradient(90deg, #1b224b 0%, #181b3b 100%); }
  .RoundButton--orange {
    background: #ef951b;
    background: -webkit-linear-gradient(0deg, #ef951b 0%, #cd264f 100%);
    background: linear-gradient(90deg, #ef951b 0%, #cd264f 100%); }
  .RoundButton--pink {
    background: #ff62ee;
    background: -webkit-linear-gradient(0deg, #ff62ee 0%, #c70808 100%);
    background: linear-gradient(90deg, #ff62ee 0%, #c70808 100%); }
  .RoundButton--green {
    background: #55d604;
    background: -webkit-linear-gradient(0deg, #55d604 0%, #117e91 100%);
    background: linear-gradient(90deg, #55d604 0%, #117e91 100%); }
  .RoundButton--lilac {
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
  .RoundButton--disabled, .RoundButton.disabled {
    opacity: .6; }
  .RoundButton__tooltip {
    display: none;
    position: absolute;
    background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
    padding: 15px;
    min-width: 100px;
    max-width: 200px;
    text-align: center;
    color: rgba(var(--COLOR_PRIMARY_TEXT_RGB, 255, 255, 255), 0.8);
    bottom: 75px;
    font-size: 14px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity ease 0.2s;
    z-index: 1000;
    font-family: Lato, sans-serif;
    white-space: nowrap; }
    .RoundButton__tooltip-triangle {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 10px);
      background-color: transparent;
      width: 0;
      height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 10px solid rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8); }
    .RoundButton__tooltip-token {
      width: 14px;
      height: 14px;
      margin-right: 2px; }
  .RoundButton--hover .RoundButton__tooltip, .RoundButton:hover .RoundButton__tooltip {
    display: block;
    opacity: 1; }
  .RoundButton__icon {
    fill: white;
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease; }
    .RoundButton__icon img {
      margin-left: -2px;
      width: 24px;
      height: 24px; }
    .RoundButton__icon--small {
      fill: white;
      width: 15px;
      height: 15px; }

.fan-club-side {
  position: relative; }

#localVideo {
  width: 100%; }

.C2C {
  width: 100%;
  height: 100%;
  background: black; }
  .C2C__close {
    position: absolute;
    top: 5px;
    right: 5px; }

/* Model card colors */
.PaymentRenewalTermsDialog {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 40px;
  background-color: var(--COLOR_POPOVER_BACKGROUND, #161833) !important; }
  .PaymentRenewalTermsDialog__close-button {
    position: absolute;
    top: 10px;
    right: 10px; }
    .PaymentRenewalTermsDialog__close-button .material-icons {
      color: var(--COLOR_PRIMARY_TEXT, white); }
  .PaymentRenewalTermsDialog__popover-title {
    font-size: 24px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px; }
  .PaymentRenewalTermsDialog__popover-content {
    margin: auto; }
  .PaymentRenewalTermsDialog__popover-text {
    width: 70%;
    font-size: 16px;
    color: var(--COLOR_PRIMARY_TEXT, white);
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto; }
  .PaymentRenewalTermsDialog__terms-text {
    color: var(--COLOR_PRIMARY_TEXT, #ef951b);
    text-align: center;
    cursor: pointer; }

.PaymentRenewalTermsDialog__backdrop {
  background-color: transparent !important; }

/* Model card colors */
.theme-cams--light .CamsViewer__PromptPopover {
  background: rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__PromptPopover__arrow {
    border-bottom: 10px solid rgba(var(--COLOR_POPOVER_BACKGROUND_RGB, 0, 0, 0), 0.7); }
  .theme-cams--light .CamsViewer__PromptPopover__favorite {
    color: white; }

.CamsViewer__PromptPopover {
  width: 250px;
  background: #1E2035;
  padding: 10px 15px;
  position: absolute;
  font-size: 14px;
  color: #cd264f;
  top: auto;
  right: 50px;
  left: auto;
  bottom: 0;
  text-align: center;
  border-radius: 10px;
  cursor: initial; }
  .CamsViewer__PromptPopover p {
    line-height: 20px;
    margin-top: 20px; }
  .CamsViewer__PromptPopover label {
    color: #ef951b;
    font-size: 16px; }
  .CamsViewer__PromptPopover__arrow {
    position: absolute;
    top: auto;
    left: auto;
    right: -19px;
    bottom: 9px;
    border-left: 10px solid #1E2035;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; }
  .CamsViewer__PromptPopover__close {
    font-size: 20px !important;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: white; }
  .CamsViewer__PromptPopover__star {
    color: yellow;
    position: absolute;
    left: 10px;
    top: 6px; }
  .CamsViewer__PromptPopover__cta {
    color: white; }

.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

/* Model card colors */
.MediaModal {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column; }
  .MediaModal__container--webkit {
    height: calc(100vh - 202px); }
  .MediaModal__dialog {
    background: #000000; }
    .MediaModal__dialog .MuiDialog-paper {
      max-height: 100% !important;
      margin: 0 !important;
      height: 100% !important;
      width: 100% !important;
      background: #000000; }
    .MediaModal__dialog .MuiDialog-paperWidthXl {
      overflow: hidden; }
  .MediaModal__model-username {
    margin-right: 5px; }
  .MediaModal__title {
    margin-top: 20px !important;
    display: flex;
    color: white; }
    .MediaModal__title *:not(.material-icons) {
      font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
      font-weight: bold !important; }
    .MediaModal__title .MuiTypography-root {
      width: 100%;
      display: flex;
      align-items: flex-end; }
    .MediaModal__title--with-subtitle * {
      font-size: 24px !important;
      line-height: 24px !important; }
  .MediaModal__subtitle {
    color: #cccccc;
    font-size: 18px !important;
    line-height: 18px !important; }
    .MediaModal__subtitle--right {
      margin-left: auto; }
  .MediaModal__slide-counter {
    margin-left: auto;
    font-size: 12px !important; }
  .MediaModal__video-details {
    display: flex;
    color: #cccccc;
    margin-left: 15px; }
    .MediaModal__video-details * {
      font-size: 15px !important; }
    .MediaModal__video-details-numbers {
      display: flex;
      align-items: center;
      margin-left: 10px; }
  .MediaModal__slide-counter, .MediaModal__video-details {
    margin-right: 25px; }
  .MediaModal__loading {
    background: none !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    box-shadow: none !important; }
  .MediaModal__content {
    margin: 0;
    padding-left: 24px;
    padding-right: 24px; }
    .MediaModal__content * {
      outline: none !important; }
  .MediaModal__media-container {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100%; }
  .MediaModal__image-container {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center; }
    .MediaModal__image-container.locked {
      filter: blur(5px); }
    .MediaModal__image-container > img {
      margin: 0 auto;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      max-height: 100%;
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .MediaModal__image {
    max-width: 100%;
    max-height: 100%; }
  .MediaModal__video-container {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    .MediaModal__video-container.locked {
      filter: blur(5px); }
  .MediaModal__modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    cursor: pointer;
    z-index: 4; }
  .MediaModal .image-gallery {
    margin: 0 auto;
    width: 100%;
    height: 100%; }
    .MediaModal .image-gallery-content, .MediaModal .image-gallery-slide-wrapper, .MediaModal .image-gallery-swipe, .MediaModal .image-gallery-slides {
      height: 100%; }
    .MediaModal .image-gallery-slide {
      display: flex;
      align-items: center;
      justify-content: center; }
      .MediaModal .image-gallery-slide .promo-tokens {
        color: white;
        display: flex;
        position: absolute;
        z-index: 50;
        flex-direction: column; }
        .MediaModal .image-gallery-slide .promo-tokens__buy-btn {
          margin-bottom: 1em;
          white-space: normal;
          max-width: 80%; }

.MediaModalSidebar__container {
  display: flex;
  background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7) !important;
  z-index: 10;
  overflow-y: auto;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(0);
  opacity: 1;
  padding: 20px 0; }
  .MediaModalSidebar__container--closed {
    transform: translateX(-378px);
    opacity: 0; }

.MediaModalSidebar__Select-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; }

.MediaModalSidebar__Select-or {
  font-size: 12px;
  color: var(--COLOR_PRIMARY_TEXT, white);
  margin: 45px 0; }
  .MediaModalSidebar__Select-or--mobile {
    margin: 15px 0; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .NotFoundResourceCTA__title, .theme-cams--light .NotFoundResourceCTA__subtitle {
  color: var(--COLOR_SECONDARY_TEXT, #b3b3b3); }

.NotFoundResourceCTA {
  margin-top: 50px !important;
  margin-bottom: 50px !important; }
  .NotFoundResourceCTA__title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px; }
  .NotFoundResourceCTA__subtitle {
    font-size: 16px;
    line-height: 20px; }
  .NotFoundResourceCTA__title, .NotFoundResourceCTA__subtitle {
    color: var(--COLOR_PRIMARY_TEXT, white); }

.ViewAllOrLessWithSwipeableSliderList {
  height: 100%; }
  .ViewAllOrLessWithSwipeableSliderList__mode-toggle {
    margin-left: auto;
    color: var(--COLOR_PRIMARY_TEXT, white);
    font-size: 14px;
    cursor: pointer; }
    .ViewAllOrLessWithSwipeableSliderList__mode-toggle:hover {
      text-decoration: underline; }
  .ViewAllOrLessWithSwipeableSliderList__body {
    height: 100%;
    width: 100%;
    position: relative; }
  .ViewAllOrLessWithSwipeableSliderList__header {
    display: flex;
    margin-bottom: 10px; }
    .ViewAllOrLessWithSwipeableSliderList__header-title {
      color: var(--COLOR_PRIMARY_TEXT, #cccccc) !important;
      font-size: 18px;
      font-weight: bold;
      margin-right: 10px; }
  .ViewAllOrLessWithSwipeableSliderList__slide-icons {
    opacity: 0.4; }
    .ViewAllOrLessWithSwipeableSliderList__slide-icons:hover {
      opacity: 1;
      color: white !important; }

.ViewAllOrLessWithSwipeableSliderList__mode-toggle {
  color: var(--COLOR_SECONDARY_LINK, white); }

.ViewAllOrLessWithSwipeableSliderList__header-title {
  color: var(--COLOR_SECONDARY_TEXT, #cccccc) !important; }

.ModelMediaCard {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 350px;
  margin: 0.5rem;
  cursor: pointer;
  height: 100%; }

.VideoPlayer {
  height: 100%;
  width: 100%; }
  .VideoPlayer__player {
    width: 100%;
    height: 100%;
    object-fit: contain; }
  .VideoPlayer .VideoLoading {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .VideoPlayer .VideoLoading > div {
      margin: auto; }

.NotFound__container {
  color: var(--THEME_INVERTED, white);
  padding: 50px 0;
  text-align: center; }
  .NotFound__container h1 {
    font-size: 8rem;
    margin: .3rem 0; }

/* Model card colors */
.CamsViewerMobile {
  color: #FFFFFF;
  width: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212121; }
  .CamsViewerMobile--landscape {
    width: 100%; }
  .CamsViewerMobile .cams-button strong {
    font-size: 16px;
    text-transform: uppercase; }
  .CamsViewerMobile .cams-button svg {
    width: 15px;
    vertical-align: middle;
    margin-right: 2px; }
  .CamsViewerMobile .cams-button span {
    font-size: 12px;
    margin-top: 5px; }
  .CamsViewerMobile__container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative; }
    .CamsViewerMobile__container-body {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 11; }
    .CamsViewerMobile__container-footer {
      background-color: #212121;
      display: flex;
      flex-direction: column;
      overflow: visible;
      z-index: 11;
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0; }
      .CamsViewerMobile__container-footer--minimal {
        justify-content: flex-end;
        background-color: transparent; }

.CamsViewerMobileCloseShowButton {
  top: 5px;
  right: 5px; }

/* Model card colors */
.CamsViewerMobilePlayerN {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: visible; }
  .CamsViewerMobilePlayerN--paused #Nplayer {
    display: none; }
  .CamsViewerMobilePlayerN #Nplayer {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2; }
  .CamsViewerMobilePlayerN #loadingSign-Nplayer, .CamsViewerMobilePlayerN #audio-Nplayer {
    display: none !important; }
  .CamsViewerMobilePlayerN #nplayer {
    height: 1px;
    transition: height 1s; }
  .CamsViewerMobilePlayerN #middleView-Nplayer, .CamsViewerMobilePlayerN #playButton-Nplayer {
    display: none; }
  .CamsViewerMobilePlayerN__container-nano {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .CamsViewerMobilePlayerNClickAndDragOverlay {
    position: absolute;
    cursor: pointer;
    left: 0;
    right: 60px;
    top: 55px;
    bottom: 0;
    touch-action: pan-x; }
    .CamsViewerMobilePlayerNClickAndDragOverlay--landscape {
      touch-action: pan-y; }
    .CamsViewerMobilePlayerNClickAndDragOverlay--disable-click {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      -webkit-tap-highlight-color: transparent; }

.CamsViewerMobileLoadingSpinner {
  width: 25%;
  height: 25%;
  position: absolute;
  top: 38%;
  left: 38%;
  display: none;
  opacity: 0;
  transition: opacity .5s; }
  .CamsViewerMobileLoadingSpinner.active {
    opacity: 1;
    transition: opacity .5s;
    display: block; }

.CamsViewerMobileBuzzAndGestureOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3; }

.CamsViewerMobilePlayButton {
  cursor: pointer;
  width: 20%;
  height: 20%;
  position: absolute;
  top: 40.5%;
  left: 40.5%;
  display: none;
  opacity: 0;
  transition: opacity .5s;
  z-index: 1; }
  .CamsViewerMobilePlayButton.active {
    z-index: 3;
    width: 25%;
    height: 25%;
    position: absolute;
    top: 38%;
    left: 38%;
    opacity: .85;
    transition: opacity .5s;
    display: block; }
  .CamsViewerMobilePlayButton:hover {
    opacity: 1;
    transition: opacity .2s; }
  .CamsViewerMobilePlayButton svg {
    display: block; }

.CamsViewerMobileSnapshot {
  height: 100%;
  width: 100%;
  z-index: 0; }
  .CamsViewerMobileSnapshot img {
    position: absolute;
    height: 100%; }

.CamsViewerMobileCalculationInProgressOverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  background-color: #212121; }

/* Model card colors */
.CamsViewerMobileModal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex; }
  .CamsViewerMobileModal--position-bottom {
    top: unset; }
  .CamsViewerMobileModal--position-top {
    bottom: unset; }
  .CamsViewerMobileModal--position-right {
    left: unset; }
  .CamsViewerMobileModal--position-left {
    right: unset; }
  .CamsViewerMobileModal--adaptive-height, .CamsViewerMobileModal--adaptive-width {
    padding-top: 40px; }
  .CamsViewerMobileModal--adaptive-height {
    height: auto;
    bottom: 0;
    top: unset; }
  .CamsViewerMobileModal--adaptive-width {
    width: auto;
    max-width: 40%;
    height: auto;
    top: unset;
    right: 0;
    left: unset; }
  .CamsViewerMobileModal--background-black {
    background: #212121; }
    .CamsViewerMobileModal--background-black-less-opaque {
      background: rgba(33, 33, 33, 0.7); }
  .CamsViewerMobileModal--background-blue {
    background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7); }
    .CamsViewerMobileModal--background-blue-less-opaque {
      background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9); }
  .CamsViewerMobileModal--background-gradient {
    background: linear-gradient(130deg, rgba(239, 149, 27, 0.8) 2%, rgba(33, 33, 33, 0.9) 18%, rgba(33, 33, 33, 0.9) 53%, rgba(33, 33, 33, 0.9) 83%, rgba(205, 38, 79, 0.7) 100%); }
  .CamsViewerMobileModal__close {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 1;
    display: flex;
    height: 20px;
    width: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end; }
    .CamsViewerMobileModal__close--icon {
      fill: #FFFFFF;
      width: 15px;
      height: 15px; }
  .CamsViewerMobileModal__title {
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 1.5rem 1.5rem 1rem; }
  .CamsViewerMobileModal__body {
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 16px; }
    .CamsViewerMobileModal__body--padding {
      padding-left: 16px;
      padding-right: 16px; }

.MobileBuzzModeModal__title {
  color: #FFFFFF;
  text-align: center; }
  .MobileBuzzModeModal__title span {
    color: #d05cf7;
    fill: #d05cf7; }
  .MobileBuzzModeModal__title svg {
    width: 12px; }

.MobileBuzzModeModal__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 18px 0; }

.MobileTopAdmirerModal__medal {
  width: 72px;
  fill: #FFFFFF; }

.MobileTopAdmirerModal__list {
  list-style: none;
  padding: 0; }
  .MobileTopAdmirerModal__list li {
    vertical-align: middle;
    font-size: 14px;
    display: flex;
    margin-bottom: 10px; }
    .MobileTopAdmirerModal__list li span {
      flex: 1; }

.MobileTopAdmirerModal__check {
  fill: #ef951b;
  width: 18px;
  height: 18px;
  margin-right: 10px; }

.MobileTopAdmirerModal__button {
  max-width: 360px;
  width: 100%; }

.MobileFanClubModal--landscape {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center; }
  .MobileFanClubModal--landscape .MobileFanClubModal__list {
    justify-content: center; }

.MobileFanClubModal__list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem; }
  .MobileFanClubModal__list-item {
    vertical-align: middle;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 10px; }
    .MobileFanClubModal__list-item span {
      flex-grow: 1; }
      .MobileFanClubModal__list-item span b {
        color: #ef951b;
        font-weight: normal; }

.MobileFanClubModal__star {
  color: #ef951b;
  margin-right: 5px;
  font-size: 18px !important; }

.MobileFanClubModal .CamsButton {
  width: 100%;
  max-width: 320px; }

.MobileOfflineModal {
  padding: 0;
  display: flex;
  flex: 1; }

.MobileCam2Cam svg {
  fill: #FFFFFF;
  width: 12px; }

.MobilePartyChatModal__buttons {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .MobilePartyChatModal__buttons > *:not(:first-child) {
    margin-top: 1rem; }

.MobilePartyChatModal__button {
  width: 100%; }

.MobileQuickBuyModal__button,
.MobileEndPrivateOrPartyChatModal__button,
.MobileTippingShowModal__button,
.MobileNudeShowModal__button,
.MobileVoyeurModal__button {
  width: 100%;
  max-width: 360px; }

.MobileEndPrivateOrPartyChatModal,
.MobileWheelOfFunModal {
  display: flex;
  flex: 1; }

.MobileVoyeurModal {
  display: flex;
  flex: 1;
  align-items: center; }

.MobileGestureInfoModal__tutorial {
  color: #FFFFFF; }

.MobileGestureInfoModal--landscape {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .MobileGestureInfoModal--landscape .MobileGestureInfoModal__tutorial {
    flex: 1; }
  .MobileGestureInfoModal--landscape .MobileGestureInfoModal__portrait-note {
    color: #ef951b;
    text-align: center; }

.MobileGestureInfoModal svg {
  width: 100%; }

.MobileGestureInfoModal__icon--slide__arrow-left, .MobileGestureInfoModal__icon--slide__arrow-right {
  fill: #FFFFFF; }

.MobileGestureInfoModal__icon--slide__hand {
  fill: none;
  stroke: #FFFFFF;
  stroke-miterlimit: 10; }

.MobileGestureInfoModal__icon--click {
  font-size: 3rem; }

.CamsViewerMobileGiveTipContainer {
  text-align: center;
  font-size: 14px; }
  .CamsViewerMobileGiveTipContainer__title {
    margin-bottom: 10px; }

.CamsViewerMobileConnexionContainer {
  text-align: center;
  font-size: 14px; }

.CamsViewerMobileGiveGiftContainer {
  text-align: center;
  font-size: 14px; }
  .CamsViewerMobileGiveGiftContainer__text--orange {
    color: #ef951b; }
  .CamsViewerMobileGiveGiftContainer__icon-token {
    width: 14px;
    height: 14px; }
    .CamsViewerMobileGiveGiftContainer__icon-token--orange {
      fill: #ef951b; }
    .CamsViewerMobileGiveGiftContainer__icon-token--white {
      fill: #FFFFFF; }
  .CamsViewerMobileGiveGiftContainer__gift {
    padding: 5px 0;
    margin: 0 2px; }
    .CamsViewerMobileGiveGiftContainer__gift img {
      max-width: 100%;
      width: 100%;
      margin-bottom: 5px; }
    .CamsViewerMobileGiveGiftContainer__gift--selected {
      border: 2px solid #ef951b;
      border-radius: 3px; }
  .CamsViewerMobileGiveGiftContainer__slider .Swipeable-slider__body {
    margin: 0 1.75rem; }

.CamsViewerMobileWhisperPrompt--icon-token {
  fill: #ef951b;
  width: 14px; }

.MobileEndShowModal__rating {
  display: flex;
  justify-content: center; }
  .MobileEndShowModal__rating--text {
    font-size: 16px; }

/* Model card colors */
.CamsViewerMobileEndShowButton {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
  display: flex;
  height: 40px;
  width: 40px;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  .CamsViewerMobileEndShowButton__icon {
    fill: #000000;
    stroke: #FFFFFF;
    stroke-width: 3px;
    width: 15px;
    height: 15px; }
    .CamsViewerMobileEndShowButton__icon--white {
      fill: #FFFFFF;
      stroke: #000000; }

.CamsViewerMobileModelPhotoGallery {
  width: 100%;
  max-width: 100%; }
  .CamsViewerMobileModelPhotoGallery--landscape {
    height: 50vh; }
  .CamsViewerMobileModelPhotoGallery__photo {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    height: 100%; }
    .CamsViewerMobileModelPhotoGallery__photo img {
      width: 100%;
      max-width: 100%; }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.CamsViewerMobileActionButton {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 100%; }
  .CamsViewerMobileActionButton, .CamsViewerMobileActionButton--yellow {
    background: #f5cf27;
    background: -webkit-linear-gradient(0deg, #f5cf27 0%, #f55b27 100%);
    background: linear-gradient(90deg, #f5cf27 0%, #f55b27 100%); }
  .CamsViewerMobileActionButton--blue {
    background: #2882a6;
    background: -webkit-linear-gradient(0deg, #2882a6 0%, #26274f 100%);
    background: linear-gradient(90deg, #2882a6 0%, #26274f 100%); }
  .CamsViewerMobileActionButton--orange {
    background: #ef951b;
    background: -webkit-linear-gradient(0deg, #ef951b 0%, #cd264f 100%);
    background: linear-gradient(90deg, #ef951b 0%, #cd264f 100%); }
  .CamsViewerMobileActionButton--pink {
    background: #ff62ee;
    background: -webkit-linear-gradient(0deg, #ff62ee 0%, #c70808 100%);
    background: linear-gradient(90deg, #ff62ee 0%, #c70808 100%); }
  .CamsViewerMobileActionButton--green {
    background: #55d604;
    background: -webkit-linear-gradient(0deg, #55d604 0%, #117e91 100%);
    background: linear-gradient(90deg, #55d604 0%, #117e91 100%); }
  .CamsViewerMobileActionButton--lilac {
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
  @media (max-width: 350px) {
    .CamsViewerMobileActionButton {
      width: 25px;
      height: 25px; } }
  .CamsViewerMobileActionButton__icon {
    fill: #FFFFFF;
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease; }
    @media (max-width: 500px) {
      .CamsViewerMobileActionButton__icon {
        width: 12px;
        height: 12px; } }
    img.CamsViewerMobileActionButton__icon {
      width: 29px;
      height: 28px; }
      @media (max-width: 500px) {
        img.CamsViewerMobileActionButton__icon {
          width: 18px;
          height: 18px; } }

.CamsViewerMobileTopLeftActions {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .CamsViewerMobileTopLeftActions__volume {
    margin-top: 10px; }

/* Model card colors */
.CamsViewerIcon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  .CamsViewerIcon__icon {
    font-size: 14px;
    color: #FFFFFF; }
    .CamsViewerIcon__icon--disabled {
      opacity: 0.7; }

/* Model card colors */
.CamsViewerModelName {
  padding: 10px;
  background-color: rgba(33, 33, 33, 0.8);
  height: 40px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  .CamsViewerModelName--collapsed {
    padding: 8px;
    border-radius: 50%; }
  .CamsViewerModelName--expanded {
    border-radius: 3px; }
  .CamsViewerModelName__name {
    margin-left: 5px;
    font-weight: bold; }

/* Model card colors */
.CamsViewerVolumeButton {
  height: 40px;
  width: 40px;
  background-color: rgba(33, 33, 33, 0.8);
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 11; }
  .CamsViewerVolumeButton__icon {
    fill: #FFFFFF;
    width: 14px;
    height: 14px; }

/* Model card colors */
.CamsViewerMobileTipCircle {
  position: absolute;
  top: 110px;
  left: 10px;
  width: 50px;
  height: 50px;
  padding: 4px;
  cursor: pointer;
  z-index: 11; }
  .CamsViewerMobileTipCircle--landscape {
    right: 68px; }
  .CamsViewerMobileTipCircle .MuiCircularProgress-root {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
  .CamsViewerMobileTipCircle .MuiCircularProgress-svg circle {
    stroke: url(#freeToTipLinear); }
  .CamsViewerMobileTipCircle__container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 4px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .CamsViewerMobileTipCircle__token {
    width: 14px;
    height: 14px;
    filter: invert(29%) sepia(74%) saturate(2681%) hue-rotate(350deg) brightness(98%) contrast(91%); }
    .CamsViewerMobileTipCircle__token--reach-goal {
      width: 14px;
      height: 14px;
      filter: invert(55%) sepia(97%) saturate(752%) hue-rotate(127deg) brightness(91%) contrast(99%); }
  .CamsViewerMobileTipCircle__current {
    color: #ef951b;
    font-size: 14px;
    margin-bottom: 7px; }
    .CamsViewerMobileTipCircle__current--reached-goal {
      color: #01b385; }
  .CamsViewerMobileTipCircle__target {
    color: #FFFFFF;
    font-size: 11px; }

/* Model card colors */
.CamsViewerMobileBalance {
  position: absolute;
  top: 10px;
  right: 60px;
  z-index: 11;
  padding: 10px;
  background-color: rgba(33, 33, 33, 0.8);
  height: 40px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: bold; }
  .CamsViewerMobileBalance__token-icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    fill: #FFFFFF; }

.CamsViewerMobileSideActions {
  position: absolute;
  right: 15px;
  z-index: 11;
  display: flex;
  align-items: flex-start; }
  .CamsViewerMobileSideActions--row {
    flex-direction: row; }
    .CamsViewerMobileSideActions--row .CamsViewerMobileActionButton:not(:last-child) {
      margin-right: 5px; }
  .CamsViewerMobileSideActions--column {
    flex-direction: column; }
    .CamsViewerMobileSideActions--column .CamsViewerMobileActionButton:not(:last-child) {
      margin-bottom: 5px; }
  @media (max-height: 290px) {
    .CamsViewerMobileSideActions--small-btn .CamsViewerMobileActionButton {
      width: 25px;
      height: 25px; }
      .CamsViewerMobileSideActions--small-btn .CamsViewerMobileActionButton__icon {
        width: 12px;
        height: 12px; }
        img.CamsViewerMobileSideActions--small-btn .CamsViewerMobileActionButton__icon {
          width: 18px;
          height: 18px; } }

.CamsViewerMobileCallToActions {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  min-height: 60px;
  align-items: center; }
  .CamsViewerMobileCallToActions--fullscreen {
    padding: 0; }
  .CamsViewerMobileCallToActions--landscape {
    position: absolute;
    right: 0;
    z-index: 12;
    bottom: 10px;
    left: 10px;
    justify-content: flex-start;
    max-width: 40%; }
  .CamsViewerMobileCallToActions__button {
    height: 40px; }
  .CamsViewerMobileCallToActions__column {
    display: flex;
    flex: 1; }
    .CamsViewerMobileCallToActions__column:first-child {
      padding-right: 5px; }
    .CamsViewerMobileCallToActions__column:last-child {
      padding-left: 5px; }

/* Model card colors */
.CamsViewerMobileChat {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%; }
  .CamsViewerMobileChat--fullscreen {
    z-index: 12;
    height: auto;
    justify-content: flex-end; }
  .CamsViewerMobileChat--landscape {
    position: absolute;
    right: 0;
    height: unset;
    bottom: 20px;
    z-index: 12;
    max-height: 80%; }
    .CamsViewerMobileChat--landscape--hide {
      display: none; }
  .CamsViewerMobileChat__form {
    display: flex;
    align-items: center; }
  .CamsViewerMobileChat__message-form, .CamsViewerMobileChat__whisper-icon, .CamsViewerMobileChat__send-icon {
    float: left;
    z-index: 10; }
  .CamsViewerMobileChat__send-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    color: #212121;
    background: transparent;
    border: none; }
  .CamsViewerMobileChat__message-form {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative; }
  .CamsViewerMobileChat__form {
    font-size: 14px;
    padding: 0 10px; }
  .CamsViewerMobileChat__input {
    margin-bottom: 10px;
    flex-grow: 1;
    border-radius: 3px;
    display: flex; }
    .CamsViewerMobileChat__input--background-light {
      background-color: rgba(255, 255, 255, 0.7); }
      .CamsViewerMobileChat__input--background-light-transparent {
        background-color: rgba(255, 255, 255, 0.3); }
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__textbox,
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__loginbox,
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__emoji,
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__whisper-icon,
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__send-icon,
      .CamsViewerMobileChat__input--background-light .CamsViewerMobileChat__whisper {
        color: #212121;
        fill: #212121; }
      .CamsViewerMobileChat__input--background-light *::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #212121;
        opacity: 1;
        /* Firefox */ }
      .CamsViewerMobileChat__input--background-light *:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #212121; }
      .CamsViewerMobileChat__input--background-light *::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #212121; }
    .CamsViewerMobileChat__input--background-dark {
      background-color: rgba(33, 33, 33, 0.7); }
      .CamsViewerMobileChat__input--background-dark-transparent {
        background-color: rgba(33, 33, 33, 0.3); }
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__textbox,
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__loginbox,
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__emoji,
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__whisper-icon,
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__send-icon,
      .CamsViewerMobileChat__input--background-dark .CamsViewerMobileChat__whisper {
        color: #FFFFFF;
        fill: #FFFFFF; }
      .CamsViewerMobileChat__input--background-dark *::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #FFFFFF;
        opacity: 1;
        /* Firefox */ }
      .CamsViewerMobileChat__input--background-dark *:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #FFFFFF; }
      .CamsViewerMobileChat__input--background-dark *::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #FFFFFF; }
    .CamsViewerMobileChat__input--wrapper {
      width: 100%;
      display: flex; }
    .CamsViewerMobileChat__input--landscape {
      margin: 1px; }
    .CamsViewerMobileChat__input--whisper {
      box-shadow: 0 0 0 2px #0280d7; }
      .CamsViewerMobileChat__input--whisper .CamsViewerMobileChat__whisper {
        fill: #0280d7; }
  .CamsViewerMobileChat__iconButton {
    padding: 8px 5px !important; }
  .CamsViewerMobileChat__textbox {
    flex-grow: 1;
    color: #212121;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    left: 5px;
    right: 0;
    width: 100%; }
  .CamsViewerMobileChat__loginbox {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-left: 5px;
    color: #212121; }
    .CamsViewerMobileChat__loginbox--emphasis {
      color: #ef951b;
      margin-right: 3px; }
  .CamsViewerMobileChat__whisper, .CamsViewerMobileChat__emoji {
    width: 24px;
    fill: #212121; }
  .CamsViewerMobileChat__messages {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    flex: 1; }
    .CamsViewerMobileChat__messages--wrapper {
      min-height: 101%; }
    .CamsViewerMobileChat__messages--landscape {
      margin-bottom: 15px; }
    .CamsViewerMobileChat__messages--fade-mask {
      -webkit-mask-image: -webkit-gradient(linear, left 30%, left top, from(#212121), to(rgba(0, 0, 0, 0))); }
  .CamsViewerMobileChat__messages, .CamsViewerMobileChat__input {
    opacity: 1; }
    .CamsViewerMobileChat__messages--hidden, .CamsViewerMobileChat__input--hidden {
      opacity: 0; }

.CamsViewerMobileChatForm {
  min-height: 40px; }

/* Model card colors */
/*-------linear-gradient-------*/
/*-----------------------------*/
.CamsViewerMobileChatMessageItem {
  color: #FFFFFF;
  font-size: 13px;
  margin: 2.5px 0;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 3px;
  flex-shrink: 0; }
  .CamsViewerMobileChatMessageItem__icon {
    height: auto;
    width: 18px;
    margin-right: 15px;
    color: #FFFFFF; }
    .CamsViewerMobileChatMessageItem__icon--gift, .CamsViewerMobileChatMessageItem__icon--virtual_gift {
      width: 24px;
      margin-right: 9px; }
    .CamsViewerMobileChatMessageItem__icon--superbuzz, .CamsViewerMobileChatMessageItem__icon__super_buzz {
      width: 24px;
      margin-right: 12px;
      margin-left: -3px; }
  .CamsViewerMobileChatMessageItem__username {
    margin-right: 5px;
    color: #ef951b; }
    .CamsViewerMobileChatMessageItem__username--user {
      color: #696bff; }
    .CamsViewerMobileChatMessageItem__username--system {
      font-weight: bold;
      color: #bbb; }
  .CamsViewerMobileChatMessageItem__text {
    flex-grow: 1; }
  .CamsViewerMobileChatMessageItem__badge {
    width: 20px;
    fill: #f03c32;
    margin-right: 5px;
    vertical-align: middle; }
  .CamsViewerMobileChatMessageItem__translation {
    width: 16px;
    fill: #ef951b;
    margin-right: 5px;
    vertical-align: middle; }
  .CamsViewerMobileChatMessageItem__whisper {
    width: 18px;
    height: 18px;
    margin-bottom: -4px;
    margin-right: 2px; }
    .CamsViewerMobileChatMessageItem__whisper--user {
      fill: #30aefc; }
    .CamsViewerMobileChatMessageItem__whisper--model {
      fill: #fc8312; }
  .CamsViewerMobileChatMessageItem__close {
    color: #FFFFFF;
    font-size: 16px !important; }
  .CamsViewerMobileChatMessageItem--buzz {
    background-image: linear-gradient(90deg, rgba(242, 97, 255, 0.7) 0%, rgba(65, 47, 196, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--buzz-transparent {
      background-image: linear-gradient(90deg, rgba(242, 97, 255, 0.3) 0%, rgba(65, 47, 196, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--tip {
    background-image: linear-gradient(90deg, rgba(0, 255, 55, 0.7) 0%, rgba(166, 255, 0, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--tip-transparent {
      background-image: linear-gradient(90deg, rgba(0, 255, 55, 0.3) 0%, rgba(166, 255, 0, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--gift, .CamsViewerMobileChatMessageItem--virtual_gift {
    background-image: linear-gradient(90deg, rgba(42, 189, 118, 0.7) 0%, rgba(18, 74, 135, 0.7) 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
    .CamsViewerMobileChatMessageItem--gift-transparent, .CamsViewerMobileChatMessageItem--virtual_gift-transparent {
      background-image: linear-gradient(90deg, rgba(42, 189, 118, 0.3) 0%, rgba(18, 74, 135, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--connexion {
    background-image: linear-gradient(90deg, rgba(255, 0, 72, 0.7) 0%, rgba(88, 0, 150, 0.7) 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
    .CamsViewerMobileChatMessageItem--connexion-transparent {
      background-image: linear-gradient(90deg, rgba(255, 0, 72, 0.3) 0%, rgba(88, 0, 150, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--superbuzz, .CamsViewerMobileChatMessageItem--super_buzz {
    background-image: linear-gradient(90deg, rgba(242, 97, 255, 0.7) 0%, rgba(65, 47, 196, 0.7) 100%);
    background-position: center center;
    background-size: cover; }
    .CamsViewerMobileChatMessageItem--superbuzz-transparent, .CamsViewerMobileChatMessageItem--super_buzz-transparent {
      background-image: linear-gradient(90deg, rgba(242, 97, 255, 0.3) 0%, rgba(65, 47, 196, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--wheel {
    background-image: linear-gradient(90deg, rgba(207, 233, 255, 0.7) 0%, rgba(51, 73, 107, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--wheel-transparent {
      background-image: linear-gradient(90deg, rgba(207, 233, 255, 0.3) 0%, rgba(51, 73, 107, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--reminder-price {
    line-height: 13px;
    color: #ef951b; }
  .CamsViewerMobileChatMessageItem--reminder-buzz-mode, .CamsViewerMobileChatMessageItem--reminder-top-admirer {
    align-items: flex-start; }
  .CamsViewerMobileChatMessageItem--reminder-buzz-mode {
    flex-direction: column;
    background-image: linear-gradient(0deg, rgba(242, 97, 255, 0.7) 0%, rgba(73, 66, 219, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--reminder-buzz-mode-transparent {
      background-image: linear-gradient(0deg, rgba(242, 97, 255, 0.3) 0%, rgba(73, 66, 219, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--reminder-top-admirer {
    background-color: rgba(143, 11, 23, 0.7);
    display: flex;
    align-items: center; }
    .CamsViewerMobileChatMessageItem--reminder-top-admirer-transparent {
      background-color: rgba(143, 11, 23, 0.3); }
    .CamsViewerMobileChatMessageItem--reminder-top-admirer-medal {
      width: 25px;
      fill: #FFFFFF;
      margin-right: 5px; }
    .CamsViewerMobileChatMessageItem--reminder-top-admirer-next {
      margin-top: 5px; }
      .CamsViewerMobileChatMessageItem--reminder-top-admirer-next svg {
        fill: #FFFFFF;
        margin: 0 3px;
        width: 14px; }
  .CamsViewerMobileChatMessageItem--reminder-icon-buzz-area {
    width: 20px; }
  .CamsViewerMobileChatMessageItem--reminder-icon-buzz-area, .CamsViewerMobileChatMessageItem--reminder-icon-superbuzz {
    margin: 0px 3px; }
  .CamsViewerMobileChatMessageItem--reminder-icon-superbuzz, .CamsViewerMobileChatMessageItem--reminder-icon-super_buzz {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    border-radius: 100%;
    background: #d05cf7;
    background: -webkit-linear-gradient(0deg, #d05cf7 0%, #4942db 100%);
    background: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
    .CamsViewerMobileChatMessageItem--reminder-icon-superbuzz img, .CamsViewerMobileChatMessageItem--reminder-icon-super_buzz img {
      width: 18px; }
  .CamsViewerMobileChatMessageItem--reminder-icon-token {
    fill: #ef951b;
    height: 13px; }
  .CamsViewerMobileChatMessageItem--chat-type, .CamsViewerMobileChatMessageItem--private {
    background-image: linear-gradient(90deg, rgba(26, 213, 253, 0.7) 0%, rgba(25, 59, 252, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--chat-type-transparent, .CamsViewerMobileChatMessageItem--private-transparent {
      background-image: linear-gradient(90deg, rgba(26, 213, 253, 0.3) 0%, rgba(25, 59, 252, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--admirer {
    background-image: linear-gradient(90deg, rgba(153, 0, 0, 0.7) 0%, rgba(255, 0, 0, 0.7) 100%); }
    .CamsViewerMobileChatMessageItem--admirer-transparent {
      background-image: linear-gradient(90deg, rgba(153, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.3) 100%); }
  .CamsViewerMobileChatMessageItem--text {
    display: block;
    min-height: auto;
    background-color: rgba(33, 33, 33, 0.7); }
    .CamsViewerMobileChatMessageItem--text-transparent {
      background-color: rgba(33, 33, 33, 0.3); }

.CamsViewerMobileAdmirerSnackbar .MuiSnackbarContent-root {
  background: #cccccc;
  color: #212121; }
  .CamsViewerMobileAdmirerSnackbar .MuiSnackbarContent-root svg {
    width: 0.875rem;
    margin-right: 3px; }

/* Model card colors */
.CamsViewerMobileTabs {
  background-color: #212121 !important;
  min-height: 30px !important; }
  .CamsViewerMobileTabs__indicator {
    background-color: #ef951b !important; }

.CamsViewerMobileTab {
  min-height: 30px !important;
  padding-top: 0 !important; }

.CamsViewerMobileTabsBar {
  z-index: 10 !important; }

.CamsViewerMobileTabPanel {
  padding: 10px;
  overflow-y: auto; }

.CamsViewerMobileProfileTab {
  padding: 1rem .5rem 0 0.5rem; }
  .CamsViewerMobileProfileTab__model-name {
    position: initial !important;
    margin-left: initial !important;
    margin-top: initial !important; }
    .CamsViewerMobileProfileTab__model-name-wrapper {
      align-items: center; }
      .CamsViewerMobileProfileTab__model-name-wrapper > .MuiGrid-item {
        width: fit-content; }
  .CamsViewerMobileProfileTab__info, .CamsViewerMobileProfileTab__gender-attributes {
    font-size: .75rem; }
  .CamsViewerMobileProfileTab__info, .CamsViewerMobileProfileTab__rating {
    margin-top: .75rem !important; }
  .CamsViewerMobileProfileTab__bio {
    margin-top: 2rem !important;
    padding: 0 !important;
    background-color: transparent !important; }
    .CamsViewerMobileProfileTab__bio pre {
      max-width: 100% !important;
      padding-bottom: 0 !important;
      margin-bottom: 10px !important; }
    .CamsViewerMobileProfileTab__bio button {
      right: 0 !important; }

.CamsViewerMobileChatTabPanel {
  overflow: hidden !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
  .CamsViewerMobileChatTabPanel--padding-y-0 {
    padding-top: 0;
    padding-bottom: 0; }

/* Model card colors */
.ModalVideoPlayer {
  background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
  height: 70vh; }
  .ModalVideoPlayer__dialog {
    position: relative; }
  .ModalVideoPlayer__paper {
    background-color: transparent;
    margin: 0; }
  .ModalVideoPlayer__backdrop {
    background: transparent; }

.CamsViewerMobileActionPrompt {
  text-align: center;
  background: #212121;
  color: #FFFFFF; }

/* Model card colors */
.CamsViewerMobileFullscreenButton {
  height: 40px;
  width: 40px;
  background-color: rgba(33, 33, 33, 0.8);
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 11;
  position: absolute;
  bottom: 335px;
  left: 15px; }
  .CamsViewerMobileFullscreenButton__icon {
    fill: #FFFFFF;
    width: 14px;
    height: 14px; }

.ModelMediaDetail {
  margin-bottom: 50px; }
  .ModelMediaDetail__item {
    height: 500px; }
    .ModelMediaDetail__item .ModelAboutMeTab__card {
      height: 100%; }
    .ModelMediaDetail__item-info {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      color: var(--COLOR_SECONDARY_LINK, white);
      padding: 10px 0; }
      .ModelMediaDetail__item-info-name {
        font-size: 24px;
        margin: 0 20px 0 0; }
      .ModelMediaDetail__item-info-detail {
        margin-right: 15px;
        font-size: 14px; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .ModelAboutMeTab__card {
  background: none; }

.theme-cams--light .ModelBioText button {
  color: var(--COLOR_SECONDARY_LINK, black); }
  .theme-cams--light .ModelBioText button:hover {
    color: white !important; }

.theme-cams--light .ModelExpando__action-bar .CamsSelect__input {
  color: var(--THEME_INVERTED, black) !important;
  border-color: var(--THEME_INVERTED, black) !important; }

.theme-cams--light .ModelExpando__action-bar .CamsSelect__icon {
  color: var(--THEME_INVERTED, black) !important; }

.theme-cams--light .ModelExpando__action-bar-title {
  color: var(--THEME_INVERTED, black) !important; }

.theme-cams--light .ModelExpando__rating {
  color: #ef951b !important; }

.ModelAboutMeTab__secured div:first-child {
  filter: blur(7px); }
  .ModelAboutMeTab__secured div:first-child .ModelAboutMeTab__card-icon {
    display: none; }

.ModelAboutMeTab__card {
  background-color: #21244d;
  color: white;
  border-radius: 3px;
  min-height: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer; }
  .ModelAboutMeTab__card .ModelAboutMeTab__card-overlay--hover-hide {
    opacity: 1; }
  .ModelAboutMeTab__card .ModelAboutMeTab__card-overlay--hover-show {
    background: none; }
  .ModelAboutMeTab__card:hover {
    background: none; }
    .ModelAboutMeTab__card:hover .ModelAboutMeTab__card-overlay--hover-hide {
      background: none; }
    .ModelAboutMeTab__card:hover .ModelAboutMeTab__card-overlay--hover-show {
      opacity: 1; }

.ModelAboutMeTab__card-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }

.ModelAboutMeTab__card-image {
  width: 100%; }

.ModelAboutMeTab__card-video-poster {
  width: 100%; }

.ModelAboutMeTab__text-list {
  padding: 20px;
  color: white; }

.ModelAboutMeTab__text-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 15px;
  margin: 5px 0; }
  .ModelAboutMeTab__text-row .material-icons {
    width: 15px;
    height: 15px;
    font-size: 15px;
    margin-right: 10px; }

.ModelAboutMeTab__button {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase; }

.ModelAboutMeTab__card-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 24, 51, 0.5);
  /*background-color: rgba(
    var(--COLOR_PRIMARY_BACKGROUND_RGB, $color-background-rgb),
    0.5
  );*/
  color: white;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease; }
  .ModelAboutMeTab__card-overlay--hover-show {
    background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.ModelAboutMeTab__card-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--COLOR_PRIMARY_TEXT, white);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; }
  .ModelAboutMeTab__card-icon .material-icons {
    font-size: 46px !important; }
  .ModelAboutMeTab__card-icon svg {
    width: 46px;
    fill: var(--COLOR_PRIMARY_TEXT, white); }
  .ModelAboutMeTab__card-icon--hover-show {
    background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.ModelAboutMeTab__card-video-duration {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: white;
  display: flex;
  align-items: center;
  font-size: 13px; }
  .ModelAboutMeTab__card-video-duration .material-icons {
    margin-right: 3px;
    font-size: 13px; }

.ModelAboutMeTab__schedule {
  padding: 20px 20px; }
  @media (max-width: 959px) {
    .ModelAboutMeTab__schedule {
      padding: 20px; } }

.ModelAboutMeTab__schedule-title {
  font-size: 13px;
  color: #cccccc;
  text-transform: uppercase;
  line-height: 20px; }

.ModelAboutMeTab__schedule-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px; }
  @media (max-width: 959px) {
    .ModelAboutMeTab__schedule-container {
      flex-direction: column;
      align-items: start; } }

.ModelAboutMeTab__schedule-item {
  font-size: 13px;
  color: #cccccc;
  line-height: 20px;
  font-weight: 300; }

.ModelAboutMeTab__schedule-item-time {
  font-weight: normal;
  color: #ffffff;
  margin-left: 5px;
  margin-right: 10px; }

.ModelAboutMeTab__story-modal {
  position: relative; }

.ModelAboutMeTab__story-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  cursor: pointer; }

.ModelAboutMeTab__story-modal-kiss-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.ModelAboutMeTab__story-modal-kiss-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  .ModelAboutMeTab__story-modal-kiss-overlay > img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1); }
    .ModelAboutMeTab__story-modal-kiss-overlay > img.animating {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1); }

.ModelAboutMeTab__popover-paper {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #161833) !important;
  padding: 20px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.MasonryGrid__wrapper {
  width: 100%;
  overflow: hidden;
  list-style-type: disc;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0; }
  .MasonryGrid__wrapper .Media__loading {
    background: none;
    text-align: center;
    margin-top: 100px;
    min-height: 200px; }

.MasonryGrid__container {
  width: 90vw;
  list-style-type: disc;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0; }
  .MasonryGrid__container li {
    list-style: none;
    overflow: hidden; }

.ModelExpando__popover {
  z-index: 1220; }

.ModelExpando__fan-club-dialog-content {
  background: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #21244d);
  padding: 20px; }

.ModelExpando__bio-expand {
  min-height: 120px;
  max-height: 700px;
  overflow-y: auto;
  margin-left: -20px;
  background: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #21244d) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important; }
  .ModelExpando__bio-expand pre {
    line-height: normal;
    font-family: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5); }

.ModelExpando__mobile-title-rating {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px; }

.ModelExpando__read-more {
  color: orange;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  padding-left: 10px; }

.ModelExpando__bio-expanded {
  margin: 0 !important; }

.ModelExpando__bio-text-desktop {
  margin-top: -60px;
  width: 70vw;
  line-height: normal;
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 12px;
  margin-left: -20px;
  color: rgba(255, 255, 255, 0.5); }
  @media all and (orientation: landscape) {
    .ModelExpando__bio-text-desktop pre {
      white-space: pre-wrap;
      word-wrap: break-word;
      text-align: justify; } }

.ModelExpando__panel {
  background: transparent !important; }

.ModelExpando__card {
  color: white;
  border-radius: 3px;
  min-height: 30px;
  margin-bottom: 8px; }
  .ModelExpando__card--mobile {
    padding-bottom: 40px;
    background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d); }
  .ModelExpando__card-wrapper-avatar {
    width: 75%; }
  .ModelExpando__card-wrapper-action {
    width: 23%; }
  .ModelExpando__card--mobile {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none solid white;
    line-height: 20px;
    display: flex;
    justify-content: space-between; }
    .ModelExpando__card--mobile pre {
      line-height: normal;
      font-family: inherit;
      font-size: 12px;
      white-space: pre-wrap;
      word-wrap: break-word;
      color: rgba(255, 255, 255, 0.5); }

.ModelExpando__bioContent {
  background-color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #21244d);
  border-radius: 0 3px 3px 0; }

.ModelExpando__avatarContainer {
  border-radius: 3px 3px 0 3px;
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d); }

.ModelExpando__avatar {
  border: 4px solid white;
  margin: auto;
  width: 100px !important;
  height: 100px !important; }
  .ModelExpando__avatar img {
    width: 100%; }

.ModelExpando__profile-picture {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 15px; }

.ModelExpando__text-list {
  color: white; }

.ModelExpando__text-header {
  font-size: 20px;
  color: #cccccc;
  text-decoration: none solid #cccccc;
  margin-left: 20px; }

.ModelExpando__awards-box {
  height: 86px;
  opacity: 0.6;
  background-color: #cd264f;
  background-size: cover; }
  .ModelExpando__awards-box .awards-inner {
    opacity: 1;
    margin: 0 auto;
    width: 80%;
    height: 86px;
    border-radius: 60px;
    background-image: linear-gradient(90deg, rgba(239, 149, 27, 0.8) 0%, rgba(205, 38, 79, 0.6) 100%);
    background-position: center center;
    background-size: cover; }
    .ModelExpando__awards-box .awards-inner img {
      margin-top: -14px;
      margin-left: -10px;
      float: left; }
    .ModelExpando__awards-box .awards-inner span {
      display: block;
      padding-top: 30px;
      font-size: 18px;
      color: #000000;
      font-weight: 700;
      text-decoration: none solid black;
      line-height: 24px; }

.ModelExpando__gifts-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #161833);
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px; }
  .ModelExpando__gifts-box .gift {
    display: flex;
    color: #4c4da8;
    justify-content: center;
    align-items: center; }
    .ModelExpando__gifts-box .gift img {
      width: 50px; }
    .ModelExpando__gifts-box .gift .count {
      color: black;
      background-color: white;
      width: 20px;
      height: 20px;
      border-radius: 10px;
      font-size: 12px;
      text-align: center;
      position: relative;
      top: -25px;
      left: -15px;
      padding-top: 3px; }
  .ModelExpando__gifts-box .material-icons {
    font-size: 40px !important; }

.ModelExpando__text-row--desktop {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px; }
  .ModelExpando__text-row--desktop .text-box {
    font-size: 13px;
    color: var(--COLOR_PRIMARY_TEXT, #cccccc);
    margin-right: 15px; }
    @media (max-width: 959px) {
      .ModelExpando__text-row--desktop .text-box {
        margin-bottom: 5px; } }
    .ModelExpando__text-row--desktop .text-box * {
      text-transform: capitalize;
      display: inline-block; }
    .ModelExpando__text-row--desktop .text-box-title {
      font-weight: 300;
      font-weight: 700;
      color: var(--COLOR_PRIMARY_TEXT, #ffffff);
      font-size: 13px;
      padding-right: 5px; }
  .ModelExpando__text-row--desktop pre {
    line-height: normal;
    font-family: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.5); }
  .ModelExpando__text-row--desktop-safari {
    align-items: flex-start;
    overflow: hidden; }

.ModelExpando__text-row {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none solid white;
  line-height: 20px;
  margin: 20px !important;
  max-height: 350px;
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
  overflow: scroll;
  overflow-x: hidden; }
  .ModelExpando__text-row pre {
    line-height: normal;
    font-family: inherit;
    font-size: 12px;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.5); }

.ModelExpando__gallery {
  background-color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #21244d);
  color: white;
  border-radius: 3px;
  width: 100%;
  min-height: 30px;
  position: relative;
  margin-top: 20px; }
  .ModelExpando__gallery .card-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5);
    color: white;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease; }
    .ModelExpando__gallery .card-overlay .material-icons {
      font-size: 46px !important; }
    .ModelExpando__gallery .card-overlay--hover-show {
      background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.8);
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .ModelExpando__gallery .card-image {
    width: 100%; }
  .ModelExpando__gallery .card-overlay--hover-hide {
    opacity: 1; }
  .ModelExpando__gallery .card-overlay--hover-show {
    opacity: 0; }
  .ModelExpando__gallery:hover .card-overlay--hover-hide {
    opacity: 0; }
  .ModelExpando__gallery:hover .card-overlay--hover-show {
    opacity: 1; }

.ModelExpando__action-bar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  color: white;
  justify-content: start;
  width: 100%;
  padding-bottom: 5px; }
  .ModelExpando__action-bar--mobile {
    align-content: flex-end;
    flex-direction: column; }

.ModelExpando__action-bar-title {
  margin: 0 5px 0 0;
  font-size: 14px;
  color: var(--COLOR_PRIMARY_TEXT, white); }

.ModelExpando__action-bar-tooltip .MuiTooltip-tooltip {
  background: black;
  color: white;
  font-size: 14px; }

.ModelExpando__action-bar-select .MuiFormControl-root {
  margin: 0 !important;
  height: 30px; }

.ModelExpando__action-bar-select select {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  height: 32px !important; }

.ModelExpando__info-container {
  background-color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #21244d);
  width: 100%;
  display: flex;
  padding-top: 10px; }
  .ModelExpando__info-container .text-box {
    font-weight: 700;
    font-size: 13px;
    width: 200px;
    padding-bottom: 5px;
    color: #ffffff; }
    .ModelExpando__info-container .text-box * {
      text-transform: capitalize;
      display: inline-block; }
    .ModelExpando__info-container .text-box-title {
      font-weight: 300;
      color: #cccccc;
      font-size: 13px;
      padding-right: 5px; }

.ModelExpando__bio-info {
  padding-top: 20px; }
  @media (max-width: 959px) {
    .ModelExpando__bio-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start; } }
  .ModelExpando__bio-info--safari {
    flex-basis: 20px; }

.ModelExpando__bio-text {
  transition: 0.2s height ease; }

.ModelExpando__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--COLOR_PRIMARY_TEXT, #ef951b);
  margin-right: 20px; }
  @media (max-width: 959px) {
    .ModelExpando__rating {
      margin-top: -3px; } }
  .ModelExpando__rating .material-icons {
    width: 20px;
    height: 20px;
    font-size: 20px; }

.ModelExpando__action-bar-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  border: none;
  color: var(--COLOR_PRIMARY_TEXT, white);
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  min-width: 46px;
  height: 34px;
  margin-left: 5px; }
  .ModelExpando__action-bar-button--mobile {
    min-width: 100%;
    margin-bottom: 10px; }
  .ModelExpando__action-bar-button span:nth-child(2) {
    margin-right: 5px; }
  .ModelExpando__action-bar-button .material-icons {
    width: 22px;
    height: 22px;
    font-size: 22px; }
  .ModelExpando__action-bar-button--in-progress {
    opacity: 0.7; }

.ModelBioText {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  color: var(--COLOR_PRIMARY_TEXT, #ffffff);
  font-size: 12px;
  flex-grow: 1;
  position: relative; }
  .ModelBioText--mobile {
    padding: 0 1.5rem; }
    .ModelBioText--mobile pre {
      max-height: unset !important;
      padding-bottom: 30px; }
  .ModelBioText pre {
    margin: 0 0 30px 0;
    position: relative;
    display: block;
    font-family: "Lato", sans-serif;
    page-break-inside: avoid;
    white-space: pre-wrap;
    max-width: 80vw;
    min-height: 20px;
    max-height: 500px;
    overflow: hidden; }
  .ModelBioText button {
    background: none;
    border: none;
    padding: 0;
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    cursor: pointer;
    width: 100px;
    position: absolute;
    bottom: 15px;
    right: 20px; }
    .ModelBioText button:hover {
      color: var(--COLOR_SECONDARY_LINK_HOVER, #ef951b); }
  .ModelBioText *:focus {
    outline: none; }

.ModelExpando__popover {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  justify-content: center;
  height: 400px;
  max-width: 700px; }
  @media (max-width: 959px) {
    .ModelExpando__popover {
      height: 100%;
      width: 100%;
      max-width: 100%; } }
  .ModelExpando__popover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 3px;
    justify-content: center;
    height: 100%;
    width: 100%; }
    .ModelExpando__popover-content--Gift {
      padding-top: 20px;
      padding-bottom: 20px; }

.MediaTitle {
  color: white;
  font-size: 20px;
  margin: 20px 0; }

.ScrollToTopButton {
  position: fixed !important;
  bottom: 1rem;
  right: 1rem;
  color: #FFFFFF !important;
  z-index: 100; }

/* Model card colors */
.MediaCard {
  background-color: var(--COLOR_SECONDARY_BACKGROUND, #21244d);
  color: var(--COLOR_PRIMARY_TEXT, white);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover; }
  .MediaCard__media-title {
    font-size: 13px;
    text-transform: uppercase; }
  .MediaCard__media-details {
    margin-left: auto; }
  .MediaCard__favorites {
    margin-left: 5px; }
    .MediaCard__favorites--in-action {
      opacity: 0.7; }
    .MediaCard__favorites--favorited, .MediaCard__favorites--unfavorited {
      display: block;
      float: left;
      width: 30px;
      height: 20px; }
      @media (max-width: 959px) {
        .MediaCard__favorites--favorited, .MediaCard__favorites--unfavorited {
          width: 20px;
          font-size: 30px; } }
    .MediaCard__favorites--favorited {
      color: #cd264f; }
    .MediaCard__favorites--unfavorited {
      color: white; }
  .MediaCard__model-name, .MediaCard__media-details {
    font-size: 13px; }
  .MediaCard__model-name {
    display: block;
    font-size: 13px;
    width: 105px;
    height: 16px;
    color: #ffffff;
    text-decoration: none solid white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); }
    @media (max-width: 959px) {
      .MediaCard__model-name {
        display: none; } }
  .MediaCard__media-details {
    display: flex; }
    .MediaCard__media-details-pill {
      display: flex;
      align-items: center;
      margin-right: 3px;
      padding: 5px 10px;
      border-radius: 15px;
      background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7); }
      .MediaCard__media-details-pill > .material-icons {
        font-size: 17px;
        margin-right: 4px; }
  .MediaCard__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5);
    transition: all 0.2s ease; }
    .MediaCard__overlay:hover {
      background: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0); }
    .MediaCard__overlay-center {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 102;
      text-align: center; }
      .MediaCard__overlay-center-icon {
        opacity: 0.4;
        font-size: 48px !important;
        margin-bottom: 5px; }
        .MediaCard__overlay-center-icon--opacity-full {
          opacity: 1; }
    .MediaCard__overlay-bottom {
      display: flex;
      align-items: center;
      position: absolute;
      bottom: 8px;
      width: 100%;
      padding-right: 8px; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .Tabs-tab {
  background-color: var(--THEME, transparent);
  border-color: var(--COLOR_SECONDARY_BACKGROUND, #ef951b);
  color: var(--COLOR_SECONDARY_BACKGROUND, #ef951b); }
  .theme-cams--light .Tabs-tab--active {
    background-color: var(--COLOR_SECONDARY_BACKGROUND, transparent);
    color: var(--COLOR_PRIMARY_TEXT, white); }

.Tabs--mobile {
  display: flex;
  justify-content: space-between;
  margin-top: 10px; }
  .Tabs--mobile .Tabs-tab {
    margin-left: 0; }

.Tabs-tab {
  display: inline-block;
  background-color: var(--COLOR_SECONDARY_BACKGROUND, #1e1f47);
  border: 1px solid var(--COLOR_PRIMARY_LINK_TEXT, #2e2b66);
  padding: 5px 10px;
  font-size: 14px;
  margin-left: 10px;
  color: var(--COLOR_PRIMARY_LINK_TEXT, #b3b3b3);
  cursor: pointer; }
  .Tabs-tab--active {
    border: 1px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #2e2b66);
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.CamsTextField__Input.MuiOutlinedInput-root {
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .CamsTextField__Input.MuiOutlinedInput-root .MuiInputBase-formControl:hover fieldset {
    border-color: transparent !important; }
  .CamsTextField__Input.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline,
  .CamsTextField__Input.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline,
  .CamsTextField__Input.MuiOutlinedInput-root .MuiOutlinedInput-notchedOutline {
    border-color: white; }
  .CamsTextField__Input.MuiOutlinedInput-root.Mui-error.Mui-focused .MuiOutlinedInput-notchedOutline,
  .CamsTextField__Input.MuiOutlinedInput-root.Mui-error:hover .MuiOutlinedInput-notchedOutline,
  .CamsTextField__Input.MuiOutlinedInput-root.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: var(--COLOR_ERROR_MSG_TEXT, #f44336);
    color: var(--COLOR_ERROR_MSG_TEXT, #f44336); }

.CamsTextField__Input .MuiFormLabel-root.Mui-error {
  color: var(--COLOR_ERROR_MSG_TEXT, #f44336); }

.CamsTextField__Label.MuiInputLabel-outlined,
.CamsTextField__Label.MuiInputLabel-outlined.Mui-focused {
  color: var(--COLOR_PRIMARY_TEXT, white); }

.component-error-text {
  color: var(--COLOR_ERROR_MSG_TEXT, #f44336); }

/* Model card colors */
.view__profile > span {
  display: inline-block;
  color: var(--COLOR_PRIMARY_TEXT, #999999);
  width: 100px;
  font-weight: 500; }

.about-me__box > span {
  display: block;
  word-wrap: break-word; }

.PhotoCard__loading {
  display: flex;
  width: 140px;
  height: 160px;
  align-items: center;
  justify-content: center; }

.MediaModalDialog {
  overflow: hidden; }

.PhotoCard__content {
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  width: 140px;
  height: 160px;
  border-radius: 0 !important;
  cursor: pointer; }
  .PhotoCard__content .CoverTitle {
    display: flex;
    height: 25%;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 12px; }
  .PhotoCard__content .FillSpace {
    flex: 1; }
  .PhotoCard__content .CoverRemoveButton {
    color: white;
    font-size: 12px;
    width: 60px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: flex;
    align-self: flex-end;
    z-index: 2; }
    .PhotoCard__content .CoverRemoveButton a, .PhotoCard__content .CoverRemoveButton a:hover, .PhotoCard__content .CoverRemoveButton a:visited {
      text-decoration: none;
      color: white; }
    .PhotoCard__content .CoverRemoveButton a, .PhotoCard__content .CoverRemoveButton a:hover {
      font-weight: bold;
      background-color: rbga(0, 0, 0, 1); }

@media (max-width: 959px) {
  .MemberGallery__container {
    justify-content: center;
    padding: 0 20px; } }

MuiDialogTitle-root h6 {
  font-size: 5px !important; }

.MuiDialogContent-root {
  font-size: 10px !important; }

.switchLine__title {
  min-width: 165px; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .UserProfileCard .CamsSelect__input {
  color: var(--COLOR_PRIMARY_TEXT, white) !important;
  border-color: var(--COLOR_PRIMARY_TEXT, white) !important; }

.theme-cams--light .UserProfileCard .CamsSelect__icon {
  color: var(--COLOR_PRIMARY_TEXT, white) !important; }

.theme-cams--light .UserProfileCard__nav-item.active {
  color: var(--COLOR_SECONDARY_LINK, #ef951b);
  border-color: var(--COLOR_SECONDARY_LINK, #ef951b); }

.theme-cams--light .UserProfileCard__tab {
  background-color: var(--COLOR_CONTENT_BACKGROUND, #616161);
  color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
  border-color: var(--COLOR_PRIMARY_TEXT, #1e1f47); }
  .theme-cams--light .UserProfileCard__tab.selected {
    background-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    border-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #1e1f47);
    color: var(--COLOR_PRIMARY_TEXT, white); }

.theme-cams--light .UserProfileCard__billing-link--orange {
  color: var(--COLOR_SECONDARY_LINK, black); }

.theme-cams--light .UserProfileCard__billing-link:hover {
  color: var(--COLOR_PRIMARY_TEXT); }

.theme-cams--light .UserProfileCard__nav {
  background: var(--COLOR_PRIMARY_BACKGROUND, #ef951b); }

.theme-cams--light .UserProfileCard__content {
  background: #b3b3b3; }

.UserProfileCard {
  padding: 40px 65px;
  min-height: 830px;
  display: flex;
  flex-direction: row; }
  @media (max-width: 959px) {
    .UserProfileCard {
      display: none; } }

.UserProfileCard__silhouette {
  width: 100px;
  height: 100px;
  border: 4px solid white;
  background: #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px; }
  .UserProfileCard__silhouette svg {
    fill: #aeaeae;
    width: 50px;
    height: 50px; }

.UserProfileCard__loading-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 50px; }

.UserProfileCard__nav {
  background-color: var(--COLOR_SECONDARY_BACKGROUND, #1e1f47);
  padding: 30px 27px;
  width: 240px;
  min-height: 830px;
  display: flex;
  flex-direction: column;
  align-items: start;
  border-right: 1px solid var(--THEME, transparent); }

.UserProfileCard__nav-item {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: var(--COLOR_PRIMARY_LINK_TEXT, #b3b3b3);
  outline: none;
  margin-bottom: 40px;
  cursor: pointer;
  padding: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent; }
  .UserProfileCard__nav-item.active {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    border-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }

.UserProfileCard__content {
  flex: 1;
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  min-height: 830px;
  padding: 30px 60px;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  .UserProfileCard__content a {
    color: var(--COLOR_SECONDARY_LINK, white);
    text-decoration: none;
    margin-left: 8px; }
    .UserProfileCard__content a:hover {
      color: var(--COLOR_SECONDARY_LINK_HOVER); }
    .UserProfileCard__content a--orange {
      color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .UserProfileCard__content--cobrand .cams-text--title,
  .UserProfileCard__content--cobrand .cams-text--subtitle,
  .UserProfileCard__content--cobrand .UserProfileCard__list {
    color: var(--COLOR_PRIMARY_TEXT) !important; }

.UserProfileCard__tabs {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center; }

.UserProfileCard__tab {
  background-color: var(--COLOR_SECONDARY_BACKGROUND, #1e1f47);
  border-width: 1px;
  border-style: solid;
  border-color: var(--COLOR_PRIMARY_LINK_TEXT, #1e1f47);
  text-align: center;
  padding: 5px 20px;
  font-size: 14px;
  color: var(--COLOR_PRIMARY_LINK_TEXT, #b3b3b3);
  cursor: pointer; }
  .UserProfileCard__tab.selected {
    border-width: 1px;
    border-style: solid;
    border-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #1e1f47);
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .UserProfileCard__tab:not(:first-child) {
    margin-left: 10px; }

.UserProfileCard__list {
  padding-left: 24px; }
  .UserProfileCard__list > li {
    font-size: 14px;
    margin-bottom: 10px; }

.UserProfileCard__modal {
  background-image: linear-gradient(130deg, rgba(239, 149, 27, 0.8) 2%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 53%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.9) 83%, rgba(205, 38, 79, 0.7) 100%);
  color: white; }

.UserProfileCard__modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%; }

.UserProfileCard__model-separator {
  width: 100%;
  height: 1px;
  background: white; }

.UserProfileCard__inner-card {
  text-align: center;
  width: 325px; }

.UserProfileCard__model-thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  margin: 0 15px; }
  .UserProfileCard__model-thumbnail:first-child {
    margin-left: 0; }
  .UserProfileCard__model-thumbnail.online {
    background: linear-gradient(90deg, #67d658 0%, #58bfd6 100%); }

.UserProfileCard__model-thumbnail-inner {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  position: relative;
  overflow: hidden; }
  .UserProfileCard__model-thumbnail-inner > img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

.UserProfileCard__subscription-detail-button {
  color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 40px;
  display: block; }

.UserProfileCard__cta-button {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase; }

.UserProfileCard__MySubscription {
  padding-top: 30px; }
  .UserProfileCard__MySubscription-inner {
    width: 100%; }
  .UserProfileCard__MySubscription-title {
    font-size: 16px;
    font-weight: bold; }
  .UserProfileCard__MySubscription-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 25px; }
    .UserProfileCard__MySubscription-table tr > td:first-child {
      width: 310px; }
    .UserProfileCard__MySubscription-table tr > td:nth-child(2) {
      width: 200px; }
  .UserProfileCard__MySubscription-table-head {
    font-size: 12px; }
    .UserProfileCard__MySubscription-table-head > td {
      font-weight: bold; }
  .UserProfileCard__MySubscription-table-row {
    font-size: 14px; }
  .UserProfileCard__MySubscription-table-cell-center {
    text-align: center; }
  .UserProfileCard__MySubscription-progress {
    color: white; }
  .UserProfileCard__MySubscription-model-cell {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .UserProfileCard__MySubscription-model-cell .UserProfileCard__model-thumbnail {
      width: 50px;
      height: 50px; }
      .UserProfileCard__MySubscription-model-cell .UserProfileCard__model-thumbnail .UserProfileCard__model-thumbnail-inner {
        width: 50px;
        height: 50px; }

.UserProfileCard__SubscriptionConfirmDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; }
  .UserProfileCard__SubscriptionConfirmDialog-text {
    font-size: 20px;
    margin-bottom: 0; }
  .UserProfileCard__SubscriptionConfirmDialog-button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 40px; }
    .UserProfileCard__SubscriptionConfirmDialog-button-container > button {
      width: 200px;
      margin: 0 15px; }

.UserProfileCard__input {
  height: 45px;
  width: 100%;
  outline: none;
  border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
  border-radius: 3px;
  background: transparent;
  color: var(--COLOR_PRIMARY_TEXT, white);
  padding-left: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .UserProfileCard__input {
      width: 100%; } }
  .UserProfileCard__input--no-border {
    border: 1px solid transparent;
    margin: 10px 0;
    color: #cccccc;
    font-size: 12px;
    position: relative;
    padding-left: 0;
    height: initial; }
  .UserProfileCard__input--forget-password {
    color: var(--COLOR_SECONDARY_LINK, #ef951b); }
  .UserProfileCard__input::placeholder {
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    padding: 0 10px;
    font-size: 14px;
    text-align: left; }

.UserProfileCard__error {
  color: var(--COLOR_ERROR_MSG_TEXT, #ef951b);
  font-size: 12px;
  margin: 5px 0; }
  .UserProfileCard__error span {
    display: block; }

.UserProfileCard__avatar {
  width: 100px !important;
  height: 100px !important;
  border: 4px solid white; }

.Billing__table-header {
  padding: 15px;
  text-align: left; }

/* Model card colors */
.MyAccountPopover {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1350; }
  .MyAccountPopover__close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    fill: var(--COLOR_PRIMARY_TEXT, white); }
    .MyAccountPopover__close-button:hover {
      cursor: pointer; }
  .MyAccountPopover__popover-content {
    margin: auto; }
    .MyAccountPopover__popover-content > .UserProfileCard {
      padding: 0px 0px; }
  .MyAccountPopover__backdrop {
    background: transparent; }
  .MyAccountPopover__dialog {
    position: relative; }
    @media (max-width: 959px) {
      .MyAccountPopover__dialog {
        top: 56px !important; } }
  .MyAccountPopover__paper {
    background-color: transparent !important;
    margin: 0; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .UserProfileCardMobile__nav {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #ef951b); }
  .theme-cams--light .UserProfileCardMobile__nav .u-color-grey {
    color: var(--COLOR_SECONDARY_LINK, black); }

.theme-cams--light .UserProfileCardMobile__detail-card {
  background-color: var(--COLOR_CONTENT_BACKGROUND, #616161); }

.theme-cams--light .UserProfileCardMobile__detail-container a {
  color: var(--COLOR_SECONDARY_LINK, black); }

.UserProfileCardMobile {
  display: none;
  width: 100%;
  color: var(--COLOR_PRIMARY_TEXT, white); }
  @media (max-width: 959px) {
    .UserProfileCardMobile {
      display: initial; } }
  .UserProfileCardMobile__nav {
    min-height: 540px;
    background-color: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
    padding-top: 40px; }
  .UserProfileCardMobile__billing-link--orange {
    color: #ef951b; }

.UserProfileCardMobile__NavItem {
  color: white; }

.UserProfileCardMobile__detail-card {
  position: fixed;
  bottom: 0;
  left: 0;
  top: 56px;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.2s linear;
  background: var(--COLOR_SECONDARY_BACKGROUND, #21244d);
  padding: 60px 0 20px 0;
  z-index: 1; }
  .UserProfileCardMobile__detail-card.show-detail {
    transform: translateX(0px); }

.UserProfileCardMobile__detail-container {
  height: 100%;
  overflow-y: scroll;
  padding: 0 20px; }

.UserProfileCardMobile__detail-header {
  background: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
  height: 50px;
  text-align: center;
  position: absolute;
  color: white;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center; }

.UserProfileCardMobile__detail-header-back-icon {
  left: 20px;
  top: 15px;
  position: absolute !important;
  color: white;
  padding: 0 !important; }
  .UserProfileCardMobile__detail-header-back-icon .material-icons {
    color: white !important; }

.UserProfileCardMobile__about-me {
  word-break: break-all;
  margin-bottom: 41px;
  font-size: 14px; }

.UserProfileCardMobile__icon-button {
  padding: 0 !important;
  background: white !important;
  width: 30px;
  height: 30px;
  border-radius: 50%; }

.UserProfileCardMobile__icon-button-icon {
  font-size: 18px !important;
  color: black; }

.UserProfileCardMobile__edit-icon {
  position: absolute !important;
  right: 0;
  bottom: 0; }

.UserProfileCardMobile__edit-container {
  position: relative; }

.UserProfileCardMobile__email-field {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis; }

.UserProfileCardMobile__avatar {
  width: 100px !important;
  height: 100px !important;
  border: 4px solid white; }

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px; }
  .swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d; }
  .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

/*!
 * Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

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

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 560px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 1200px; } }

@media (min-width: 1240px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1600px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1240px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

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

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

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

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

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

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

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

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1240px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

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

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

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

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

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

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

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

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

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

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1240px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.m-0 {
  margin: 0 !important; }

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

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

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

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

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

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

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

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

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

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

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

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

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

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

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

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

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

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

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

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

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

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

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

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

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

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

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

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

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

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

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

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

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

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

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

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

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

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

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

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

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

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

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

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

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

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

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

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

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

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

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

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

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

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

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

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

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

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

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

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

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

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

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1240px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

.m-0 {
  margin: 0 !important; }

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

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

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

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

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

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

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

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

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

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

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

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

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

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

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

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

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

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

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

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

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

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

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

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

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

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

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

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

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

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

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

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

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

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

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

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

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

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

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

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

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

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

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

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

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

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

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

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

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

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

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

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

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

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

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

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

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

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

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

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

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

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

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1240px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

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

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1240px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-weight-bolder {
  font-weight: bolder !important; }

.font-italic {
  font-style: italic !important; }

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

.text-primary {
  color: #007bff !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #19692c !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-decoration-none {
  text-decoration: none !important; }

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

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

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

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

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

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

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

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

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1240px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

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

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

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

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

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

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

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

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

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

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1240px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

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

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100vh !important; }

.container {
  width: calc(100% - 20px); }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* Model card colors */
@-webkit-keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@keyframes border-ripple-white {
  0% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.2); }
  100% {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0); } }

@-webkit-keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

@keyframes border-ripple-rainbow {
  0% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 0 rgba(0, 253, 173, 0.7), 0 0 0 5px rgba(255, 144, 0, 0.7), 0 0 0 10px rgba(248, 100, 100, 0.9); }
  100% {
    box-shadow: 0 4px 10px rgba(203, 64, 236, 0.7), 0 0 0 5px rgba(0, 253, 173, 0.7), 0 0 0 10px rgba(255, 144, 0, 0.7), 0 0 0 20px rgba(248, 100, 100, 0); } }

.border-ripple-white {
  animation: border-ripple-white 0.6s linear 1; }

.border-ripple-rainbow {
  animation: border-ripple-rainbow 0.6s linear 1; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.animation-rotate {
  animation: rotate 2s linear infinite; }

@keyframes wiggle {
  0% {
    transform: rotate(10deg); }
  25% {
    transform: rotate(-10deg); }
  50% {
    transform: rotate(20deg); }
  75% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.animation-wiggle {
  animation: wiggle 1s ease-in-out; }

@keyframes rainbowColor {
  0% {
    background-color: #f966a2 !important; }
  20% {
    background-color: #cb40ec !important; }
  40% {
    background-color: #00fdad !important; }
  60% {
    background-color: #e8f864 !important; }
  80% {
    background-color: #ff9000 !important; }
  100% {
    background-color: #f86464 !important; } }

@keyframes jumpJump {
  0% {
    transform: scale(1, 1) translateY(0); }
  2% {
    transform: scale(1.1, 0.9) translateY(0); }
  3% {
    transform: scale(0.9, 1.1) translateY(-25px); }
  3.5% {
    transform: scale(1, 1) translateY(0); }
  100% {
    transform: scale(1, 1) translateY(0); } }

.animation-rainbow {
  animation: rainbowColor 5s linear infinite; }

.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

html,
body,
#__next,
.ThemeContainer,
[class^="theme-cams--"] {
  height: 100%; }

.example {
  font-size: 14px; }

.pt-0 {
  top: 0; }

body {
  background: var(--THEME, #161833); }
  body.hidden {
    overflow: hidden; }

html.cams-mobile--full {
  height: 100vh;
  overflow: hidden; }
  html.cams-mobile--full > body {
    height: 100vh; }

input {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
  filter: none; }
  input:required {
    box-shadow: none; }

:focus {
  outline: auto 0px transparent; }

.cursor-pointer {
  cursor: pointer; }

.cursor-not-allowed {
  cursor: not-allowed; }

.display-none {
  display: none; }

.visibility-hidden {
  visibility: hidden; }

.overflow-hidden {
  overflow: hidden; }

.overflow-x-hidden {
  overflow-x: hidden; }

.overflow-y-hidden {
  overflow-y: hidden; }

.theme-cams--light .cams-button--gradient-no-animation, .theme-cams--light .cams-button--grey-border {
  background: none;
  border-color: var(--COLOR_PRIMARY_TEXT, white) !important;
  color: var(--COLOR_PRIMARY_TEXT, white) !important; }
  .theme-cams--light .cams-button--gradient-no-animation:hover, .theme-cams--light .cams-button--grey-border:hover {
    background: var(--COLOR_BUTTONS_BACKGROUND, #ef951b);
    border-color: var(--COLOR_BUTTONS_BACKGROUND, white) !important; }

.theme-cams--light .cams-button--gradient-no-animation {
  background: var(--COLOR_BUTTONS_BACKGROUND, #ef951b); }

/* Model card colors */
.cams-button {
  font-size: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 20px;
  background: transparent;
  border-radius: 3px;
  text-decoration: none !important; }
  .cams-button--small {
    padding: 5px 8px;
    font-size: 12px;
    text-align: center; }
  .cams-button--orange-outlined {
    border: 1px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .cams-button--themed {
    color: var(--COLOR_BUTTONS_TEXT) !important; }
    .cams-button--themed:hover {
      background: var(--COLOR_BUTTONS_HOVER); }
  .cams-button--gradient {
    position: relative;
    background-image: linear-gradient(90deg, #ef951b 3%, #cd264f 100%);
    color: #ffffff !important;
    overflow: hidden; }
    .cams-button--gradient-transparent,
    .cams-button--gradient-transparent .cams-button--gradient-hover {
      background-image: linear-gradient(90deg, rgba(239, 149, 27, 0.7) 3%, rgba(205, 38, 79, 0.7) 100%) !important; }
    .cams-button--gradient svg {
      fill: white; }
    .cams-button--gradient:after {
      content: "";
      display: block;
      position: absolute;
      width: 20px;
      height: 100%;
      transform: skewX(-10deg);
      left: -25px;
      top: 0;
      background: rgba(255, 255, 255, 0.4); }
    .cams-button--gradient:hover, .cams-button--gradient-hover {
      background-image: linear-gradient(90deg, #ef951b 3%, #cd264f 100%); }
      .cams-button--gradient:hover:after, .cams-button--gradient-hover:after {
        transition: left 0.3s linear;
        left: calc(100% + 25px); }
  .cams-button--themed.cams-button--gradient {
    position: relative;
    background-image: linear-gradient(90deg, var(--COLOR_BUTTONS_BACKGROUND, #ef951b) 3%, var(--COLOR_BUTTONS_BACKGROUND, #cd264f) 100%);
    color: #ffffff !important;
    overflow: hidden; }
    .cams-button--themed.cams-button--gradient-transparent,
    .cams-button--themed.cams-button--gradient-transparent .cams-button--themed.cams-button--gradient-hover {
      background-image: linear-gradient(90deg, rgba(var(--COLOR_BUTTONS_BACKGROUND, #ef951b), 0.7) 3%, rgba(var(--COLOR_BUTTONS_BACKGROUND, #cd264f), 0.7) 100%) !important; }
    .cams-button--themed.cams-button--gradient svg {
      fill: white; }
    .cams-button--themed.cams-button--gradient:after {
      content: "";
      display: block;
      position: absolute;
      width: 20px;
      height: 100%;
      transform: skewX(-10deg);
      left: -25px;
      top: 0;
      background: rgba(255, 255, 255, 0.4); }
    .cams-button--themed.cams-button--gradient:hover, .cams-button--themed.cams-button--gradient-hover {
      background-image: linear-gradient(90deg, var(--COLOR_BUTTONS_HOVER, #ef951b) 3%, var(--COLOR_BUTTONS_HOVER, #cd264f) 100%); }
      .cams-button--themed.cams-button--gradient:hover:after, .cams-button--themed.cams-button--gradient-hover:after {
        transition: left 0.3s linear;
        left: calc(100% + 25px); }
  .cams-button--original.cams-button--gradient {
    position: relative;
    background-image: linear-gradient(90deg, #ef951b 3%, #cd264f 100%);
    color: #ffffff !important;
    overflow: hidden; }
    .cams-button--original.cams-button--gradient-transparent,
    .cams-button--original.cams-button--gradient-transparent .cams-button--original.cams-button--gradient-hover {
      background-image: linear-gradient(90deg, rgba(239, 149, 27, 0.7) 3%, rgba(205, 38, 79, 0.7) 100%) !important; }
    .cams-button--original.cams-button--gradient svg {
      fill: white; }
    .cams-button--original.cams-button--gradient:after {
      content: "";
      display: block;
      position: absolute;
      width: 20px;
      height: 100%;
      transform: skewX(-10deg);
      left: -25px;
      top: 0;
      background: rgba(255, 255, 255, 0.4); }
    .cams-button--original.cams-button--gradient:hover, .cams-button--original.cams-button--gradient-hover {
      background-image: linear-gradient(90deg, #ef951b 3%, #cd264f 100%); }
      .cams-button--original.cams-button--gradient:hover:after, .cams-button--original.cams-button--gradient-hover:after {
        transition: left 0.3s linear;
        left: calc(100% + 25px); }
  .cams-button--gradient--violet, .cams-button--themed.cams-button--gradient--violet, .cams-button--original.cams-button--gradient--violet {
    background-image: linear-gradient(90deg, #d05cf7 0%, #4942db 100%); }
    .cams-button--gradient--violet-transparent, .cams-button--themed.cams-button--gradient--violet-transparent, .cams-button--original.cams-button--gradient--violet-transparent {
      background-image: linear-gradient(90deg, rgba(208, 92, 247, 0.7) 0%, rgba(73, 66, 219, 0.7) 100%); }
  .cams-button--gradient--blue, .cams-button--themed.cams-button--gradient--blue, .cams-button--original.cams-button--gradient--blue {
    background-image: linear-gradient(90deg, #2882a6 0%, #26274f 100%);
    color: white; }
    .cams-button--gradient--blue-transparent, .cams-button--themed.cams-button--gradient--blue-transparent, .cams-button--original.cams-button--gradient--blue-transparent {
      background-image: linear-gradient(90deg, rgba(40, 130, 166, 0.7) 0%, rgba(38, 39, 79, 0.7) 100%); }
  .cams-button--gradient--green, .cams-button--themed.cams-button--gradient--green, .cams-button--original.cams-button--gradient--green {
    background-image: linear-gradient(90deg, #67d658 0%, #58bfd6 100%); }
    .cams-button--gradient--green-transparent, .cams-button--themed.cams-button--gradient--green-transparent, .cams-button--original.cams-button--gradient--green-transparent {
      background-image: linear-gradient(90deg, rgba(103, 214, 88, 0.7) 0%, rgba(88, 191, 214, 0.7) 100%); }
  .cams-button--gradient-no-animation {
    background-image: linear-gradient(90deg, var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b) 3%, var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT-DARKEN, #cd264f) 100%);
    color: #ffffff !important; }
    .cams-button--gradient-no-animation-transparent {
      background-image: linear-gradient(90deg, rgba(var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b), 0.7) 3%, rgba(var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT-DARKEN, #cd264f), 0.7) 100%); }
    .cams-button--gradient-no-animation svg {
      fill: white; }
  .cams-button--full {
    width: 100%; }
  .cams-button--transparent-gradient {
    background-image: linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 239, 149, 27), 0.5) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.5) 18%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 52%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.6) 83%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 205, 38, 79), 0.7) 100%), linear-gradient(130deg, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 133, 94), 0.9) 1%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 33, 55, 133), 0.9) 48%, rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 133, 33, 33), 0.9) 101%);
    background-color: transparent;
    border-radius: 3px;
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    text-transform: uppercase; }
  .cams-button:disabled, .cams-button--loading {
    opacity: 0.7; }
  .cams-button--primary {
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .cams-button--white {
    color: white; }
  .cams-button--border {
    border: 1px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
  .cams-button--grey-border {
    color: #cccccc !important;
    border: 1px solid #cccccc !important;
    transition: border-color 0.2s linear; }
    .cams-button--grey-border:hover {
      border: 1px solid var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b) !important; }
  .cams-button--icon {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .cams-button--icon .material-icon {
      margin-right: 5px; }

.cams-checkbox {
  background: transparent;
  position: relative; }
  .cams-checkbox > input {
    opacity: 0; }
  .cams-checkbox > label {
    cursor: pointer;
    position: absolute;
    width: 13px;
    height: 13px;
    top: 1px;
    left: 0;
    background: transparent;
    border: 1px solid #cccccc;
    border-radius: 3px; }
    .cams-checkbox > label:after {
      opacity: 0;
      content: "";
      position: absolute;
      width: 9px;
      height: 5px;
      background: transparent;
      top: 3px;
      left: 1px;
      border: 3px solid white;
      border-top: none;
      border-right: none;
      transform: rotate(-45deg); }
  .cams-checkbox > input[type="checkbox"]:checked + label:after {
    opacity: 1; }

.theme-cams--light .cams-table tbody tr:nth-child(odd) {
  background: rgba(var(--COLOR_PRIMARY_TEXT_RGB, 255, 255, 255), 0.1); }

.cams-table {
  border-collapse: collapse;
  font-size: 14px; }
  .cams-table thead > th {
    text-align: left;
    padding: 15px; }
  .cams-table tbody tr {
    border-bottom: 1px solid var(--THEME, transparent); }
    .cams-table tbody tr:nth-child(odd) {
      background: var(--COLOR_PRIMARY_BACKGROUND, #2e2b66);
      color: var(--COLOR_PRIMARY_TEXT, white); }
    .cams-table tbody tr td {
      padding: 15px; }

.cams-option-card {
  background: transparent;
  transition: background-color 0.2s ease;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: white;
  padding: 25px 30px;
  text-align: center;
  flex-grow: 1;
  font-size: 18px;
  cursor: pointer;
  flex-basis: 45%;
  margin: 5px 0;
  height: 100px; }
  .cams-option-card:nth-child(odd) {
    margin-right: 10px; }
  .cams-option-card.selected {
    border-color: transparent;
    color: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
    background: linear-gradient(90deg, #67d658 0%, #58bfd6 100%); }

.h-full {
  height: 100%;
  max-height: 100%; }

.w-full {
  width: 100%; }

.u-color-background {
  color: var(--COLOR_PRIMARY_BACKGROUND, #161833);
  fill: var(--COLOR_PRIMARY_BACKGROUND, #161833); }

.u-bg-background {
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #161833); }

.u-color-background-transparent {
  color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7);
  fill: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7); }

.u-bg-background-transparent {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 22, 24, 51), 0.7); }

.u-color-orange {
  color: var(--COLOR_PRIMARY_LINK_TEXT, #ef951b);
  fill: var(--COLOR_PRIMARY_LINK_TEXT, #ef951b); }

.u-bg-orange {
  background-color: var(--COLOR_PRIMARY_LINK_TEXT, #ef951b); }

.u-color-red {
  color: #cd264f;
  fill: #cd264f; }

.u-bg-red {
  background-color: #cd264f; }

.u-color-white {
  color: white;
  fill: white; }

.u-bg-white {
  background-color: white; }

.u-color-deep-grey {
  color: #cccccc;
  fill: #cccccc; }

.u-bg-deep-grey {
  background-color: #cccccc; }

.u-color-grey {
  color: #999999;
  fill: #999999; }

.u-bg-grey {
  background-color: #999999; }

.u-color-grey-white {
  color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
  fill: var(--COLOR_PRIMARY_TEXT, #b3b3b3); }

.u-bg-grey-white {
  background-color: var(--COLOR_PRIMARY_TEXT, #b3b3b3); }

.u-color-dark-blue {
  color: #21244d;
  fill: #21244d; }

.u-bg-dark-blue {
  background-color: #21244d; }

.u-color-light-blue {
  color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #161833);
  fill: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #161833); }

.u-bg-light-blue {
  background-color: var(--COLOR_PRIMARY_BACKGROUND_LIGHTEN, #161833); }

.u-color-background-blue {
  color: #1e1f47;
  fill: #1e1f47; }

.u-bg-background-blue {
  background-color: #1e1f47; }

.u-color-background-blue-transparent {
  color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 30, 31, 71), 0.9);
  fill: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 30, 31, 71), 0.9); }

.u-bg-background-blue-transparent {
  background-color: rgba(var(--COLOR_PRIMARY_BACKGROUND_RGB, 30, 31, 71), 0.9); }

/*-------linear-gradient-------*/
/*-----------------------------*/
/*-------linear-gradient-------*/
/*-----------------------------*/
.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

.image-gallery-icon {
  color: #fff;
  transition: all .2s ease-out;
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 2px 2px #1a1a1a); }
  @media (min-width: 768px) {
    .image-gallery-icon:hover {
      color: #337ab7; }
      .image-gallery-icon:hover .image-gallery-svg {
        transform: scale(1.1); } }
  .image-gallery-icon:focus {
    outline: 2px solid #337ab7; }

.image-gallery-using-mouse {
  margin: 0 auto;
  height: 100%; }
  .image-gallery-using-mouse .image-gallery-icon:focus {
    outline: none; }

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0;
  padding: 20px; }
  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 36px;
    width: 36px; }
  @media (max-width: 768px) {
    .image-gallery-fullscreen-button,
    .image-gallery-play-button {
      padding: 15px; }
      .image-gallery-fullscreen-button .image-gallery-svg,
      .image-gallery-play-button .image-gallery-svg {
        height: 24px;
        width: 24px; } }
  @media (max-width: 480px) {
    .image-gallery-fullscreen-button,
    .image-gallery-play-button {
      padding: 10px; }
      .image-gallery-fullscreen-button .image-gallery-svg,
      .image-gallery-play-button .image-gallery-svg {
        height: 16px;
        width: 16px; } }

.image-gallery-fullscreen-button {
  right: 0; }

.image-gallery-play-button {
  left: 0; }

.image-gallery-left-nav,
.image-gallery-right-nav {
  padding: 50px 10px;
  top: 50%;
  transform: translateY(-50%); }
  .image-gallery-left-nav .image-gallery-svg,
  .image-gallery-right-nav .image-gallery-svg {
    height: 60px;
    width: 60px; }
  @media (max-width: 768px) {
    .image-gallery-left-nav .image-gallery-svg,
    .image-gallery-right-nav .image-gallery-svg {
      height: 72px;
      width: 36px; } }
  @media (max-width: 480px) {
    .image-gallery-left-nav .image-gallery-svg,
    .image-gallery-right-nav .image-gallery-svg {
      height: 48px;
      width: 24px; } }
  .image-gallery-left-nav[disabled],
  .image-gallery-right-nav[disabled] {
    cursor: not-allowed;
    opacity: .1;
    pointer-events: none; }

.image-gallery-left-nav {
  left: 0; }

.image-gallery-right-nav {
  right: 0; }

.image-gallery-video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%; }
  .image-gallery-video .image-gallery-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; }
  .image-gallery-video .image-gallery-slide-wrapper {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .image-gallery-video .image-gallery-slide-wrapper .image-gallery-swipe {
      flex: 1 1 auto;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      display: flex;
      height: 100%; }
  .image-gallery-video video {
    width: 100% !important;
    height: 100% !important;
    margin-left: 0;
    margin-right: 0; }
  .image-gallery-video video::-webkit-media-controls {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0; }

.image-gallery {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative; }
  .image-gallery.fullscreen-modal {
    background: #000;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 5; }
    .image-gallery.fullscreen-modal .image-gallery-content {
      top: 50%;
      transform: translateY(-50%); }

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0; }
  .image-gallery-content.fullscreen {
    background: #000; }
  .image-gallery-content .image-gallery-slide .image-gallery-image {
    max-height: calc(100vh - 80px); }
  .image-gallery-content .image-gallery-slide .image-gallery-video {
    max-height: calc(100vh - 80px); }
  .image-gallery-content.left .image-gallery-slide .image-gallery-image, .image-gallery-content.right .image-gallery-slide .image-gallery-image {
    max-height: 100vh; }

.image-gallery-slide-wrapper {
  position: relative; }
  .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
    display: inline-block;
    width: calc(100% - 110px); }
    @media (max-width: 768px) {
      .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
        width: calc(100% - 87px); } }
  .image-gallery-slide-wrapper.image-gallery-rtl {
    direction: rtl; }

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-align: center;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%; }

.image-gallery-slide {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }
  .image-gallery-slide.left {
    overflow: hidden; }
  .image-gallery-slide.center {
    position: relative; }
  .image-gallery-slide.right {
    overflow: hidden; }
  .image-gallery-slide .image-gallery-image {
    width: 100%;
    object-fit: contain; }
  .image-gallery-slide .image-gallery-description {
    background: black;
    bottom: 70px;
    color: #fff;
    left: 0;
    line-height: 1;
    padding: 10px 20px;
    position: absolute;
    white-space: normal; }
    @media (max-width: 768px) {
      .image-gallery-slide .image-gallery-description {
        bottom: 45px;
        font-size: .8em;
        padding: 8px 15px; } }

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4; }
  .image-gallery-bullets .image-gallery-bullets-container {
    margin: 0;
    padding: 0;
    text-align: center; }
  .image-gallery-bullets .image-gallery-bullet {
    appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 0 #1a1a1a;
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
    outline: none;
    padding: 5px;
    transition: background .2s ease-out; }
    @media (max-width: 768px) {
      .image-gallery-bullets .image-gallery-bullet {
        margin: 0 3px;
        padding: 3px; } }
    @media (max-width: 480px) {
      .image-gallery-bullets .image-gallery-bullet {
        padding: 2.7px; } }
    .image-gallery-bullets .image-gallery-bullet:focus, .image-gallery-bullets .image-gallery-bullet:hover {
      background: #337ab7;
      transform: scale(1.1); }
    .image-gallery-bullets .image-gallery-bullet.active {
      background: #fff; }

.image-gallery-thumbnails-wrapper {
  position: relative; }
  .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
    direction: rtl; }
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    display: inline-block;
    vertical-align: top;
    width: 100px; }
    @media (max-width: 768px) {
      .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
        width: 81px; } }
    .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
      height: 100%;
      width: 100%;
      left: 0;
      padding: 0;
      position: absolute;
      top: 0; }
      .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
        display: block;
        margin-right: 0;
        padding: 0; }
        .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
          margin-left: 0;
          margin-top: 2px; }
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    margin: 0 5px; }
    @media (max-width: 768px) {
      .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
        margin: 0 3px; } }

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0; }
  @media (max-width: 768px) {
    .image-gallery-thumbnails {
      padding: 3px 0; } }
  .image-gallery-thumbnails .image-gallery-thumbnails-container {
    cursor: pointer;
    text-align: center;
    transition: transform .45s ease-out;
    white-space: nowrap; }

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border .3s ease-out;
  width: 100px;
  background: transparent;
  padding: 0; }
  @media (max-width: 768px) {
    .image-gallery-thumbnail {
      border: 3px solid transparent;
      width: 81px; } }
  .image-gallery-thumbnail + .image-gallery-thumbnail {
    margin-left: 2px; }
  .image-gallery-thumbnail .image-gallery-thumbnail-inner {
    position: relative; }
  .image-gallery-thumbnail .image-gallery-thumbnail-image {
    vertical-align: middle;
    width: 100%;
    line-height: 0; }
  .image-gallery-thumbnail.active, .image-gallery-thumbnail:hover, .image-gallery-thumbnail:focus {
    outline: none;
    border: 4px solid #337ab7; }
    @media (max-width: 768px) {
      .image-gallery-thumbnail.active, .image-gallery-thumbnail:hover, .image-gallery-thumbnail:focus {
        border: 3px solid #337ab7; } }

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 1px 1px 0 black;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%; }
  @media (max-width: 768px) {
    .image-gallery-thumbnail-label {
      font-size: .8em;
      line-height: .8em; } }

.image-gallery-index {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: black;
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4; }
  @media (max-width: 768px) {
    .image-gallery-index {
      font-size: .8em;
      padding: 5px 10px; } }

.cams-text--normal {
  font-size: 12px; }

.cams-text--subtitle {
  font-size: 14px; }
  @media (max-width: 959px) {
    .cams-text--subtitle {
      font-size: 12px; } }

.cams-text--title {
  font-size: 16px; }
  @media (max-width: 959px) {
    .cams-text--title {
      font-size: 14px; } }

.cams-text--multi-line {
  line-height: 30px; }

.cams-text--bold {
  font-weight: bold; }

.cams-text--underline {
  text-decoration: underline !important; }

.uppercase {
  text-transform: uppercase; }

body {
  margin: 0;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0; }

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; }

.simplebar-scrollbar:before {
  background: #6c708d !important; }

.visible {
  overflow: visible; }

.text-nowrap {
  white-space: nowrap; }


/*# sourceMappingURL=styles.8261197a.chunk.css.map*/