@charset "UTF-8";
.main {
  width: calc(100% - 0px);
  float: left;
  margin-left: 0px;
  margin-top: 70px;
}

.only-mobile {
  display: block;
}
@media screen and (min-width: 650px) {
  .only-mobile {
    display: none;
  }
}

.only-desktop {
  display: none;
}
@media screen and (min-width: 650px) {
  .only-desktop {
    display: block;
  }
}

@supports (-webkit-box-shadow: auto) {
  .column {
    background-color: yellow !important;
  }
}
.column {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
}
@media screen and (min-width: 650px) {
  .column {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    height: calc(100vh - 70px);
    overflow: auto;
    padding-top: 70px;
    scrollbar-color: #000 #222;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
  }
  .column::-webkit-scrollbar {
    background: #222;
    width: 5px;
  }
  .column::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
  }
}

.column-block {
  margin-bottom: 30px;
}
.column-block p:not(:first-of-type) {
  text-indent: 20px;
}
.column-block.is-indented p {
  text-indent: 20px;
}
.column-block ul {
  list-style-type: none;
  margin-bottom: 1em;
  padding-left: 20px;
  position: relative;
}
.column-block ul li:nth-child(odd):before {
  content: "\2022";
  height: 1em;
  margin-left: -20px;
  position: absolute;
  width: 10px;
}
.column-block ul ul {
  margin-bottom: 0;
  margin-left: 30px;
  padding-left: 0;
}
.column-block ul ul:before {
  content: "\2192";
  height: 1em;
  margin-left: -30px;
  position: absolute;
  width: 20px;
}
.column-block ul ul li:before {
  display: none;
}
.column-block em {
  border-bottom: 1px solid;
  font-style: normal;
  padding-bottom: 2px;
}

.column .column-block:first-child > *:first-child {
  margin-top: 0;
}

.column-block h1 {
  margin-bottom: 10px;
}