input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #e1e1e1;
  -webkit-text-fill-color: #6a7989 !important;
  -webkit-box-shadow: 0 0 0px 1000px #dcced2 inset;
  transition: background-color 5000s ease-in-out 0s;
}
:focus { 
  outline: none !important;
}
.clear{
    clear:both; 
}
*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a:hover, a:focus{
    text-decoration: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #acacad;
  opacity: 1; /* Firefox */
  text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #acacad;
  text-transform: none;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #acacad;
  text-transform: none;
}
:root {
  --borderWidthCheck: 7px;
  --heightCheck: 24px;
  --widthCheck: 12px;
  --borderColorCheck: #27DD1D;
  --borderWidthRemove: 7px;
  --heightRemove: 24px;
  --widthRemove: 24px;
  --borderColorRemove: #FA4506;
}
img {
  max-width: 100%;
}
a {
  color: #fff;
}
body {
  font-family: 'Montserrat', sans-serif;
  left: 0;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.container {
  background-color: #F7F7F7;
  color: #5F5F5F;
  width: 300px;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.cont-banner {
  position: relative;
  width: 300px;
  height: 250px;
  max-width: 100%;
}
.cont-banner img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.tinder {
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.loaded.tinder {
  opacity: 1;
}
.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.tinder--status .icon-check {
  opacity: 0;
  transform: rotate(45deg) scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.tinder--status .icon-remove {
  left: 40%;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.tinder_love .tinder--status .icon-check {
  opacity: 0.7;
  transform: rotate(45deg) scale(2);
}
.tinder_nope .tinder--status .icon-remove {
  opacity: 0.7;
  transform: scale(2);
}

.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: 90%;
  max-width: 400px;
  height: 60%;
  background: #FFFFFF;
  padding-bottom: 40px;
  border-radius: 3px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
  opacity: 1;
  -webkit-box-shadow: 0px -2px 5px 0px rgba(190,190,190,0.5);
  -moz-box-shadow: 0px -2px 5px 0px rgba(190,190,190,0.5);
  box-shadow: 0px -2px 5px 0px rgba(190,190,190,0.5);
}

.moving.tinder--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.tinder--card img {
  max-width: 100%;
  pointer-events: none;
  max-height: 200px;
}

.tinder--card .link {
  display: none;
}

.tinder--card .title {
    display: inline-block;
    text-align: center;
    padding: 25px 15px 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    line-height: 15px;
}

.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;
  cursor: pointer;
}

.tinder--buttons button:focus {
  outline: 0;
}

.tinder--buttons i {
  font-size: 32px;
  vertical-align: middle;
}
.icon-check {
  display: inline-block;
  transform: rotate(45deg);
  height: var(--heightCheck);
  width: var(--widthCheck);
  border-bottom: var(--borderWidthCheck) solid var(--borderColorCheck);
  border-right: var(--borderWidthCheck) solid var(--borderColorCheck);
  top: 7px;
  position: relative;
}
.icon-remove {
  display: inline-block;
  height: var(--heightRemove);
  width: var(--widthRemove);
  top: 3px;
  position: relative;
}
.icon-remove .rem1 {
    border-bottom: var(--borderWidthRemove) solid var(--borderColorRemove);
    height: 100%;
    width: 100%;
    position: absolute;
    transform: rotate(45deg);
    left: 6px;
}
.icon-remove .rem2 {
    border-right: var(--borderWidthRemove) solid var(--borderColorRemove);
    transform: rotate(45deg);
    height: 100%;
    width: 100%;
    position: absolute;
    right: 6px;
}
/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out.nlike:before {
  background: #FA4506;
}
.hvr-radial-out.like:before {
  background: #27DD1D;
}
.hvr-radial-out:hover .icon-check, .hvr-radial-out:focus .icon-check, .hvr-radial-out:active .icon-check {
  border-color: #fff;
}
.hvr-radial-out:hover .icon-remove .rem1, .hvr-radial-out:focus .icon-remove .rem1, .hvr-radial-out:active .icon-remove .rem1 {
  border-color: #fff;
}
.hvr-radial-out:hover .icon-remove .rem2, .hvr-radial-out:focus .icon-remove .rem2, .hvr-radial-out:active .icon-remove .rem2 {
  border-color: #fff;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}
#list-sel {
  display: none;
  width: 100%;
  height: 500px;
  overflow-y: auto;
  flex-direction: column;
  position: relative;
  opacity: 0;
}
#list-sel .product {
    display: flex;
    position: relative;
    margin: 15px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    -moz-box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    padding: 10px 10px;
}
#list-sel .details {
  width: 50%;
  align-items: flex-start;
}
#list-sel img {
  width: 50%;
  align-items: flex-start;
  margin: 0 auto;
}
#list-sel .title {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    margin: 20px 0;
}
#list-sel .link {
    background: #000;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
}
#list-sel .link:hover {
    color: #525252;
    background: #cacaca;
    font-weight: bold;
}
.cont-reload {
    margin: 30px;
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    -moz-box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    box-shadow: 2px 3px 5px -1px rgb(168 166 168);
    position: relative;
    top: 30%;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
#list-sel .refresh {
    display: inline-block;
    background: #fff;
}
#list-sel .refresh img {
    width: 15px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

