body {
    font-family: 'Roboto', sans-serif; 
    
}

main {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    box-shadow: inset 0px 0px 20px #b3b3b3;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 50%;
}

.card-body {
    position: relative;
    padding: 2px 8px;
}

.card-body .card-title {
    margin-bottom: 0px;
}
.card-body .card-text, 
.card-body .text-muted {
    font-size: 12px;
}
.circle-progress-value {
    stroke-width: 10px;
    stroke: #52C41A;
    stroke-linecap: round;
}
.circle-progress-circle {
    stroke-width: 2px;
}
.circle-progress-text {
    font-size: 32px !important;
    font-weight: 600;
}
.matching-result {
    position: absolute;
    right: 2px;
    top: 2px; 
}
.matching-result svg {
    width: 42px;
    height: 42px;
}
.btn-circle {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.btn-circle i::before{
    display: block;
    transform: rotate(90deg);
}
.btn-circle.more i::before{
    display: block;
    transform: rotate(270deg);
}
.footer {
    position: fixed;
    padding: 1%;
    width: 100%;
    max-width: 420px;
    bottom: 0;
    height: 160px;
    background-color: rgba(255,255,255, 0.95);
    border-radius: 40px 40px 0px 0px;
    box-shadow: inset 0px 0px 20px #b3b3b3;
}
.show-full {
     height: fit-content;
     background-color: rgba(254,254,254, 1);
}
i.icon-ic-bed::before,
i.icon-ic-size::before{
    display: block;
}

.row.tp .col-3 > div {
    background-color: white;
    box-shadow: 0px 0px 10px #dcdada;
    border-radius: 8px;
    height: 100%;
}

.pre-listing {
    position: absolute;
    top: 0;
    left: 10px;
    font-weight: lighter;
}


  /* animated-button */
  .animated-button {
    background: linear-gradient(-30deg, #c18768 50%, #51a0ac 100%);
    padding: 4px 10px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    text-shadow: 0 0 black;
    font-weight: 600;
  }

  .animated-button:hover {
    color: #ffffff;
  }
  
  .animated-button::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #8592ad;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
  }
  
  .animated-button:hover::before {
    opacity: 0.2;
  }
  
  .animated-button span {
    position: absolute;
  }
  
  .animated-button span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#51a0ac));
    background: linear-gradient(to left, rgba(8, 20, 43, 0), #51a0ac);
    -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
  }
  
  @-webkit-keyframes animateTop {
    0% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  
  @keyframes animateTop {
    0% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  
  .animated-button span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#51a0ac));
    background: linear-gradient(to top, rgba(8, 20, 43, 0), #51a0ac);
    -webkit-animation: 2s animateRight linear -1s infinite;
            animation: 2s animateRight linear -1s infinite;
  }
  
  @-webkit-keyframes animateRight {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  
  @keyframes animateRight {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  
  .animated-button span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#51a0ac));
    background: linear-gradient(to right, rgba(8, 20, 43, 0), #51a0ac);
    -webkit-animation: 2s animateBottom linear infinite;
            animation: 2s animateBottom linear infinite;
  }
  
  @-webkit-keyframes animateBottom {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  
  @keyframes animateBottom {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  
  .animated-button span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#51a0ac));
    background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #51a0ac);
    -webkit-animation: 2s animateLeft linear -1s infinite;
            animation: 2s animateLeft linear -1s infinite;
  }
  
  @-webkit-keyframes animateLeft {
    0% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }
  
  @keyframes animateLeft {
    0% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }

  .btn-primary {
    background-color: #51a0ac;
    border-color: #51a0ac;
  }

  .btn-primary:hover {
    background-color: #c18768;
    border-color: #c18768;
  }

  .btn-whatsapp {
    background-color: #46c454;
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .btn-whatsapp i {
    color: #fff;
    font-size: 34px;
  }