:root {
  --backgroundColor: rgba(246, 241, 209);
  --colorShadeA: #632f16;
  --colorShadeB: #9a602f;
  --colorShadeC: #9a602f;
  --colorShadeD: #efaf67;
  --colorShadeE: #d09048;
}

*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background: black;
  overflow: hidden;
  font-family: sans-serif;
}

.preference-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: black;
  color: white;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px;
  padding-bottom: 40px;
}

.logo-container .logo {
  width: 100vw;
  max-width: 300px;
  margin-bottom: .5rem;
}

.preference-container .logo-tag-line {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d09048;
  font-weight: 600;
}

.preference-container .app-beta-img {
  width: 100px;
}

.preference-options-title {
  padding: 0 !important;
}

.preference-options,
.preference-options-title {
  display: flex;
  padding: 1em;
  opacity: 0;
  -webkit-animation: fadein 2.4s forwards;
  animation:         fadein 2.4s forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.preference-male,
.preference-female {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px; 
  height: 150px;
  flex-basis: 50%;
  background: white;
  border-radius: 12px;
  color: #632f16;
  font-size: 24px;
  font-weight: 800;
}

.preference-male {
  margin-right: 10px;
}

.preference-female {
  margin-left: 10px;
}

.tinder--card:last-of-type {
  pointer-events: none;
}

.card-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 2%, rgba(0,0,0,0) 100%);
}

.bkg__spotlight {
  position: absolute;
  width: 100vw;
  background: radial-gradient(75% 35% at 50% 95%, rgba(80, 82, 98, 0.6) 20%, rgba(80, 82, 98, 0) 90%), linear-gradient(rgb(189 189 189 / 15%) 0%, #3b414f 80%)
}
.bkg__spotlight:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(50vw 60vw at 50% 70%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(35% 15% at 50% 85%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 100%);
}

.tinder {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.tinder {
  opacity: 1;
}

.inlineflex-center {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.logo-horizontal {
  position: absolute;
  left: 50%;
  top: 30px;
  height: 75px;
  transform: translateX(-50%);
}

.tinder--status {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translatex(-50%);
  z-index: 2;
  width: 100%;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: center;
  pointer-events: none;
}

.tinder--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  font-weight: 800;
  left: 50%;
  transform: translatex(-50%);
}

#nope i, #love i {
  transform: scale(1) !important;
  margin-left: 0 !important;
}

.tinder_love .fa-heart {
  opacity: 0.85;
  transform: scale(1) translatex(-50%);
  margin-left: 50px;
}

.tinder_nope .fa-remove {
  opacity: 0.85;
  transform: scale(1) translatex(-50%);
  margin-left: -50px;
}

.tinder--cards {
  flex-grow: 1;
  padding-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.tinder--card {
  display: inline-block;
  width: 90vw;
  max-width: 400px;
  height: 75vh;
  background: #FFFFFF;
  padding-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: grab;
  box-shadow: 1px 8px 26px 3px rgb(0 0 0 / 21%), 1px 1px 2px 1px rgb(0 0 0 / 21%);
}

.moving.tinder--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.tinder--card img {
  max-width: 100%;
  pointer-events: none;
  height: 60%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tinder--card h3 {
  text-align: left;
  margin-top: 16px;
  font-size: 28px;
  padding: 0 20px;
  pointer-events: none;
}

.tinder--card p {
  text-align: left;
  margin-top: 16px;
  font-size: 18px;
  padding: 0 20px;
  pointer-events: none;
}

.tinder--buttons {
  flex: 0 0 100px;
  text-align: center;
  padding-top: 20px;
}

.tinder--buttons button {
  border-radius: 50%;
  line-height: 60px;
  width: 60px;
  border: 0;
  background: #FFFFFF;
  display: inline-block;
  margin: 0 8px;
}

.tinder--buttons button:focus {
  outline: 0;
}

.tinder--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-heart {
  color: #ea25aa;
}

.fa-remove {
  color: #da7104;
}

.disable-button {
  opacity: .3;
  pointer-events: none;
  transition: 1s;
}

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

.share-container a,
.share-container .copy-link-btn {
  pointer-events: auto;
}

.share-container img {
  /* SNS btns */
  width: auto;
  height: auto;
  max-height: 35px;
}

.clickable {
  cursor: pointer;
}

.text-description {
  opacity: .6;
}

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

.inline-block {
  display: inline-block;
}

.mb-sm {
  margin-bottom: 12px;
}

.mb-xs {
  margin-bottom: 8px;
}


.mb-2xs {
  margin-bottom: 4px;
}





.copied-msg {
  pointer-events: none;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translatex(-50%);
  background: red;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d09048;
  padding: 20px 80px;
  border-radius: 12px;
  background-color: #201202;
  font-weight: 600;
  box-shadow: 0 3px 7px 0px #51402e;
  opacity: 0;
  transition: .3s;
}

.copied-msg.is-active {
  opacity: 1;
  bottom: 150px;
  transition: .3s;
}

.pointer-events-auto {
  pointer-events: auto !important;
}



button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.5rem;
  color:var(--colorShadeA);
  font-weight: 700;
  text-transform: uppercase;
  font-family: inherit;
}

button.big-button {
   padding: 1em 2em;
   border: 2px solid var(--colorShadeA);
  border-radius: 1em;
  background: var(--colorShadeE);
transform-style: preserve-3d;
   transition: all 120ms cubic-bezier(0, 0, 1, 1);
}
button.big-button::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colorShadeC);
  border-radius: inherit;
    box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
 transform: translate3d(0, 0.75em, -1em);
     transition: all 120ms cubic-bezier(0, 0, 1, 1);
}


button.big-button:hover {
  background: var(--colorShadeD);
  transform: translate(0, 0.375em);
}

button.big-button:hover::before {
  transform: translate3d(0, 0.75em, -1em);
}

button.big-button:active {
            transform: translate(0em, 0.75em);
}

button.big-button:active::before {
  transform: translate3d(0, 0, -1em);
  box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);
}

@-webkit-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}