/* LOAD PAGE */
.loading-page {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  z-index: 1500;
}

.loader {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2F4B34;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #56765B;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #16AFEA;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-text {
  color: #000;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 40px);
}

/* /LOAD PAGE */
.toaster-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  position: fixed;
  top: 16px;
  right: 8px;
  padding-right: 8px;
  background-color: transparent;
  z-index: 1800;
  overflow-y: auto;
  max-height: calc(100vh - 32px);
}

.toaster-page>* {
  margin-bottom: 8px;
}

.toaster-page *:last-child {
  margin-bottom: 0;
}

.toaster-container {
  width: calc(100% - 8px);
  max-width: 350px;
  border-radius: 7px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border: 1px solid transparent;
  padding: 16px 24px 16px 16px;
  font-size: 13px;
  position: relative;
}

.toaster-container.success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.toaster-container.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.toaster-container.info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.toaster-container.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.toaster-close {
  color: inherit;
  position: absolute;
  text-align: center;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.toaster-close:active,
.toaster-close:hover {
  color: gray;
}

.whats_app-btn_desktop,
.whats_app-btn_mobile {
  box-sizing: border-box;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  position: fixed;
  bottom: 20px;
  z-index: 99992147483000;
  transition: opacity 0.3s ease 0s;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.whats_app-btn_mobile {
  display: flex;
  left: 2%;
}

.whats_app-btn_desktop {
  display: none;
  right: 2%;
  bottom: 80px;
}

@media (min-width: 760px) {
  .whats_app-btn_mobile {
    display: none;
  }
}

@media (min-width: 760px) {
  .whats_app-btn_desktop {
    display: flex;
  }
}

.whats_app-btn_text {
  box-sizing: border-box;
  margin: 0 10px;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 6px 32px #00122e3d;
  transition: margin 0.16s linear 0s, opacity 80ms linear 0s;
}

.whats_app-btn_icon {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: margin 0.16s linear 0s, opacity 80ms linear 0s;
}
