.color-orange {
  color: #f4862f;
}

*:focus {
  outline: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
body > header {
  transition: 0.5s filter linear;
  -webkit-transition: 0.5s -webkit-filter linear;
  -moz-transition: 0.5s -moz-filter linear;
  -ms-transition: 0.5s -ms-filter linear;
  -o-transition: 0.5s -o-filter linear;
}
body > section {
  transition: 0.5s filter linear;
  -webkit-transition: 0.5s -webkit-filter linear;
  -moz-transition: 0.5s -moz-filter linear;
  -ms-transition: 0.5s -ms-filter linear;
  -o-transition: 0.5s -o-filter linear;
}
body > footer {
  transition: 0.5s filter linear;
  -webkit-transition: 0.5s -webkit-filter linear;
  -moz-transition: 0.5s -moz-filter linear;
  -ms-transition: 0.5s -ms-filter linear;
  -o-transition: 0.5s -o-filter linear;
}

nav .sidenav-trigger {
  display: none;
  float: right;
}

@keyframes pulse_me {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  70% {
    opacity: 0.09;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
header {
  max-height: 442px;
}
header nav {
  background: url("../img/header-bg.jpg") no-repeat center center/auto transparent;
  height: auto;
  min-height: 100px;
  box-shadow: none;
}
header nav .brand-logo-wrapper {
  padding-top: 1rem;
  line-height: 1;
}
header nav .brand-logo-wrapper .brand-logo {
  background: url("../img/logo-small.png") no-repeat center center/contain transparent;
  width: 165px;
  height: 45px;
  text-indent: -9999px;
  display: inline-block;
  position: relative;
}
header nav .brand-logo-wrapper .pulse-container {
  display: inline-block;
}
header nav .brand-logo-wrapper .pulse-container .pulse-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .brand-logo-wrapper .pulse-container svg.pulse-svg {
  overflow: visible;
}
header nav .brand-logo-wrapper .pulse-container svg.pulse-svg .first-circle {
  fill: #73c22c;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse_me 2s linear infinite;
}
header nav .brand-logo-wrapper .pulse-container svg.pulse-svg .third-circle {
  fill: #73c22c;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse_me 2s linear infinite;
  animation-delay: 2s;
}
header nav .brand-logo-wrapper .pulse-container svg.pulse-svg .second-circle {
  fill: #73c22c;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse_me 2s linear infinite;
  animation-delay: 1s;
}
header nav .brand-logo-wrapper .pulse-container .pulse-css {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #73c22c;
  position: relative;
}
header nav .brand-logo-wrapper .pulse-container .pulse-css:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #73c22c;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}
header nav .brand-logo-wrapper .pulse-container .pulse-css:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #73c22c;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
  animation-delay: 2s;
}
header nav .brand-logo-wrapper .liveText {
  text-align: right;
}
header nav ul#nav-mobile li {
  transition: color 0.1s ease-in;
}
header nav ul#nav-mobile li a {
  transition: none;
  border-bottom: 2px solid transparent;
  padding: 10px 10px 0 10px;
  line-height: 2.5;
  color: white;
  font-size: 1rem;
  font-weight: inherit;
  height: auto;
}
header nav ul#nav-mobile li a:hover {
  border-color: #f4862f;
}
header nav ul#nav-mobile li a:active {
  border-color: #f4862f;
}
header nav ul#nav-mobile li a.active {
  border-color: #f4862f;
}
header nav .pageInfo {
  clear: both;
  padding-top: 4rem;
  line-height: 1.5;
  max-width: 60%;
}
header nav .pageInfo h1 {
  font-size: 2rem;
  margin: 0;
  padding: 0;
}
header nav .pageInfo h1 > span {
  color: #f4862f;
  position: relative;
}
header nav .pageInfo h1 > span:before {
  content: "";
  position: absolute;
  background: url(../img/brush.png) no-repeat center center/contain transparent;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: -15px;
}
header nav .pageInfo p {
  margin: 0;
  padding: 1rem 0;
  font-size: 1.2rem;
}

