[data-mmes-modal] {
  position: fixed;
  display: none;
  bottom: 0;
  right: 0;
  min-width: 450px;
  background-color: white;
  z-index: 999999; }
  [data-mmes-modal].small {
    min-width: 150px; }
  [data-mmes-modal].rounded {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px; }
  [data-mmes-modal] .mmes-row {
    display: flex;
    flex-wrap: wrap;
    background-color: white; }
    [data-mmes-modal] .mmes-row__col {
      width: 100%;
      background-size: cover;
      background-position: center center;
      padding: 15px 15px;
      text-align: center;
      min-height: 210px; }

@media (min-width: 961px) {
  [data-mmes-modal] {
    min-width: 700px; }
    [data-mmes-modal] .mmes-row__col {
      padding: 30px 30px; }
    [data-mmes-modal] .mmes-row--double .mmes-row__col {
      width: 50%; } }

[data-mmes-modal-close] {
  position: absolute;
  top: 10px;
  right: 10px;
  /*width: 40px;*/
  color: #808080; }

[data-mmes-modal-overlay] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999998; }

.fade-in {
  -webkit-animation: fadeIn ease 1s;
          animation: fadeIn ease 1s; }

.fade-in-slide-in {
  display: block;
  -webkit-animation: fadeInSlideIn ease 1s;
          animation: fadeInSlideIn ease 1s; }

.fade-in-slide-right {
  display: block;
  -webkit-animation: fadeInSlideRight ease-out 0.3s;
          animation: fadeInSlideRight ease-out 0.3s; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInSlideIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 100px), 0); }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0); } }

@keyframes fadeInSlideIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 100px), 0); }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0); } }

@-webkit-keyframes fadeInSlideRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInSlideRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

