/**
 * This file provides basic styling,
 * allowing us to show a message in unsupported browsers
 */

/** html5 tags (increase compatibility with ie < 9) */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/** resets (bare minimum) */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.root {
  height: 100%;
}

.ml-template {
  display: none;
}

.ml-hidden {
  display: none !important;
}

/** typography */
.ml-static {
  height: 100%;
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.875em;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  background-color: #fafafa;
}

.ml-static .ml-wysiwyg p {
  margin-top: 0.75em;
}

.ml-static .ml-wysiwyg strong {
  font-weight: bold;
}

.ml-static .ml-wysiwyg p:first-child {
  margin-top: 0;
}

.ml-static .ml-wysiwyg a {
  font: inherit;
  color: #2979ff;
  cursor: pointer;
  text-decoration: none;
}

.ml-static .ml-wysiwyg a:focus,
.ml-static .ml-wysiwyg a:hover {
  text-decoration: underline;
}

.ml-static .ml-wysiwyg a {
  margin-bottom: 0.75em;
}

.ml-title {
  font-size: 1.5714285714em;
  font-weight: 500;
  line-height: 1.25;
  text-indent: -0.07em;
  letter-spacing: 0.01em;
  margin-bottom: 0.35em;
}

@media (min-width: 600px) {
  .ml-title {
    font-size: 2em;
  }
}

@media (min-width: 960px) {
  .ml-title {
    font-size: 2.4285714286em;
  }
}

/** layout */

.ml-layout {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: auto;
}

.ml-layout-item {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.ml-layout-item--image {
  /* old browsers, without support for background-size */
  background-image: url("https://cejlbffoxa.cloudimg.io/_i/TENANT/d4f2c998-9918-4697-b813-e6e609fadde4?func=crop&gravity=face&width=1200");
  background-color: rgba(41, 121, 255);
  /* modern browsers, with support for background-size load large image */
  background-image: url("https://cejlbffoxa.cloudimg.io/_i/TENANT/d4f2c998-9918-4697-b813-e6e609fadde4?func=crop&gravity=face&width=2000"),
    none;
  background-color: rgba(41, 121, 255, 0.2);

  background-size: cover;
  background-position: 58% 18%;
  background-blend-mode: multiply;
}

.ml-layout-item--content {
  width: 100%;
  z-index: 1;
  position: relative;
  max-width: none;

  background-color: #fff;
  box-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.ml-layout-content-wrp {
  padding: 16px;
}

@media (min-width: 600px) {
  .ml-layout-item--content {
    width: 30%;
    min-width: 25em;
  }
}

.ml-layout-item-inner {
  margin: auto;
  padding: 2em 0.5em;
  max-width: 30rem;
}

@media (min-width: 600px) {
  .ml-layout-item-inner {
    padding: 2%;
  }
}

@media (min-width: 960px) {
  .ml-layout-item-inner {
    padding: 3%;
  }
}

@media (min-width: 1360px) {
  .ml-layout-item-inner {
    padding: 5%;
  }
}

.ml-logo-wrp {
  display: block;
  padding: 16px 16px 8px;
}

.ml-logo {
  display: block;
  width: 29em;
  height: auto;
  max-width: 90%;
}
