.wrap h1,
.wrap h2 {
    color: #0073aa;
    padding-bottom: 0px !important;
}

.wrap .shortcode {
    color: #2271b1;
    font-size: 20px;
}
.wrap .ul_shortcode {
    
}
.wp-encuesta-question {
    padding: 0px
}

.wp-encuesta-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.wp-encuesta-numeric button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.wp-encuesta-numeric button.selected {
    background: #0056b3;
}


.wp-encuesta-submit {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.wp-encuesta-submit:hover {
    background: #218838;
}




/*Diseno encuesta*/
.wp-encuesta-question {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-encuesta-buttons {
    margin-top: 37px;
    display: flex;
    justify-content: center;
}

.wp-encuesta-prev, .wp-encuesta-next, .wp-encuesta-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 48px;
    font-size: 16px;
    text-transform: uppercase;
}

.wp-encuesta-prev:hover, .wp-encuesta-next:hover, .wp-encuesta-submit:hover {
    background-color: #005177;
}
button.wp-encuesta-submit {
    margin-left: 13px;
    width: 50%;
    max-width: 100%;
    background-color: #68b86c;
}


.alerta_encuesta_wp {
    width: 100%;
}

.alerta_encuesta_wp > div {
    background: #e9e9e9;
    padding: 26px 31px;
    border-radius: 16px;
    width: 100%;
    color: #eb5e4e;
    font-size: 20px;
    text-align: center;
    box-shadow: 5px 5px 5px rgba(183, 181, 181, 0.4), -2px -9px 31px rgba(183, 181, 181, 0.4), 4px 7px 21px rgba(255, 0, 0, 0.2);   /* Sombra roja abajo */
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
    margin-top: 42px;
    margin-bottom: 35px;
}

.alerta_encuesta_wp > div i {
    font-size: 60px;
    margin: 0 auto;
    color: #eb5e4e;
    margin-bottom: 8px;
    display: inline-block;
}



@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?5r4vyt');
  src:  url('fonts/icomoon.eot?5r4vyt#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?5r4vyt') format('truetype'),
    url('fonts/icomoon.woff?5r4vyt') format('woff'),
    url('fonts/icomoon.svg?5r4vyt#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check-square-o:before {
  content: "\e901";
}
.icon-cancel-circle:before {
  content: "\ea0d";
}
.icon-checkmark2:before {
  content: "\ea11";
}


[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cancel-circle:before {
  content: "\ea0d";
}
.encuesta_fron_wp {
    background: #ffffff;
    padding: 0px 39px;
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 35px;
    border-radius: 10px;
    position: relative;
    z-index: 9;
}
.encuesta_fron_wp h2, .encuesta_fron_wp form {
    z-index: 9;
    position: relative;
}
.encuesta_fron_wp h2 {
    color: #0073aa;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}
.encuesta_fron_wp h3 {
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 21px;
    color: #222323;
}






.wp-encuesta-options.closed_numbers {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    user-select: none;
    flex-flow: wrap;
    justify-content: center;
}

.wp-encuesta-options.closed_numbers input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wp-encuesta-options.closed_numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e9465c;
    border: 0;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.wp-encuesta-options.closed_numbers input:checked + span {
    background-color: #222323 !important;
    color: white;
}
.wp-encuesta-options.closed_numbers label.wp-encuesta-option {
    margin: 0 5px 9px 5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.wp-encuesta-options.closed_numbers label.wp-encuesta-option:nth-last-of-type(-n+2) span {
    background-color: #67b768 ;
}

.wp-encuesta-options.closed_numbers label.wp-encuesta-option:nth-last-of-type(4) span,
.wp-encuesta-options.closed_numbers label.wp-encuesta-option:nth-last-of-type(3) span
{
    background-color: #fbbb42;
}

.wp-encuesta-options.closed_numbers label.wp-encuesta-option:hover {
    transform: translateY(-5px);
}
.open_textarea_wp input {
    height: 50px !important;
    border-radius: 13px;
    border: 1px solid #dcdada !important;
    box-shadow: 0px 1px 5px rgba(183, 181, 181, 0.4);
    color: #6e6a6a !important;
    padding: 10px 18px !important;
    font-size: 18px;
    font-weight: 200;}

.open_textarea_wp input ::-webkit-input-placeholder { color: #ccc; } /* WebKit */
.open_textarea_wp input :-moz-placeholder {color: #ccc; } /* Firefox 18- */
.open_textarea_wp input ::-moz-placeholder { color: #ccc; } /* Firefox 19+ */
.open_textarea_wp input :-ms-input-placeholder { color: #ccc; } /* IE 10+ */

.alerta_encuesta_wp.alerta_validado > div {
    color: #33ad6d;
    box-shadow: 5px 5px 5px rgba(183, 181, 181, 0.4), -2px -9px 31px rgba(183, 181, 181, 0.4), 4px 7px 21px rgba(51, 173, 109, 0.2);
}
.alerta_encuesta_wp.alerta_validado > div i {
    color: #33ad6d;
}
.alerta_encuesta_wp.view_encuesta a {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3sease-in-out;
    border-radius: 48px;
    font-size: 16px;
    text-transform: uppercase;
}
.alerta_encuesta_wp.view_encuesta a:hover {
    background: #000;
}
.informacion_encuesta_numeros {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 13px;
}
.informacion_encuesta_numeros {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 13px;
}
.informacion_encuesta_numeros div {
    padding: 0px 5px;
}
.informacion_encuesta_numeros div:first-child {
    color: #e9465c;
}

.informacion_encuesta_numeros div:last-child {
    color: #67b768;
}
@media (max-width: 600px) {
    .encuesta_fron_wp {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/*End Diseno encuesta*/