/* form,
form input,
form textarea,
form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

.section-registration {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px;
}

.registration-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  min-height: calc(100vh - 255px);
  display: flex;
  flex-flow: column nowrap;
}

.registration-banner {
  width: 100%;
}

.registration-banner-mobile {
  width: 100%;
  display: none;
}

.registration-logo {
  padding: 30px;
  background-color: var(--c-primary);
  display: flex;
  justify-content: center;
}

.registration-logo > img {
  height: 40px;
}

.registration-header {
  background-color: #fff;
  padding: 30px;
  border-bottom: 1px solid #e2e2e2;
  border-radius: 4px 4px 0 0;
}

.registration-tabs {
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  justify-content: space-evenly;
}

.registration-tab {
  padding: 16px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

.registration-tab.link {
  cursor: pointer;
}

.registration-tab.on {
  color: #333;
  border-bottom: 2px solid var(--c-primary);
}

.registration-tab-content {
  display: none;
}

.registration-tab-content.on {
  display: block;
}

.registration-body {
  padding: 25px 40px;
  min-height: calc(100vh - 409px);
}

.registration-body > div {
  flex: 1;
}

.container-sep-vertical {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 12px 0;
}

.registration-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.4em;
}

.registration-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.4em;
}

.registration-section-title {
  font-size: var(--fz-lg);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  margin-top: 20px;
}

.price {
  font-size: var(--fz-lg);
  font-weight: 500;
}

.discount-message {
  line-height: 1.4em;
  font-size: 14px;
  color: #27ae60;
  padding: 8px 0;
  font-weight: 500;
}

.discount-message.error{
  color: var(--color-danger);
}

.gdpr {
  font-size: var(--fz-xs);
  margin-top: var(--spacer-4xl);
  color: var(--c-text-darkgray);
}

.gdpr-table {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border: 1px solid var(--c-gray-400);
  border-radius: var(--radius-md);
}

.gdpr-title {
  margin-bottom: var(--spacer-xs);
  font-weight: var(--fw-bold);
  font-size: var(--fz-md);
  text-transform: uppercase;
}

.gdpr-name {
  font-weight: var(--fw-bold);
  font-size: 0.81rem;
  padding: 7px;
  border-right: 1px solid var(--c-gray-300);
  border-top: 1px solid var(--c-gray-300);
}

.gdpr-value {
  line-height: 1.3;
  padding: 7px;
  border-top: 1px solid var(--c-gray-300);
}

.gdpr-value li {
  margin-left: 1em;
  list-style: disc;
}

.gdpr-value a {
  text-decoration: underline;
}

.gdpr-name:first-child,
.gdpr-value:nth-child(2) {
  border-top: 0;
}

.form-title {
    font-weight: 500;
    font-size: 16px;
}

.form-input {
  font-size: var(--fz-base);
  width: 100%;
  padding: var(--spacer-xs) var(--spacer-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-gray-400);
  outline: none;
  transition: all var(--transition-md);
}

.form-input:hover,
.form-input:focus,
.form-input:active {
  border: 1px solid #000;
}

.form-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.4em;
  margin-top: 4px;
}

.ticket-description,
.session-description {
  color: #333;
  font-size: 14px;
  line-height: 1.6em;
  margin: 16px 0;
  word-break: break-word;
}

.session-description {
  margin: 8px 0;
}

.terms-text {
  color: rgba(0, 0, 0, 0.5);
  margin: var(--spacer) 0;
  line-height: 1.4em;
  font-size: 14px;
}

.registration-payment {
  margin-bottom: 40px;
}

.registration-price-title {
  font-size: 14px;
  font-weight: var(--fw-bold);
}

.registration-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacer);
}

.container-confirm {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.registration-poweredby {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacer-2xl) 0;
  background: var(--c-primary-dark);
}

.registration-poweredby img {
  height: 15px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .section-registration {
    padding: 0;
  }
  .gdpr-table {
    grid-template-columns: 1fr;
  }
  .gdpr-name {
    border-right: 0;
    border-top: 0;
  }
  .gdpr-value {
    border-top: 0;
  }
  .registration-tab {
    font-size: 12px;
    padding: 9px;
    width: 33%;
    text-align: center;
  }
  .registration-body {
    min-height: calc(100vh - 386px);
    min-height: -webkit-fill-available;
  }
  .registration-banner {
    display: none;
  }
  .registration-banner-mobile {
    display: inline-block;
  }
}

.dis .cb-desc {
  cursor: inherit;
}

.cb-desc {
  width: fit-content;
}

.cb.dis {
  border-color: #eee;
  background-color: #eee;
}

.button.event-color:disabled {
  border-color: #eee;
  background-color: #eee;
}

.registration-body .closed-inscriptions {
  display: inline-block;
  margin: 1em 0;
  padding: 1em;
  border: 0.05em solid #b00020;
  border-left: 0.5em solid #b00020;
  border-radius: 4px;
  color: #b00020;
}

.registration-body .closed-inscriptions i {
  color: red;
  margin-right: 0.5em;
}

.btn--upload:disabled {
  border-color: #eee;
  background-color: #eee;
}

.btn--upload:disabled .text-upload {
  color: #fff;
}

.btn--upload:disabled i {
  color: #fff;
}


/* ---- MODIFICACIÓN EVENTOPLUS ---- */

