/* Bottom box */
/* ===== Box container ===== */
.bottom-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  z-index: 1000;
}

/* ===== Inner layout ===== */
.bottom-box-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 25px 20px 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Left content ===== */
.bottom-box-left {
  width: 60%;

}

.bottom-box-left h2 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 20x;
  font-weight: bold;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.bottom-box-left p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
  font-family: 'Open Sans', 'Roboto', sans-serif;
}

/* ===== Right content ===== */
.bottom-box-right {
  margin-right: 0;
  /* add spacing at close button */
}

/* ===== Button styles ===== */
.bottom-box-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d32f2f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Roboto', sans-serif;
}

/* Hover */
.bottom-box-btn:hover {
  background-color: #b71c1c;
  color: #fff;
}

/* Active */
.bottom-box-btn:active {
  background-color: #9a0007;
  color: #fff;
  transform: translateY(0);
}

/* Focus */
.bottom-box-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background-color: #d32f2f;
  color: #fff;
}

/* Visited */
.bottom-box-btn:visited {
  background-color: #d32f2f;
  color: #fff;
}

/* ===== Close button ===== */
.bottom-box-close {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* responsive */
@media screen and (min-width:320px) and (max-width:500px) {

  /* Bottom box */
  .bottom-box-inner {
    display: block;
    padding: 20px 20px 0px 20px;
  }

  /* ===== Left content ===== */
  .bottom-box-left {
    width: 100%;
  }

  .bottom-box-left h2 {
    margin: 0;
    text-align: center;

  }

  .bottom-box-left p {
    margin: 0;
    text-align: left;

  }

  /* ===== Right content ===== */
  .bottom-box-right {
    text-align: center;
    margin: 10px 0;
  }

  .bottom-box-close {
    top: 10px;
    right: 20px;
  }

}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

  /* Bottom box */
  .bottom-box-close {
    top: 10px;
    right: 20px;
  }

  /* ===== Left content ===== */
  .bottom-box-left {
    width: 60%;

  }
}

/* Fluent form css */
.fluentform-bot-check {
  display: none !important;
}

.fluentform-conversational-footer {
  display: none !important;
}

@media screen and (min-width:320px) and (max-width:500px) {
  .fluentform-bot-check {
    display: none !important;
  }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1023px) {
  .fluentform-bot-check {
    display: none !important;
  }
}


