@import url("https://fonts.googleapis.com/css?family=Catamaran:300,400,600,700");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/* Material Icons */
.material-icons {
  /* required */
  font-family: "Material Icons";
  font-feature-settings: "liga";
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: inherit;
  vertical-align: top;
  display: inline-block;
  /* resetters */
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* optimizers */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-30 {
  font-size: 30px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/* Dropdown */
.dropdown-toggle.noarrow::after, .dropdown-toggle.noarrow::before {
  display: none;
}

.dropdown-title {
  font-size: 16px;
  padding: 5px 15px;
}
.dropdown-item {
  font-size: 13px;
  padding: 5px 15px;
}
.dropdown-item:hover {
  background-color: #eaf3f9;
}
.dropdown-item:hover .material-icons {
  color: #5F809A;
}
.dropdown-item:active {
  color: #696969;
  background-color: #eaf3f9;
}
.dropdown-item .material-icons {
  margin-right: 8px;
}

/* ---------------------------------- HTML5 Tags ----------------------------------  */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/* ---------------------------------- Misc ---------------------------------- */
input[type=button], input[type=submit] {
  border-radius: 0;
}

:-moz-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

/* ---------------------------------- Form Error ---------------------------------- */
select.error, input[type=text].error, input[type=password].error, input[type=email].error, input[type=tel].error, textarea.error, button.error {
  border: solid 1px #D1464B;
  border-radius: 6px 6px 0 0;
}

.errormsg {
  font-weight: normal;
  color: #fff;
  background-color: #D1464B;
  border-radius: 0 0 6px 6px;
  padding: 5px 15px;
  line-height: 20px;
  white-space: nowrap;
}
.errormsg .arrow {
  display: none;
  z-index: 1;
  position: absolute;
  top: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #D1464B;
}

/* ---------------------------------- Responsive items ---------------------------------- */
table {
  max-width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  height: auto;
}

/* ---------------------------------- Fluid Youtube Video ---------------------------------- */
.vdowrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.vdowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------- Root ---------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: Catamaran;
  font-size: 16px;
  border: 0;
  margin: 0;
  padding: 0;
}
body:after {
  content: "desktop";
  display: none;
}

@media (max-width: 991px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 766px) {
  body:after {
    content: "mobile";
  }
}
.left {
  float: left;
}

.right {
  float: right;
}

.clr {
  clear: both;
}

.point {
  cursor: pointer;
}

ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

.img-responsive {
  width: 100%;
  display: block;
}

.vdo-responsive {
  width: 100%;
  display: block;
}

.img-hidden {
  visibility: hidden;
}

.anchor {
  padding-top: 40px;
  margin-top: -40px;
}

.border {
  border: solid 1px red;
}

.container-fluid {
  max-width: 1200px;
}

#div {
  border: solid 1px red;
}

/* ---------------------------------- Hover effect ---------------------------------- */
.btn-etugreen:hover, .btn-etublue:hover, .btn-etulightblue:hover, .btn-etubluelightborder:hover, .btn-selected {
  cursor: pointer;
  color: #5F809A !important;
  border-color: #5F809A !important;
  background-color: #fff !important;
}

.list .item:hover {
  cursor: pointer;
  border-color: #648099;
}

/* ---------------------------------- Headers ---------------------------------- */
h1 {
  font-size: 22px;
  color: #5F809A;
  font-weight: 700;
}

h2 {
  font-size: 16px;
  color: #87A4B8;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

@media (max-width: 766px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 12px;
  }
}
a, a:hover {
  color: #5F809A;
}

/* ---------------------------------- Breadcrumb ---------------------------------- */
.breadcrumb {
  padding: 0;
  background-color: transparent;
}
.breadcrumb a {
  color: #000;
}
.breadcrumb .divider img {
  margin-top: -4px;
}
.breadcrumb .active {
  color: #000;
  text-decoration: underline;
}

