/* ===========================
   Parent
=========================== */

.bottom-fixed-buttons {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 4px;
  z-index: 999;
  background: #ffcc99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

/* ===========================
   Button
=========================== */

.bottom-fixed-buttons .bottom-btn {
    pointer-events: auto;
    background: linear-gradient(45deg,navy,#005780);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    cursor: pointer;
    transition: 0.3s;
}

.bottom-fixed-buttons .bottom-btn:hover {
  background: #16258c;
}

/* ===========================
   Left
=========================== */

.bottom-fixed-buttons .left-btn {
  margin-left: 0;
}

/* ===========================
   Center
=========================== */

.bottom-fixed-buttons .center-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ===========================
   Right
=========================== */

.bottom-fixed-buttons .right-btn {
  margin-right: 0;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 768px) {
  .bottom-fixed-buttons .bottom-btn {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ===========================
   Mobile
=========================== */

@media (max-width: 576px) {
  .bottom-fixed-buttons {
    padding: 0 2px;
  }

  .bottom-fixed-buttons .bottom-btn {
    font-size: 10px;
    padding: 3px 8px;
  }
}
