
  .boton-personalizado-4 {
    text-decoration:none;
    font-weight: 200;
    font-size: 10px;
    color:#333333;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;
    background-color:#FFAB40;
    border-color: #d8d8d8;
    border-width: 2px;
    border-style: solid;
    border-radius:25px;
    cursor: pointer;
}
.boton-personalizado-4:hover{
    border-color: #131313;
}
.circulo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #FFAB40;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin:0px auto;
    padding:3%;
    color: #333333;
}
.circulo:hover{
    border-color: #131313;
    
    
}


select {

    /* styling */
    background-color: white;
    border: thin solid black;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    width: 40%;
  
    /* reset */
  
    
    
  }

select.classic {
    background-image:
      linear-gradient(45deg, transparent 50%, black 50%),
      linear-gradient(135deg, black 50%, transparent 50%),
      linear-gradient(to right, #FFAB40, #FFAB40);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px),
      100% 0;
    background-size:
      5px 5px,
      5px 5px,
      2.5em 2.5em;
    background-repeat: no-repeat;
    appearance:none;
  }
  
  select.classic:focus {
    background-image:
      linear-gradient(45deg, white 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, white 50%),
      linear-gradient(to right, gray, gray);
    background-position:
      calc(100% - 15px) 1em,
      calc(100% - 20px) 1em,
      100% 0;
    background-size:
      5px 5px,
      5px 5px,
      2.5em 2.5em;
    background-repeat: no-repeat;
    border-color: grey;
    outline: 0;
  }
  .btn-flotante{
    font-size: 16px; /* Cambiar el tamaño de la tipografia */
    text-transform: uppercase; /* Texto en mayusculas */
    font-weight: bold; /* Fuente en negrita o bold */
    color: #FFF; /* Color del texto */
    border-radius: 15px; /* Borde del boton */
    letter-spacing: 2px; /* Espacio entre letras */
    background-color: #64625e; /* Color de fondo */
    padding: 18px 30px; /* Relleno del boton */
    position: fixed;
    right: 40px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .btn-flotante:hover {
    background-color: #f8d468; /* Color de fondo al pasar el cursor */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
  }
  @media only screen and (max-width: 600px) {
     .btn-flotante {
      font-size: 14px;
      padding: 12px 20px;
      right: 20px;
    }
  } 

  a:link, a:visited, a:active {
    text-decoration:none;
}

.seccion-partners{
  
  width:100%;
}
.seccion-partners-4{
  width:1110px;
  display:block;
  margin:auto;
}

.fondo-4{
  background-color:#fcaf03;

}
.fondo-5{
  background-color:#EEE;

}


.select-form-partner{
  display: block;
  font-size: 16px;
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.3;
  padding: .4em 1.4em .3em .8em;
  width: 425px;
  max-width: 100%; 
  box-sizing: border-box;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
  border-radius: .3em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('../../img/icono-lista-desplegable.png'),
    linear-gradient(to bottom, #ffffff 0%,#f7f7f7 100%);
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
}
.select-form-partner::-ms-expand {
  display: none;
}
.select-form-partner:hover {
  border-color: #888;
}
.select-form-partner:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222; 
  outline: none;
}
.select-form-partner option {
  font-weight:normal;
}




.select-form-partner option[selected] {
    background-color: orange;
}

.form-radio input[type="radio"]{
  display:none;
}
@import url('https://fonts.googleapis.com/css?family=Lato:400,500,600,700&display=swap');

.wrapper-contacto{
  display: inline-flex;
  height: 52px;
  width: 450px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
padding-bottom:15px;
  
}
.wrapper-contacto .option{
  background: #fff;
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
.wrapper-contacto .option .dot{
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.wrapper-contacto .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #fcaf03;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
  border-color: #fcaf03;
  background: #fcaf03;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
  background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
  opacity: 1;
  transform: scale(1);
}
.wrapper-contacto .option span{
  font-size: 1rem;
  color: #808080;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
  color: #fff;
}


.wrapper-asunto{
  display: inline-flex;
  
  height: 52px;
  width: 450px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  padding-bottom:15px;
  
}
.wrapper-asunto .option{
  background: #fff;
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
.wrapper-asunto .option .dot{
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.wrapper-asunto .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #fcaf03;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#option-3:checked:checked ~ .option-3,
#option-4:checked:checked ~ .option-4{
  border-color: #fcaf03;
  background: #fcaf03;
}
#option-3:checked:checked ~ .option-3 .dot,
#option-4:checked:checked ~ .option-2 .dot{
  background: #fff;
}
#option-3:checked:checked ~ .option-3 .dot::before,
#option-4:checked:checked ~ .option-4 .dot::before{
  opacity: 1;
  transform: scale(1);
}
.wrapper-asunto .option span{
  font-size: 1rem;
  color: #808080;
}
#option-3:checked:checked ~ .option-3 span,
#option-4:checked:checked ~ .option-4 span{
  color: #fff;
}

.form-btn{
  border-color: #fcaf03;
  background: #fcaf03;
  border-radius: 5px;
  color: white;
  height: 52px;
  width: 100%;
  
}




.logo-cookdata{
  padding-top:10px;
}
.tit-form-partner{
  color: #808080;
  font-size: 1rem;
padding-left: 15px;
 padding-bottom: 5px;
 
}