/*
* Global
*/
html {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 17px;
  font-weight: normal;
  color: #111;
  line-height: 1.3;
  background: #fff;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

:root {
  --charcoal: rgba(60, 60, 67, 0.6);
  --charcoal-light: rgba(60, 60, 67, 0.3);
  --border: rgba(0, 0, 0, 0.1);
  --black: #000;
  --primary-text: #050505;
  --wash: #e4e6eb;
  --white: #fff;
  --main: #ff5d75;
  --vivid-purple: #a800ff;
  --coral: #ff4646;
  --black2: #111;
  --black2-opacity4: rgba(17, 17, 17, 0.04);
  --black2-opacity4-invert: rgba(238, 238, 238, 0.04);
  --black-opacity14: rgba(0, 0, 0, 0.14);
  --black-opacity30: rgba(0, 0, 0, 0.3);
  --black-opacity20: rgba(0, 0, 0, 0.2);
  --black-opacity10: rgba(0, 0, 0, 0.1);
  --white-opacity6: rgba(255, 255, 255, 0.06);
  --white-opacity10: rgba(255, 255, 255, 0.1);
  --brown-grey: #969696;
  --light-white: #ddd;
  --blue: #57a1ff;
  --lavender: #ffeef1;
  --facebook-bg: #1658e3;
  --apple-bg: #1d1d1d;
  --twitter-bg: #14171A;
  --arsenic: #414141;
  --white-smoke: #f6f6f6;
  --light-gray: #eee;
  --blue-fb: #4267b2;
  --chinese-silver: #ccc;
  --midnight-gray: #444;
  --silver-grey: #999;
  --cyan-blue: #292d32;
  --pantone: #4d4d4d;
  --square-space: #121212;
  --snow-flake: #efefef;
  --black-a: #aaa;
  --black-c: #ccc;
  --black-e: #eee;
  --black-2: #222;
  --black-4: #444;
  --black-5: #555;
  --black-6: #666;
  --black-9: #999;
  --b5: #B5B5B5;
  --black-18: #181818;

  --bottom-navigation-height: 64px;
  --middle-navigation-height: 44px;
  --bottom-pc-navigation-height: 86px;
  --middle-icon-height: 70px;
  --middle-icon-half-height: 35px;
  --header-height: 60px;
  --frame-height: calc(var(--bottom-navigation-height) + var(--header-height));
  --bottom-gap-since-navigation: 12px;
  --container-height: calc(
    100vh - 48px - 32px - 12px - var(--bottom-pc-navigation-height)
  );
  --container-height-minus: calc(
    100vh - 48px - 32px - 12px - var(--bottom-pc-navigation-height)
  );
  --container-height-minus-pc: calc(100vh - var(--frame-height));
  --container-height-minus-sp: calc(var(--window-height) - var(--frame-height));
  --container-height-pc: calc(
    100vh - var(--frame-height) + var(--middle-navigation-height)
  );
  --container-height-sp: calc(
    var(--window-height) - var(--frame-height) + var(--middle-navigation-height)
  );
  --left-side-container-height: calc(100vh - 48px);
  --chat-container-height: calc(var(--left-side-container-height) - 48px);
  --chat-box-height: calc(var(--chat-container-height) - var(--frame-chat-box));
  --chat-list-pc-height: calc(
    100vh - 48px - 32px - 12px - var(--bottom-pc-navigation-height)
  );
  --chat-box-header-height: 64px;
  --chat-box-bottom-height: 64px;
  --frame-chat-box: calc(
    var(--chat-box-bottom-height) + var(--chat-box-header-height)
  );
}

@media (max-width: 768px) {
  :root {
    --container-height: calc(
      var(--window-height) - var(--frame-height) +
        var(--middle-navigation-height)
    );
    --bottom-gap-since-navigation: calc(
      var(--middle-icon-half-height) + var(--middle-navigation-height)
    );
    --container-height-minus: calc(var(--window-height) - var(--frame-height));
    --chat-container-height: var(--window-height);
    --chat-box-height: calc(
      var(--window-height) - var(--frame-height) - var(--frame-chat-box)
    );
    --chat-list-pc-height: var(--container-height-sp);
  }
}

.root {
  height: 100%;
}

.app {
  height: 100%;
}

.app > .container {
  height: 100%;
  max-width: 1440px;
  padding: 0 16px;
}

.app > .container > .home {
  max-width: 1440px;
  height: 100%;
  margin: 0 -16px;
  padding: 0 16px;
  background: var(--lavender);
  overflow: auto;
}

@media (max-width: 768px) {
  .app > .container {
    padding: 0;
  }

  .app > .container > .home {
    margin: 0 auto;
    padding: 0;
  }
}

/*
* Components
*/
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand .logo {
  width: 112px;
  height: 52px;
  background-image: url('../img/logo.png');
  background-position: center;
  background-repeat: no-repeat;
}

.brand .logo.sm {
  width: 62px;
  height: 20px;
  background-image: url('../img/logo-sm.png');
}

.brand .message {
  margin: 25px 0 0;
  font-size: 20px;
  font-weight: normal;
  color: #000;
  line-height: 24px;
  text-align: center;
}

.button {
  min-width: auto;
}

.button-icon {
  position: relative;
}

.button-icon::before {
  display: block;
  position: absolute;
  content: '';
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.button-icon.back::before {
  width: 28px;
  height: 28px;
  top: calc(50% - 14px);
  background-image: url('../img/icon-back.png');
}

.button-icon.block::before {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background-image: url('../img/icon-block.png');
}

.button-icon.chat::before {
  width: 26px;
  height: 26px;
  top: calc(50% - 13px);
  background-image: url('../img/icon-chat.png');
}

.button-icon.dislike::before {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background-image: url('../img/icon-dislike.png');
}

.button-icon.explore::before {
  width: 22px;
  height: 22px;
  top: calc(50% - 11px);
  background-image: url('../img/icon-explore.png');
}

.button-icon.explore[class*='-selected']::before {
  background-image: url('../img/icon-explore-selected.png');
}

.button-icon.fullscreen::before {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background-image: url('../img/icon-fullscreen.png');
}

.button-icon.like::before {
  width: 28px;
  height: 27px;
  top: calc(50% - 13.5px);
  background-image: url('../img/icon-like.png');
}

.navigation .button-icon.message {
  gap: 10px;
  padding: 0;
  opacity: 1;
}

.navigation .button-icon.message:not([class*='-selected']) > span {
  color: #000;
  opacity: 0.2;
}

.button-icon.message img {
  width: 22px;
  height: 22px;
}

.button-icon.nearby::before {
  width: 20px;
  height: 24px;
  top: calc(50% - 12px);
  background-image: url('../img/icon-nearby.png');
}

.button-icon.nearby[class*='-selected']::before {
  background-image: url('../img/icon-nearby-selected.png');
}

.button-icon.likes::before {
  width: 22px;
  height: 20px;
  top: calc(50% - 12px);
  background-image: url('../img/icon-likes.png');
}

.button-icon.likes[class*='-selected']::before {
  background-image: url('../img/icon-likes-selected.png');
}

.button-icon.profile::before {
  width: 16px;
  height: 22px;
  top: calc(50% - 11px);
  background-image: url('../img/icon-profile.png');
}

.button-icon.profile[class*='-selected']::before {
  background-image: url('../img/icon-profile-selected.png');
}

.button-icon.remaining-chat::before {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  background-image: url('../img/icon-remaining-chat.png');
  background-size: contain;
}

.button-icon.remaining-time::before {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  background-image: url('../img/icon-remaining-time.svg');
  background-size: contain;
}

.button-icon.report::before {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background-image: url('../img/icon-report.png');
}

.button-icon.setting::before {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  background-image: url('../img/icon-setting.png');
}

.button-icon.undo::before {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  background-image: url('../img/icon-undo.png');
}

.button-icon.apple {
  background-color: var(--black);
  color: var(--white);
}

.button-icon.apple:hover {
  background-color: var(--black);
}

.button-icon.apple::before {
  width: 28px;
  height: 28px;
  top: calc(50% - 14px);
  background-image: url('../img/icon-apple.png');
}

.button-icon.facebook {
  background-color: #4267b2;
  color: var(--white);
}

.button-icon.facebook:hover {
  background-color: #4267b2;
}

.button-icon.facebook::before {
  width: 28px;
  height: 28px;
  background-color: var(--white);
  border-radius: 50%;
  top: calc(50% - 14px);
  background-image: url('../img/icon-facebook.png');
  background-position: 1px 3px;
}

.button-icon.google {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.button-icon.google:hover {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.button-icon.google::before {
  width: 28px;
  height: 28px;
  top: calc(50% - 14px);
  background-image: url('../img/icon-google.png');
}

.button.phone-number {
  background-color: var(--black-opacity14);
  color: var(--black);
}

.button.phone-number:hover {
  background-color: var(--black-opacity14);
}

.action {
  position: fixed;
  bottom: 130px;
  left: 0;
  right: 0;
  z-index: 1040;
}

.action .wrapper {
  display: flex;
  width: 80%;
  margin: 0 auto;
  padding: 10px 30px;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .action .wrapper {
    width: 100%;
  }
}

.action .button {
  background: #fff;
}

.action .button:hover,
.action .button:focus {
  box-shadow: none;
}

.action .button-fab {
  z-index: 1030;
}

.appbar {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
}

.appbar > .container {
  height: 100%;
}

@media (max-width: 768px) {
  div.appbar > .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.appbar .wrapper {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.appbar .button {
  padding: 5px 8px 5px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.appbar .button + .button {
  margin-left: 10px;
}

.appbar .button-icon:not(.setting)::before {
  left: 8px;
}

.appbar .button-icon.remaining-chat {
  background: linear-gradient(#00a3ff, #0075ff);
}

.appbar .button-icon.remaining-time {
  background: linear-gradient(#6a29ff, #a353ff);
}

.appbar .button-icon.setting {
  width: 24px;
  height: 24px;
  padding-left: 8px;
}

.appbar .button-icon.setting:hover,
.appbar .button-icon.setting:focus {
  background-color: transparent;
}

.appbar .brand {
  padding-left: 30px;
}

@media (max-width: 768px) {
  .appbar .brand {
    padding-left: 8px;
  }
}

.appbar .expand {
  display: flex;
}

.carousel {
  height: 100%;
}

.carousel .slide {
  overflow: hidden;
  background: #efefef;
  border-radius: 10px;
}

.carousel.noRounded .slide {
  border-radius: 0;
}

.carousel .control-arrow {
  width: 50%;
  padding: 0;
}

.carousel .control-arrow::before {
  display: none !important;
}

.carousel .control-dots {
  display: flex;
  margin: 20px 0 !important;
  padding: 0 25px !important;
  top: 0;
  bottom: auto !important;
  overflow: hidden;
  white-space: nowrap;
}

.carousel .control-dots .dot {
  width: 100% !important;
  height: 3px !important;
  margin: 0 5px !important;
  opacity: 0.4 !important;
  border-radius: 100px !important;
  box-shadow: none !important;
}

.carousel .control-dots .dot:hover,
.carousel .control-dots .dot.selected {
  opacity: 1 !important;
}

.carousel.carousel-slider .control-arrow:hover {
  background: transparent !important;
}

.carousel-item {
  height: 100%;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-item [class*='lazy-load-image-'] {
  width: 100%;
  height: 100%;
  min-height: var(--container-height-pc);
}

@media screen and (max-width: 768px) {
  .carousel-item [class*='lazy-load-image-'] {
    min-height: var(--container-height-sp);
  }
}

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

.choice .button {
  width: 100%;
}

.choice .button + .button {
  margin-top: 12px;
}

.navigation {
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
}

.navigation > .container {
  height: 100%;
}

.navigation .wrapper {
  display: flex;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}

.navigation .button {
  height: auto;
  padding-top: 42px;
  padding-bottom: 12px;
  justify-content: flex-start;
  opacity: 0.2;
  transition: all 0.25s ease-in-out;
}

.navigation .button:hover,
.navigation .button:focus,
.navigation .button[class*='-selected'] {
  opacity: 1;
}

.navigation .button > span {
  font-size: 11px;
  font-weight: 700;
  line-height: 13px;
}

.navigation .button:not([class*='-selected']) > span {
  color: #000;
}

.navigation .button-icon::before {
  top: 12px;
}

.profile {
  position: relative;
}

.profile .title {
  margin: 30px 0 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}

.profile .name {
  margin: 0;
  position: absolute;
  top: 40px;
  left: 30px;
  z-index: 10;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.profile .name.verified,
.profile .verify.verified {
  padding-left: 25px;
  background: url('../img/icon-verified.png') left center no-repeat;
}

.profile .about {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 24px;
}

.profile .info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile .info .chip {
  display: inline-flex;
  padding: 6px 8px;
  align-items: center;
  border-color: rgba(0, 0, 0, 0.06);
}

.profile .info .chip > span {
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #4d4d4d;
}

.profile .info .chip::before {
  display: inline-block;
  margin-right: 6px;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
}

.profile .info .chip.bmi::before {
  width: 18px;
  height: 10px;
  background-image: url('../img/icon-info-bmi.png');
}

.profile .info .chip.bwh::before {
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-info-bwh.png');
}

.profile .info .chip.constellation::before {
  width: 20px;
  height: 16px;
  background-image: url('../img/icon-info-constellation.png');
}

.profile .info .chip.drinking::before {
  width: 16px;
  height: 20px;
  background-image: url('../img/icon-info-drinking.png');
}

.profile .info .chip.education::before {
  width: 20px;
  height: 14px;
  background-image: url('../img/icon-info-education.png');
}

.profile .info .chip.gender::before {
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-info-gender.png');
}

.profile .info .chip.personality::before {
  width: 20px;
  height: 14px;
  background-image: url('../img/icon-info-personality.png');
}

.profile .info .chip.pet::before {
  width: 20px;
  height: 19px;
  background-image: url('../img/icon-info-pet.png');
}

.profile .info .chip.relationship::before {
  width: 20px;
  height: 18px;
  background-image: url('../img/icon-info-relationship.png');
}

.profile .info .chip.smoking::before {
  width: 20px;
  height: 16px;
  background-image: url('../img/icon-info-smoking.png');
}

.profile .interested {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile .interested .chip {
  padding: 12px;
  border: 0;
}

.profile .interested .chip > span {
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  color: inherit;
}

.profile .interested .chip.blue {
  color: #4f60ff;
  background-color: rgba(79, 96, 255, 0.1);
}

.profile .interested .chip.ocean {
  color: #7dc1ff;
  background-color: rgba(125, 193, 255, 0.1);
}

.profile .interested .chip.orange {
  color: #ffa733;
  background-color: rgba(255, 167, 51, 0.1);
}

.profile .interested .chip.pink {
  color: #ff7d7d;
  background-color: rgba(255, 125, 125, 0.1);
}

.profile .interested .chip.purple {
  color: #807dff;
  background-color: rgba(128, 125, 255, 0.1);
}

.profile .location {
  font-size: 18px;
  font-weight: 600;
}

.profile .photo {
  position: relative;
}

.profile .photo .button {
  width: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.profile .photo .button:hover,
.profile .photo .button:focus {
  background: rgba(0, 0, 0, 0.6);
}

.profile .photo .button-icon.fullscreen {
  display: none;
}

.profile .photo .button-icon.fullscreen.active {
  display: flex;
}

.profile .photo-list {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}

.profile .photo-list .photo {
  width: 100%;
  background: #efefef;
}

.profile .photo-list .photo > * {
  display: block;
  height: 100%;
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
}

.profile .photo-list .photo img {
  display: block;
  width: 100%;
}

.profile .photo-list .photo [class*='lazy-load-image-'] {
  width: 100%;
}

.profile .photo-list .photo.thumbnail {
  width: 33.333333%;
  position: relative;
}

.profile .photo-list .photo.thumbnail img {
  max-height: 300px;
  object-fit: cover;
}

.profile .photo-list .photo.thumbnail .more {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.profile .photo-list .photo.hide {
  display: none;
}

.profile .reason {
  padding: 20px 20px 20px 60px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background-color: rgba(0, 0, 0, 0.03);
  background-image: url('../img/icon-reason.png');
  background-position: left 20px center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.profile .verify {
  font-size: 18px;
  font-weight: 600;
}

.profile .intro {
  position: relative;
}

.profile .content {
  padding: 30px 0;
}

.profile .content > :first-child {
  margin-top: 0;
  padding-top: 0;
}

.profile .content > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.profile .task {
  padding: 0 0 0 8px;
}

.profile .task > * {
  padding-left: 0;
  padding-right: 0;
}

.profile .task .button {
  padding-left: 35px;
  padding-right: 8px;
  font-size: 18px;
  font-weight: 600;
}

.profile .task .button:hover,
.profile .task .button:focus {
  background: transparent;
}

.profile .task .button-icon::before {
  left: 0;
}

.stepper {
  position: relative;
}

.stepper-item {
  display: none;
}

.stepper-item.active {
  display: block;
}

.tinder {
  position: relative;
  border-radius: 10px;
}

.tinder-item {
  padding: 0 0 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  overflow-x: hidden;
  scrollbar-width: none;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.tinder-item::-webkit-scrollbar {
  width: 0 !important;
}

/*
* Pages
*/
.explore {
  height: 100%;
  position: relative;
}

.explore .notification {
  bottom: 236px;
  z-index: 1045;
  opacity: 0.8;
}

.explore .body {
  height: 100%;
  box-sizing: border-box;
}

.signin {
  height: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.signin > .stack {
  height: 100%;
}

.signin .brand {
  padding: 120px 0;
}

.signin .choice {
  padding: 60px 0;
}

.signin .choice .button-icon:not(.back)::before {
  left: 12px;
}

.signin .choice .button-icon.back {
  width: 52px;
  min-width: auto;
  height: 52px;
  min-height: auto;
  margin-top: 32px;
  padding: 0;
}

.signin .stepper-item {
  padding: 32px 0;
}

.signin .stepper-item .title {
  margin: 0;
  font-size: 24px;
  color: #000;
  line-height: 32px;
  text-align: center;
}

.signin .stepper-item .message {
  margin: 8px 0 0;
  font-size: 15px;
  color: rgba(60, 60, 67, 0.6);
  line-height: 20px;
  text-align: center;
}

.signin .stepper-item .form {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
}

.signin .stepper-item .form .input.phone-number {
  flex: 1 1 auto;
}

.signin .stepper-item .form .input.phone-number > * {
  background: none;
}

.signin .stepper-item .form .input.phone-number input {
  padding: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.signin .stepper-item .form .input.phone-number input::placeholder,
.signin .stepper-item .form .input.verify-code input::placeholder {
  color: rgba(60, 60, 67, 0.3);
  opacity: 1;
}

.signin .stepper-item .form .input.verify-code {
  width: 100%;
}

.signin .stepper-item .form .input.verify-code input {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.signin .stepper-item .form .select.dial-code > * > * {
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.signin .stepper-item .form .message {
  width: 100%;
  margin: 16px 0 0;
}

.signin .stepper-control {
  padding: 16px 0;
}

.signin .stepper-control .MuiMobileStepper-dots {
  display: none;
}

.signin .stepper-control .button-icon.back {
  width: 52px;
  min-width: auto;
  height: 52px;
  min-height: auto;
  padding: 0;
}

.signin .stepper-control.verify {
  justify-content: center;
}

.signin .stepper-control.verify .button:last-child {
  display: none;
}

.hideScrollbar::-webkit-scrollbar {
  display: none;
}

.smallScrollbar::-webkit-scrollbar {
  height: 4px;
}

.smallScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

.smallScrollbar::-webkit-scrollbar-thumb {
  height: 4px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.8);
}

.smallScrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.hideScrollbar::-webkit-scrollbar {
  display: none;
}

.step-transition-group {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fade {
  position: absolute;
  width: 100%;
  height: 100%;
}

.goingNext > .fade.enter {
  transform: translateX(100%);
}

.goingNext > .fade.enter-active {
  transform: translateX(0%);
  transition: transform 300ms ease-in-out;
}

.goingNext > .fade.exit {
  transform: translateX(0%);
}

.goingNext > .fade.exit-active {
  transform: translateX(-100%);
  transition: transform 300ms ease-out;
}

.goingBack > .fade.enter {
  transform: translateX(-100%);
}

.goingBack > .fade.enter-active {
  transform: translateX(0%);
  transition: transform 300ms ease-in-out;
}

.goingBack > .fade.exit {
  transform: translateX(0%);
}

.goingBack > .fade.exit-active {
  transform: translateX(100%);
  transition: transform 300ms ease-out;
}
