/* 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;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration-form {
  position: relative;
  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 - 171px);
  display: flex;
  flex-flow: column nowrap;
  /* justify-content:center; */
}

.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 {
  position: relative;
  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;
}

.content-confirm .container-sep-vertical {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 12px 0;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
}

.registration-body {
  padding: 25px 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: flex;
    align-items: stretch;
    flex: 1; */
}

.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;
  padding-top: 24px;
}

.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);
}

.registration-form__section__description {
  word-break: break-word;
}

.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);
  word-break: break-word;
}

.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;
}

.linkedin-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid #e2e2e2;
}

.linkedin-wrapper--inner {
  max-width: 66%;
  width: 100%;
}

.session-wrapper {
  display: flex;
  align-items: inherit;
}

.session-wrapper .img-wrapper {
  width: 20%;
  height: auto;
  background: #d8d8d8;
  border-radius: 4px;
}
.img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.info-wrapper {
  width: 70%;
}

.info-wrapper .name {
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.info-wrapper .session-price {
  font-size: 12px;
}
.info-wrapper .f-info {
  flex-direction: column;
  margin-top: 0;
}

.info-wrapper-last {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
}
.session-wrapper {
  padding-right: 32px;
}

.sessions-field::-webkit-scrollbar {
  width: 4px;
}

.sessions-field::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sessions-field::-webkit-scrollbar-thumb {
  background: #888888;
}

.sessions-field::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.session-wrapper-pack {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}

.shape-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: 0.2s;
  /* cursor: pointer; */
  border-style: solid;
  background-size: cover;
  background-origin: border-box;
  background-position: top left;
}
/* .shape-photo:hover {
  background-color: #e8e8e8;
} */

.field-avatar {
  position: relative;
  display: inline-block;
}

.avatar-holder {
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
}

.avatar-upload {
  right: 0;
  top: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1);
  transition: all .3s;
}

.avatar-upload i {
  color: var(--event-color);
  font-size: .9rem;
}

.avatar-upload:hover {
  background-color: var(--event-color);
  transition: all .3s;
}

.avatar-upload:hover i, .avatar-rotate:hover i {
  color: #fff;
}

.error {
  border-color: red !important;
}

button.error span, button.error i {
  color: red !important;
}


.calendar__share--button{
  position: relative;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  cursor: pointer;
}
.calendar__share--button i{
  font-size: 32px;
  color: #000;
}

.calendar__share--button img{
  width: 42px;
}
.calendar__share--button:hover{
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}


.searcher > i {
  color: #999;
  font-size: 14px;
  width: 24px;
  line-height: 24px;
  padding: 6px;
  text-align: center;
}
.selectize-input {
  font-size: var(--fz-base);
  width: 100%;
  padding: 8px 12px !important;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-gray-400);
  outline: none;
  transition: all var(--transition-md);
}

.selectize-control{
  width: 100% !important;
}
.selectize-input, .selectize-control.single .selectize-input{
  background-color: #fff !important;
  width: 100% !important;
}
.selectize-input, .selectize-control.single .selectize-input.input-active{
  background-color: #fff !important;
  width: 100% !important;
}
.selectize-input.focus {
  box-shadow: none !important;
}
.selectize-dropdown {
  width: 100% !important;
}

.selectize-input input {
  width: auto !important;
}

.section-header {
  align-items: center;
}

.selectize-input.full{ background-color:#f2f2f2; }
.selectize-input, .selectize-control.single .selectize-input.input-active{ background-color:#f2f2f2; }
.search-option{ padding:8px; border-bottom:1px solid #e2e2e2; text-align:left; }
.search-option > .name{ font-size:15px; font-weight:500; color:#333; }
.search-option > .email{ font-size:15px; font-weight:400; color:#777; }

.esade-change-account{
  position: absolute;
  top: 4px;
  left: 10px;
}
.esade-change-account span{
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}