section > .container {
  padding: 2rem 0;
}

body.recharge .pageInfo h1 span {
  color: #e12662;
}
body.recharge #foundedUserData .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
  background-position: center center;
  background-size: cover;
}
body.recharge #foundedUserData .nameSurname {
  font-size: 1.2rem;
  margin-top: 1rem;
}
body.recharge .rubyInfo {
  margin-bottom: 2rem;
  font-weight: 600;
}
body.recharge #packageList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
body.recharge #packageList .item {
  margin: 0 1rem 2.5rem 1rem;
  height: 60px;
  border: 1px solid gray;
  border-radius: 5px;
  white-space: nowrap;
  position: relative;
}
body.recharge #packageList .item:before {
  content: "";
  background: url(../img/ruby.png) no-repeat center center/contain white;
  position: absolute;
  left: -20px;
  width: 40px;
  top: 10px;
  height: 40px;
  display: block;
}
body.recharge #packageList .item label {
  padding: 0.4rem 0.4rem 0.4rem 35px;
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  position: relative;
  font-weight: 600;
}
body.recharge #packageList .item label input {
  list-style: none;
}
body.recharge #packageList .item label > span {
  padding: 0 35px 0 0;
  display: block;
  height: auto;
}
body.recharge #packageList .item label > span:before {
  right: 0;
  left: auto;
  top: 11px;
}
body.recharge #packageList .item label > span:after {
  right: 0;
  left: auto;
  top: 11px;
  background-color: #e12662;
  border-color: #e12662;
}
body.recharge #packageList .item label > span .price {
  font-weight: 400;
}
body.recharge #packageList .item label > .img {
  min-height: 160px;
  width: 90%;
  background: transparent no-repeat center/contain;
}

body.recharge.success .pageInfo h1 span {
  color: #73c22c;
}

body.recharge.app {
  background-color: #fff;
}
body.recharge.app > header {
  display: none;
}
body.recharge.app .rubyInfo {
  color: white;
}
body.recharge.app .row .col {
  padding: 0 0.5rem;
}
body.recharge.app .userInfo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.recharge.app .userInfo .user-info {
  display: flex;
  align-items: center;
}
body.recharge.app .userInfo .user-info .user-name {
  font-weight: bolder;
  font-size: 18px;
}
body.recharge.app .userInfo .user-info .user-id {
  font-size: 13px;
}
body.recharge.app .userInfo .user-info .user-avatar {
  margin-right: 10px;
}
body.recharge.app .userInfo .user-info .user-avatar img {
  border-radius: 100%;
}
body.recharge.app .container {
  width: 100%;
}
body.recharge.app .divider-line {
  height: 14px;
  background-color: #f2f1f5;
  width: 100%;
  display: block;
}
body.recharge.app .packages-title {
  font-weight: bolder;
  color: #272727;
  margin-bottom: 18px;
  font-size: 17px;
}
body.recharge.app #packageList .item {
  height: auto;
  border-radius: 10px;
  font-weight: 600;
  overflow: hidden;
  border: 1px solid #bababa;
  margin: 0 0 1rem 0;
}
body.recharge.app #packageList .item .coin-count {
  font-size: 13px;
}
body.recharge.app #packageList .item .item-top {
  background-color: #f2f1f5;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 8px;
}
body.recharge.app #packageList .item .item-top .img {
  width: 50%;
  height: 50px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
body.recharge.app #packageList .item .item-bottom {
  font-weight: bolder;
  font-size: 15px;
}
body.recharge.app #packageList .item:before {
  display: none;
}
body.recharge.app #packageList .item label {
  padding: 1.5rem 0.5rem 0.5rem;
  text-align: center;
  color: #272727;
  cursor: default;
}
body.recharge.app #packageList .item label > span {
  padding: 0;
  font-size: 1.5rem;
}
body.recharge.app #packageList .item label > span::before, body.recharge.app #packageList .item label > span::after {
  display: none;
}
body.recharge.app #packageList .item label img {
  width: 60%;
}
body.recharge.app #packageList .item input {
  display: none;
}
body.recharge.app #packageList button[type=submit] {
  margin: 0.5rem;
  border-radius: 10px;
  font-weight: 600;
  display: block;
  width: calc(100% - 1rem);
}
body.recharge.app > footer {
  display: none;
}