/* Modal de compartir */

.mm-landing .modal-body-cont {
  max-height: 92vh;
}

.share__container {
  position: relative;
  height: 100%;
}

.share__linkedin {
  display: none;
  /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
}

.share__eventoplus__head {
  text-align: center;
  padding-top: 40px;
}

.share__eventoplus__head--icon {
  font-size: 3em;
  color: #4e54a7;
}

.share__eventoplus__head--title,
.share__linkedin--title {
  font-family: "Roboto";
  font-size: 16px;
  margin: 2% 0;
  font-weight: bold;
}

.text-to-share {
  font-family: "Roboto";
  font-size: 14px;
  text-align: center;
  color: #333;
  padding: 1% 0;
}

.modal-line-button {
  color: #4e54a7;
  font-weight: 500;
  border-radius: 3px;
  border: solid 1px #4e54a7;
  background-color: #fff;
  align-items: center;
  justify-self: right;
  padding: 2%;
  width: fit-content;
  cursor: pointer;
}

.modal__share__content__buttons {
  display: grid;
  grid-template-columns: repeat(4, 70px);
  grid-template-rows: 70px;
  gap: 2%;
  justify-content: center;
  padding: 5% 0;
}

.share-icon {
  color: #fff;
  font-size: 28px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 0;
  cursor: pointer;
}

#linkedin-share-button {
  background-color: #0e76a8;
}

#email-share-button {
  background-color: #888;
}

#whatsapp-share-button {
  background-color: #00bb2d;
}

#link-share-button {
  background-color: #ffffff;
  border: solid 1px gray;
  color: #888;
}

@media (max-width: 450px) {
    .share__linkedin--content {
        margin-top: 16px;
    }
    .modal__share__content {
        font-size: 14px;
        color: #333;
        line-height: 1.4em;
    }
    .share-copy-button {
        justify-self: center;
    }
    .modal__share__content__buttons {
        grid-template-rows: 62px;
        grid-template-columns: repeat(4, 62px);
        gap: 5%;
        padding: 8% 5% 5% 5%;
    }
    .modal-form-success .share-icon {
        font-size: 28px;
    }
}

.content-confirm i.fa-check-circle{
    font-size: 80px;
    color: #38c172;
    margin-bottom: 16px;
}

.content-confirm i {
  font-size: 80px;
  color: #38c172;
  margin-bottom: 16px;
}
.content-confirm .fa-share-alt {
  color: #38c172;
  font-size: 48px;
}
.content-confirm-i {
  font-size: 28px !important;
  margin-bottom: 0px !important;
  color: inherit !important;
}

/* Modal de LinkedIn */

.share__linkedin--head {
  display: grid;
  gap: 2%;
  padding: 8% 0% 0% 0;
  text-align: center;
}

