/* Model card colors */
.theme-cams--light .ModelCard:hover {
  box-shadow: none; }

.ModelCard {
  display: flex;
  position: relative;
  cursor: pointer;
  color: white;
  max-width: 380px;
  margin: 4px;
  background-color: var(--MODEL_THUMB_BGCOLOR, transparent);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: inset 0 0 0 var(--COLOR_PRIMARY_BACKGROUND, #161833);
  opacity: 0.95;
  transition: box-shadow 0.2s, opacity 0.2s;
  overflow: hidden;
  height: 0;
  padding-top: 75%; }
  .ModelCard:hover {
    box-shadow: inset 0 0 6px var(--COLOR_PRIMARY_BACKGROUND, #161833);
    opacity: 1;
    transition: box-shadow 0.2s, opacity 0.2s;
    border-radius: 2px; }
  @media (min-width: 960px) {
    .ModelCard {
      min-height: 50px;
      padding-top: 60%; } }
  @media (max-width: 959px) {
    .ModelCard {
      width: 30vw;
      padding-top: 60%; } }
  @media (max-width: 749px) {
    .ModelCard {
      width: 47vw;
      min-height: 130px;
      margin: 2px; } }
  .ModelCard--full-width {
    width: 98% !important;
    max-width: 98% !important;
    background-position: center center; }
    @media (max-width: 959px) {
      .ModelCard--full-width {
        height: calc(90vw); } }
  .ModelCard .ModelCard__video-quality {
    color: white;
    flex-flow: row;
    height: 20px;
    width: 100%;
    text-align: right;
    padding-right: 5px;
    text-shadow: -1px 3px 3px #000;
    text-decoration: none solid white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); }
  .ModelCard__show-type-box {
    width: 214px;
    font-size: 20px;
    color: white;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: relative; }
    .ModelCard__show-type-box::before {
      content: "";
      left: 0;
      top: 0;
      border-left: 2px solid white;
      border-top: 2px solid white;
      border-bottom: 2px solid white;
      width: 15px;
      height: 45px;
      position: absolute; }
    .ModelCard__show-type-box::after {
      content: "";
      right: 0;
      top: 0;
      border-right: 2px solid white;
      border-top: 2px solid white;
      border-bottom: 2px solid white;
      width: 15px;
      height: 45px;
      position: absolute; }
    @media (max-width: 959px) {
      .ModelCard__show-type-box {
        display: none; } }
  .ModelCard--package-banner-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: white;
    background: url("https://secureimage.securedataimages.com/images/cams/cams2/images/smallest-package-banner-bg.png");
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .ModelCard--package-banner-container p {
      margin: 2px 0; }
    .ModelCard--package-banner-container-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      @media (max-width: 959px) {
        .ModelCard--package-banner-container-inner {
          transform: scale(0.8); } }
  .ModelCard--package-banner-text {
    color: white; }
    @media (max-width: 959px) {
      .ModelCard--package-banner-text--hide-on-mobile {
        display: none; } }
    .ModelCard--package-banner-text--title {
      font-size: 20px;
      font-weight: 300; }
      @media (max-width: 959px) {
        .ModelCard--package-banner-text--title {
          font-size: 12px; } }
    .ModelCard--package-banner-text--price {
      color: #FF0073;
      font-size: 30px;
      background-color: white;
      font-weight: 900;
      padding: 3px; }
      @media (max-width: 959px) {
        .ModelCard--package-banner-text--price {
          font-size: 12px; } }
  .ModelCard--package-banner-button {
    width: 180px;
    margin-top: 3px;
    color: white;
    font-size: 12px;
    padding-top: 6px;
    padding-bottom: 6px; }
    @media (max-width: 959px) {
      .ModelCard--package-banner-button {
        width: 100%;
        padding-top: 3px !important;
        padding-bottom: 3px !important;
        font-size: 12px !important; } }

.ModelCard--offline {
  filter: grayscale(1); }
  .ModelCard--offline .ModalCard__hover-container {
    display: none; }

.ModelCard:hover .ModelCardPlayer__Backdrop {
  backdrop-filter: blur(5px); }

.ModelCardPlayer :hover .ModelCardPlayer__Backdrop {
  backdrop-filter: blur(5px); }

.ModelCardPlayer #playButton-Nplayer {
  display: none; }