body.recharge.app-success > header {
  display: none;
}
body.recharge.app-success > footer {
  display: none;
}

body.home header nav .pageInfo {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
body.home .store {
  position: absolute;
  top: -50px;
}
body.home .store .content {
  background-color: white;
  border-radius: 10px;
  font-size: 0;
  padding: 1rem;
  white-space: nowrap;
}
body.home .store .content a {
  background: url(../img/store.png) no-repeat 0px -62px;
  width: 174px;
  height: 61px;
  display: inline-block;
  transition: background-position 0.1s ease-in;
}
body.home .store .content a:nth-child(2) {
  margin-left: 1rem;
}
body.home .store .content a:hover {
  background-position-y: 0;
}
body.home .store .content a:active {
  background-position-y: 0;
}
body.home .store .content a.ios {
  background-position-x: -174px;
}
body.home .description {
  max-width: 60%;
  margin-top: 5rem;
}
body.home .infoBar {
  margin: 11rem 0 0;
  display: flex;
  flex-flow: row wrap;
}
body.home .infoBar .item {
  flex: 1;
  min-width: 100px;
  text-align: center;
  margin: 1.5rem;
  cursor: pointer;
}
body.home .infoBar .item .iconWrap {
  padding: 13px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #e6e6e6;
  transition: background-color 0.1s ease-in;
}
body.home .infoBar .item .iconWrap .icon {
  background: url("../img/infoBar.png") no-repeat 0 0 transparent;
  width: 75px;
  height: 75px;
  transition: background-position 0.1s ease-in;
}
body.home .infoBar .item .text {
  color: transparent;
  transition: color 0.1s ease-in;
  font-size: 1.2rem;
}
body.home .infoBar .item:nth-child(2) .icon {
  background-position-x: -75px;
}
body.home .infoBar .item:nth-child(3) .icon {
  background-position-x: -150px;
}
body.home .infoBar .item:nth-child(4) .icon {
  background-position-x: -225px;
}
body.home .infoBar .item:nth-child(5) .icon {
  background-position-x: -300px;
}
body.home .infoBar .item:nth-child(6) .icon {
  background-position-x: -375px;
}
body.home .infoBar .item:nth-child(7) .icon {
  background-position-x: -450px;
}
body.home .infoBar .item:hover .iconWrap {
  background-color: #f4862f;
}
body.home .infoBar .item:hover .icon {
  background-position-y: -75px;
}
body.home .infoBar .item:hover .text {
  color: #f4862f;
}
body.home .infoBar .item:active .iconWrap {
  background-color: #f4862f;
}
body.home .infoBar .item:active .icon {
  background-position-y: -75px;
}
body.home .infoBar .item:active .text {
  color: #f4862f;
}
body.home .matchCounter {
  height: 300px;
  background: url("../img/parallax.png") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}
body.home .matchCounter .container {
  padding-top: 66px;
}
body.home .matchCounter .counterWrap {
  background: url("../img/cornerTitle.png") no-repeat center center/contain;
  max-width: 360px;
  height: 168px;
  margin: 0 auto;
  font-size: 1.5rem;
  color: white;
  padding: 1.5rem;
  text-align: center;
}
body.home .matchCounter .counterWrap .counter {
  font-size: 4rem;
  line-height: 1.25;
}
body.home .matchCounter .counterWrap .small {
  font-size: 0.8rem;
  text-align: right;
}
body.home .features h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 9rem;
}
body.home .features h3 span {
  color: #f4862f;
}
body.home .features ul {
  margin: 2rem 0 4rem 0;
  padding: 0;
  max-width: 536px;
  text-align: justify;
}
body.home .features ul li {
  list-style: square outside;
  line-height: 2;
  margin-bottom: 1rem;
}
body.home footer .footer-image {
  position: absolute;
  display: block;
  background: url("../img/phone-footer.png") no-repeat bottom right;
  width: 580px;
  height: 675px;
  right: 0;
  top: -675px;
}