.share__linkedin--head #linkedin-share-button {
  width: 70px;
  height: 70px;
  display: grid;
  align-content: center;
  justify-self: center;
}

.step-linkedin .share__linkedin--title {
  font-weight: 500;
}

/*Texto a compartir */

.text-share-box {
  /* display: grid; */
  background: #f6fdff;
  border: solid 1px #d7d7d7;
  padding: 6%;
  border-radius: 5px;
  margin-bottom: 16px;
}

.text-share-box .text-to-share {
  text-align: left;
}

.text-share-box .share__button__text {
  margin-top: 16px;
}

/*Boton de publicar*/

.share__button {
  display: grid;
}

.share__button__text {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 500;
  color: white;
  justify-self: right;
  background: #4e54a7;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-top: 8px;
}

.share__button .share__button__text {
  margin-left: 0;
  margin-right: auto;
  padding: 2% 5%;
}

/* Boton de volver */

.modal-back-button {
  display: grid;
}

.modal-back-button .share__button__text {
  background: unset;
  color: #4e54a7;
  border: solid 1px;
  padding: 2% 5%;
  justify-self: right;
  cursor: pointer;
}

.share__button {
  text-decoration: none;
}

/* Codigo para justificar/romper frases y evitar bug responsive */

.terms-text {
  word-break: break-word;
}

@media screen and (min-width: 998px) {
  .share-icon {
    font-size: 28px;
  }
  .text-share-box {
    /* display: grid; */
    background: #f6fdff;
    border: solid 1px #d7d7d7;
    padding: 3%;
    border-radius: 5px;
    margin-bottom: 16px;
  }
}

/*
* Card products
*/

.registration-payment .products {
  margin: 12px -8px 0;
}
.columns.products .column {
  padding: 0 8px;
  margin-bottom: 16px;
}

.card-products {
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
}

.card-products__image {
  min-height: 120px;
  margin-bottom: 8px;
}

.card-products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-products__content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.card-products__content .card_products__content--title {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.4;
}

.card-products__content .card_products__content--desc {
  font-weight: 400;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 50px;
}
.card-products__content .card_products__content--desc.mm-msg-limited {
  font-size: 10px;
  color: red;
  margin-top: 5px;
  display: none;
}

.card-products__content .card_products__content--price {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
}

.card-products__content .card_products__content--button {
  width: 100%;
  margin-top: auto;
}

.card-products__content .card_products__content--button button {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
  /* margin-bottom: 4px; */
  border-radius: 3px;
  border: solid 1px var(--c-theme-primary);
  background-color: #fff;
  color: var(--c-theme-primary);
  cursor: pointer;
}

.card-products__content .card_products__content--button button:disabled {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
  /* margin-bottom: 4px; */
  border-radius: 3px;
  border: solid 1px #888;
  background-color: #888;
  color: #FFF;
  cursor: pointer;
}

.card-products__content .card_products__content--button button:disabled:hover {
  border: solid 1px #888;
  background-color: #888;
  color: #FFF;
}

.card-products__content .card_products__content--button button:hover {
  border: solid 1px var(--c-theme-primary);
  background-color: var(--c-theme-primary);
  color: #fff;
}

.price_wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.value-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border: 1px solid var(--c-theme-primary);
  margin: 0px;
  width: 48px;
  height: 35px;
  text-align: center;
  vertical-align: middle;
  padding: 11px 0;
  background: var(--c-theme-primary);
  color: #FFF;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.value-button:hover {
  cursor: pointer;
}

.product_decrease_units {
  border-radius: 3px 0 0 3px;
}

.product_increase_units {
  border-radius: 0 3px 3px 0;
}

form #increase.dis {
    border-radius: 0 3px 3px 0;
    cursor: auto;
    background-color: #888;
  }

form #input-wrap {
  margin: 0px;
  padding: 0px;
}

.product_num_units {
  display:flex;
  justify-content:center;
  align-items:center;
  border: none;
  border-top: 1px solid var(--c-theme-primary);
  border-bottom: 1px solid var(--c-theme-primary);
  margin: 0px;
  width: 60px;
  height: 35px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
