body {
  font-size: 1.6rem;
}

.row {
  margin-bottom: 30px;
}

.meshki-features i.fas,
.meshki-features i.far,
.meshki-features i.fa-brands {
  font-size: 5rem;
  margin-bottom: 20px;
}

.nav i.far,
.nav i.fas,
.nav i.fa-brands {
  font-size: 1.8rem;
}

.logo i.far,
.logo i.fas,
.logo i.fa-brands {
  padding-right: 8px;
}

div.share-links {
  display: -webkit-flex;
  display: -moz-box;
  display: inline-flex;
}

.share-links .fb-share:hover {
  color: #4570CC;
}

.share-links .tw-share:hover {
  color: #1DA1F2;
}

.share-links .gp-share:hover {
  color: #DB4437;
}

.share-links i.far,
.share-links i.fas,
.share-links i.fab,
.share-links i.fa-brands {
  font-size: 4rem;
}

:not(pre)>code[class*=language-], pre[class*=language-] {
  background-color: #222 !important;
}

.light-mode :not(pre)>code[class*=language-], pre[class*=language-] {
  background-color: unset !important;
}

.line-numbers .line-numbers-rows {
  left: -10em !important;
}

.light-mode code[class*=language-], .light-mode pre[class*=language-] {
  text-shadow: none;
}

.light-mode .token.punctuation {
  color: #222;
}

.title {
  display: block;
  font-size: 12vmax;
  padding-bottom: 10px;
  padding-top: 4vw;
}

.col {
  margin-bottom: 15px;
}

.content {
  padding-top: 160px;
}

.grid-table div div {
  text-align: center;
  border-style: solid;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #222;
  background-color: #E0E0E0;
  margin-bottom: 5px;
}

.heading-font-size {
  font-size: 1.2rem;
  color: #959595;
  letter-spacing: 1px;
  vertical-align: middle;
}

.custom-textarea {
  height: 200px;
}

.custom-love {
  font-size: 1.7rem !important;
  color: red;
  animation: heart-beat 1s infinite;
}

.custom-down-cdn {
  width: 250px;
}

.clipboard-btn {
  float: right;
  position: absolute;
  right: 35px;
}

.celebration-years {
  position: relative;
  top: 10px;
  padding: 0 4px;
  color: rgb(36, 120, 245);
  font-size: 5rem;
}

.balloons {
  height: 120px;
}

.celebration {
  text-align: left;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .celebration {
    text-align: center;
  }
}

.jquery-modal > .ui.modal {
  background-color: #333;
}

.jquery-modal .ui.modal .ui.medium.image {
  text-align: center;
}

.jquery-modal .image.content {
  padding: 30px 0px;
  width: 90%;
}

.jquery-modal .image-container {
  background-color: #fff;
  margin: 15px auto;
  padding: 10px 20px;
}

.jquery-modal .modal-footer {
  background-color: #222;
  color: #eee;
  text-align: left;
}

.jquery-modal .wallet-number {
  width: 100%;
  font-size: 1.5rem;
  color: darksalmon;
  border: 2px solid red;
  padding: 5px;
  text-align: center;
  margin: 15px 0;
}

.download-buttons {
  margin-bottom: 32vh;
  margin-top: 50px;
}

.extern-twitter {
  padding-top: 4px;
  padding-bottom: 4px;
}

.extern-twitter i {
  font-size: 3rem;
}

.extern-npm {
  padding-top: 0px;
  padding-bottom: 0px;
}

.extern-npm i {
  font-size: 4rem;
}

.extern-github {
  padding-top: 6px;
  padding-bottom: 6px;
}

.extern-github i {
  font-size: 2.8rem;
}

@media (min-width: 544px) {
  .custom-text-right {
    text-align: right;
  }
}

@keyframes heart-beat {
  0%   { opacity: 1; }
  100% { opacity: .5; }
}

/** Modal */
.modal {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  max-width: calc(100vw - 110px);
  margin: 0 auto;
  padding: 30px;
  background: #222;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.light-mode .modal {
  background: #d6d6d6;
  color: #222;
}

.light-mode .crypto-address {
  border-color: #222;
}

@media (max-width: 768px) {
  .modal {
    top: 80px;
  }
}
.modal-close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  padding: 0 5px;
}

.modal-title {
  max-width: calc(110vw - 200px);
}

.modal p {
  margin-bottom: 4px;
}

.fiat a {
  display: block;
  margin: 5px auto 0 auto;
  width: 70%;
}

.crypto-coin {
  display: block;
  padding: 6px 0;
  text-align: center;
}

.crypto-coin > * {
  display: block;
}

.crypto-title {
  position: relative;
  bottom: 12px;
}

.crypto-address {
  word-wrap: anywhere;
  padding: 4px 12px;
  border: solid #eee 1px;
  border-radius: 15px;
  margin-top: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.crypto-coin svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/** Overlay */
.modal-overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

/** JS */
.modal-is-visible {
  opacity: 1;
  pointer-events: auto;
}
