@charset "UTF-8";
/* ====== Table of content Start =====*/
/*
Project Name: Quizo
File        : CSS Base
Version     : 1.0.0
Author      : jthemes (https://themeforest.net/user/jthemes)
*/
/* ====== Table of content End =====*/
/* Default transition */
.wrapper {
  width: 100%;
  min-height: 100vh;
  background-image: url(../images/bg.jpg);
  margin: 0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.step {
  width: 16px;
  height: 0.75rem;
  display: inline-block;
}
.step:not(:last-child) {
  margin-right: 3rem;
}
.step.active {
  background-color: #2175cd !important;
}
.step.finish {
  background-color: #2175cd !important;
}
.multisteps_form_panel {
  display: none;
}
.question_number {
  padding-top: 3rem;
}
span {
  color: #2175cd;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 1rem;
  -webkit-transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
h1 {
  color: #000a38;
  font-size: 4.204375rem;
  /* ====== Acne new CSS Class Start=====*/
}

.dropdown {
  position: relative;
  font-size: 20px;
  color: #333;
  border-radius: 20px 20px 20px 20px;
  width: 380px;
  .dropdown-list {
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 61px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform .15s ease-in-out .15s;
    max-height: 66vh;
    overflow-y: auto;
	border-radius: 30px; 
	margin-top: 10px;  
  }
  .dropdown-option {
    display: block;
    padding: 8px 12px;
    opacity: 0;
    transition: opacity .15s ease-in-out;
  }
  .dropdown-label {
    display: block;
    height: 62px; /* Set the desired height */
    line-height: 62px; /* Match line height to container height for vertical centering */
    padding: 0 12px; /* Adjust horizontal padding */
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative; /* Add relative positioning to align the ▼ icon */
    border-radius: 50px; /* Set border radius */
    overflow: hidden; /* Ensure rounded corners clip the ▼ icon properly */
    &:before {
      content: '▼';
      float: right;
    }
    border-radius: 50px 50px 50px 50px;
  }
  &.on {
    .dropdown-list {
      transform: scale(1, 1);
      transition-delay: 0s;
      .dropdown-option {
        opacity: 1;
        transition-delay: .2s;
      }
    }
    .dropdown-label:before {
      content: '▲';
    }
  }
  [type="checkbox"] {
    position: relative;
    top: -1px;
    margin-right: 4px;
  }
}
.form_checkbox li {
  width: 100%;
  color: #000a38;
  font-size: 1.3125rem;
  padding: 0.9375rem 3rem;
  margin-top: 1.25rem;
  position: relative;
  cursor: pointer;
}
input[type=checkbox] {
  transform: scale(1.5);
}
.form-control {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  height: 62px;
}
.form-control-form {
  width: 600px;
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  margin: auto;
  box-sizing: border-box;
  /* Eliminamos el borde por defecto del formulario */
  border: none;
  outline: none;
}
.form-control-form input[type="text"], .form-control-form textarea {
  width: 100%;
  padding: 10px;
  border: none; /* Eliminamos el borde por defecto */
  border-radius: 8px;
  box-sizing: border-box;
  outline: none; /* Eliminamos el borde de enfoque */
}
.form-control-form label {
  display: block;
  margin-bottom: 5px;
}
.form-control-form textarea {
  height: 100px;
}
@media (max-width: 600px) {
  .form-control-form {
    width: 380px;
    padding: 10px;
    border-radius: 50px;
  }
  .form-control-form textarea {
    width: calc(100% - 20px);
  }
}
.form-control-form input[type="text"], .form-control-form textarea {
  width: 100%; /* Take up full available width */
  padding: 10px; /* Internal padding inside input fields */
  border: 1px solid #ccc; /* Default border color and width */
  border-radius: 8px; /* Smaller border radius for input fields */
  box-sizing: border-box; /* Ensures total width includes padding and border */
  transition: border-color 0.3s, border-width 0.3s; /* Smooth transition for border changes */
}
.form-control-form input[type="text"]:focus, .form-control-form textarea:focus {
  border-color: #007bff; /* Change border color on focus */
  border-width: 2px; /* Increase border width on focus */
}
.form-control-form label {
  display: block; /* Display labels as blocks for proper flow */
  margin-bottom: 5px; /* Optional bottom margin for separation */
}
.form-control-form textarea {
  height: 100px; /* Specific height for multiline text areas */
}
/* ====== Acne new CSS Class End=====*/
.form_items li {
  width: 100%;
  color: #000a38;
  font-size: 1.3125rem;
  padding: 0.9375rem 3rem;
  margin-top: 1.25rem;
  position: relative;
  cursor: pointer;
}
.form_items li:after {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-radius: 100%;
  border: 2px solid #e2e2e2;
}
.form_items li:before {
  content: "";
  top: 48%;
  left: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  color: #2175cd;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.form_items li label {
  cursor: pointer;
}
.form_items li input {
  display: none;
}
.form_items li.active:before {
  display: block;
}
.f_btn {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0.9375rem 1.5625rem;
  outline: none;
  background-color: #2175cd;
  margin-right: 0.625rem;
  margin-bottom: 2rem;
  -webkit-transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.f_btn:hover {
  color: #2175cd;
  background-color: #ffffff;
}
body {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  font-style: normal;
  font-display: swap;
  font-family: "Jost", sans-serif;
  background-color: #ffffff;
}
a, button, input {
  cursor: pointer;
  text-decoration: none;
}
a:hover, button:hover, input:hover {
  text-decoration: none;
}
a:focus, button:focus, input:focus {
  outline: none;
}
ul > li {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
}
.animate_50ms {
  -webkit-animation-delay: 50ms;
  animation-delay: 50ms;
}
.animate_100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.animate_150ms {
  -webkit-animation-delay: 150ms;
  animation-delay: 150ms;
}
.animate_200ms {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.animate_250ms {
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}
@media (min-width: 1500px) {
  .container {
    max-width: 1510px;
  }
}
/* ==================================================
*   01 - media screen and (max-width: 1500px)
*   02 - media screen and (max-width: 1400px)
*	03 - media screen and (max-width: 1200px)
*	04 - media screen and (max-width: 992px)
*	05 - media screen and (max-width: 768px)
*	06 - media screen and (max-width: 576px)
*	07 - media screen and (max-width: 380px)
*   XX-Large devices (larger desktops)
*   No media query since the xxl breakpoint has no upper bound on its width
================================================== */
@media screen and (max-width: 1499.98px) {
  .step_progress .step {
    width: 12px;
  }
  .step_progress .step:not(:last-child) {
    margin-right: 2.8rem;
  }
}
@media screen and (max-width: 1399.98px) {
  .step_progress .step {
    width: 12px;
  }
  .step_progress .step:not(:last-child) {
    margin-right: 2.8rem;
  }
  span {
    font-size: 1.2rem;
    padding-bottom: 0.8rem;
  }
  h1 {
    font-size: 4rem;
  }
  .form_items li {
    font-size: 1.2rem;
    padding: 0.8375rem 3rem;
  }
  .f_btn {
    font-size: 1.18rem;
    font-weight: 700;
    padding: 0.7375rem 1.3625rem;
  }
}
@media screen and (max-width: 1199.98px) {
  .step_progress .step {
    width: 12px;
  }
  .step_progress .step:not(:last-child) {
    margin-right: 2.6rem;
  }
  span {
    font-size: 1.15rem;
    padding-bottom: 0.6rem;
  }
  h1 {
    font-size: 3.5rem;
  }
  .form_items li {
    font-size: 1rem;
    padding: 0.7375rem 3rem;
  }
  .f_btn {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.8375rem 1.4625rem;
  }
}
@media screen and (max-width: 991px) {
  .step_progress .step {
    width: 12px;
  }
  .step_progress .step:not(:last-child) {
    margin-right: 2rem;
  }
  span {
    font-size: 1rem;
  }
  h1 {
    font-size: 3.5rem;
    font-weight: 600;
  }
  .form_items li {
    font-size: 1rem;
  }
  .f_btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7375rem 1.3625rem;
  }
}
@media screen and (max-width: 767px) {
  .step_progress .step {
    width: 12px;
  }
  .step_progress .step:not(:last-child) {
    margin-right: 1.5rem;
  }
  span {
    font-size: 0.8rem;
  }
  h1 {
    font-size: 2.5rem;
    font-weight: 500;
  }
  .form_items li {
    font-size: 0.8rem;
  }
  .f_btn {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5375rem 1.1625rem;
  }
}
@media screen and (max-width: 575px) {
  span {
    font-size: 0.8rem;
  }
  h1 {
    font-size: 2rem;
    font-weight: 500;
  }
  .f_btn {
    font-size: 0.6rem;
    padding: 0.5375rem 1.1625rem;
  }
}
/* ====== Dropdown Start =====*/
.select-css {
  display: block;
  font-size: 16px;
  height: 62px; /* Set the desired height */
  line-height: 62px; /* Match line height to container height for vertical centering */
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.3;
  padding: .4em 1.4em .3em .8em;
  width: 400px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 20px auto;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, .03);
  border-radius: 2.3em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('arrow.svg'), 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-css::-ms-expand {
  display: none;
}
.select-css:hover {
  border-color: #888;
}
.select-css: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-css option {
  font-weight: normal;
}
.classOfElementToColor:hover {
  background-color: red;
  color: black
}
.select-css option[selected] {
  background-color: orange;
}
/* OTROS ESTILOS*/
.styled-select {
  width: 240px;
  height: 34px;
  overflow: hidden;
  background: url(new_arrow.png) no-repeat right #ddd;
  border: 1px solid #ccc;
}
.sidebar-box select {
  display: block;
  padding: 5px 10px;
  height: 42px;
  margin: 10px auto;
  min-width: 225px;
  -webkit-appearance: none;
  height: 34px;
  /* background-color: #ffffff; */
  background-image: url('arrow.svg'), 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%;
}
/* ====== Dropdown End =====*/
.borderless-input {
  border: none;
  outline: none;
  background-color: transparent; /* optional: to make the input background transparent */
}
.form-control-1 {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}