@font-face {
  font-family: "EuclidSquare-Light";
  src: url(/fonts/EuclidSquare/EuclidSquare-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Regular";
  src: url(/fonts/EuclidSquare/EuclidSquare-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Medium";
  src: url(/fonts/EuclidSquare/EuclidSquare-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "EuclidSquare-Bold";
  src: url(/fonts/EuclidSquare/EuclidSquare-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "CascadiaMono-Light";
  src: url(/fonts/CascadiaMono/CascadiaMono-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: "CascadiaMono-Regular";
  src: url(/fonts/CascadiaMono/CascadiaMono-Regular.ttf);
  font-display: swap;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html, body {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f9fafb;
}
.wrapper {
  position: relative;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
}
.dialog {
  position: fixed;
  top: 30px;
  left: 100px;
  width: 400px;
  padding: 20px;
  z-index: 9999999999;
  display: none;
  cursor: default !important;
}
.dialog-text {
  float: left;
  text-align: left;
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 14px;
}
.dialog-close {
  float: right;
  text-align: right;
  font-size: 20px;
}
.dialog-close:hover {
  background: rgba(20, 20, 20, 0.1);
  padding: 0 2px;
  margin: 0 -2px;
  border-radius: 6px;
}
.dialog.dialog-style-success {
  background: #eeffe4;
  border: 1px solid #78ae59;
}
.dialog.dialog-style-error {
  background: #fcf0f0;
  border: 1px solid #d54747;
}
.dialog.dialog-style-warning {
  background: #fff2ab;
  border: 1px solid #cea51c;
}
.logo {
  position: absolute;
  background-image: url(/images/elements/offly.png);
  background-size: cover;
  left: 0;
  top: 0;
  width: 130px;
  height: 80px;
}
a {
  color: #509fef;
  font-family: "EuclidSquare-Regular", Arial;
}
a.separated {
  margin-left: 8px;
}
.spinner {
  animation: spin 1.5s linear infinite;
}
.header {
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  font-family: "EuclidSquare-Light", Arial;
  font-size: 60px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(130, 130, 130, .1);
  border-radius: 40px;
  text-align: center;
  margin: 50px auto;
  margin-top: 80px;
}
p {
  max-width: 80%;
  color: #999;
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 17px;
  text-align: center;
  margin: 0 auto;
}
.cards-wrapper {
  margin-top: 50px;
}
.cards-wrapper > a {
  color: #000;
  text-decoration: none;
}
.cards-wrapper .card {
  position: relative;
  display: inline-block;
  width: 214px;
  height: 200px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 220px;
  background-position: center 80px;
  padding: 20px;
  box-sizing: border-box;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(130, 130, 130, .1);
  vertical-align: middle;
}
.cards-wrapper .card.bug-card {
  background-image: url(/images/elements/support-bug.png);
}
.cards-wrapper .card.search-card {
  background-image: url(/images/elements/support-search.png);
}
.cards-wrapper .card.faq-card {
  background-image: url(/images/elements/support-faq.png);
}
.cards-wrapper .card.forum-card {
  background-image: url(/images/elements/support-forum.png);
}
.cards-wrapper > a:last-child .card {
  margin-right: 0;
}
.cards-wrapper .title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.cards-wrapper .description {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.header p {
  margin-top: 25px;
  max-width: 70%;
}
@media only screen and (max-width:900px) {
  .header {
    border-radius: 0;
  }
  .cards-wrapper {
    max-width: 452px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:730px) {
  .header p {
    max-width: 90%;
  }
}
@media only screen and (max-width:450px) {
  .cards-wrapper .card {
    width: 100%;
  }
  .header p {
    display: none;
  }
  html, body {
    overflow-x: hidden;
  }
}