/* ---------------------------------- Login ---------------------------------- */
.login, .forgot {
  border: solid 6px #F1F3F5;
  border-radius: 4px;
  margin-top: 60px;
  padding: 40px;
}
.login-logo, .forgot-logo {
  display: inline-table;
  margin: 15px;
  text-align: center;
}
.login-logo img, .forgot-logo img {
  max-width: 90px;
  margin: auto;
}
.login-name, .forgot-name {
  margin-left: 50px;
  display: inline-table;
  font-size: 17px;
  font-weight: 600;
  color: #5F809A;
}
.login h1, .forgot h1 {
  color: #000;
  font-size: 14px;
  margin-top: 30px;
  font-weight: 700;
  text-align: left;
}
.login form, .forgot form {
  margin-top: 10px;
}
.login form .btn, .forgot form .btn {
  padding: 6px 30px;
  font-weight: 600;
}

@media (max-width: 766px) {
  .login, .forgot {
    padding: 0;
    border: none;
    margin-top: 20px;
  }
}
/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  padding: 10px 40px;
  font-size: 14px;
  border-radius: 4px;
  border-width: 3px;
}
.btn-small {
  padding: 5px 30px;
}
.btn-etubluelightborder {
  background-color: transparent;
  border-color: #87A4B8;
  color: #fff;
}
.btn-etubluelightborder:hover {
  border-color: #87A4B8 !important;
}
.btn-etulightblue {
  background-color: #87A4B8;
  border-color: #87A4B8;
  color: #fff;
}
.btn-etulightblue:hover {
  border-color: #87A4B8 !important;
}
.btn-etublue {
  background-color: #5F809A;
  border-color: #5F809A;
  color: #fff;
}
.btn-etugreen {
  background-color: #46D191;
  border-color: #46D191;
  color: #fff;
}
.btn-etugreen:hover {
  border-color: #46D191 !important;
  color: #46D191 !important;
}
.btn-link {
  color: #616161;
}
.btn-link:hover {
  text-decoration: none;
  color: #5F809A;
}

