.support-main-title {
  font-size: 36px
}

.support-help-group {
  font-size: 30px;
}

.support-help-page {
  font-size: 24px;
}

.form-check-input,
.form-check-label {
    display: inline-block;
    vertical-align: middle;
}
.form-check-item {
    display: block;
}

textarea { resize: none; }


.caja{

	display: none,
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #f2f2f2;
  text-align: center;
  line-height: 50px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-color: #f2f2f2;
  text-align: center;
  line-height: 30px;
}

.bigicon {
    font-size: 35px;
    color: #2e6da4;
}


body {
	background-color: #fdfefe; 
}

#wrap {
  
  background-color: #F2F2F2; 
  
  margin-top: 20px;
}

label {
    display: block;
    font: 1rem 'Fira Sans', sans-serif;
}

input,
label {
    margin: .4rem 0;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */

   .modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('/website_support/static/src/img/ajax-loader.gif') 
                50% 50% 
                no-repeat;
  }
  
  /* When the body has the loading class, we turn
     the scrollbar off with overflow:hidden */
     body.loading .modal {
      overflow: hidden;   
  }
  
  /* Anytime the body has the loading class, our
     modal element will be visible */
  body.loading .modal {
      display: block;
  }  

.centered-table {
    text-align: left;
}

.centered-table td,
.centered-table th {
    text-align: left;
}

.custom-button-container {
    text-align: center;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust the gap to your preference */
}

/* Products ticket table — responsive layout */
.table-products-wrapper {
    width: 100%;
    margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .table-products-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #table-products.table-products {
        min-width: 900px;
    }
}

@media (max-width: 767px) {
    .table-products-wrapper {
        overflow-x: visible;
    }

    #table-products.table-products {
        width: 100%;
        margin-bottom: 0;
        border: 0;
    }

    #table-products.table-products thead {
        display: none;
    }

    #table-products.table-products tbody tr {
        display: block;
        margin-bottom: 1rem;
        padding: 0.5rem 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    #table-products.table-products tbody tr:nth-child(odd) {
        background-color: #f9f9f9;
    }

    #table-products.table-products tbody td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.35rem 0.5rem;
        padding: 0.45rem 0;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left;
        white-space: normal;
    }

    #table-products.table-products tbody td:last-child {
        border-bottom: none;
    }

    #table-products.table-products tbody td[hidden],
    #table-products.table-products tbody td:first-child {
        display: none !important;
        padding: 0;
        border: none;
    }

    #table-products.table-products tbody td::before {
        flex: 0 0 38%;
        max-width: 38%;
        font-weight: 600;
        font-size: 12px;
        color: #555;
    }

    #table-products.table-products tbody td > * {
        flex: 1 1 55%;
        min-width: 0;
        max-width: 62%;
    }

    #table-products.table-products tbody td:nth-child(2)::before { content: "Código"; }
    #table-products.table-products tbody td:nth-child(3)::before { content: "Producto"; }
    #table-products.table-products tbody td:nth-child(4)::before { content: "Cantidad"; }
    #table-products.table-products tbody td:nth-child(5)::before { content: "Precio"; }
    #table-products.table-products tbody td:nth-child(6)::before { content: "Categoría"; }
    #table-products.table-products tbody td:nth-child(7)::before { content: "Subcategoría"; }
    #table-products.table-products tbody td:nth-child(8)::before { content: "Nota"; }
    #table-products.table-products tbody td:nth-child(9)::before { content: "Devolver"; }
    #table-products.table-products tbody td:nth-child(10)::before { content: "Adjunto"; }

    #table-products.table-products tbody td .form-control,
    #table-products.table-products tbody td .form-control-select,
    #table-products.table-products tbody td .form-control-select2,
    #table-products.table-products tbody td input[type="text"] {
        width: 100%;
        max-width: 100%;
    }

    #table-products.table-products tbody td:nth-child(9),
    #table-products.table-products tbody td:nth-child(10) {
        align-items: center;
    }

    #table-products.table-products tbody td:nth-child(10) label {
        margin-bottom: 0;
        text-align: center;
    }
}