@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  scroll-behavior: smooth;
}

.user * {
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

html, body {
  font-size: 11.5px;
  color: #444;
  margin: 0;
  width: 100%;
  overflow: auto;
}

body {
  background-color: #fcfcfc;
}
body.user {
  margin: 0;
}

a {
  color: #444;
  text-decoration: underline;
}

.wrapper-center {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100vh;
  align-items: center;
  justify-items: center;
}

.body {
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: max(70px, 11vh);
  padding-top: max(100px, 12.5vh);
}
.body.calculation, .body.strategy_overview {
  max-width: initial;
  margin: initial;
}
.body.calculation .coinbar, .body.calculation #dropdown, .body.calculation #strategy_calculation, .body.strategy_overview .coinbar, .body.strategy_overview #dropdown, .body.strategy_overview #strategy_calculation {
  margin: 0 auto;
  max-width: 1000px;
}
.body.calculation .wrapper-center, .body.strategy_overview .wrapper-center {
  text-align: center;
  overflow-x: auto;
  grid-template-rows: auto;
  padding-bottom: 10px;
}
.body.calculation table, .body.strategy_overview table {
  border: 0;
  margin: 0 auto;
}
.body.doc .wrapper {
  padding: 2.5vw;
}
.body.doc ul {
  padding-left: 20px;
}
.body.doc ul li {
  list-style-position: outside;
}

.page-title {
  padding: 0;
  background-color: #8accff;
  margin-bottom: calc(20px + 2vh);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.page-title h1 {
  padding: 2.5vh 5vw;
  letter-spacing: 2px;
  color: #fff;
}
.page-title:after {
  content: "";
  background: url("../images/edge.svg") repeat-x;
  background-size: 60px auto;
  position: absolute;
  bottom: -49px;
  height: 50px;
  width: 100%;
  display: block;
}
.page-title .pagehelp {
  position: absolute;
  right: 0;
  top: 0;
  padding: 2.5vh 5vw;
}
.page-title .pagehelp.active .help:before {
  content: "X";
  color: #444;
  background-color: white;
}
.page-title .goback {
  position: absolute;
  right: 0;
  top: 0;
  padding: 2vh 5vw;
  font-size: 220%;
}
.page-title .help_content {
  padding: 2% 3% 3%;
  display: none;
  color: #444;
  text-align: left;
  overflow: hidden;
  max-height: 40vh;
  height: 50vh;
}
.page-title .help_content div {
  padding: 2.5%;
  background-color: #d7edff;
  border-radius: 10px;
  overflow-y: auto;
  height: 100%;
}

.help_content_active {
  overflow: hidden;
}

.login, .register {
  max-width: 400px;
  background-color: #eee;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  margin: 6vw;
  border-radius: 20px;
  overflow: hidden;
}
.login h1, .register h1 {
  text-align: center;
  color: #5b6574;
  font-size: 24px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
  background-color: #ddd;
}
.login p, .register p {
  padding: 20px;
}
.login #reset_content, .register #reset_content {
  display: none;
}
.login .tabs, .register .tabs {
  display: flex;
  padding: 15px 15px 0;
  border-bottom: 3px solid #eee;
}
.login .tabs li, .register .tabs li {
  color: #adb2ba;
  text-decoration: none;
  display: inline-flex;
  padding: 0 10px 10px 10px;
  font-weight: bold;
  margin-bottom: -3px;
  cursor: pointer;
}
.login .tabs li:hover, .register .tabs li:hover {
  color: #9da3ac;
}
.login .tabs li.active, .register .tabs li.active {
  border-bottom: 3px solid #3274d6;
  color: #3274d6;
}
.login form, .register form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}
.login form label, .register form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 50px;
  background-color: #3274d6;
  color: #fff;
}
.login form input[type=password], .login form input[type=text], .login form input[type=email], .register form input[type=password], .register form input[type=text], .register form input[type=email] {
  width: 80%;
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
}
.login form input[type=submit], .register form input[type=submit] {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #3274d6;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background-color 0.2s;
}
.login form input[type=submit]:hover, .register form input[type=submit]:hover {
  background-color: #2868c7;
  transition: background-color 0.2s;
}
.login form input[type=submit]:disabled, .register form input[type=submit]:disabled {
  background-color: #ccc;
  cursor: default;
}
.login form #rememberme, .register form #rememberme {
  width: 100%;
  height: auto;
  padding: 5px 20px;
  background-color: transparent;
  color: #000;
  justify-content: flex-start;
}
.login form #rememberme input, .register form #rememberme input {
  transform: scale(1.3);
  margin-right: 7px;
}
.login form .msg, .register form .msg {
  width: 100%;
}
.login form .msg p, .register form .msg p {
  padding: 20px;
}
.login form .msg .status, .register form .msg .status {
  background-color: #7bcaa3;
}
.login form .msg .warning, .register form .msg .warning {
  background-color: #fce8b2;
}
.login form .msg .error, .register form .msg .error {
  background-color: #e67c73;
  color: #fff;
}
.login form > a, .register form > a {
  text-decoration: none;
  color: #5b6574;
  width: 100%;
  padding: 5px 20px;
}
.login form > a:hover, .register form > a:hover {
  color: #394049;
}