@media (max-width: 766px) {
  .btn {
    font-size: 14px;
  }
}
/* ---------------------------------- Modal ---------------------------------- */
.modal form {
  margin-top: 10px;
}
.modal-body {
  padding-top: 30px;
}
.modal-body-nopad {
  padding-top: 0 !important;
}
.modal-content {
  padding-top: 20px;
  font-size: 14px;
  border: solid 8px #5F809A !important;
  color: #5F809A !important;
}
.modal-content .close {
  position: absolute;
  opacity: 1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 99;
  top: -25px;
  right: -25px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.modal-content h3 {
  font-size: 20px;
}
.modal-content .notenough {
  color: #D1464B;
  margin-bottom: 20px;
  font-weight: 600;
}
.modal-content .image {
  border: solid 3px #F1F3F5;
  padding: 10px;
}
.modal-content .price {
  font-size: 20px;
  text-align: right;
  margin-top: 20px;
}
.modal-content .price .coins {
  margin-right: 10px;
}
.modal-content .price-red {
  color: #D1464B;
}
.modal-content .missing {
  text-align: right;
  color: #D1464B;
}
.modal-footer {
  border-radius: 0;
  background-color: #5F809A !important;
  border-color: #5F809A;
}
.modal-footer .btn-link {
  color: #fff;
  padding: 0;
  margin-right: 30px;
}
.modal-welcome .modal-content {
  border-color: #F1F3F5 !important;
  padding: 30px;
}
.modal-welcome .modal-content h1 {
  margin-bottom: 30px;
}
.modal-welcome .modal-content .button {
  text-align: center;
}

@media (max-width: 766px) {
  .modal-body {
    padding-top: 10px;
  }
}
/* ---------------------------------- Form Input ---------------------------------- */
label {
  font-size: 12px;
  color: #5F809A;
}

.FormInput, .product form input, .login form input, .forgot form input, .modal form input {
  font-size: 14px;
  color: #696969;
}
.FormInput:focus, .product form input:focus, .login form input:focus, .forgot form input:focus, .modal form input:focus {
  color: #5F809A;
  border-color: #5F809A;
  box-shadow: none;
}
.FormInput:focus::-webkit-input-placeholder, .product form input:focus::-webkit-input-placeholder, .login form input:focus::-webkit-input-placeholder, .forgot form input:focus::-webkit-input-placeholder, .modal form input:focus::-webkit-input-placeholder {
  color: #5F809A;
}
.FormInput:focus:-moz-placeholder, .product form input:focus:-moz-placeholder, .login form input:focus:-moz-placeholder, .forgot form input:focus:-moz-placeholder, .modal form input:focus:-moz-placeholder {
  color: #5F809A;
  opacity: 1;
}
.FormInput:focus::-moz-placeholder, .product form input:focus::-moz-placeholder, .login form input:focus::-moz-placeholder, .forgot form input:focus::-moz-placeholder, .modal form input:focus::-moz-placeholder {
  color: #5F809A;
  opacity: 1;
}
.FormInput:focus:-ms-input-placeholder, .product form input:focus:-ms-input-placeholder, .login form input:focus:-ms-input-placeholder, .forgot form input:focus:-ms-input-placeholder, .modal form input:focus:-ms-input-placeholder {
  color: #5F809A;
}

/* ---------------------------------- Main ---------------------------------- */
main {
  min-height: calc(100vh - 315px);
}

/* ---------------------------------- Header ---------------------------------- */
header {
  position: relative;
  z-index: 99;
  background-color: #fff;
  width: 100%;
  height: 60px;
  padding-top: 7px;
}
header .logo {
  display: inline-table;
  vertical-align: middle;
  margin-top: 4px;
}
header .logo img {
  max-width: 120px;
}
header .name {
  display: inline-table;
  vertical-align: middle;
  margin-left: 30px;
  color: #5F809A;
  font-size: 17px;
  font-weight: 600;
}
header .balance {
  cursor: pointer;
  font-weight: bold;
  height: 60px;
  margin-top: -7px;
  padding: 20px 30px;
  margin-right: 5px;
  color: #5F809A;
  font-size: 18px;
  display: inline-block;
  background-color: rgba(135, 164, 184, 0.062745098);
}
header .balance span {
  color: #87A4B8;
  font-weight: normal;
}
header .balance .coins {
  margin-left: 30px;
}
header .dropdown {
  display: inline-block;
}
header .dropdown .btn-link {
  color: #696969;
  padding: 0;
  margin-top: 0;
}
header .dropdown-toggle.noarrow .material-icons {
  font-size: 30px;
  color: #5F809A;
}
header .dropdown-toggle.noarrow:hover .material-icons {
  color: #5F809A;
}

/* ---------------------------------- Cover ---------------------------------- */
.cover {
  position: relative;
  margin-bottom: 30px;
  height: 267px;
  background-size: cover;
  background-position: center center;
}
.cover.none {
  height: 40px;
}
.cover-text {
  width: 100%;
  position: absolute;
  bottom: 35px;
}
.cover-text .header {
  font-size: 32px;
  font-weight: bold;
}
.cover-text .teaser {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 766px) {
  .cover {
    height: 100px;
  }
  .cover-text {
    bottom: 20px;
  }
  .cover-text .header {
    font-size: 22px;
  }
  .cover-text .teaser {
    font-size: 16px;
  }
}
/* ---------------------------------- Categories ---------------------------------- */
.categories .btn {
  margin-bottom: 8px;
}

/* ---------------------------------- Sub Categories ---------------------------------- */
.subcategories {
  margin-top: 10px;
}
.subcategories .btn {
  margin-bottom: 8px;
}

/* ---------------------------------- Context ---------------------------------- */
.context {
  margin-top: 30px;
}

/* ---------------------------------- Infobar ---------------------------------- */
.infobar {
  background-color: #F8FAFB;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.infobar .header {
  font-size: 18px;
  color: #5F809A;
  font-weight: 700;
}
.infobar .teaser {
  font-size: 16px;
  color: #87A4B8;
}

/* ---------------------------------- Helper ---------------------------------- */
.helper {
  font-size: 12px;
  color: #909090;
  margin-top: 5px;
}

/* ---------------------------------- Product ---------------------------------- */
.product .back {
  margin-bottom: 30px;
}
.product .back a {
  font-size: 14px;
  color: #5F809A;
}
.product .info {
  margin-top: 20px;
  padding: 20px 30px;
  border: solid 6px #F9FAFB;
}
.product .info .headline {
  font-weight: bold;
  color: #5F809A;
  font-size: 20px;
}
.product .info .description {
  font-size: 16px;
  color: #87A4B8;
}
.product .point {
  cursor: default;
  margin: 20px 0;
  background-color: #FAFBFB;
  padding: 20px 30px;
  font-size: 14px;
  color: #5F809A;
}
.product .point .sum {
  color: #000;
}
.product form {
  margin-top: 10px;
}
.product .helper {
  margin: 10px 0;
}

/* ---------------------------------- Widget ---------------------------------- */
.widget-balance {
  margin: 20px 0 10px 0;
  background-color: #5F809A;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 148px;
  background-image: url("/media/yrtbbquk/coins-3.svg");
  background-size: cover;
  background-position: center center;
}
.widget-balance b {
  margin-left: 10px;
}

/* ---------------------------------- List ---------------------------------- */
.list {
  margin: 30px 0;
  text-align: left;
}
.list-trans {
  margin-bottom: 30px;
  color: #5F809A;
}
.list-trans .header {
  background-color: #F1F3F5;
  padding: 10px 30px;
  margin-top: 20px;
  font-weight: 700;
}
.list-trans .item {
  padding: 10px 30px;
  border-bottom: solid 1px #EDF0F2;
}
.list-trans .item-red {
  color: #D1464B;
}
.list-trans .item-bold {
  font-weight: 700;
}
.list-trans .item .price .coins {
  margin-right: 5px;
}
.list .material-icons {
  margin: -5px 10px 0 0;
}
.list .item {
  position: relative;
  background-color: #fff;
  margin-bottom: 30px;
  color: #5F809A;
  border-radius: 6px;
  border: solid 6px #F9FAFB;
}
.list .item .image {
  padding-top: 10px;
  border-radius: 6px 6px 0 0;
}
.list .item .image img {
  border-radius: 6px 6px 0 0;
}
.list .item .price {
  position: absolute;
  bottom: 10px;
  right: 15px;
  text-align: left;
  font-size: 20px;
  color: #5F809A;
}
.list .item .price-red {
  color: #D1464B;
}
.list .item .price img {
  margin-right: 10px;
}
.list .item .text {
  padding: 10px 10px 60px 10px;
  border-radius: 0 0 6px 6px;
}
.list .item .text .headline {
  margin: 5px 0;
  font-size: 20px;
}
.list .item .text .teaser {
  color: #87A4B8;
}

@media (max-width: 766px) {
  .list-trans {
    max-width: 100%;
  }
  .list-trans .price {
    margin-top: 10px;
  }
  .list .item .text .headline {
    font-size: 14px;
  }
  .list .item .text .teaser {
    font-size: 10px;
  }
}
/* ---------------------------------- Sup Footer ---------------------------------- */
.supfooter {
  margin-top: 60px;
  padding: 56px 0 20px 0;
  background-image: url("/media/eoehf0qh/sup-footer-bg.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-color: #5F809A;
  background-size: auto;
  min-height: 185px;
}
.supfooter .header {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
.supfooter .teaser {
  color: rgba(241, 243, 245, 0.6078431373);
}
.supfooter .button-group {
  text-align: right;
  margin-top: 14px;
}
.supfooter .button-group button {
  margin: 0 0 20px 5px;
}

@media (max-width: 766px) {
  .supfooter {
    padding: 20px 0 20px 0;
  }
  .supfooter .button-group {
    text-align: center;
  }
}
/* ---------------------------------- Footer ----------------------------------  */
footer {
  font-size: 12px;
  color: #5F809A;
  padding: 60px 0 20px 0;
}
footer .header {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
footer .logo {
  display: inline-table;
  vertical-align: middle;
}
footer .logo img {
  max-width: 80px;
}
footer .name {
  display: inline-table;
  vertical-align: middle;
  margin-left: 30px;
  color: #5F809A;
  font-size: 17px;
  font-weight: 600;
}
footer hr {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
footer ul {
  margin: 0;
}
footer ul li {
  padding-bottom: 5px;
}
footer ul li a, footer ul li a:hover {
  color: #5F809A;
}

@media (max-width: 766px) {
  footer {
    padding-top: 30px;
  }
  footer ul {
    margin-top: 20px;
    padding-left: 15px;
  }
  footer ul li {
    margin-left: 0px;
    padding-bottom: 5px;
  }
  footer ul li a, footer ul li a:hover {
    color: #5F809A;
  }
}