.ModelCardPlayer--NotPlaying .ModelCardPlayer__VideoContainer #h5live-Nplayer {
  display: none; }

.ModelCardPlayer--Playing #middleView-Nplayer {
  display: none; }

/* Model card colors */
.ModelName {
  font-family: "Lato";
  display: block;
  font-weight: 700;
  cursor: pointer;
  flex-flow: row;
  align-self: flex-end;
  position: absolute;
  height: 23px;
  z-index: 2;
  margin-top: -10px;
  margin-left: 3px; }
  .ModelName .ModelCard__label-name {
    display: block;
    padding-top: 3px;
    font-size: 15px;
    line-height: 12px;
    width: 105px;
    height: 16px;
    font-family: Lato;
    color: var(--MODEL_THUMB_NAME_FONT_COLOR, #ffffff);
    text-decoration: none solid white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4); }
    @media (max-width: 959px) {
      .ModelName .ModelCard__label-name {
        display: none; } }
    @media (min-width: 37.5em) {
      .ModelName .ModelCard__label-name {
        display: inline-block; } }
  .ModelName .ModelCard__info-icon {
    flex-flow: row;
    height: 20px;
    width: 100%;
    text-align: right; }
    @media (max-width: 959px) {
      .ModelName .ModelCard__info-icon {
        opacity: 1; } }
  .ModelName .ModelCard__like-in-action {
    opacity: 0.7; }
  .ModelName .ModelCard__liked {
    display: block;
    float: left;
    width: 30px;
    height: 20px;
    color: #cd264f; }
    @media (max-width: 959px) {
      .ModelName .ModelCard__liked {
        width: 20px;
        font-size: 30px; } }
  .ModelName .ModelCard__not-liked {
    display: block;
    float: left;
    width: 30px;
    height: 20px;
    color: white; }
    @media (max-width: 959px) {
      .ModelName .ModelCard__not-liked {
        width: 20px;
        font-size: 30px; } }
  @media (max-width: 959px) {
    .ModelName--mobile-visible {
      display: inline-block !important; }
      .ModelName--mobile-visible > .ModelCard__label-name {
        display: inline-block !important;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; } }

/* Model card colors */
.ModelBadge {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 13px;
  height: 26px;
  color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center; }
  .ModelBadge span {
    display: inline-block;
    margin: 0 6px 0 0; }
  .ModelBadge div {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    color: black;
    padding: 4px 10px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: uppercase; }
  .ModelBadge div.c_3 {
    color: #cd264f; }
  .ModelBadge div.c_2 {
    color: #ef951b; }
  .ModelBadge div.c_6 {
    color: #0280d7; }
  .ModelBadge div.c_10 {
    color: #6a0dad; }
  .ModelBadge--offline {
    color: #999999; }

/* Model card colors */
.ModelList__container {
  margin-top: 10px;
  margin-left: 12px;
  margin-right: 12px;
  justify-content: center;
  display: grid; }
  @media (max-width: 749px) {
    .ModelList__container {
      grid-template-columns: auto auto; } }
  @media (min-width: 750px) and (max-width: 959px) {
    .ModelList__container {
      grid-template-columns: auto auto auto; } }
  @media (min-width: 960px) and (max-width: 1279px) {
    .ModelList__container {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } }
  @media (min-width: 1280px) and (max-width: 1919px) {
    .ModelList__container {
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); } }
  @media (min-width: 1920px) and (max-width: 2559px) {
    .ModelList__container {
      grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); } }
  @media (min-width: 2560px) {
    .ModelList__container {
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); } }

.ModelList__NoModels {
  padding: 50px;
  width: 100%;
  text-align: center;
  color: white; }

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

.secondary-header {
  display: flex;
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (max-width: 959px) {
    .secondary-header {
      background-color: transparent; } }
  .secondary-header .old-site-link {
    font-size: 15px;
    height: 26px;
    width: 200px;
    text-align: right;
    line-height: 26px;
    color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
    text-decoration: none;
    margin: 3px 37px; }
    @media (max-width: 959px) {
      .secondary-header .old-site-link {
        font-size: 12px;
        margin: 0 10px 0 0; } }
  .secondary-header .old-site-link-logged-in {
    margin-right: 17px; }

.FilterDisplay__container {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .FilterDisplay__container {
      display: none !important; } }

.FilterDisplay__mobile-filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  overflow-x: scroll;
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #161833);
  height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center; }
  .FilterDisplay__mobile-filter .Navigation__btn {
    padding-bottom: 10px;
    white-space: nowrap; }

.FilterDisplay__mobile-filter-inner {
  display: flex;
  flex-direction: row;
  align-items: center; }

.FilterDisplay__mobile-container {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 10px;
  width: 100%;
  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%);
  z-index: 10;
  height: 50px;
  font-size: 15px;
  color: white; }
  @media (max-width: 959px) {
    .FilterDisplay__mobile-container {
      display: flex !important; } }

.FilterDisplay__mobile-title {
  text-transform: uppercase; }

.FilterDisplay__btn {
  background-color: transparent;
  border: none;
  color: var(--COLOR_SECONDARY_LINK, #ffffff);
  cursor: pointer;
  padding-top: 5px; }
  .FilterDisplay__btn .material-icons {
    font-size: 20px; }

.FilterDisplay__title {
  margin: 3px 10px;
  color: var(--COLOR_PRIMARY_TEXT, #cccccc);
  flex: 0 0 auto;
  font-size: 15px;
  height: 26px;
  line-height: 26px;
  font-weight: normal; }

.FilterDisplay__selected {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1; }

.FilterDisplay__selected-item {
  display: flex;
  flex-direction: row;
  color: var(--COLOR_PRIMARY_TEXT, white);
  background-color: var(--COLOR_PRIMARY_BACKGROUND, #21244d);
  padding: 5px;
  margin: 2px 5px;
  height: 26px;
  align-items: center;
  border-radius: 3px;
  font-weight: bold; }
  .FilterDisplay__selected-item p {
    margin-right: 6px;
    font-size: 12px; }
  .FilterDisplay__selected-item i {
    font-size: 6px;
    cursor: pointer;
    margin-top: 2px; }

/* Model card colors */
/* Model card colors */
.theme-cams--light .FilterModal__item:hover {
  border-color: var(--COLOR_BUTTONS_BACKGROUND, #ef951b); }

.theme-cams--light .FilterModal__item.active {
  color: var(--COLOR_BUTTONS_TEXT, #ffffff);
  background-color: var(--COLOR_BUTTONS_BACKGROUND, #ef951b); }

.FilterModal {
  width: 580px;
  height: 550px;
  border-radius: 3px;
  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%);
  padding: 40px;
  display: flex;
  flex-flow: column wrap; }
  .FilterModal--cobrand {
    background: rgba(var(--COLOR_PRIMARY_RGB), 0.8); }
  .FilterModal__AgeInputContainer {
    padding-top: 4px;
    padding-left: 6px; }
  .FilterModal__InputLabel {
    color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
    font-size: 15px; }
  .FilterModal .FilterModal__Input {
    height: 22px;
    color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
    border-color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
    width: 35px;
    padding-left: 5px;
    display: inline-block; }
    .FilterModal .FilterModal__Input *::placeholder {
      color: #b3b3b3 !important;
      padding-left: 5px !important; }
  .FilterModal__close-btn {
    position: absolute;
    top: 10px;
    right: 11px;
    width: 11px;
    outline: none;
    cursor: pointer;
    color: var(--COLOR_PRIMARY_TEXT, #b3b3b3); }
    .FilterModal__close-btn svg {
      fill: var(--COLOR_PRIMARY_TEXT, #b3b3b3); }
  .FilterModal__box {
    margin: 10px;
    display: flex;
    flex-direction: column; }
    .FilterModal__box .FilterModal__column:not(:first-child) .FilterModal__tag {
      padding: 10px 5px; }
  .FilterModal__tag {
    font-weight: 900;
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    margin: 5px 0;
    font-size: 15px;
    padding: 0px 5px 10px; }
  .FilterModal__item {
    color: var(--COLOR_PRIMARY_LINK_TEXT, #b3b3b3);
    font-size: 15px;
    background-color: transparent;
    border: none;
    border-radius: 3px;
    text-align: left;
    cursor: pointer;
    outline: none;
    padding: 5px;
    border: 2px solid transparent; }
    .FilterModal__item:hover {
      border-width: 2px;
      border-style: solid;
      border-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b); }
    .FilterModal__item.active {
      color: var(--COLOR_PRIMARY_LINK_TEXT, #ffffff);
      background-color: var(--COLOR_PRIMARY_LINK_ACTIVE_TEXT, #ef951b);
      transition: all 0.4s linear; }
  .FilterModal__btn {
    position: absolute;
    bottom: 30px;
    right: 50px;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center; }
  .FilterModal__clear-btn {
    margin: 0 10px;
    background-color: transparent;
    border: 1px solid var(--COLOR_PRIMARY_TEXT, #999999);
    border-radius: 3px;
    padding: 7px 10px;
    color: var(--COLOR_PRIMARY_TEXT, #b3b3b3);
    cursor: pointer;
    outline: none; }
  .FilterModal__apply-btn {
    background-image: linear-gradient(90deg, var(--COLOR_BUTTONS_BACKGROUND, #ef951b) 3%, var(--COLOR_BUTTONS_BACKGROUND, #cd264f) 100%);
    border: none;
    border-radius: 3px;
    padding: 7px 10px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    outline: none; }
  .FilterModal__checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white; }
  @media (max-width: 959px) {
    .FilterModal {
      width: 100vw;
      height: calc(100vh - 200px);
      flex-flow: row wrap;
      overflow-y: scroll; }
      .FilterModal__box {
        flex: 1 0 40%;
        max-width: 45%; }
      .FilterModal__btn {
        position: fixed;
        z-index: 20;
        bottom: 0;
        left: 0;
        width: 100%;
        flex-direction: column-reverse;
        display: flex;
        background: var(--COLOR_PRIMARY_BACKGROUND, #1e1f47);
        padding: 20px; }
      .FilterModal__clear-btn {
        margin: 0;
        width: 100%;
        margin-bottom: 15px; }
      .FilterModal__apply-btn {
        padding: 12px 0;
        font-size: 15px;
        margin-bottom: 15px;
        width: 100%; } }

/* Model card colors */
.CamsInput {
  height: 45px;
  width: 100%;
  padding-left: 20px;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: transparent;
  color: var(--COLOR_PRIMARY_TEXT, white);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 959px) {
    .CamsInput {
      width: 100%; } }
  .CamsInput--no-border {
    border: 1px solid transparent;
    margin: 8px 0;
    color: #cccccc;
    font-size: 12px;
    position: relative;
    padding-left: 0;
    height: initial; }
  .CamsInput--forget-password {
    color: #ef951b;
    cursor: pointer; }
  .CamsInput::placeholder {
    color: var(--COLOR_PRIMARY_TEXT, #ffffff);
    padding: 0 10px;
    font-size: 14px;
    text-align: left; }
  .CamsInput::-webkit-contacts-auto-fill-button, .CamsInput::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0; }


.CategorySEOLinks {
  display: block; }

/* Model card colors */
.LongBannerMobile {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-bottom: 2vw; }
  .LongBannerMobile > img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .LongBannerMobile__price-container {
    height: 100%;
    width: 22vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    z-index: 1; }
  .LongBannerMobile__price {
    font-size: 7.5vw;
    font-weight: 800;
    font-style: italic; }
    @media (max-width: 500px) {
      .LongBannerMobile__price {
        font-size: 6.5vw; } }
  .LongBannerMobile__token-text {
    font-size: 1.8vw;
    white-space: nowrap;
    font-weight: 600; }
    @media (max-width: 500px) {
      .LongBannerMobile__token-text {
        font-size: 0.5rem; } }
  .LongBannerMobile__text-container {
    height: 100%;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1vw; }
    .LongBannerMobile__text-container .CamsButton {
      width: 40vw; }
      .LongBannerMobile__text-container .CamsButton .cams-button {
        font-size: 1rem;
        width: 100%; }
        @media (max-width: 500px) {
          .LongBannerMobile__text-container .CamsButton .cams-button {
            font-size: 0.75rem;
            padding: 10px 5px; } }
        @media (max-width: 321px) {
          .LongBannerMobile__text-container .CamsButton .cams-button {
            font-size: 0.65rem;
            padding: 5px; } }
  .LongBannerMobile__model-face {
    width: 28vw;
    height: 100%; }
  .LongBannerMobile__text {
    display: block;
    transform: translate(-50%, -50%);
    font-style: italic; }
    .LongBannerMobile__text > h2 {
      margin: 0 0;
      font-size: 4.4vw; }
    .LongBannerMobile__text--white {
      color: white; }
    .LongBannerMobile__text--orange {
      color: #ff8d26; }

.LongBannerDesktop {
  width: 100%;
  position: relative;
  padding-bottom: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden; }
  @media (max-width: 1050px) {
    .LongBannerDesktop {
      background-color: var(--COLOR_NAVBAR_BACKGROUND, transparent); } }
  .LongBannerDesktop__bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .LongBannerDesktop__price-container {
    height: 100%;
    width: 15vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    z-index: 1; }
    .LongBannerDesktop__price-container--column {
      display: flex;
      flex-direction: column;
      height: 100%; }
  .LongBannerDesktop__price {
    display: block;
    margin: 0;
    font-size: 5vw;
    font-style: italic;
    font-weight: 900; }
  .LongBannerDesktop__token-text {
    display: block;
    margin: 0;
    font-size: 1.3vw;
    font-weight: 700; }
  .LongBannerDesktop__container {
    height: 100%;
    width: 60vw;
    display: flex;
    flex-direction: row;
    z-index: 1;
    align-items: center; }
  .LongBannerDesktop__wrapper {
    height: 100%;
    display: flex;
    flex-direction: row; }
    .LongBannerDesktop__wrapper--left {
      padding-left: 10px;
      width: 25%; }
    .LongBannerDesktop__wrapper--right {
      width: 75%; }
  .LongBannerDesktop__text-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1vw;
    font-style: italic; }
    .LongBannerDesktop__text-content > div > p {
      font-size: 1vw;
      margin: 0 0;
      padding-right: 6px;
      letter-spacing: 1px; }
    .LongBannerDesktop__text-content > div > h1 {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 1.8vw;
      margin: 0 0;
      padding-right: 11px; }
    .LongBannerDesktop__text-content--white {
      color: white; }
    .LongBannerDesktop__text-content--orange {
      color: #ff8d26; }
  .LongBannerDesktop__model-face {
    width: 25vw;
    height: 100%; }

.RegisterFormInBanner {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center; }
  .RegisterFormInBanner__register-form {
    display: flex; }
  .RegisterFormInBanner__text--orange {
    color: #ef951b !important; }
  .RegisterFormInBanner__form {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    margin: 0 !important; }
  .RegisterFormInBanner__form-fields {
    display: flex;
    flex-direction: row;
    text-align: left; }
  .RegisterFormInBanner__form-filed {
    width: calc((100% - 120px)/3); }
  .RegisterFormInBanner__join-btn {
    width: 120px !important;
    height: 40px !important;
    margin: 4px 0 !important;
    font-style: italic;
    padding: 0; }
  .RegisterFormInBanner__input {
    margin-right: 10px;
    height: 40px !important;
    padding-left: 5px !important; }
  .RegisterFormInBanner__error {
    color: red;
    font-size: 12px;
    margin: 5px 0; }

/* Model card colors */
.grecaptcha-badge {
  visibility: hidden; }

@media (max-width: 321px) {
  iframe[title*="recaptcha challenge"] {
    transform: scale(0.75);
    transform-origin: 0 0 0; } }

.Recaptcha {
  margin-top: 2rem;
  width: 100%;
  font-size: 12px;
  display: flex;
  justify-content: center; }
  .Recaptcha > *,
  .Recaptcha__links > a {
    color: var(--COLOR_SECONDARY_TEXT, #9f9fa5); }
  .Recaptcha__wrapper {
    width: 250px;
    border: 1px solid var(--COLOR_PRIMARY_TEXT, #cccccc);
    border-radius: 3px;
    display: flex; }
  .Recaptcha__text {
    display: flex;
    flex-direction: column;
    width: 75%;
    justify-content: center;
    padding: .75rem; }
  .Recaptcha__protected-by {
    margin-bottom: 0.5rem; }
  .Recaptcha__links > a:last-child {
    margin-left: .5rem; }
  .Recaptcha__logo {
    width: 25%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center; }
    .Recaptcha__logo > img {
      width: 40px;
      height: 40px; }
  .Recaptcha > a:hover {
    color: var(--COLOR_SECONDARY_LINK, #ef951b); }


/*# sourceMappingURL=fad6813acc092d06bee40b94e6186b40dcbc647e_CSS.bdd7f2ef.chunk.css.map*/