:root {
  --cor-fundo: #e0f1ff;
  --cor-primaria: #28295f;
  --cor-secundaria: #2077bc;
}

body {
  background-color: var(--cor-fundo);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #212529;
  border-top: 6px solid transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

.iframe-contract {
    min-height: 400px;
    height: calc(100vh - 448.17px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

p {
  margin: 0;
  padding: 0;
  text-align: justify;
}

li {
  text-align: justify;
}

.btn-primary {
  background-color: var(--cor-primaria);
  font-family: "Oswald", sans-serif;
  border: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--cor-secundaria) !important;
}

.swal2-popup {
  width: 800px !important;
  padding: 3rem !important;
}

.swal2-confirm {
  background-color: var(--cor-primaria) !important;
  border-color: var(--cor-secundaria) !important;
}

.swal2-deny {
  background-color: var(--cor-secundaria) !important;
  border-color: var(--cor-primaria) !important;
}

.swal2-confirm:active,
.swal2-confirm:focus,
.swal2-deny:active,
.swal2-deny:focus,
.swal2-cancel:active,
.swal2-cancel:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 12px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: var(--cor-primaria);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--cor-secundaria);
  border-radius: 6px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: darken(var(--cor-secundaria), 10%);
}