body.page {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
body.page h1 {
  font-size: 1.8rem;
}
body.page h2 {
  font-size: 1.5rem;
}
body.page .updateDate {
  text-align: right;
  font-size: 0.8rem;
}

footer {
  position: relative;
}
footer > .top {
  background: url("../img/footer-bg.png") no-repeat top center transparent;
  min-height: 254px;
  position: relative;
  z-index: 1;
}
footer > .content {
  background-color: #ea7f20;
  color: white;
  padding-bottom: calc(5rem + 60px);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
footer > .content .footer-image {
  display: none;
}
footer > .content .posFix {
  position: absolute;
  top: -85px;
}
footer > .content .footer-row {
  display: flex;
  flex-flow: column;
}
footer > .content .footer-row .footer-item {
  flex: 1;
}
footer > .content .footer-row.flexRow {
  flex-flow: row;
}
footer > .content .footer-row.flexCol {
  flex-flow: column wrap;
}
footer > .content .siteShortName {
  font-size: 3rem;
  font-weight: 600;
}
footer > .content .footer-social-container {
  margin: 1rem 0 1rem 70px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 200px;
  position: relative;
}
footer > .content .footer-social-container:before {
  content: "";
  display: block;
  position: absolute;
  left: -70px;
  width: 50px;
  height: 50px;
}
footer > .content .footer-social-container .footer-social-item {
  display: flex;
}
footer > .content .footer-social-container .footer-social-item a {
  padding: 0 15px;
  display: block;
}
footer > .content .footer-social-container .footer-social-item:hover i {
  color: #b45509;
}
footer > .content .footer-social-container .footer-social-item:not(:first-child) {
  border-left: 1px solid rgba(244, 134, 47, 0.5);
}
footer > .content .footer-social-container .footer-social-item i {
  color: #f4862f;
  transition: color 0.2s ease-in-out;
}
footer > .content ol.siteLinks {
  list-style: none;
  margin: 4rem 0 0 0;
  padding: 0;
  text-align: right;
}
footer > .content ol.siteLinks li {
  list-style: none;
  display: inline-block;
}
footer > .content ol.siteLinks li a {
  display: block;
  padding: 1rem;
  color: white;
}
footer > .content ol.siteLinks li a:hover {
  color: #b45509;
}
footer > .content ol.siteLinks li a:active {
  color: #b45509;
}

#promoVideo {
  position: absolute;
  width: 334px;
  height: 665px;
  right: 0;
  top: -260px;
}
#promoVideo .phoneCanvas {
  content: " ";
  position: absolute;
  z-index: 10;
  background: url(../img/phone-canvas.png) no-repeat center center/contain transparent;
  width: 334px;
  height: 665px;
  top: 0;
}
#promoVideo .phoneCanvasBg {
  position: absolute;
  z-index: 4;
  width: calc(100% - 34px);
  height: calc(100% - 38px);
  margin: 17px;
  background-color: black;
  vertical-align: middle;
  top: 0;
  color: white;
}
#promoVideo .phoneCanvasBg div {
  position: absolute;
  top: 47%;
  left: 34%;
}
#promoVideo video {
  position: absolute;
  z-index: 5;
  width: calc(100% - 34px);
  height: calc(100% - 38px);
  margin: 17px;
}

#ajaxFullLoader {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999999;
  text-align: center;
}
#ajaxFullLoader > * {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.blur {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -o-filter: blur(1px);
  -ms-filter: blur(1px);
  filter: url(#blur);
  filter: blur(1px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius="1");
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.mt5 {
  margin-top: 5rem;
}

/*# sourceMappingURL=style.css.map */
