/*
    Theme Name: Ortho-X
    Text Domain: ortho-x
    Version: 1.0
    Author: Summer Comunicação
*/

:root {
  --white: #ffffff;
  --orange: #e15029;
  --blue-dark: #123c5a;
  --red-dark: #762427;
  --paragrafo: 15px;
  --h1: 50px;
  --h4: 26px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.ocultar {
  display: none;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}

.overlay {
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 1;
  transition: all 0.5s;
}
.overlay p {
  font-size: 30px;
  color: white;
  font-weight: 600;
}

.spinner {
  width: 70px;
  height: 70px;
  position: relative;
}

.spinner .dot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.spinner .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #c03f27;
}

.spinner .dot {
  animation: spin 1.8s infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner .dot:nth-child(2) {
  animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
  animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
  animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
  animation-delay: 400ms;
}

.swal-title {
  text-align: center;
}
.swal-button {
  background-color: #123c5a;
}
#diadema-grid {
  margin-top: 20px;
}

/*Animação do botão de whats app*/

.buttom-whats {
  min-width: auto;
  min-height: auto;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
}

.buttom-whats::before {
  /* content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s; */

  content: "";
  border-radius: 100px;
  min-width: calc(60px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00ffcb;
  box-shadow: 0 0 60px rgba(0, 255, 203, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.buttom-whats:hover,
.buttom-whats:focus {
  color: #313133;
  transform: translateY(-6px);
}

.buttom-whats:hover::before,
.buttom-whats:focus::before {
  opacity: 1;
}

.buttom-whats::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #00ffcb;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.buttom-whats:hover::after,
.buttom-whats:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
