/** 
 * Creator Form Page Style 
 */
body {
  height: 100vh; /* Faz o body da grade ocupar toda a altura da viewport */
  margin: 0; /* Remove a margem padrão do body */
  background-color: #fff;
}

header {
  grid-area: header;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

main {
  grid-area: main;
  /* display: flex; */
  /* align-items: stretch; */
}

footer {
  display: block;
  grid-area: footer;
  padding: 30px 15px;
}

hr {
  border: 3px solid #f3f3f3;
  margin: 15px 0px 15px;
}

/* .container {
    padding-right: 30px;
    padding-left: 30px;
} */

.alert ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.19rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #d3d3d3;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-lg {
  height: calc(2.6875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  font-weight: 600;
}

.progress {
  height: 2px;
  width: 100%;
}

.start h2 {
  font-size: 30px;
  line-height: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.start p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.btn {
  font-weight: 600;
}

.btn-step-0 {
  background: #b1dafe;
  color: #000;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 5px;
}

.btn-outline-primary {
  font-weight: 600;
  display: block;
  background: #fff;
  border: 1px solid #dee2e6;
  color: #9d9d9d;
  padding-top: 20px;
  padding-bottom: 20px;
}

.diferenciais > div > label {
  overflow: hidden;
}

.areas-de-atuacao > div > label {
  overflow: hidden;
}

/* .areas-de-atuacao > div > label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.areas-de-atuacao > div > label:focus > input, select:focus {
  background: #ffffcc;
}

.areas-de-atuacao > div > label > i {
    font-size: 35px;
}
.areas-de-atuacao > div > label > input {
    display: none;
}*/

.selected-div input[type="checkbox"] {
  display: none;
}

.selected-div div label {
  display: block;
  cursor: pointer;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 5px;
  transition: border 0.3s;
}

.selected-div div input[type="checkbox"]:checked + label {
  border-color: #007bff;
  background-color: #f0f8ff;
}

.tipo input[type="radio"] {
  display: none;
}

.tipo label {
  cursor: pointer;
  position: relative;
  margin-left: 25px;
  margin-right: 15px;
  font-size: 15px;
}

.tipo label::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: white;
  border: 2px solid #007bff;
  border-radius: 50%;
}

.tipo input[type="radio"]:checked + label::before {
  background-color: #007bff;
}

.titleai {
  font-size: 30px;
  height: 100px;
}

.boxai {
  padding: 20px;
  background: #f9f9f9;
  border: 4px solid #f3f3f3;
  border-radius: 15px;
}

.palette-samples {
  display: flex;
  flex-wrap: wrap; /* Permite que os itens se movam para a próxima linha se não couberem na atual */
  justify-content: space-between;
}

.palette-samples > * {
  flex: 1 1 18%; /* Ajustado para garantir que 5 itens caibam em uma linha considerando alguma margem */
  margin: 0.5%; /* Adiciona um pouco de espaço entre os elementos */
}

.palette {
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.color-swatch {
  flex: 1;
  height: 40px;
}

.primary-color-picker,
.secondary-color-picker,
.text-color-picker {
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.pickr .pcr-button {
  height: 45px !important;
  width: 100% !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.loader-73 {
  width: 0;
  height: 5px;
  display: inline-block;
  position: relative;
  background: #666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-animation: animFw 20s linear infinite;
  animation: animFw 20s linear infinite;
}

.loader-73::after,
.loader-73::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #666;
  position: absolute;
  top: 9px;
  right: -2px;
  opacity: 0;
  transform: rotate(-45deg) translateX(0px);
  -webkit-animation: coli1 0.3s linear infinite;
  animation: coli1 0.3s linear infinite;
}

.loader-73::before {
  top: -4px;
  transform: rotate(45deg);
  -webkit-animation: coli2 0.3s linear infinite;
  animation: coli2 0.3s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes coli1 {
  0% {
    transform: rotate(-45deg) translateX(0px);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-45deg) translateX(-45px);
    opacity: 0;
  }
}

@keyframes coli2 {
  0% {
    transform: rotate(45deg) translateX(0px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translateX(-45px);
    opacity: 0.7;
  }
}

.loader-92 {
  width: 48px;
  height: 40px;
  display: inline-block;
  position: relative;
  background: #333;
  border-radius: 15% 15% 35% 35%;
}

.loader-92::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  color: #333;
  top: -15px;
  left: 11px;
  -webkit-animation: animloader92 1s ease infinite;
  animation: animloader92 1s ease infinite;
}

.loader-92::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 8px;
  border: 4px solid #333;
  width: 16px;
  height: 20px;
  border-radius: 0 4px 4px 0;
}

@keyframes animloader92 {
  0% {
    box-shadow: 2px 0px rgba(0, 0, 0, 0), 12px 0px rgba(0, 0, 0, 0.3),
      20px 0px rgba(0, 0, 0, 0);
  }

  50% {
    box-shadow: 2px -5px rgba(0, 0, 0, 0.5), 12px -3px rgba(0, 0, 0, 0.5),
      20px -2px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 2px -8px rgba(0, 0, 0, 0), 12px -5px rgba(0, 0, 0, 0),
      20px -5px rgba(0, 0, 0, 0);
  }
}

.dropzone {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  color: #ccc;
  background-color: #fff;
  transition: background-color 0.3s;
}

/* .dropzone:hover {
    background-color: #eee;
} */

.dropzone p {
  margin: 0;
}

#preview-logo,
#remove-logo {
  margin: 0 auto 15px;
  width: auto;
  max-height: 50px;
}

#remove-logo {
  margin-bottom: 1px;
  display: none;
}

@media screen and (min-width: 1200px) {
  main {
    height: calc(100vh - 150px);
  }
  footer {
    height: 45px;
    padding: 15px;
  }
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
  .titleai {
    font-size: 28px;
    height: 140px;
  }

  .areas-de-atuacao > div > label {
    font-size: 0.75rem;
  }

  .diferenciais > div > label > div {
    font-size: 0.7rem;
  }
}
