:root {
    --color-orange: #ff4a38;
    --coral: #ff4a38;
    --color-orange-light: #fad38d;
    --color-yellow: #ffce32;
    --color-white: #FFFFFF;
    --color-gray: #4D4C4C;
    --color-gray-light: #fff8ed;
    --color-black: #000000;
}

@font-face {
	font-family: BarlowLight;
	src: url(../fonts/Barlow-Light.woff) format("woff");
}

@font-face {
	font-family: BarlowRegular;
	src: url(../fonts/Barlow-Regular.woff) format("woff");
}
  
@font-face {
	font-family: BarlowBold;
	src: url(../fonts/Barlow-Bold.woff) format("woff");
}

  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.6);
  }
  .modal .content {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
  }
  @media (min-width: 768px) {
    .modal .content {
      min-height: inherit;
    }
  }
  .modal .content .container {
    padding: 100px 20px 140px;
  }
  @media (min-width: 568px) {
    .modal .content .container {
      padding: 50px 20px 80px;
    }
  }
  @media (min-width: 768px) {
    .modal .content .container {
      /*padding: 70px 0px 90px;*/
      max-width: 600px;
      margin: 0 auto;
    }
  }
  .modal .content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    letter-spacing: 0.05rem;
    color: #3e4146;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  .modal .content .close:hover {
    cursor: pointer;
    color: #f66867;
  }

  .modal .content .title h1 {
    text-align: center;
    color: #ff4a38;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: 0.05rem;
  }
  
  .modal p, .disc {
    font-family: "BarlowRegular", sans-serif;
  }

  .modal.open {
    z-index: 999;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  .f-modal-alert .f-modal-icon {
    border-radius: 50%;
    border: 4px solid gray;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto 24px;
    padding: 0;
    position: relative;
    width: 80px;
  }
  .f-modal-alert .f-modal-icon.f-modal-success, .f-modal-alert .f-modal-icon.f-modal-error {
    border-color: #A5DC86;
  }
  .f-modal-alert .f-modal-icon.f-modal-success:after, .f-modal-alert .f-modal-icon.f-modal-success:before, .f-modal-alert .f-modal-icon.f-modal-error:after, .f-modal-alert .f-modal-icon.f-modal-error:before {
    background: #fff;
    content: "";
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
  }
  .f-modal-alert .f-modal-icon.f-modal-success:before, .f-modal-alert .f-modal-icon.f-modal-error:before {
    border-radius: 120px 0 0 120px;
    left: -33px;
    top: -7px;
    transform-origin: 60px 60px;
    transform: rotate(-45deg);
  }
  .f-modal-alert .f-modal-icon.f-modal-success:after, .f-modal-alert .f-modal-icon.f-modal-error:after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform-origin: 0 60px;
    transform: rotate(-45deg);
  }
  .f-modal-alert .f-modal-icon.f-modal-success .f-modal-placeholder, .f-modal-alert .f-modal-icon.f-modal-error .f-modal-placeholder {
    border-radius: 50%;
    border: 4px solid rgba(165, 220, 134, 0.2);
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
  }
  .f-modal-alert .f-modal-icon.f-modal-success .f-modal-fix, .f-modal-alert .f-modal-icon.f-modal-error .f-modal-fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
  }
  .f-modal-alert .f-modal-icon.f-modal-success .f-modal-line, .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line {
    background-color: #A5DC86;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
  }
  .f-modal-alert .f-modal-icon.f-modal-success .f-modal-line.f-modal-tip, .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
  }
  .f-modal-alert .f-modal-icon.f-modal-success .f-modal-line.f-modal-long, .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
  }
  .f-modal-alert .f-modal-icon.f-modal-error {
    border-color: #F27474;
  }
  .f-modal-alert .f-modal-icon.f-modal-error .f-modal-x-mark {
    display: block;
    position: relative;
    z-index: 2;
  }
  .f-modal-alert .f-modal-icon.f-modal-error .f-modal-placeholder {
    border: 4px solid rgba(200, 0, 0, 0.2);
  }
  .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line {
    background-color: #F27474;
    top: 37px;
    width: 47px;
  }
  .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-left {
    left: 17px;
    transform: rotate(45deg);
  }
  .f-modal-alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-right {
    right: 16px;
    transform: rotate(-45deg);
  }
  .f-modal-alert .f-modal-icon + .f-modal-icon {
    margin-top: 50px;
  }
  
  .animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
            animation: animateSuccessTip 0.75s;
  }
  
  .animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
            animation: animateSuccessLong 0.75s;
  }
  
  .f-modal-icon.f-modal-success.animate:after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
            animation: rotatePlaceholder 4.25s ease-in;
  }
  
  .f-modal-icon.f-modal-error.animate:after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
            animation: rotatePlaceholder 4.25s ease-in;
  }
  
  .animateErrorIcon {
    -webkit-animation: animateErrorIcon 0.5s;
            animation: animateErrorIcon 0.5s;
  }
  
  .animateXLeft {
    -webkit-animation: animateXLeft 0.75s;
            animation: animateXLeft 0.75s;
  }
  
  .animateXRight {
    -webkit-animation: animateXRight 0.75s;
            animation: animateXRight 0.75s;
  }
  
  @-webkit-keyframes animateSuccessTip {
    0%, 54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }
  
  @keyframes animateSuccessTip {
    0%, 54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }
  @-webkit-keyframes animateSuccessLong {
    0%, 65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
  @keyframes animateSuccessLong {
    0%, 65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
  @-webkit-keyframes rotatePlaceholder {
    0%, 5% {
      transform: rotate(-45deg);
    }
    100%, 12% {
      transform: rotate(-405deg);
    }
  }
  @keyframes rotatePlaceholder {
    0%, 5% {
      transform: rotate(-45deg);
    }
    100%, 12% {
      transform: rotate(-405deg);
    }
  }
  @-webkit-keyframes animateErrorIcon {
    0% {
      transform: rotateX(100deg);
      opacity: 0;
    }
    100% {
      transform: rotateX(0deg);
      opacity: 1;
    }
  }
  @keyframes animateErrorIcon {
    0% {
      transform: rotateX(100deg);
      opacity: 0;
    }
    100% {
      transform: rotateX(0deg);
      opacity: 1;
    }
  }
  @-webkit-keyframes animateXLeft {
    0%, 65% {
      left: 82px;
      top: 95px;
      width: 0;
    }
    84% {
      left: 14px;
      top: 33px;
      width: 47px;
    }
    100% {
      left: 17px;
      top: 37px;
      width: 47px;
    }
  }
  @keyframes animateXLeft {
    0%, 65% {
      left: 82px;
      top: 95px;
      width: 0;
    }
    84% {
      left: 14px;
      top: 33px;
      width: 47px;
    }
    100% {
      left: 17px;
      top: 37px;
      width: 47px;
    }
  }
  @-webkit-keyframes animateXRight {
    0%, 65% {
      right: 82px;
      top: 95px;
      width: 0;
    }
    84% {
      right: 14px;
      top: 33px;
      width: 47px;
    }
    100% {
      right: 16px;
      top: 37px;
      width: 47px;
    }
  }
  @keyframes animateXRight {
    0%, 65% {
      right: 82px;
      top: 95px;
      width: 0;
    }
    84% {
      right: 14px;
      top: 33px;
      width: 47px;
    }
    100% {
      right: 16px;
      top: 37px;
      width: 47px;
    }
  }

a:hover, a:focus {
    color: var(--coral) !important;
}

label {
  margin: 0;
}

h1 {
    font-size: 54px;
    margin: 0 0 10px;
}

h1, b {
    font-family: 'BarlowBold', sans-serif;
}

h1, p, .form-control, .control {
  color: var(--color-black);
}

.titulo-programa {
  color: var(--color-black);
}

h1 span {
    font-size: 30px;
    display: block;
    font-family: 'BarlowRegular', sans-serif;
}

nav {
  background-color: transparent;
  width: 100%;
}

footer {
  background-color: #ffffff;
}

nav, footer {
  padding: 20px;
}

nav img {
  height: 70px;
}

footer img {
  height: 60px;
}

footer p {
  font-size: 12px;
}

footer {
  bottom: 0;
  width: 100%;
}

main, body {
    height: 100%;
}

textarea {
    width: 100%;
    resize: none;
    height: 200px;
    margin-top: 20px;
    border-radius: 6px;
}

header {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/fondo-evento.jpg?v=1.3');
}

.container:before, .container:after {
    display: none;
}

.caja-naranja, .hora-programa {
    padding: 2px 10px;
    margin-bottom: 10px;
}

.caja-naranja {
    background-color: var(--color-yellow);
}

.caja-naranja span {
  color: var(--color-orange);
}

.hora-programa {
    margin-right: 5px;
    color: var(--color-white);
    background-color: var(--color-orange);
}

.caja-naranja p {
  color: var(--color-black);
  letter-spacing: 2px;
}

.caja-lugar p, .caja-naranja p {
    text-transform: uppercase;
}

.ponente p {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.titulo, .caja-lugar p, .caja-horario p, .caja-naranja p, .ponente p, .hora-programa, .titulo-programa {
    font-family: "BarlowBold", sans-serif;
}

.caja-lugar, .caja-horario, .caja-naranja {
    display: inline-block;
}

.caja-logos {
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-white);
}

.caja-logos img {
    height: 50px;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.gap-4 {
  gap: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.form-registro a, .enlace {
    color: #fd4a37;
}

.mt-50 {
	margin-top: 50px;
}

.mb-20 {
	margin-bottom: 20px;
}

.titulo-covid {
	color: #fff;
	display: inline-block;
	letter-spacing: -0.5px;
	background-color: #fd4a37;
}

.texto-jornada {
    letter-spacing: 10px;
}

.texto-jornada, .titulo-programa, .hora-programa {
    text-transform: uppercase;
}

.hora-programa, .titulo-programa, .lugar-programa {
	margin-bottom: 4px !important;
	display: inline-block;
}

.datos-programa {
	display: inline-block;
  margin-bottom: 10px;
}

.content-header ul li {
  display: flex;
  margin-bottom: 0px !important;
}

ul:not(.nav-tabs):not(.tabs):not(.arrow):not(.check) li:not(.menu-item)::before {
  width: 0px !important;
}

.form-control {
    margin: 10px 0;
    border-radius: 6px;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 20px !important;
    font-family: "BarlowRegular", sans-serif;
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.content-body, .header {
    padding: 60px;
}

.header, .body {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
}

.h-full {
  height: 100%;
}
/*
.content-header {
  padding: 20px;
  margin-top: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.25);
}
*/
.body {
  background-color: var(--color-gray-light);
}

.header {
  background-color: var(--color-orange-light);
}

.btn {
    border: none;
    color: #fff;
    padding: 15px 30px !important;
    border-radius: 30px !important;
    background-color: var(--color-orange);
    font-family: "BarlowBold", sans-serif !important;
}

.text-finalizado {
    color: var(--color-white);
}

.box-policity {
    padding: 50px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
}

#form_evento {
  padding-top: 20px;
}

.input_group {
  gap: 10px;
  display: flex;
}

.input_group input {
  margin: 5px 0;
}

.policity {
    display: flex;
    align-items: center;
}

.policity a {
    color: var(--color-orange);
}

.policity input[type="checkbox"] {
    margin: 0 !important;
}

.policity input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: none !important;
}

.control {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'BarlowRegular', sans-serif;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.05);
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: rgba(0, 0, 0, 0.05);
}

.control input:checked ~ .control__indicator,
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: rgba(0, 0, 0, 0.05);
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    display: none;
    position: absolute;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--color-orange);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.form-control::-webkit-input-placeholder {
    color: var(--color-blue) !important;
}

.form-control::-moz-placeholder {
    color: var(--color-blue) !important;
}

.form-control:-ms-input-placeholder {
    color: var(--color-blue) !important;
}

.form-control::placeholder {
    color: var(--color-blue) !important;
}

/*@media (min-width: 1140px) {
    .container {
        width: 1320px;
    }
}*/

@media screen and (max-width: 1024px) {
    header {
        height: 400px;
        background-position: top;
    }
    label {
        font-size: 18px;
        line-height: 1.5;
    }
    main {
      position: relative;
    }
    main, .input_group {
        flex-direction: column;
    }
    .input_group {
      gap: 0px;
    }
    .input_group input {
      width: 100%;
    }
    .logo-mobile {
      display: block;
    }
    .content-header, .content-body, .header {
      padding: 10px;
    }
    .header, .body {
        width: 100%;
    }
    .check-reply {
        font-size: 14px;
    }
    .control {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
  header {
      height: 300px;
  }
}

@media screen and (max-width: 576px) {
    header {
      height: 200px;
    }
    main, body {
        height: 100%;
    }
    nav img, footer img {
      height: 40px;
    }
    h1 {
      font-size: 32px;
    }
    .d-flex.h-full {
      display: block !important;
    }
    .content-body img {
        width: 150px;
        margin: 0;
    }
    .caja-logos img {
        height: 30px;
    }
    .content-body, .caja-logos {
        padding: 10px;
    }
    .content-header {
      padding: 0;
    }
}

@media screen and (max-width: 360px) {
    nav img, footer img {
        height: 30px;
    }
}