@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

:root {
  --primary-color: #0887c3;
  --button-color: #686d77;
  --logo-color: #ffffff;
}

body {
  background: #eeeeee;
}

.mbc {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (min-width: 400px) {
  .mbc {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc {
    width: 600px;
    margin: 1rem auto;
    box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 5px 0px;
  }
}

.mbc__modal.mbc__modal--qrcode .modal__content {
  flex-direction: column;
}

.mbc__modal .modal__registered-trademark {
  width: 100%;
  display: block;
  text-align: center;
}

.mbc__modal .modal__registered-trademark sup {
  font-size: 10px;
}

.mbc__modal.mbc__modal--qrcode .modal__registered-trademark {
  margin-top: 4rem;
}

.mbc__modal.mbc__modal--qrcode .modal__content .modal__close-button {
  top: 1rem;
}

.qrcode__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  -webkit-transform: rotate(45deg) scale(0.9);
  -ms-transform: rotate(45deg) scale(0.9);
  transform: rotate(45deg) scale(0.9);
  box-shadow: 15px 15px 30px 0px rgba(158, 158, 158, 0.75),
    0px 15px 30px 0px rgba(158, 158, 158, 0.75);
  border-radius: 5%;
}
.qrcode__wrapper svg {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

@media only screen and (max-width: 400px) {
  .qrcode__wrapper:nth-child(2) {
    max-width: 230px;
    max-height: 230px;
  }
}

@media only screen and (max-width: 359px) {
  .qrcode__wrapper:nth-child(2) {
    max-width: 200px;
    max-height: 200px;
  }
}

.mbc__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  background-color: var(--logo-color);
}
.mbc__header .header__back-button {
  position: absolute;
  left: 25px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.mbc__header .header__back-button .back-button__image {
  width: 100%;
  height: 100%;
}
.mbc__header .header__logo {
  width: 70%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 215px;
  height: auto;
  margin: 0 auto;
  padding: 1.3rem 0;
}
@media only screen and (min-width: 400px) {
  .mbc__header {
  }
  .mbc__header .header__logo {
    width: 55%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 210px;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__header {
  }
  .mbc__header .header__logo {
    max-width: 250px;
  }
}

.mbc__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  background-color: white;
  background: linear-gradient(
    0deg,
    rgba(221, 221, 221, 1) -27%,
    rgba(255, 255, 255, 1) 35%
  );
}
.mbc__footer .footer__link {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 20px 0;
  font-size: 21px;
  font-weight: 400;
  color: #373A40;
}
.mbc__footer .footer__link .link__anchor {
  text-decoration: none;
  position: relative;
}
.mbc__footer .footer__link .link__anchor:link,
.mbc__footer .footer__link .link__anchor:visited,
.mbc__footer .footer__link .link__anchor:active,
.mbc__footer .footer__link .link__anchor:hover {
  color: #373A40;
}
.mbc__footer .footer__legal-text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0;
  font-size: 0.65rem;
  color: #373A40;
  text-align: center;
  /* font-family: Arial, sans-serif; */
  padding-top: 10px;
  font-weight: 400;
}

.mbc__user-photo {
  position: relative;
  height: 140px;
  width: 100%;
  min-width: 100%;
  background-size: cover;
  background-repeat: repeat;
  background-color: var(--primary-color);
}
.mbc__user-photo.mbc__user-photo--clickable {
  cursor: pointer;
}
.mbc__user-photo .user-photo__image {
  position: absolute;
  left: 15px;
  bottom: -25px;
  width: 140px;
  height: 140px;
  border: none;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 7px 11px -1px #bbb;
}

.mbc__user-photo .user-photo__image-upload {
  position: absolute;
  top: 42px;
  left: 42px;
  max-width: 85px;
}
@media only screen and (min-width: 400px) {
  .mbc__user-photo {
    min-height: 140px;
  }
  .mbc__user-photo .user-photo__image {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__user-photo {
    height: 160px;
  }
  .mbc__user-photo .user-photo__image {
    width: 160px;
    height: 160px;
    position: absolute;
    left: 40px;
    bottom: -30px;
  }
}

.mbc__user-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  background-color: white;
  color: #373A40;
  padding: 2.5rem 0 0 2.5rem;
}
.mbc__user-info .user-info__title {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.mbc__user-info .user-info__subtitle {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.mbc__user-info .user-info__subtitle a {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 400px) {
  .mbc__user-info {
    padding: 2.5rem 0 0 2.5rem;
  }

  .mbc__user-photo .user-photo__image-upload {
    position: absolute;
    top: 42px;
    left: 42px;
    max-width: 85px;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__user-info {
    padding: 2.5rem 0 0.3rem 2.5rem;
  }

  .mbc__user-photo .user-photo__image-upload {
    position: absolute;
    top: 57px;
    left: 75px;
    max-width: 85px;
  }
}
.custom-buttons-section {
  position: relative;
  width: 50%;
}
.custom-buttons {
  display: flex;
  position: absolute;
  top: -42px;
  left: 33%;
}
.custom-button {
  display: flex;
  flex-direction: column;
  margin-right: 8px;
  align-items: center;
}
.custom-button div {
  background-color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #686d77;
  border-radius: 50%;
  box-shadow: 3px 7px 11px -1px #bbb;
}
.custom-button a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.custom-button button {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.custom-button button img {
  height: 60%;
}

.custom-button button svg {
  height: 60%;
}

.custom-button--send button svg {
  margin-right: 0.15rem;
}

.custom-button a svg {
  height: 60%;
}
.custom-button-text {
  color: #373A40;
  margin: 0;
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
}

.mbc__socials {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 70%;
  background-color: white;
  /* display: none */
}
.mbc__socials .socials__entry {
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.mbc__socials .socials__entry .entry__image {
  height: 33px;
  width: auto;
  -webkit-filter: drop-shadow(3px 3px 2px #aeaeae);
  filter: drop-shadow(3px 3px 2px #aeaeae);
}
@media only screen and (min-width: 400px) {
  .mbc__socials {
  }
  .mbc__socials .socials__entry .entry__image {
    height: 38px;
    -webkit-filter: drop-shadow(3px 3px 2px #aeaeae);
    filter: drop-shadow(3px 3px 2px #aeaeae);
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__socials {
    padding: 0.3rem 0;
  }
  .mbc__socials .socials__entry .entry__image {
    height: 44px;
    -webkit-filter: drop-shadow(3px 3px 2px #aeaeae);
    filter: drop-shadow(3px 3px 2px #aeaeae);
  }
}

.mbc__user-address {
  display: none;
}

.mbc__button-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 72%;
  column-gap: .5rem;
  row-gap: .5rem;
  padding: 30px 0 10px 0;
  background-color: white;
}

.mbc__button-group div {
  width: 30%;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
}

.mbc__button-group .button-group__button {
  width: 80px;
  height: 80px;
  background-color: #686d77;
  color: #fdfdfd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 3px 3px 10px 3px #bbb;
}
.mbc__button-group .button-group__button a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mbc__button-group .button-group__button--special {
  width: 100%;
  border-radius: 10px;
  height: auto;
  padding: 15px 0;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  background-color: #0C60ED;
  padding: 8px;
}

.mbc__button-group .button-group__button--website a {
  margin-left: 0.45rem;
}

.mbc__button-group .button-group__button--maps a img {
  height: 65% !important;
}

.mbc__button-group .button-special-box-wrapper {
  grid-column: 1/4;
  max-width: 435px;
  justify-self: center;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  margin: 10px 0px;
}

.button-special-box-wrapper .button-special-box {
  width: unset;
  margin: 0.25rem 0.1rem;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-direction: row;
  align-items: stretch;
  align-self: stretch;
}

.button-special-box a {
  width: 100%;
  font-weight: 400;
}
/* 
.button-special-box:nth-child(2n) a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-special-box:nth-child(2n + 1) {
  grid-column: 2/3;
  width: 100%;
}

.button-special-box:nth-child(2n + 1) a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-special-box:first-child {
  grid-column: 1/3;
  width: 100%;
} */

.mbc__button-group .button-group__button .button__image {
  height: 60%;
  border-radius: 0;
}

.button__image_custom {
  fill: #686d77;
}
.mbc__button-group .button__text {
  width: 100%;
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 5px 0 8px;
  color: #373A40;
}
@media only screen and (min-width: 400px) {
  .mbc__button-group .button-group__button .button__image {
    height: 60%;
  }

  .custom-button-text {
    font-size: 0.6rem;
  }
  .mbc__button-group .button__text {
    font-size: 0.8rem;
    margin: 5px 0 8px;
    font-weight: 500;
  }
  .button-special-box {
    margin: 0.25rem 0.15rem;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__button-group .button__text {
    font-size: 1rem;
    margin: 5px 0 8px;
  }
  .mbc__button-group .button-group__button--special {
    font-size: 1rem;
  }
  .custom-button-text {
    font-size: 0.8rem;
  }
  .mbc__button-group .button-group__button {
    height: 100px;
    width: 100px;
  }
  .mbc__button-group .button-group__button--special {
    width: 100%;
    height: unset;
  }
  .custom-buttons {
    top: -60px;
  }

  .custom-buttons div div {
    width: 80px;
    height: 80px;
    box-shadow: 3px 7px 11px -1px #bbb;
  }
  .button-special-box {
    margin: 0.25rem;
  }
}

.mbc__about-me {
  display: block;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0;
  padding: 0.75rem 0.95rem 0.125rem 0.95rem;
}
.mbc__about-me .about-me__header {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.7rem;
  font-weight: 600;
  text-align: left;
}
.mbc__about-me .about-me__text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: left;
}
@media only screen and (min-width: 400px) {
  .mbc__about-me {
    padding: 1.1rem 0.95rem 0 0.95rem;
  }
  .mbc__about-me .about-me__header {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__about-me {
    padding: 1.25rem 2.2rem 0 2.2rem;
  }
  .mbc__about-me .about-me__header {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
}

.mbc__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.mbc__modal--active {
  display: block;
  -webkit-animation: 0.25s ease 0s 1 normal none running fadeIn;
  animation: 0.25s ease 0s 1 normal none running fadeIn;
}
.mbc__modal .modal__heading {
  color: #1388c9;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.mbc__modal .modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90%;
  max-width: 540px;
  padding: 1.25rem;
  color: black;
  background-color: #fefefe;
  -webkit-animation: 0.5s ease 0s 1 normal none running slideInFromTop;
  animation: 0.5s ease 0s 1 normal none running slideInFromTop;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px,
    rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}
.mbc__modal .modal__content .modal__header {
  padding: 0;
  margin: 0 0 1.25rem 0;
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
}
.mbc__modal .modal__content .modal__top-section {
  width: 100%;
  text-align: left;
  margin: 0 0 3rem 0;
}

.mbc__modal .modal__content .modal__header.modal__header--qrcode {
  text-align: left;
}
.mbc__modal .modal__content .modal__close-button {
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  margin: 0;
  padding: 0;
  color: black;
  font-size: 1.45rem;
  font-weight: bolder;
  border: none;
  background: transparent;
  cursor: pointer;
}
.mbc__modal .modal__content .modal__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0;
  padding: 0;
}
.mbc__modal .modal__content .modal__form .form__select-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 0.5rem 0;
  margin: 0 0 0.5rem 0.5;
  font-size: 1rem;
  font-family: inherit;
}
.mbc__modal .modal__content .modal__form .form__select {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0.5rem;
  margin: 0 0 0 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.6rem;
  cursor: pointer;
}
.mbc__modal .modal__content .modal__form .form__input-wrapper {
  position: relative;
  min-width: 100%;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.mbc__modal .modal__content .modal__form .form__input-wrapper--required {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  content: "*";
  color: red;
}
.mbc__modal .modal__content .modal__form .form__input {
  min-width: 100%;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-family: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.6rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.mbc__modal .modal__content .modal__form .form__input.form__input--space-top {
  margin-top: 2.875rem;
}
.mbc__modal .modal__content .modal__form .form__input.form__input--company {
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mbc__modal .modal__content .modal__form .form__input:nth-of-type(1),
.mbc__modal .modal__content .modal__form .form__input:nth-of-type(2) {
  min-width: 49%;
  width: 49%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 49%;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
}
.mbc__modal
  .modal__content
  .modal__form
  .form__input:not(:placeholder-shown):invalid {
  border-color: red;
  color: red;
}
.mbc__modal .modal__content .modal__form .form__textarea {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  min-height: 3.4rem;
  padding: 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.6rem;
}
.mbc__modal
  .modal__content
  .modal__form
  .form__textarea:not(:placeholder-shown):invalid {
  border-color: red;
  color: red;
}
.mbc__modal .modal__content .modal__form .form__characters-left {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin: 0;
  font-size: 0.6rem;
  text-align: left;
}
.mbc__modal .modal__content .modal__form .form__send-button {
  width: 50%;
  margin: 1.1rem auto auto auto;
  padding: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  background-color: #323232;
  border-width: 0px;
  border-style: solid;
  border-color: transparent;
  cursor: pointer;
}
@media only screen and (min-width: 400px) {
  .mbc__modal .modal__content {
    width: 90%;
    max-width: 540px;
    padding: 1.25rem;
  }
  .mbc__modal .modal__content .modal__form .form__input {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    margin: 0 0 0.5rem 0;
    padding: 0.45rem;
    font-size: 1rem;
  }

  .mbc__modal .modal__content .modal__form .form__textarea {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 0 0 0.5rem 0;
    padding: 0.45rem;
    min-height: 3.4rem;
    font-size: 1rem;
  }
  .mbc__modal .modal__content .modal__form .form__characters-left {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    font-size: 0.75rem;
    text-align: left;
  }
}
@media only screen and (min-width: 600px), (orientation: landscape) {
  .mbc__modal .modal__content .modal__form .form__input {
    width: 100%;
    min-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 0.5rem 0;
    padding: 0.45rem;
    font-size: 1rem;
  }
  .mbc__modal .modal__content .modal__form .form__textarea {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    min-height: 3.4rem;
    margin: 0 0 0.5rem 0;
    padding: 0.45rem;
    font-size: 1rem;
  }
  .mbc__modal .modal__content .modal__form .form__characters-left {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    font-size: 0.75rem;
    text-align: left;
  }
}

@media only screen and (max-width: 320px) {
  .custom-buttons-section {
    width: 40%;
  }
  .custom-button div {
    width: 50px;
    height: 50px;
  }
  .custom-buttons {
    top: -37px;
    left: 44%;
  }
  .custom-button {
    margin-right: 5px;
  }
  .mbc__button-group {
    width: 83%;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideInFromTop {
  from {
    top: -100%;
  }
  to {
    top: 50%;
  }
}
@keyframes slideInFromTop {
  from {
    top: -100%;
  }
  to {
    top: 50%;
  }
}

.height-50 {
  height: 50px;
}

.footer__link .link__text {
  font-size: 11px;
  font-weight: 500;
}

.footer__link .footer-logo {
  margin-left: 10px;
  width: 28px;
  height: 31px;
  position: absolute;
}

.footer__link {
  text-align: center;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.loading-screen{
  animation-name: fadeOut;
  animation-delay: .25s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
  position: fixed;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

@keyframes fadeOut{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    z-index: -2;
  }
}


