/*Custom CSS*/
a {text-decoration: none;}
.tos {
  border: 1px solid var(--app-green);
  padding: 50px;
  color: var(--app-green);
}

.tos p {
  text-align: left;
}

.tos .heading {
  text-align: center;
  font-weight: 700;
  font-size: 20px;

}

/* Essential */

.tos ul {
  display: table-row;
  list-style: none;
}

.tos li {
  display: table;
  padding-bottom: 10px;
}

.tos li::before {
  display: table-cell;
  text-align: right;
  content: "+";
  font-size: 1.5em;
  font-weight: bold;
  color: #FF404C;
  padding-right: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 .tos {
  color: var(--app-choco);
  padding-bottom: 10px;
}

.note {
  border: 0.5px dashed #e8e8e8;
  padding: 5px 10px;
  font-size: smaller;
  line-height: initial;
  background: #f7f7f7;
  margin-top: 10px;
}

a {
  font-weight: 700;
  color: green;
}

/**
* Book Now Button
*/

.book-now-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e60023;
  color: #fff;
  padding: 5px 2px;
  font: bold 10px/1;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  animation: blink 1s infinite;
  cursor: pointer;
  z-index: 9999;
}
@keyframes blink { 50% { background: #b3001b; } }

/* WhatsApp Floating Button */
.whatsapp-us a {
  position: fixed;
  right: 60px;
  bottom: 15px;
  z-index: 1000; /* keep above most elements */
  
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border-radius: 20%;

  background-color: green;
  color: #fff; 
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  font-weight: normal;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-us a:hover,
.whatsapp-us a:focus {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  outline: none;
}

.whatsapp-us i {
  font-size: 20px;
  line-height: 1;
}