.navtop {
  background-color: #004e8a;
  height: 60px;
  width: 100%;
  border: 0;
}
.navtop .logo a {
  padding-left: 40px;
  background: url("../images/bitcoin-strategie.svg") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
}
.navtop div {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 1%;
}
.navtop div h1, .navtop div a {
  display: inline-flex;
  align-items: center;
}
.navtop div h1 {
  flex: 1;
  padding: 0;
  margin: 0;
  color: #edf3fd;
  font-weight: normal;
}
.navtop div a {
  margin: 0 1vw;
  text-decoration: none;
  color: #bde2ff;
  border-bottom: 1px solid transparent;
}
.navtop div a i {
  padding: 2px 8px 0 0;
}
.navtop div a:hover, .navtop div a.active {
  color: white;
}

body.loggedin {
  background-color: #fcfcfc;
}

.content h2 {
  margin: 0 0 1vh;
  padding: 2vh 0 1vh;
  font-size: 150%;
  border-bottom: 1px solid #e8e8e8;
  color: #636363;
}
.content h2:first-child {
  padding-top: 0vh;
}
.content .block {
  margin: 0;
  padding: 0 2vw;
}
.content .block table {
  width: 100%;
}
.content .block table td {
  overflow: hidden;
  padding: 5px;
}
.content .block table td:first-child {
  font-weight: bold;
  color: #636363;
  padding-right: 15px;
}
.content .block table td:last-child {
  word-break: break-all;
}
.content .block p {
  padding: 5px;
  margin: 0 0 10px 0;
}
.content.profile form .notifications-container {
  padding: 10px;
  width: 86%;
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: top;
}
.content.profile form label {
  display: block;
  padding: 10px 0 5px 0;
  font-weight: bold;
}
.content.profile form input[type=text], .content.profile form input[type=password], .content.profile form input[type=email] {
  padding: max(6px, 1%);
  min-width: 300px;
  width: 86%;
  border: 1px solid #ddd;
}
.content.profile form input[type=radio] + label {
  display: inline-block;
  padding: 0 10px;
  min-width: 80px;
}
.content.profile form select {
  padding: max(6px, 1%);
  border: 1px solid #ddd;
  width: 86%;
  vertical-align: top;
}
.content.profile .actions.single .btn {
  width: 100%;
  text-align: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: #fff;
  background-color: #3274d6;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}
.btn:hover {
  background-color: #2868c7;
}
.btn:disabled:hover {
  background-color: #ccc;
}
.btn.red {
  background-color: #e67c73;
}
.btn.red:hover {
  background-color: #e2685d;
}

.message {
  margin: 1.5vw;
  padding: min(2.5vw, 15px);
  border-radius: 10px;
}
.message p {
  margin: 0;
  padding: 0;
}
.message.status {
  background-color: #7bcaa3;
}
.message.warning {
  background-color: #fce8b2;
}
.message.error {
  background-color: #e67c73;
  color: #fff;
}
.message.critical {
  background-color: #ce3225;
  color: #fff;
  animation: blinking 3s infinite;
}

.help {
  position: relative;
  margin: 8px 0 8px 35px;
  display: inline-block;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 100%;
  font-weight: normal;
  text-align: initial;
}
.help:before {
  content: "?";
  display: inline-block;
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 3em;
  padding: 3px;
  color: white;
  background: #444;
  position: absolute;
  left: -32px;
  top: -3px;
  border: 1px solid #444;
}
.help:active:before {
  color: #444;
  background: white;
  border: 1px solid #444;
  text-decoration: none;
}
.help.small {
  margin: 5px 0 5px 35px;
  height: 14px;
}
.help.small:before {
  font-size: 90%;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8em;
  top: -4px;
  left: -28px;
}
.help > div {
  display: inline-block;
  overflow: hidden;
  transition: all 0.15s linear;
  width: 0;
  height: 0;
  position: fixed;
  left: 50%;
  top: 50%;
}
.help > div:before {
  content: "Help";
  font-size: 150%;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.help > div.active {
  height: 100%;
  width: 100%;
  color: #444;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  padding: 10vh 5vw 15vh;
  background: #ffd28a url("../images/triangles.svg");
  background-size: contain;
  line-height: 2em;
  margin: 0 !important;
}
.help > div.active:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  right: 0;
  top: 1vh;
  margin: 1vh;
  padding: 1vh;
  font-size: 250%;
  position: absolute;
  cursor: pointer;
}
.help > div.active h3 {
  padding: 0;
}
.help > div.active a {
  color: #444;
}

.actions {
  background-color: #eee;
  margin: 2vw -2vw 0vw -2vw;
  padding: 2vw 2vw 2vw 2vw;
}

.coinbar {
  padding: 0 1.5vw;
}
.coinbar .coin {
  text-decoration: none;
  display: inline-block;
  background-color: #eee;
  border-radius: 3em 3em 0 0;
  border-bottom: 10px solid transparent;
  margin-right: 0.5vw;
}
.coinbar .coin .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coinbar .coin .icon svg, .coinbar .coin .icon img {
  height: 4vw;
  width: 4vw;
  max-width: 35px;
  max-height: 35px;
  min-width: 22px;
  min-height: 22px;
}
.coinbar .coin.all {
  margin-right: 1.5vw;
  background: #d7edff;
}
.coinbar .coin.add {
  background-color: unset;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
}
.coinbar .coin:hover, .coinbar .coin.active {
  background-color: #ddd;
}
.coinbar .coin.active {
  font-weight: bold;
  background-color: #777;
  color: #fff;
  border: 0;
  border-bottom: 10px solid #8accff;
}
.coinbar .coin.active svg, .coinbar .coin.active img {
  filter: brightness(0) invert(1);
}
.coinbar span {
  display: block;
  text-align: center;
  font-size: 120%;
  margin-bottom: 4px;
}
.coinbar div {
  margin: 0.2vh;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 12vw;
  width: 12vw;
  float: left;
  max-height: 60px;
  max-width: 60px;
  border: 2px solid transparent;
  display: block;
}
.coinbar + form {
  border-top: 10px solid #8accff;
}

.working_widgets {
  overflow: auto;
  max-width: 1000px;
}
.working_widgets .working_widgets_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 45vw 45vw 45vw 65vw 1fr 36vw;
  gap: 2.5vw;
  margin: 0 1.5vw 1.5vw 1.5vw;
  padding-top: 2.5vw;
  border-top: 10px solid #8accff;
}
.working_widgets .working_widgets_container > div {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0 20px 0 0;
}
.working_widgets .working_widgets_container > div .title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 125%;
  font-weight: bold;
  color: #555;
  width: 100%;
  height: 15%;
  border-radius: 0 20px 0 0;
  background: url("../images/triangles_grey.svg");
  background-size: 80%;
  line-height: 1em;
}
.working_widgets .working_widgets_container > div .value {
  display: flex;
  text-align: center;
  font-weight: bold;
  justify-content: space-evenly;
  align-items: center;
  height: 85%;
  flex-direction: column;
}
.working_widgets .working_widgets_container > div .value.big {
  font-size: 175%;
}
.working_widgets .working_widgets_container > div .value .sub {
  font-size: 55%;
  font-weight: 500;
}
.working_widgets .working_widgets_container > div.full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.working_widgets .working_widgets_container > div.multi {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.working_widgets .working_widgets_container > div.multi label {
  font-weight: bold;
  display: block;
}
.working_widgets .working_widgets_container > div.multi .value {
  font-size: 115%;
  font-weight: normal;
}
.working_widgets .working_widgets_container > div.table {
  justify-content: normal;
  align-items: normal;
  overflow: auto;
  border-radius: 0;
  background-color: unset;
  box-shadow: unset;
  position: relative;
}
.working_widgets .working_widgets_container > div.table .title {
  background: #434343;
  color: #eee;
  height: 15%;
}
.working_widgets .working_widgets_container > div.table.fullscreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: #fff;
  height: 100vh;
}
.working_widgets .working_widgets_container > div.table.fullscreen .tablehead {
  border-radius: 0;
}
.working_widgets .working_widgets_container > div.table.fullscreen th {
  position: sticky;
}
.working_widgets .working_widgets_container > div.table.fullscreen .pager {
  bottom: 0;
}
.working_widgets .working_widgets_container > div.table table {
  min-width: 100%;
  margin: 0;
  border: none;
}
.working_widgets .working_widgets_container > div.table table thead {
  position: relative;
  border: none;
  background-color: #434343;
}
.working_widgets .working_widgets_container > div.table table thead th {
  position: relative;
}
.working_widgets .working_widgets_container > div.table table tbody {
  border-left: 2px solid #dee0e4;
  border-right: 1px solid #dee0e4;
}
.working_widgets .working_widgets_container > div.table table p {
  text-align: center;
  padding: 1vw;
}
.working_widgets .working_widgets_container > div.table table .loading {
  opacity: 0.2;
}
.working_widgets .working_widgets_container > div.table .tablehead {
  background-color: #434343;
  color: #fff;
  position: sticky;
  left: 0;
  right: 0;
  text-align: left;
  font-size: 125%;
  padding: 0.7vh;
  border-radius: 0 20px 0 0;
}
.working_widgets .working_widgets_container > div.table .tablehead .fullsize {
  float: right;
  padding: 0 5px;
  cursor: pointer;
  font-weight: normal;
  font-size: 160%;
}
.working_widgets .working_widgets_container > div.table .tablehead .fullsize:hover {
  color: #8accff;
}
.working_widgets .working_widgets_container > div.table .pager {
  color: #fff;
  background: #434343;
  text-align: left;
  padding: 0.7vh;
  position: sticky;
  left: 0;
  right: 0;
}
.working_widgets .working_widgets_container > div.table .pager a {
  color: #fff;
}
.working_widgets .working_widgets_container > div.table .pager a:hover {
  color: #8accff;
}
.working_widgets .working_widgets_container > div.table .pager div {
  display: inline-block;
}
.working_widgets .working_widgets_container > div.table .pager div span {
  padding: 5px;
  cursor: pointer;
}
.working_widgets .working_widgets_container > div.table .pager .left {
  width: 10%;
  visibility: hidden;
}
.working_widgets .working_widgets_container > div.table .pager .center {
  width: 80%;
}
.working_widgets .working_widgets_container > div.table .pager .right {
  width: 10%;
  text-align: right;
}
.working_widgets .working_widgets_container > div.diagram {
  position: relative;
  background-color: #434343;
  color: #eee;
}
.working_widgets .working_widgets_container > div.diagram .title {
  background: none;
}
.working_widgets .working_widgets_container > div.diagram .legend {
  display: none;
  position: absolute;
  right: 0;
  padding: 10px 2%;
}
.working_widgets .working_widgets_container > div.diagram .legend div {
  display: inline-block;
  margin-right: 10px;
}
.working_widgets .working_widgets_container > div.diagram .legend .circle {
  display: inline-block;
  -moz-border-radius: 12px/12px;
  -webkit-border-radius: 12px 12px;
  border-radius: 12px/12px;
  width: 12px;
  height: 12px;
  margin: -1px 3px -1px 0;
}
.working_widgets .working_widgets_container > div.diagram .legend .circle.red {
  border: solid 3px #e67c73;
}
.working_widgets .working_widgets_container > div.diagram .legend .circle.green {
  border: solid 3px #57bb8a;
}
.working_widgets .working_widgets_container > div.diagram .legend .circle.yellow {
  border: solid 3px #f1c232;
}
.working_widgets .working_widgets_container > div.strategy:target {
  animation: highlight 4s;
}
@keyframes highlight {
  from {
    background-color: #8accff;
  }
}
.working_widgets .working_widgets_container > div.strategy .value {
  font-size: 100%;
  padding: 0 1vw;
  max-width: 360px;
}

