@import url("https://fonts.googleapis.com/css?family=Karla:700|Lato:300,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#page {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 75px;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dn {
  display: none;
}

p {
  line-height: 1.4;
}

.header {
  font-family: "Karla", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.block {
  display: block !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center;
}

@media (max-width: 950px) {
  .only-desktop {
    display: none !important;
  }
}
@media (min-width: 950px) {
  .no-desktop {
    display: none !important;
  }
}
@media (min-width: 950px) {
  .only-tablet {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .only-tablet {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 950px) {
  .no-tablet {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .only-sm {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .no-sm {
    display: none !important;
  }
}
.pt-1 {
  padding-top: 0.5em;
}

.pt-2 {
  padding-top: 1em;
}

.pt-4 {
  padding-top: 2em;
}

.pb-2 {
  padding-bottom: 1em;
}

.pb-4 {
  padding-bottom: 2em;
}

.py-2 {
  padding-top: 1em;
  padding-bottom: 1em;
}

.py-4 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.mb-2 {
  margin-bottom: 1em;
}

.mb-4 {
  margin-bottom: 2em;
}

.mb-6 {
  margin-bottom: 3em;
}

.mt-2 {
  margin-top: 1em;
}

.mt-4 {
  margin-top: 2em;
}

.mx-2 {
  margin-right: 1em;
  margin-left: 1em;
}

.dark-filter-1 {
  background: rgba(0, 0, 0, 0.1);
}

.dark-filter-2 {
  background: rgba(0, 0, 0, 0.2);
}

.dark-filter-3 {
  background: rgba(0, 0, 0, 0.3);
}

.dark-filter-4 {
  background: rgba(0, 0, 0, 0.4);
}

.dark-filter-5 {
  background: rgba(0, 0, 0, 0.5);
}

.dark-filter-6 {
  background: rgba(0, 0, 0, 0.6);
}

.dark-filter-7 {
  background: rgba(0, 0, 0, 0.7);
}

.dark-filter-8 {
  background: rgba(0, 0, 0, 0.8);
}

.light-filter-1 {
  background: rgba(255, 255, 255, 0.1);
}

.light-filter-2 {
  background: rgba(255, 255, 255, 0.2);
}

.light-filter-3 {
  background: rgba(255, 255, 255, 0.3);
}

.light-filter-4 {
  background: rgba(255, 255, 255, 0.4);
}

.light-filter-5 {
  background: rgba(255, 255, 255, 0.5);
}

.light-filter-6 {
  background: rgba(255, 255, 255, 0.6);
}

.light-filter-7 {
  background: rgba(255, 255, 255, 0.7);
}

.light-filter-8 {
  background: rgba(255, 255, 255, 0.8);
}

.shadow-1 {
  -webkit-box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
}

img.bw {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

hr {
  border: none;
  border-bottom: 0.05em solid;
}

.success {
  color: #2ecc71;
}

.error {
  color: #e74c3c;
}

.pop {
  font-size: 13px;
  width: 400px;
  max-width: 90%;
  padding: 1em;
  padding-right: 3em;
  border-radius: 3px;
  border: 0.05em solid;
  margin: 1em auto;
}
.pop .close-pop {
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 14px;
  font-weight: bold;
  opacity: 0.75;
}
.pop .close-pop:hover {
  opacity: 1;
}

.pop.error {
  position: relative;
  background-color: #fdf3f2;
}

.btn {
  cursor: pointer;
  padding: 1em 2em;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.35s ease;
}

.btn.disabled {
  cursor: auto;
  background-color: #f5f5f5 !important;
  color: #aaa !important;
  border-color: #aaa !important;
}

.modal-form-success, .modal-form-success div {
  font-family: "Lato", sans-serif !important;
}

.snackbar {
  font-family: "Lato", sans-serif !important;
}

.form-page {
  /* *** CHECKBOX *** */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.form-page * {
  font-family: "Lato", sans-serif !important;
}
.form-page .fa, .form-page .far, .form-page .fas {
  font-family: "Font Awesome 5 Free" !important;
}
.form-page .fab {
  font-family: "Font Awesome 5 Brands" !important;
}
.form-page .header {
  font-family: "Karla", sans-serif !important;
}
.form-page .form-cabecera {
  margin-bottom: 3em;
}
.form-page .form-header-height-auto {
  position: relative;
}
.form-page .form-header-height-auto img {
  display: block;
}
.form-page .form-header-height-auto .header-logo {
  /* background: rgba(0, 0, 0, 0.2); */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form-page .form-header-height-auto .header-logo img {
  height: 70px;
  max-height: 75%;
}
.form-page .form-container {
  max-width: 650px;
}
.form-page .form-section {
  padding: 0 1em;
  margin: 0 auto;
}
.form-page .form-footer {
  padding: 0 1em;
  margin-top: 1em;
}
.form-page .header-image {
  width: 100%;
}
.form-page .section-title {
  font-size: 18px;
  margin-bottom: 0.5em;
  margin-top: 1em;
  padding-top: 1.5em;
  border-top: 0.05em solid #eee;
}
.form-page .section-description {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  margin-bottom: 1em;
}
.form-page .fields {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.form-page .field, .form-page .field-fw {
  margin-bottom: 1em;
}
.form-page .field {
  display: inline-block;
  width: 45%;
  margin-right: 2%;
  margin-left: 2%;
}
.form-page .field-fw {
  width: 94%;
  margin-right: 2%;
  margin-left: 2%;
}
.form-page input[type=text], .form-page input[type=date], .form-page input[type=password], .form-page input[type=url], .form-page select, .form-page textarea {
  -webkit-appearance: none;
  padding: 0.5em !important;
  font-weight: 100;
  font-size: 14px;
  color: #666;
  background-color: transparent;
  outline: none;
  display: block;
  margin: 0.25em auto;
  border: 0.05em solid #ccc;
  border-radius: 5px;
  padding: 0.5em;
  width: 100%;
}
.form-page select::-ms-expand {
  display: none;
  /*Evita que se muestre la flecha por defecto en versiones de IE*/
}
.form-page .mm-select {
  position: relative;
}
.form-page .mm-select d select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  -ms-word-break: normal;
  word-break: normal;
}
.form-page .mm-select select:hover {
  cursor: pointer !important;
}
.form-page .mm-select::after {
  content: ">";
  font: 13px "Consolas", monospace;
  color: #aaa;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 0.5em;
  /*Adjust for position however you want*/
  top: 0.25em;
  padding: 0.5em;
  /*left line */
  position: absolute;
  pointer-events: none;
}
.form-page textarea {
  width: 100%;
}
@media (max-width: 2500px) {
  .form-page .field, .form-page .field-fw {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .form-page textarea {
    width: 100%;
  }
}
.form-page .btn-upload {
  background-color: transparent;
  outline: none;
  display: block;
  width: 100%;
  margin: 0.25em auto;
  border: 0.05em solid;
}
.form-page .btn-upload {
  padding: 0.8em 2em;
}
.form-page .btn-upload, .form-page .btn-upload * {
  font-size: 12px !important;
}
.form-page .btn-upload i {
  width: 25px;
}
.form-page .btn-upload div {
  text-align: center;
}
.form-page textarea {
  height: 5em;
}
.form-page input:focus, .form-page select:focus, .form-page textarea:focus {
  border-color: #303;
}
.form-page .input-description {
  font-size: 13px;
  font-weight: thin;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 100;
}
.form-page .multichoice {
  margin: 0.75em 1em 0 1em;
}
.form-page .multichoice label {
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.form-page .multichoice label span {
  font-weight: 100;
}
@media (max-width: 2500px) {
  .form-page .multichoice {
    margin: 1em 0.5em 0 0.5em;
  }
  .form-page .multichoice label {
    margin: 0.75em auto;
  }
  .form-page .multichoice span {
    font-weight: 100;
  }
}
.form-page .legal-advice, .form-page .legal-advice a {
  line-height: 1.4;
}
.form-page .legal-advice a, .form-page .legal-advice a a {
  color: #3498DB;
}
.form-page .legal-advice a:hover, .form-page .legal-advice a a:hover {
  color: black;
}
.form-page .btn-submit {
  border: 0.05em solid;
}
@media (max-width: 2500px) {
  .form-page div.submit {
    text-align: center;
  }
}
.form-page input:disabled, .form-page textarea:disabled, .form-page select:disabled {
  background-color: #f5f5f5 !important;
  color: #aaa !important;
}
.form-page .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;
}
.form-page .closed-inscriptions i {
  color: red;
  margin-right: 0.5em;
}
.form-page .cb {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #2980b9;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.1s;
}
.form-page .cb:hover, .form-page .cb:focus {
  background-color: rgba(41, 128, 185, 0.1);
}
.form-page .cb.on {
  background-color: #2980b9;
}
.form-page .cb.dis, .form-page .cb.disabled {
  border-color: #cdcdcd;
}
.form-page .cb.on.dis {
  border-color: #ababab;
  background-color: #d2d2d2;
}
.form-page .mm-checkbox-container {
  cursor: pointer;
  font-weight: 100;
  display: block;
  position: relative;
  padding-left: 25px;
  padding-bottom: 0.5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-page .mm-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-page .mm-checkbox-container.label {
  font-weight: normal;
}
.form-page .mm-checkbox-container.disabled {
  cursor: auto !important;
}
.form-page .mm-checkbox {
  border-radius: 3px;
  position: absolute;
  top: 1px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ddd;
}
.form-page .mm-checkbox-container:hover input ~ .mm-checkbox {
  background-color: #ccc;
}
.form-page .mm-checkbox-container:hover .mm-checkbox {
  background-color: #ccc;
}
.form-page .mm-checkbox-container input:checked ~ .mm-checkbox {
  background-color: #3498DB;
}
.form-page .mm-checkbox-container.checked .mm-checkbox {
  background-color: #3498DB !important;
}
.form-page .mm-checkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.form-page .mm-checkbox-container input:checked ~ .mm-checkbox:after {
  display: block;
}
.form-page .mm-checkbox-container.checked .mm-checkbox:after {
  display: block;
}
.form-page .mm-checkbox-container .mm-checkbox:after {
  left: 5px;
  top: 3px;
  width: 2.5px;
  height: 5px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.form-page .mm-checkbox.disabled {
  background-color: #eee !important;
  border-color: #eee !important;
}
.form-page .mm-checkbox-container .mm-checkbox.disabled:after {
  border: solid #eee;
}

.modal-form-success {
  text-align: center;
  font-size: 22px;
}
.modal-form-success .modal-close {
  color: #2ecc71;
  width: 100%;
  padding: 0.5em auto;
}
.modal-form-success .modal-close:hover {
  color: #3498DB;
}
.modal-form-success i {
  font-size: 28px;
  margin-top: 0.5em;
}

.StripeElement {
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background-color: white;
  /* box-shadow: 0 1px 3px 0 #e6ebf1; */
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

#card-elementdisabled {
  box-sizing: border-box;
  height: 40px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f5f5f5;
}

.form-page.edit-form-bar {
  font-size: 13px;
  background-color: #f5f5f5;
  padding-bottom: 0;
}
.form-page.edit-form-bar * {
  font-size: 13px;
}
.form-page.edit-form-bar .edit-form-pannel {
  text-align: right;
  padding: 0.75em 2em;
  background-color: #f5f5f5;
}
.form-page.edit-form-bar .edit-form-pannel form {
  display: inline-block;
}
.form-page.edit-form-bar .edit-form-pannel input {
  display: inline-block;
}
.form-page.edit-form-bar .edit-form-pannel input[type=text], .form-page.edit-form-bar .edit-form-pannel input[type=password] {
  flex: 1;
  max-width: 180px;
}
.form-page.edit-form-bar .edit-form-pannel input[type=submit] {
  margin-left: 1em;
  border: 0.05em solid #3498DB;
  color: #3498DB;
  padding: 0.5em 2em;
  background-color: transparent;
  outline: none;
  transition: background-color, color 0.3s ease;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.form-page.edit-form-bar .edit-form-pannel input:focus {
  border-color: #3498DB;
}
.form-page.edit-form-bar .edit-form-pannel input[type=submit]:hover {
  background-color: #3498DB;
  color: #f5f5f5;
}
.form-page.edit-form-bar .edit-form-pannel label {
  width: 70px;
  text-align: right;
  padding-right: 0.5em;
}
.form-page.edit-form-bar .edit-form-pannel .form-login {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.form-page.edit-form-bar .edit-form-pannel .field-login {
  display: flex;
  min-width: 250px;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
}

.delete_btn {
  cursor: pointer;
  margin-top: 0.5em;
}

.delete_btn:hover {
  color: #3498DB;
}

.card-1 {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-1:hover {
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card-2 {
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.card-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.card-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.modal {
  padding: 2em;
}

.modal-title {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  margin: 1em;
}

.modal-logo img {
  display: block;
  max-height: 60px;
  margin: 1em auto;
  max-width: 100%;
}

.modal-desc {
  font-size: 16px;
  margin: 1em auto;
}

#login_page {
  font-family: "Lato", sans-serif;
  display: flex;
  flex-wrap: wrap;
}
#login_page span.sub-title {
  display: block;
  font-size: 75%;
  font-weight: 300;
}
#login_page a {
  text-decoration: none;
  color: #3498DB;
  padding: 0.25em 0;
}
#login_page a:hover {
  border-bottom: 0.01em solid;
}
#login_page .header {
  font-family: "Karla", sans-serif;
}
#login_page > div {
  min-width: 300px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#login_page h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
#login_page .event-info {
  -webkit-box-shadow: 10px 10px 35px -30px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 35px -30px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 35px -30px rgba(0, 0, 0, 0.75);
  color: white;
}
#login_page .event-info .header img.logo {
  max-height: 50px;
  max-width: 140px;
}
#login_page .event-info .welcome {
  margin: 1.5em 0;
}
#login_page .event-info .welcome p {
  line-height: 1.2;
  font-weight: 200;
  font-size: 14px;
}
#login_page .event-info .footers {
  display: flex;
  justify-content: space-between;
}
#login_page .event-info .footers a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1em;
}
#login_page .event-info .footers a:hover {
  color: white;
}
#login_page .event-info .footers img.by-meetmaps {
  height: 13px;
}
#login_page .login-pannel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #74788d;
  margin: 0 auto;
}
#login_page .login-pannel .top {
  font-size: 12px;
  text-align: right;
}
#login_page .login-pannel .top a {
  margin-left: 0.5em;
}
#login_page .login-pannel .form_login {
  color: #222b37;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  width: 100%;
}
#login_page .login-pannel form {
  width: 100%;
}
#login_page .login-pannel form * {
  font-family: "Lato", sans-serif;
}
#login_page .login-pannel form .field {
  width: 90%;
  max-width: 400px;
  min-width: 220px;
  margin: 1em auto;
}
#login_page .login-pannel form input[type=text], #login_page .login-pannel form input[type=password] {
  background-color: #F0F1F6;
  border-radius: 4px;
  width: 100%;
  padding: 1.2em;
  border: none;
}
#login_page .login-pannel form input[type=submit] {
  border: none;
  background-color: #3498DB;
  color: white;
  font-weight: 500;
  padding: 1em 2em;
  opacity: 0.8;
}
#login_page .login-pannel form input[type=submit]:hover {
  opacity: 1;
}
#login_page .login-pannel .login-btns {
  margin-top: 3em !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#login_page .login-pannel a.recovery {
  color: #74788d;
  font-size: 13px;
}
@media all and (max-width: 600px) {
  #login_page .login-pannel {
    width: 100%;
  }
}
@media all and (min-width: 600px) {
  #login_page {
    height: 100%;
  }
  #login_page > div {
    padding: 3em;
  }
  #login_page h2 {
    font-size: 26px;
  }
  #login_page .event-info {
    flex: 20;
  }
  #login_page .event-info .header img.logo {
    max-height: 65px;
    max-width: 170px;
  }
  #login_page .event-info .welcome {
    padding-right: 2em;
  }
  #login_page .event-info .welcome p {
    font-size: 16px;
  }
  #login_page .event-info .footers a {
    font-size: 13px;
  }
  #login_page .event-info .footers img.by-meetmaps {
    height: 14px;
  }
  #login_page .login-pannel {
    flex: 43;
  }
  #login_page .login-pannel .top {
    font-size: 13px;
  }
}

/*# sourceMappingURL=mm_event.css.map */
