.form-row-cfr {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
  }

  .cfr-form input, .cfr-form select {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .form-group-cfr {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .form-group-cfr label {
    font-weight: bold;
    display: block;
  }
  
  .form-group-cfr input[type="file"] {
    font-size: 0.9rem;
  }
  
  .form-group-cfr.col-md-6 {
    width: 50%;
  }
  
  .form-group-cfr.col-md-4 {
    width: 33.33333%;
  }
  
  select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0l6 8 6-8H0z' fill='%2398c1d9'/></svg>") no-repeat;
    background-size: 10px;
    background-position: calc(100% - 10px) center;
    padding-right: 20px;
  }

  .cfr-required {
    color: red;
  }

  .handle-error-cfr {
    text-align: center;
    margin: 25px 0 5px;
    font-size: 25px;
    font-weight: 700;
  }

  @media screen and (min-width: 768px) {
    .cfr-form {
        max-width: 100%;
        margin: 0 auto;
    }
  }

  /* Estilos para el preloader */
#jf-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
  }
  
  .jf-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -30px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }

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

  /* checkout */

  #cfr_company_logo_jf {
    display: none;
  }

  .supplier-data-container {
    margin: 25px 0;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .col-md-4 {
    position: relative;
    display: flex;
    column-gap: 15px;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex-wrap: wrap;
  }
  
  .form-group {
    margin-bottom: 1rem;
    flex: 1;
    min-width: 200px;
  }
  
  label {
    display: inline-block;
    margin-bottom: .5rem;
  }
  
  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  select.form-control:not([size]):not([multiple]) {
    height: calc(1.5em + .75rem + 2px);
  }
  
  textarea.form-control {
    height: auto;
  }

  .success-banner-msg {
    background: green;
    color: white;
    font-weight: 700;
    padding: 20px;
    margin: 10px 0;
}

.error-banner-msg {
  background: #a90000;
  color: white;
  font-weight: 700;
  padding: 20px;
  margin: 10px 0;
}

.cfr-display-data-table {
  max-height: 700px;
  overflow: auto;
  display: block;
}

.cfr-display-data-table {
  border-collapse: collapse;
  width: 100%;
}

.cfr-display-data-table th,
.cfr-display-data-table td {
  text-align: left;
  padding: 8px;
}

.cfr-display-data-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/*Estilos Vic*/
.has-error-form {
	border-color: red !important;
}