.working_table_sub {
  width: 100%;
}

.star_active {
  color: orange;
  font-weight: 900 !important;
  width: 15px;
}

.on_balance_active {
  color: #8accff;
  font-weight: 900 !important;
  width: 15px;
}

@media screen and (max-width: 1000px) {
  .navtop {
    bottom: 0;
    position: fixed;
    padding: 0;
    z-index: 100;
    height: 11vh;
    width: 100%;
    max-height: 100px;
    min-height: 70px;
  }
  .navtop div {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .navtop div h1 {
    display: none;
  }
  .navtop div a {
    width: 33.3%;
    height: 100%;
    padding: 2vh 0;
    display: block;
    border: none;
    margin: 0;
  }
  .navtop div a.active {
    font-weight: bold;
    background-color: #61baff;
  }
  .navtop div a:hover, .navtop div a:active {
    background-color: #76c3ff;
  }
  .navtop div a i {
    padding: 0;
    font-size: 250%;
    width: 100%;
    text-align: center;
  }
  .navtop div a span {
    display: block;
    text-align: center;
    margin: 5px;
  }

  .content {
    width: 100%;
  }
  .content form input[type=text], .content form input[type=password], .content form input[type=email] {
    width: 86%;
  }
}
.loader {
  display: inline-block;
  position: absolute;
  bottom: 50%;
  left: calc(50% - 20px);
}
.loader div {
  animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8accff;
  margin: -4px 0 0 -4px;
}
.loader div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loader div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loader div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loader div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loader div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loader div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loader div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 500px) {
  .show-s, .show-m {
    display: none !important;
  }
}
@media screen and (min-width: 501px) and (max-width: 700px) {
  .show-m {
    display: none !important;
  }
}
@media (min-width: 360px) {
  .working_widgets .working_widgets_container > div.diagram .legend {
    display: initial;
    zoom: 68%;
  }
}
@media (min-width: 450px) {
  .working_widgets .working_widgets_container > div.diagram .legend {
    zoom: 80%;
  }
}
@media (min-width: 500px) {
  html, body {
    font-size: 12px;
  }

  .working_widgets .working_widgets_container > div.diagram .legend {
    zoom: 90%;
  }
}
@media (min-width: 650px) {
  .working_widgets .working_widgets_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(3, min(300px, 29vw)) 1fr min(200px, 22vw);
  }
  .working_widgets .working_widgets_container > div {
    border-radius: 0 30px 0 0;
  }
  .working_widgets .working_widgets_container > div.diagram .legend {
    zoom: initial;
  }
}
@media (min-width: 1000px) {
  html, body {
    overflow: auto;
  }

  .body {
    padding-bottom: 0;
    padding-top: 0;
  }

  .working_widgets {
    overflow: initial;
  }
  .working_widgets .working_widgets_container {
    gap: 25px;
    row-gap: 25px;
    margin: 0 2.5% 2.5% 2.5%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
  }

  .page-title {
    background: #eee;
    position: relative;
    padding: 1%;
    margin: 0 auto;
    width: unset;
  }
  .page-title.fullwidth {
    margin: 0 1.5vw 1.5vw;
    border-radius: 0 0 10px 10px;
    text-align: center;
  }
  .page-title h1 {
    padding: inherit;
    letter-spacing: inherit;
    color: inherit;
  }
  .page-title:after {
    display: none;
  }
  .page-title .pagehelp, .page-title .goback {
    padding: 1.8%;
  }
  .page-title .help_content div {
    background-color: #fcfcfc;
  }
  .page-title .help_content {
    max-height: initial;
    height: initial;
  }
  .page-title .help_content div {
    overflow: initial;
  }

  .content {
    width: 1000px;
    margin: 0 auto;
  }
  .content .block {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    padding: 2vw 2vw 0;
    background-color: #fff;
  }

  .help_content_active {
    overflow: initial;
  }

  .coinbar {
    padding: 0 2.5%;
  }

  .calculation .coinbar, .strategy_overview .coinbar {
    padding: 0;
  }
}
