/* colors */
/*font family*/
/* breakpoints */
/*transform*/
/*transform*/
/*opacity*/
/*opacity- end*/
.cp-toast {
  min-width: 37rem;
  padding: 2.6rem 2rem;
  border-radius: 1.6rem;
  border: 1px solid #22894e;
  box-shadow: 0 0 9px 8px rgba(79, 79, 79, 0.22);
  background-color: #ffffff;
  position: fixed;
  top: 9.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: #22894e;
  font-family: "Gotham-Bold";
  font-size: 1.4rem;
  line-height: 1.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3; }
  @media only screen and (max-width: 1024px) {
    .cp-toast {
      top: 6.8rem; } }
  .cp-toast.show {
    opacity: 1; }

.toast-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 9999;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  display: none;
  /* Initially hidden */ }

.toast-message.show {
  display: block;
  /* Makes the toast visible */ }
