
.btn:focus {
  outline: none;
  box-shadow: none;
}

/** TE ESPERAMOS **/
.esperamos {

  margin-top: 30px;
  color: #3E3E3D;
  font-size: 20px;
}

.darkSubTitle {
  color: var(--primary);
  font-size: 18px;
  display: block;
  font-weight: bold;
  margin-top: 20px;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.ttf'); /* IE9 Compat Modes */

}
.wrapper{
width:100%;
}
@media(max-width:992px){
.wrapper{
width:100%;
}
}
.panel-heading {
padding: 0;
border:0;
}


.panel-title>a, .panel-title>a:active{
display:block;
padding:5px;
  font-size: 14px;
  font-weight: 400;
  color: #8A8C8D;
text-decoration:none;
  border-bottom: 1px solid #c0c0c0;
}

.panel-heading  a:before {
 font-family: 'Glyphicons Halflings';
 content: "\e114";
 float: right;
 transition: all 0.5s;
}
.panel-heading.active a:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}

.collapse {
  border: none;
}

.greyLabel li a {
  color: gray;
}
  /** ESTILOS OVERLAY VER CATEGORIAS **/
  /* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(255, 255, 255); /* White fallback color */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 0%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: left; /* Centered text/links */
}


/* Position the close button (top right corner) */

.overlay .closebtn {
  text-decoration: none;
  margin-top: 15px;
}


/** ESTILOS PARA li DESPLEGABLES **/

  .liStyles ul{
      list-style: none;
      margin-left: 15px;
      margin-bottom: 0;
      padding: 0;
  }

  .liStyles ul li{
      padding-top: 4px;
      padding-bottom: 4px;
      border-bottom: 1px solid #d6d6d6;
  }

  .labelWrapper {
  cursor: pointer;
  padding-right: 0px;
  border: 1px solid #fff;
  border-bottom: none;
  }

  label.last{
  border-bottom: 1px solid #fff;
  }

  .liStyles ul ul li{
  padding: 8px;
  }


  .onlyHideThisInputs input[type="checkbox"]{
  position: absolute;
  left: -9999px;
  }

  .onlyHideThisInputs input[type="checkbox"] ~ ul{
  height: 0;
  transform: scaleY(0);
  }

  .onlyHideThisInputs input[type="checkbox"]:checked ~ ul{
  height: 100%;
  transform-origin: top;
  transition: transform .2s ease-out;
  transform: scaleY(1);
  }

  .onlyHideThisInputs input[type="checkbox"]:checked + label{
  background: #26C281;
  border-bottom: 1px solid #fff;
  }

  .greyLabel {
      font-size: 14px;
      color:  #8A8C8D;
  }


  .darkLabel {
      color: #AB2328 !important;
      font-weight: bold;
  }

  /** ESTILOS PARA CAMBIAR FLECHA DE LOS SELECT **/
  .selectdiv select {
      padding-right: 30px;

      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      background-image: url('../img/customArrow.png');
        background-repeat: no-repeat, repeat;
        background-position: right .7em top 50%, 0 0;
        background-size: .9em auto, 100%;
    }

    /* For IE (thanks to @SaiManoj) */
    .selectdiv select::-ms-expand {
      display: none;
    }

.volver {
  margin-top: 20px;
}

.area-form input {
  width: 100% !important;
}



/* Create four equal columns that sits next to each other */

.column {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 25%;
padding: 0 4px;
}

.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}

.column1 {
  -ms-flex: 48%; /* IE10 */
  flex: 48%;
  max-width: 48%;
  min-height: 250px;
  border: solid 1px #d2d2d2;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column1 img {
  vertical-align: middle;
  width: 100%;
  padding: 25px;
  max-height: 250px;
}

.column2 {
  -ms-flex: 32%; /* IE10 */
  flex: 32%;
  max-width: 32%;
  min-height: 180px;
  border: solid 1px #d2d2d2;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column2 img {
  vertical-align: middle;
  padding: 25px;
  max-height: 170px;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}

.column3 {
-ms-flex: 23%; /* IE10 */
flex: 23%;
max-width: 23%;
height: 100px;
border: solid 1px #d2d2d2;
margin: 5px;
display: flex;
align-items: center;
justify-content: center;
}

.column3 img {
  vertical-align: middle;
  padding: 15px;
  max-height: 100px;
  max-width: 100%;
  margin: 0 auto;
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
  -ms-flex: 50%;
  flex: 50%;
  max-width: 50%;
}
.column1 {
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
}
.column2 {
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
}
.column3 {
  -ms-flex: 47%;
  flex: 47%;
  max-width: 47%;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
}
}

.resultado {
  margin-top: 30px;
  color: #3E3E3D;
  font-weight: bold;
  font-size: 20px;
}

.resultado > h1 {
  font-weight: 600;
  font-size: 24px;
  color: var(--primary);
}

@media screen and (min-width: 600px) {
.resultado {
  font-size: 24px;
}
}

.backgroundColor {
  background-color: #EEEEEE;
}

@media screen and (min-width: 600px) {
  .backgroundColor {
      background-color: white;
  }
}

.sponsor-level4 {
width: 100%;
text-align: center;
padding: 10px;
font-size: 14px ;
}
.sponsor-level4 a {
color: var(--primary);
}
.volver a {
font-weight: 400;
}

.darkSubTitle,
.resultado {
font-weight: 600;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 2px solid #8a8a8a !important;
  font-size: 14px;
  padding-left: 5px;
  font-weight: 300;
  color: #949494;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border: none;
border-width: 0 !important;
left: 0 !important;
margin-left: -10px !important;
margin-top: 0 !important;
top: 15% !important;
height: 100% !important;
width: 100% !important;
padding-right: 30px;

-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-image: url('../img/customArrow.png') !important;
background-repeat: no-repeat, repeat;
background-position: right .7em top 50%, 0 0;
background-size: .9em auto, 100%;
}
.select2-container .select2-selection--single {
height: calc(1.5em + .75rem + 2px) !important;
padding: .375rem .75rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: initial !important;
}
#directory__post__other .name__enterprise {
  font-size: 12px;
  text-align: center;
  padding: 0 7px !important;
  min-height: 54px;
  justify-content: center;
}

.grisBoldNoSi {
  display: block;
  text-transform: uppercase;
  color:#646464;
  font-size: 12px;
  font-weight: normal;
  margin-top: 20px;
  font-weight: 600;
}

.darkText {
  color: var(--primary);
  font-size: 16px;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}


.switch_box2{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  padding: 0 0.5rem 0 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.box_3{
  margin-top: 20px;
}

@media (min-width: 992px) {
  .esperamos {
      margin-top: 16px;
      font-size: 24px;
  }
}
.esperamos a {
  color: #3E3E3D;
  font-weight: 600;
}
h4.panel-title,
h3.panel-title {
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 1px;
    display: flex;
    justify-content: space-between;
}
span.link-supplier {
    font-size: 14px;
    width: 85%;
    padding: 5px;
    color: #7A7A7A;
    cursor: pointer;
}
.panel-title>a, .panel-title>a:active {
  border-bottom: none;
}
