*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #000;
	background:url('/assets/img/body-bg.jpg') no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.btn-emboss {
  border: 2px solid #fff !important;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), -1px 3px 5px 0 rgba(0,0,0,0.2) !important;
}
.form-group label, label {
  font-size: 15px;
  color: #0e1726;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 0.2rem;
}

.form-check-inline {
	margin-top: 0.25rem;
	margin-right: 2.5rem;
}

.form-control:hover, .form-select:hover, .select2-selection:hover {
	border-color: #999;
}
.form-control:focus, .form-select:focus, .select2-selection:focus {
	border-color: #86b7fe;
}

@media only screen and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}

.card-shadow {
	box-shadow: 0 2px 5px rgba(0,0,0,0.1), 0 2px 5px rgba(0,0,0,0.15);
}

.cursor-pointer {
	cursor: pointer;
}

#route-app {
  width: 100%;
  height: 100%;
}

.fs-xs {
	font-size: .82em;
}

.mb-6 {
	margin-bottom: 4rem !important;
}

.form-check-input {
	width: 1.5em;
	height: 1.5em;
}

.redeem-image {
	min-width: 180px;
	min-height: 150px;
}
.redeem-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 180px;
	height: 100%;
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}
.text-red {
	color: #ff0000;
}
.text-orange {
	color: #F2AF27;
}
.exchange, .exchange-login {
	border-bottom-right-radius: 0.5rem;
}

.icon {
	font-size: 18px;
	margin-right: 20px;
}

.icons {
	width: 100px;
	height: 100px;
}

.icon-success {
	font-size: 58px;
}

.icon-loading {
	font-size: 48px;
}

.avatar {
	top: 0px;
	font-size: 48px;
	margin-right: 20px;
	margin-top: -10px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9989;
  width: 100%;
  height: 44px;
  padding: 6px 3px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  background-color: #fff;
}

.footer__container {
  margin: 0 auto;
  max-width: 600px;
}

.footer__menus {
  font-size: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__menus > * {
  display: inline-block;
  width: 25%;
  cursor: pointer;
}

.footer__menu {
  text-align: center;
  color: #4a4a4a;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.footer__menu-icon {
  height: 15px;
}

.footer__menu-name {
  margin-top: 3px;
  font-size: 10px;
}

.footer__menu--active {
  color: #58a100;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.footer--shrink {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

