/****************************************
  MEDIA QUERIES
****************************************/
/****************************************
  APP-HOOK - BOATS
****************************************/
#list-searcher {
  position: sticky;
  width: 100%;
  height: fit-content;
  margin-top: unset;
  background: #1250e0; }

header.header-fixed ~ #cms-content .top-searcher-bar,
header.header-fixed ~ #cms-content .list-searcher:not(.list-searcher-mobile) {
  top: 130px; }

.list-container .quote-container {
  background: #f4f4f4;
  padding: 30px;
  margin: 3rem 0 2rem 0;
  border-radius: 15px;
  flex-wrap: nowrap; }
  @media (max-width: 480px), (min-width: 481px) and (max-width: 769px), (min-width: 770px) and (max-width: 989px) {
    .list-container .quote-container {
      flex-wrap: wrap; } }
  .list-container .quote-container .text-container-quote {
    width: 75%; }
    @media (max-width: 480px), (min-width: 481px) and (max-width: 769px), (min-width: 770px) and (max-width: 989px) {
      .list-container .quote-container .text-container-quote {
        width: 100%; } }
    .list-container .quote-container .text-container-quote h1 {
      font-size: 1.5rem;
      text-align: center; }
    .list-container .quote-container .text-container-quote p {
      text-align: center; }
  .list-container .quote-container .button-container-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%; }
    @media (max-width: 480px), (min-width: 481px) and (max-width: 769px), (min-width: 770px) and (max-width: 989px) {
      .list-container .quote-container .button-container-quote {
        width: 100%; } }
/****************************************
  WHATSAPP BUTTON - BOATS DETAIL
****************************************/
.whatsapp-contact-wrapper {
  position: relative;
  display: inline-block; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: .3rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.18);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  position: relative;
  z-index: 1;
  overflow: visible; }

.whatsapp-btn:hover {
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
  transform: scale(1.05);
  text-decoration: none;
  color: white; }

.whatsapp-icon {
  font-size: 1rem;
  display: inline-block;
  flex: 0 0 20px; }

.whatsapp-text {
  white-space: nowrap; }

@media (max-width: 480px) {
  .whatsapp-text {
    display: none; }
  .whatsapp-btn {
    padding: 10px;
    border-radius: 50%; } }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: 1px solid red;
  border-radius: 50px;
  z-index: -1;
  animation: border-animation 6s infinite;
  pointer-events: none;
  opacity: 0.85; }

@media (max-width: 480px) {
  .whatsapp-btn::before {
    border-radius: 50%;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px); } }

@keyframes border-animation {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.45); }
  10% {
    transform: scale(1.06);
    opacity: 1;
    box-shadow: 0 0 0 12px rgba(18, 140, 126, 0); }
  21% {
    transform: scale(0.92);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); }
  100% {
    transform: scale(0.92);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); } }
