/*
.infoHeaderContainer {
  background-color: #fff;
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  align-items: center;
  margin-top: -25px;
  padding: 10px 30px;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09); 
  font-family: var(--token-p-font-family);
  font-size: var(--token-p-font-size);
}

.infoHeaderContainer > .CTAHolder > span {
  color: #000;
}*/
.infoHeader > div {
  display: flex;
  gap: 30px;
  flex-direction: row;
}
.infoHeader  img {
  width: 40px;
  height: 40px;
  margin-top: -5px;
}


.filterContainer {
  background-color: #fff;
  padding: 50px 25px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 75px;
}

.columnContainer {
  display: flex;
  margin-bottom: 40px;

}
.column {
  padding: 10px;
  padding-left: 20px;
  box-sizing: border-box;
  border-left: 1px solid #ccc;
}

.column:first-child {
  border-color:#fff;
}
.checkboxContainer {
  margin: 20px 0px;
}

label {

  font-family: var(--token-p-font-family);
  font-size: var(--token-p-font-size);

}
.formActions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.CTA.secundary {
  background-color: #/*fff;
  color: #000A1E;
  border-bottom: 2px solid #FA6432;
  background: url("./../assets/arrow.png") center right no-repeat contain;
  cursor: pointer;*/
}

.CTA.secundary:hover {
/*  font-weight: 100;
  background-color: #FA6432;
  color: #fff;*/
}

.CTA.tertiary {
  background-color: #FFF;
  color: #888;
  background: url("./../assets/arrow.png") center right no-repeat contain;
  cursor: pointer;
}
.CTA.tertiary:hover {
  font-weight: 100;
  color: #000;
}

.CTA.tertiary> img {
  filter:  invert(54%) sepia(16%) saturate(14%) hue-rotate(15deg) brightness(96%) contrast(86%);
  height: 15px;
  width: 15px;
}


.inactive {
  opacity: 0.3;
  pointer-events: none;
  cursor: default !important;
}
