.cotizador_flex {
    display: flex;
    align-items: center;
}

.form-control {
    flex: 0.75;
    padding: 7px;
}

.cotizador_input_button {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.cotizador_button_busqueda {
    font-size: 13px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    transition: all 0.5s ease;
}

.cotizador_button_busqueda:hover {
    transform: scale(1.05);
}

.cotizador_button_busqueda i {
    font-size: 20px;
}

.form__group{
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 50%;
}
.form__group_2{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 15%;
}

.form__field,
.form__field_2 {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1rem;
    color: #333232;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder,
.form__field_2::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label,
.form__field_2:placeholder-shown~.form__label_2 {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.form__label,
.form__label_2 {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
}

.form__field:focus,
.form__field_2:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image-slice: 1;
}

.form__field:focus~.form__label,
.form__field_2:focus~.form__label_2 {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #393a3a;
    font-weight: 700;
}

.form__field:required,
.form__field:invalid,
.form__field_2:required,
.form__field_2:invalid {
    box-shadow: none;
}

.checkbox-div {
    display: flex;
    flex-direction: column;
}

.div-label {
    margin-bottom: 5px;
}

.checkbox-input {
    position: relative;
}

.checkbox-input input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-input .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #266948;
    border-radius: 20px;
}

.checkbox-input .switch:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.checkbox-input input:checked+.switch:before {
    transform: translateX(20px);
}

#infinite-table {
    margin-top: 20px;
    height: 300px;
    overflow: auto;
}

table {
    border-spacing: 0;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    table-layout: fixed;
}

th,
td {
    text-align: left;
    padding: 16px;
}

thead tr th {
    background: white;
    position: sticky;
    top: 0;
    z-index: 99;
}
tr:hover{
    cursor: pointer;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}

#infinite-table.single-element {
    height: auto;
    overflow: hidden;
}

.cotizador_titulos,
.cotizador_titulos_almacenes,
.cotizador_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
}
