* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img.logo {
  width: 230px;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
}
header {
  padding: 25px 0px 30px;
}

.form-group-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 20px;
}

.form-group-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.form-group-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

input[type="text"] {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

select {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

select:focus {
  border-color: #999;
}

input[type="date"] {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="date"]:focus {
  border-color: #999;
}

.bloco {
  margin: 5px;
}

p.error-validate {
  color: #ed773c;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  margin-top: 5px;
}

input.input-error {
  border: 1px solid #ed773c;
}

.input-error {
  border: 1px solid #ed773c !important;
}

.alert-danger {
  color: #ed773c;
  background-color: transparent !important;
  border-color: #ed773c !important;
}

.alert-danger {
  background-color: transparent !important;
}

.alert-success {
  background-color: transparent !important;
}

.alert-primary {
  background-color: transparent !important;
}

.btn.btn-primary {
  background-color: #ed773c;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  border: 1px solid #e5560e;
  font-size: 0.8em;
  line-height: 1;
  width: auto;
  color: #fff;
  height: 40px;
  text-transform: uppercase;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  padding: 5px !important;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #f5631a;
  border-color: #ee5102;
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.btn.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  border: none;
  font-size: 0.8em;
  line-height: 1;
  width: auto;
  color: #fff;
}

.btn:hover {
  opacity: 0.8;
}

.d-radio {
  display: flex;
  align-items: center;
  height: 45px;
}

.d-radio span {
  margin-right: 13px;
}

.validate {
  padding: 11px 10px;
}

.d-inherit {
  display: inherit;
}

.badge-success {
  padding: 10px;
  background: #9bd7ff;
  color: #124669;
  border-radius: 3px;
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  text-align: center;
  margin: 5px;
}

.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

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

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

.mb-10 {
  margin-bottom: 80px;
}

#footer.short {
  padding-top: 50px;
  padding-bottom: 50px;
}

#footer {
  background: #0e0e0e;
  border-top: 4px solid #0e0e0e;
  font-size: 0.9em;
  margin-top: 50px;
  padding: 70px 0 0;
  position: relative;
  clear: both;
}

i.fa-solid.fa-envelope {
  color: #777;
}

p {
  color: #777;
  line-height: 24px;
  margin: 0 0 20px;
}

h1 {
  font-size: 22px;
  line-height: 44px;
  margin: 0;
  font-weight: 400;
}

#footer h4 {
  font-size: 1.8em;
  font-weight: 200;
}

html .heading-primary,
html .lnk-primary,
html .text-color-primary {
  color: #ed773c !important;
}

#footer h5 {
  color: #ccc;
}

h5 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 18px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer a {
  color: #fff;
}

#footer .phone {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: block;
  padding-bottom: 15px;
  margin-top: -5px;
}

hr {
  background-image: linear-gradient(to left, transparent, #dbdbdb, transparent);
  border: 0;
  background: #e1e1e1;
}

hr.tall {
  margin: 44px 0;
}

span.token-label {
  border-radius: 5px;
  background: #d5eeff;
  padding: 3px 4px;
  font-weight: 500;
  font-size: 14px;
  font-family: monospace;
  color: black;
}

span.site-label {
  text-decoration: underline;
  color: #ed773c;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .container-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }
  img.logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
  }
  .text-assistencia {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px !important;
  }
  h4 {
    font-size: larger;
  }
  .pd-col {
    padding: 20px !important;
  }
  .card {
    height: 100% !important;
  }
  .produtoItem {
    margin-right: 0 !important;
  }
  .produtosItemRow {
    overflow-y: hidden !important;
    height: 100% !important;
  }
  .produtosRow {
    padding: 20px !important;
  }
  .form-switch .form-check-input {
    width: 60px !important;
  }
  .form-switch {
    padding-left: 10px !important;
    margin-top: 10px !important;
  }
  .card.card-step-2 {
    height: 100%!important;
  }
}

.form-switch {
  padding-left: 0;
}

.form-check > #revenda {
  padding-left: 0.8rem !important;
}

.form-switch .form-check-input {
  margin-left: 0 !important;
  width: 50%;
  margin-left: -2.5em;
  height: 31px;
}

.form-check-input:checked {
  background-color: #ed773c;
  border-color: #e5560e;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ed773c;
  border-color: #e5560e;
}

/**caixa de steps**/

.step-container .card {
  height: calc(100vh - 60px);
  display: flex;
}

.step-container .card > .row {
  flex: 1;
}

.step-container {
  display: flex;
  align-items: stretch; /* faz todos os filhos terem a mesma altura */
}

.step-container .card {
  height: auto; /* remova o calc(100vh - 60px); */
  flex: 1 1 0; /* todos ocupam o mesmo espaço */
  display: flex;
  flex-direction: column;
}

.step {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.dados {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.bg-step {
  background: url(../img/ancoratools.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background-position: center bottom;
}

.token-row {
  padding: 10px;
  border: solid #ccc 1px;
  border-radius: 5px;
}

.token-row > input#token {
  border: 0;
  border-bottom: dashed 1px #ccc;
  border-radius: 0;
}
.form-check-input:focus {
  border-color: #ed773c;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.form-check-input:focus {
  border-color: #ed773c;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ed773c !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #ed773c;
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ed773c;
}
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-search
  .select2-search__field:focus {
  border-color: #ed773c;
  box-shadow: 0 0 0 0.25rem #ed773c2b;
}
.token-row > input[type="text"] {
  font-size: 20px;
  padding: 0;
  letter-spacing: 0.77rem;
  text-align: center;
}

.pd-col {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

/**PAGINATION RADIUS**/
.pd-col nav {
  margin-top: auto;
}

ul.page-pagination {
  list-style: none;
  padding: 0 !important;
}

.page-link {
  border-radius: 10px !important;
  padding: 6px;
}

.pagination-sm .page-link {
  padding: 5px !important;
}

li.page-pagination-item {
  margin-left: 10px;
  cursor: pointer;
}

/* Adiciona o estilo quando há .step-active */
.page-pagination-item.step-active .page-link,
.step-active .page-link {
  background: #ed773c !important;
  border: 1px solid #e5560e !important;
  color: #fff !important;
}

/** Select 2**/
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option {
  font-size: 14px;
}
.input-group {
  flex-wrap: nowrap !important;
}

.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-left: 0;
  margin: 0;
  list-style: none;
  overflow-x: scroll;
}

.select2-container--bootstrap-5
  .select2-selection--single
  .select2-selection__rendered {
  width: 370px !important;
}

/**Step de produtos**/
.produtosRow {
  padding: 50px;
}

.grids {
  display: grid;
  gap: 10px;
  grid-template-columns: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.grids.grid-2 {
  grid-template-columns: 1fr 1fr !important;
}
/* Remove border-bottom from the last .grids in the .produtosRow */
.produtosRow .produtosItemRow .grids:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

/* Adiciona h5 com margin 0 em .produtosRow */
.produtosRow h5 {
  margin: 0;
  padding: 50px;
}

.produtoItem {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  margin-right: 10px;
  border-radius: 5px;
}

.produtoItem:last-child {
  margin-bottom: 20px;
}

.fs-produto-title {
  font-size: 12px;
}

.fs-produto {
  font-size: 14px;
  font-weight: 500;
}

.produtosItemRow {
  overflow-y: auto;
  height: 500px;
  max-height: none;
}

.produtosItemRow::-webkit-scrollbar {
  width: 6px;
}

.produtosItemRow::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

span.informacao {
  padding: 4px;
  color: #6c757d;
}

.card.card-step-2 {
  height: 700px;
}
