/* categories filters */
.categore-filter {
  background: transparent;
  border: 0;

  &.active {
    color: var(--bg-primary-dark) !important;
  }
}

#todas_filtros {
  .filters-wrapper {
    display: flex;
    gap: 80px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: var(--bs-light-grey) solid 1px;

    .filter-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;

      .filter-title {
        border-bottom: 2px solid var(--bg-primary);
        padding-top: 10px;
      }

      .filter-options-wrapper {
        column-count: 2;
        column-gap: 20px;

        .filter-option {
          label {
            display: flex;
            align-items: center;
            cursor: pointer;

            span {
              padding-left: 8px;
            }

            input[type="checkbox"] {
              appearance: none;
              -webkit-appearance: none;
              width: 16px;
              height: 16px;
              border: 1px solid #aaa;
              border-radius: 4px;
              cursor: pointer;
              position: relative;
              transition: all 0.2s;
            }

            /* quando marcado */
            input[type="checkbox"]:checked {
              background-color: var(--bg-primary-dark);
              border-color: var(--bg-primary-dark);
            }

            /* �cone do check */
            input[type="checkbox"]:checked::after {
              content: "\2714";
              color: #fff;
              position: absolute;
              top: -5px;
              left: 2px;
              font-size: 14px;
            }
          }
        }
      }
    }
  }

  .buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 40px !important;

    .button-filter {
      cursor: pointer;
      background: var(--bg-primary);
      color: #fff;
      padding: 4px 20px;
      border-radius: 20px;
      font-size: var(--font-16);
      font-weight: 400;
      text-transform: uppercase;
      transition: all 0.3s ease-in;
    }

    .button-clear {
      cursor: pointer;
      background: var(--bs-light-grey-rgb);
      padding: 4px 20px;
      border-radius: 20px;
      font-size: var(--font-16);
      font-weight: 400;
      text-transform: uppercase;
      transition: all 0.3s ease-in;
    }

    .button-filter:hover,
    .button-clear:hover {
      background: var(--bg-black);
      color: #fff;
    }
  }
}

/* checkout */
.checkout {
  .checkout-container {
    display: flex;
    margin: 30px auto;
    gap: 20px;
  }

  .checkout-form {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
  }

  .order-summary {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    height: max-content;
    position: sticky;
    top: 20px;
  }

  .step {
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
  }

  .step h2 {
    font-size: 18px;
    margin: 0;
    padding: 12px;
    background: #f7f7f7;
    cursor: pointer;
  }

  .step-content {
    display: none;
    padding: 15px;
  }

  .step.active .step-content {
    display: block;
  }

  .step.disabled h2 {
    color: #999;
    cursor: not-allowed;
  }

  /* .step label {
    display: block;
    margin: 6px 0;
  } */

  textarea {
    height: 110px !important;
    resize: none;
  }

  button.next {
    background: var(--bg-primary);
    color: #fff;
    text-align: center;
    padding: 4px 9px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0;
  }

  button.next:hover {
    background: #000000;
  }

  table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  .shop_table th,
  .shop_table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
  }

  .shop_table td:first-child {
    width: 70%;
  }

  .shop_table th:last-child,
  .shop_table td:last-child {
    text-align: right;
  }

  .shop_table td:last-child {
    width: 30%;
  }

  .shop_table th {
    background: #fafafa;
  }

  .shop_table tfoot td {
    font-weight: bold;
  }

  .checkout-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  #loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
  }

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

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

/* reserved area */
.reserved-area {
  .content {
    padding: 32px;
    padding-bottom: 40px;
  }

  .reserved-area-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bs-light-grey);
    border-radius: 20px;
    padding: 20px;

    a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--bs-text);
      font-weight: 500;
      font-size: var(--font-16);
      text-decoration: none;
      transition: all 0.3s ease-in;

      img {
        max-width: 20px;
      }

      &:hover,
      &.active {
        color: var(--bg-primary-dark);
      }
    }
  }

  table {
    thead {
      tr {
        td {
          background-color: var(--bs-black);
          color: #ffffff;
          text-align: center;
          height: 60px;
        }
      }
    }

    tbody {
      tr {
        &:nth-child(odd) {
          background: var(--bs-light-grey);
        }

        &.ticket-click {
          cursor: pointer;
          transition: all 0.3s ease-in;

          &:hover {
            background-color: rgba(195, 5, 35, 0.2);
          }
        }

        td {
          color: var(--bs-black);
          text-align: center;
          height: 60px;

          a {
            color: var(--bg-primary-dark);
            text-decoration: none;
            transition: all 0.3s ease-in;

            &:hover {
              color: var(--bs-black);
            }
          }
        }
      }
    }
  }

  .modal {
    .modal-dialog {
      max-width: 600px;

      table {
        thead {
          tr {
            td {
              font-size: var(--font-12);
            }
          }
        }

        tbody {
          tr {
            td {
              font-size: var(--font-12);
            }
          }
        }
      }
    }
  }

  .blocks {
    padding-top: 40px;
  }
}



/* HEADER */
.personalizacao_botao a{
  background: url(../images/edit-icon.png) no-repeat left;
  padding-left: 23px;
  padding-top: 3px;
  font-size: 0.9em;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
} 
.personalizacao_botao a:hover{
  background: url(../images/edit-icon_.png) no-repeat left;
  color: #c91100;
} 

.filtrar_botao a{
  background: url(../images/filter-icon_.png) no-repeat left;
  padding-left: 23px;
  padding-top: 3px;
  font-size: 0.9em;
  color: #c91100;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
} 
.filtrar_botao a:hover{
  background: url(../images/filter-icon.png) no-repeat left;
  color: #000;
} 
.filtrar_botao a.active{
  background: url(../images/filter-icon_.png) no-repeat left;
  color: #c91100;
} 


/* FILTROS */
.filter-option {
    padding-bottom: 5px;
}
.filtrar_tit_opcoes{
  font-weight: 400;
  font-size: var(--font-14);
}


.product-details .accordion-button {
  font-weight: 400;
  font-size: 0.50em;
  padding-top: 10px !important;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}
.product-details .accordion-button:hover{
  color: #c91100;
}
.product-details .accordion-button::after {
  height: 10px;
}




@media only screen and (max-width: 991px) {
  .filters-wrapper {
    display: inline !important;
  }
  .filter-title {
    margin-top: 10px;
  }
}



/*PRMOCOES*/

.detalhe_promocoes {
	margin-bottom: 20px;
}
.detalhe_promocoes_tit {
	font-size: 12px;
  text-transform: uppercase;
  color: #ce0d2c;
}
.detalhe_promocoes_datas {
	margin-top: 0px;
	font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}	
.detalhe_promocoes_txt {
	margin-top: 0px;
	font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #000000;
  font-weight: 400;
}
.detalhe_promocoes_pagina {
	margin-top: 0px;
	background: #ce0d2c;
  padding: 8px 5px;
  width: 100%;
  max-width: 150px;
  cursor: pointer;
  position: relative;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  text-align: center;
}
.detalhe_promocoes_pagina a { 
	text-decoration: none;
	color: #ffffff;
}
.detalhe_promocoes_aviso {
	margin-top: 50px;
	font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #000000;
  font-weight: 400;
}
