:root {
  --msr-color: #bf000c;
}

.support-popup-wrap {
  position: fixed;
  z-index: 99999;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
}
.support-popup-wrap:after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  bottom: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  height: 100vh;
}

.support-popup-wrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}

.support-popup {
  background: #fff;
  width: 96vw;
  max-width: 700px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-family: "Work Sans", sans-serif;
}
.support-popup h2 {
  color: var(--msr-color);
  font-weight: bold;
}
.support-popup .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}
.support-popup .image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.support-popup .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.support-popup .buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--msr-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.support-popup .buttons a:hover, .support-popup .buttons a:focus {
  background: #efeeee;
  color: #797979;
}
.support-popup .buttons a.support-popup-not_now {
  background: #efeeee;
  color: #797979;
  font-weight: normal;
}
.support-popup .buttons a.support-popup-not_now:hover, .support-popup .buttons a.support-popup-not_now:focus {
  opacity: 0.8;
}
.support-popup .support-popup-already_supporting {
  color: #333;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 15px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.support-popup .support-popup-already_supporting:hover, .support-popup .support-popup-already_supporting:focus {
  color: var(--msr-color);
}
@media screen and (max-width: 750px) {
  .support-popup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 15px;
  }
  .support-popup .image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .support-popup .image img {
    max-width: 50px;
  }
}

.support-button-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  font-family: "Work Sans", sans-serif;
  z-index: 9999;
}
.support-button-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--msr-color);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.support-button-wrap a:hover, .support-button-wrap a:focus {
  background: #efeeee;
  color: #797979;
}