* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif  !important;  
  font-weight: normal;
  color: #333333;
}

.ag-m-0 {
  margin: 0;
}

.ag-my-0 {
  margin-bottom: 0;
  margin-top: 0;
}

.ag-mb-0 {
  margin-bottom: 0;
}

.ag-mb-1 {
  margin-bottom: 1rem;
}

.ag-ml-1 {
  margin-left: 1rem;
}

.ag-mt-0 {
  margin-top: 0;
}

.ag-mt-2 {
  margin-top: 2rem;
}

.ag-ml-2 {
  margin-left: 2rem;
}

.ag-w-100 {
  width: 100%;
}

.ag-separador-punto {
  border: none;
  border-top: 1px dotted #cccccc;
  margin: 1.25rem 0;
}

.ag-form-label {
  display: inline-block;
  margin-bottom: .4rem;
}

.ag-form-input {
  display: block;
  width: 100%;
  padding: .438rem 1rem;
  line-height: 1.5;
  background-color: #fff;
  height: 2.5rem;
  border: 1px solid #ccc;
  border-radius: .25rem;
}

.ag-form-help {
  display: inline-block;
  font-size: .875rem;
  color: #666666;
  margin-top: .3rem;
}

.ag-error .ag-form-label, 
.ag-error .ag-form-help {
  color: #c62828;
}

.ag-error .ag-form-input {
  border-color: #c62828;
  color: #c62828;
}

.ag-btn, .btn-primary, .btn:hover, .btn:focus {
  border: 0;
}

.ag-btn {
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: .25rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem !important;
  letter-spacing: 1px;
  padding: .5rem .75rem !important;
  text-align: center;
  text-decoration: none;
  transition: color .15s ease-in-out, 
              background-color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;  
}

.ag-btn-primary {
    background-color: #0d658b;
    color: #fff;
}

.d-flex {
  display: flex;
}

.justify-content-end {
  display: flex;
  justify-content: end;
}

.justify-content-between {
  display: flex;
  justify-content: space-between;
}

.align-items-center {
  display: flex;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-grow-1 {
  flex-grow: 1;
}

.ag-captcha-wraper {
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  padding: 1.25rem;  
}

.ag-captcha-horizontal {
  display: flex;
  flex-direction: column;
  flex: auto;
  gap: 1rem; 
}

@media screen and (min-width: 576px) {
  .ag-captcha-vertical {
    max-width: 465px;
  }
} 

@media screen and (min-width: 992px) {
  .ag-captcha-horizontal {
    flex-direction: row;
  }

  .ag-separador-vertical {
    width: 1px;
    border-left: 1px dotted #cccccc;
  }
}  

.ag-captcha-titulo {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.ag-selector {
  background-color: #E6E6E6;
  padding: 0.25rem;
  border-radius: 9px;
  display: flex;
  gap: 0.25rem;
}

.ag-selector-btn {
  padding: 0.375rem 0.625rem;
  border-radius: 7px;
  font-size: 0.875rem;
  width: 100%;
  cursor: pointer;
  color: #333333;
  text-align: center;
  position: relative;
  border: transparent;
  background-color: transparent;
}

.ag-selector-btn.active {
  background-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.ag-selector-btn:hover::after {
  content: "";
  background-color: #0d658b14;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 7px;
}

.ag-captcha-contenedor {
  min-height: 69px;
  display: flex;
  gap: 8px;
}

.ag-captcha {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  text-align: center;
  flex-grow: 1;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}

.ag-captcha img {
  max-width: 100%;
  height: auto;
}

.ag-captcha-botonera {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ag-captcha-btn {
  background-color: #0D658B;
  border-radius: 0.25rem;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ag-captcha-btn:hover {
  background-color: #09445d;
  transition: background-color 0.2s ease-in;
}

div[hidden] {
  display: none!important;
}







