/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
  --white: #fff;
  --gray: #4d5959;
  --primary: #00a1e4;
  --red: #cc0000;
  --lightgray: #bbb;
}

/**
 *
 * Layout
 *
 */
.alr-container {
  width: 100%;
  font-family: 'Poppins',sans-serif;
  /*max-width: 640px;*/
  display: flex;
  flex-flow: row wrap;
}

.alr-form_group {
  margin-bottom: 36px;
  display: flex;
  flex-flow: row wrap;
}

.alr-box{
  padding: 0 !important;
  margin: 0 !important;
  gap: 4px;
  line-height: normal;
}

.alr-box label{
  margin: 0 !important;
  color: #fff;
}

.alr-box p{
  margin: 0 !important;
}

.alr-title {
  margin-bottom: 40px;
  margin-top: 0;
  line-height: 1;
  color: #a22238;
}

.alr-subtitle {
  padding-bottom: 12px;
  line-height: 1;
  font-weight: 300;
  font-size: 20px;
  display: block;
  width: 100%;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--lightgray);
}

/**
 *
 * Formulario
 *
 */

.alr-content {
  position: relative;
}

.alr-box-container{
  display: flex; 
  background: #a22238;
  width: 100%; 
  justify-content: space-between; 
  padding: 30px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 50px;
}


.alr-left-side{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alr-form {
  position: relative;
  z-index: 1;
  color: var(--gray);
}

.alr-form label.error,
.alr-input_error {
  font-size: 12px;
  color: var(--red);
}

.alr-loading {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.75);
  background-repeat: no-repeat;
  background-position: 50px center;
}

.alr-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.alr-required {
  color: var(--red);
  font-size: 18px;
  vertical-align: text-bottom;
}

.alr-form_row {
  margin-bottom: 16px;
  display: flex;
  flex-flow: row wrap;
  flex: 1 50%;
  padding: 0 10px;
}


.alr-input_text {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  max-height: 40px;
  line-height: 32px;
}

.alr-input_textarea {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  resize: none;
  overflow-y: auto;
  height: auto;
  padding: 15px;
}

.alr-input_file {
  border: 0 !important;
  padding: 0 !important;
  width: 100%;
  display: block;
  height: auto !important;
}

.alr-input_select {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  max-height: 40px;
  margin-bottom: 10px;
}

input:not([type=submit]):not([type=checkbox]), textarea, select{
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
  height: 40px;
  padding: 0 15px;
  outline: 0;
  margin-bottom: 10px;
}

.alr-form_btn{
  flex-basis: 100%;

}

.alr-input_btn {
  margin-top: 30px;
}

.alr-response_btn {
  cursor: pointer;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 30px;
  background: #e0b933;
  color: #fff;
  border-radius: 0;
  height: 40px;
  line-height: 1;
}
.alr-response_btn:hover{
  color: #06467c;
}

.alr-response_title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}

.alr-form_verysmall {
  font-size: 12px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0;
  flex-basis: 100%;
}

.alr-form_disclaimer p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .alr-box-container {
    flex-direction: column;
    gap: 15px;
  }

  .alr-box1 {
    /* order: -1; Div 1 pasa arriba */
    margin-bottom: 20px;
  }
  .alr-form_row{
    flex: 1 100%;
  }
  .alr-form_row > * {
  flex: 1 auto;
  flex-flow: column wrap;
}
}
