@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.alert-box-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 300;
  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;
}
@supports (-webkit-backdrop-filter: blur(10px)) {
  .alert-box-wrapper {
    -webkit-backdrop-filter: blur(10px);
  }
}
.alert-box-wrapper[aria-hidden=false] {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.alert-box-wrapper[aria-hidden=false] .alert-box {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.alert-box-wrapper[aria-hidden=true] {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.alert-box-wrapper[aria-hidden=true] .alert-box {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.alert-box-wrapper .alert-box {
  background: white;
  padding: 1.5rem;
  border-radius: 0.25rem;
  min-width: 18rem;
  max-width: 25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 22px 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 22px 0;
  margin-bottom: 20%;
  position: relative;
}
.alert-box-wrapper .alert-box > .alert-box-icon {
  position: absolute;
  top: -2.5em;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
.alert-box-wrapper .alert-box > .alert-box-icon + p {
  text-align: center;
  font-weight: bold;
  margin-top: 3em;
}
.alert-box-wrapper .alert-box > .alert-box-icon + p + .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alert-box-wrapper .alert-box > .alert-box-icon + p + .action button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.alert-box-wrapper .alert-box > .alert-box-icon + p + .action button:not(:last-child) {
  margin-right: 0.5em;
}
.alert-box-wrapper .alert-box.info .action .btn-confirm {
  border: 0;
  outline: none;
  color: #fff;
  background-color: #27c2ee;
}
.alert-box-wrapper .alert-box.info .action .btn-confirm:hover {
  background-color: #66d7f6;
}
.alert-box-wrapper .alert-box.error .action .btn-confirm {
  border: 0;
  outline: none;
  color: #fff;
  background-color: #f25d5c;
}
.alert-box-wrapper .alert-box.error .action .btn-confirm:hover {
  background-color: rgba(255, 105, 96, 0.8);
}
.alert-box-wrapper .alert-box.success .action .btn-confirm {
  border: 0;
  outline: none;
  color: #fff;
  background-color: #48dc51;
}
.alert-box-wrapper .alert-box.success .action .btn-confirm:hover {
  background-color: rgba(127, 220, 107, 0.8);
}
.alert-box-wrapper .alert-box.warning .action .btn-confirm {
  border: 0;
  outline: none;
  color: #fff;
  background-color: #f8ae64;
}
.alert-box-wrapper .alert-box.warning .action .btn-confirm:hover {
  background-color: #facd95;
}
.alert-box-wrapper .alert-box.question .action .btn-confirm {
  border: 0;
  outline: none;
  color: #fff;
  background-color: #87adbd;
}
.alert-box-wrapper .alert-box.question .action .btn-confirm:hover {
  background-color: #c9dae1;
}
.alert-box-wrapper h1 {
  font-size: 1.5rem;
  margin: 0;
}
.alert-box-wrapper p {
  font-size: 1rem;
  margin: 0;
}
.alert-box-wrapper .action {
  margin-top: 1rem;
  text-align: right;
}
.alert-box-wrapper button {
  background: #ddd;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid #c4c4c4;
  padding: 0.5rem 1rem;
  outline: none;
}
.alert-box-wrapper button:hover {
  background-color: #f7f7f7;
}
.alert-box-wrapper button:active {
  background-color: #c4c4c4;
}
.alert-box-wrapper button:not(:first-child) {
  margin-left: 0.5rem;
}

@-webkit-keyframes alert-box-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes alert-box-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes alert-box-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes alert-box-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes alert-box-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.875em;
    width: 1.5625em;
  }
}
@keyframes alert-box-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.875em;
    width: 1.5625em;
  }
}
@-webkit-keyframes alert-box-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes alert-box-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes alert-box-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@keyframes alert-box-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes alert-box-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes alert-box-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes alert-box-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes alert-box-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
body.alert-box-toast-shown .alert-box-container {
  position: fixed;
  background-color: transparent;
}

body.alert-box-toast-shown .alert-box-container.alert-box-shown {
  background-color: transparent;
}

body.alert-box-toast-shown .alert-box-container.alert-box-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.alert-box-toast-shown .alert-box-container.alert-box-top-end,
body.alert-box-toast-shown .alert-box-container.alert-box-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.alert-box-toast-shown .alert-box-container.alert-box-top-left,
body.alert-box-toast-shown .alert-box-container.alert-box-top-start {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.alert-box-toast-shown .alert-box-container.alert-box-center-left,
body.alert-box-toast-shown .alert-box-container.alert-box-center-start {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.alert-box-toast-shown .alert-box-container.alert-box-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

body.alert-box-toast-shown .alert-box-container.alert-box-center-end,
body.alert-box-toast-shown .alert-box-container.alert-box-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.alert-box-toast-shown .alert-box-container.alert-box-bottom-left,
body.alert-box-toast-shown .alert-box-container.alert-box-bottom-start {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.alert-box-toast-shown .alert-box-container.alert-box-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.alert-box-toast-shown .alert-box-container.alert-box-bottom-end,
body.alert-box-toast-shown .alert-box-container.alert-box-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

body.alert-box-toast-column .alert-box-toast {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

body.alert-box-toast-column .alert-box-toast .alert-box-actions {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: 2.2em;
  margin-top: 0.3125em;
}

body.alert-box-toast-column .alert-box-toast .alert-box-loading {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

body.alert-box-toast-column .alert-box-toast .alert-box-input {
  height: 2em;
  margin: 0.3125em auto;
  font-size: 1em;
}

body.alert-box-toast-column .alert-box-toast .alert-box-validation-message {
  font-size: 1em;
}

.alert-box-popup.alert-box-toast {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding: 0.625em;
  -webkit-box-shadow: 0 0 0.625em #d9d9d9;
  box-shadow: 0 0 0.625em #d9d9d9;
  overflow-y: hidden;
}

.alert-box-popup.alert-box-toast .alert-box-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.alert-box-popup.alert-box-toast .alert-box-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0.6em;
  font-size: 1em;
}

.alert-box-popup.alert-box-toast .alert-box-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.alert-box-popup.alert-box-toast .alert-box-close {
  position: initial;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8;
}

.alert-box-popup.alert-box-toast .alert-box-content {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 1em;
}

.alert-box-popup.alert-box-toast .alert-box-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

.alert-box-popup.alert-box-toast .alert-box-icon-text {
  font-size: 2em;
  font-weight: 700;
  line-height: 1em;
}

.alert-box-popup.alert-box-toast .alert-box-icon.alert-box-success .alert-box-success-ring {
  width: 2em;
  height: 2em;
}

.alert-box-popup.alert-box-toast .alert-box-icon.alert-box-error [class^=alert-box-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.alert-box-popup.alert-box-toast .alert-box-icon.alert-box-error [class^=alert-box-x-mark-line][class$=left] {
  left: 0.3125em;
}

.alert-box-popup.alert-box-toast .alert-box-icon.alert-box-error [class^=alert-box-x-mark-line][class$=right] {
  right: 0.3125em;
}

.alert-box-popup.alert-box-toast .alert-box-actions {
  height: auto;
  margin: 0 0.3125em;
}

.alert-box-popup.alert-box-toast .alert-box-styled {
  margin: 0 0.3125em;
  padding: 0.3125em 0.625em;
  font-size: 1em;
}

.alert-box-popup.alert-box-toast .alert-box-styled:focus {
  -webkit-box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
  box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
}

.alert-box-popup.alert-box-toast .alert-box-success {
  border-color: #a5dc86;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-circular-line] {
  position: absolute;
  width: 2em;
  height: 2.8125em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-circular-line][class$=left] {
  top: -0.25em;
  left: -0.9375em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2em 2em;
  -ms-transform-origin: 2em 2em;
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  -webkit-transform-origin: 0 2em;
  -ms-transform-origin: 0 2em;
  transform-origin: 0 2em;
  border-radius: 0 4em 4em 0;
}

.alert-box-popup.alert-box-toast .alert-box-success .alert-box-success-ring {
  width: 2em;
  height: 2em;
}

.alert-box-popup.alert-box-toast .alert-box-success .alert-box-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-line] {
  height: 0.3125em;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.alert-box-popup.alert-box-toast .alert-box-success [class^=alert-box-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.alert-box-popup.alert-box-toast.alert-box-show {
  -webkit-animation: showSweetToast 0.5s;
  animation: showSweetToast 0.5s;
}

.alert-box-popup.alert-box-toast.alert-box-hide {
  -webkit-animation: hideSweetToast 0.2s forwards;
  animation: hideSweetToast 0.2s forwards;
}

.alert-box-popup.alert-box-toast .alert-box-animate-success-icon .alert-box-success-line-tip {
  -webkit-animation: animate-toast-success-tip 0.75s;
  animation: animate-toast-success-tip 0.75s;
}

.alert-box-popup.alert-box-toast .alert-box-animate-success-icon .alert-box-success-line-long {
  -webkit-animation: animate-toast-success-long 0.75s;
  animation: animate-toast-success-long 0.75s;
}

@-webkit-keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: 0.5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}
@keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: 0.5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes animate-toast-success-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes animate-toast-success-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@-webkit-keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
body.alert-box-shown:not(.alert-box-no-backdrop):not(.alert-box-toast-shown) {
  overflow-y: hidden;
}

body.alert-box-height-auto {
  height: auto !important;
}

body.alert-box-no-backdrop .alert-box-shown {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-color: transparent;
}

body.alert-box-no-backdrop .alert-box-shown > .alert-box-modal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-top {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-top-left,
body.alert-box-no-backdrop .alert-box-shown.alert-box-top-start {
  top: 0;
  left: 0;
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-top-end,
body.alert-box-no-backdrop .alert-box-shown.alert-box-top-right {
  top: 0;
  right: 0;
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-center-left,
body.alert-box-no-backdrop .alert-box-shown.alert-box-center-start {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-center-end,
body.alert-box-no-backdrop .alert-box-shown.alert-box-center-right {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-bottom-left,
body.alert-box-no-backdrop .alert-box-shown.alert-box-bottom-start {
  bottom: 0;
  left: 0;
}

body.alert-box-no-backdrop .alert-box-shown.alert-box-bottom-end,
body.alert-box-no-backdrop .alert-box-shown.alert-box-bottom-right {
  right: 0;
  bottom: 0;
}

.alert-box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.alert-box-container.alert-box-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alert-box-container.alert-box-top-left,
.alert-box-container.alert-box-top-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.alert-box-container.alert-box-top-end,
.alert-box-container.alert-box-top-right {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alert-box-container.alert-box-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alert-box-container.alert-box-center-left,
.alert-box-container.alert-box-center-start {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.alert-box-container.alert-box-center-end,
.alert-box-container.alert-box-center-right {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alert-box-container.alert-box-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.alert-box-container.alert-box-bottom-left,
.alert-box-container.alert-box-bottom-start {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.alert-box-container.alert-box-bottom-end,
.alert-box-container.alert-box-bottom-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alert-box-container.alert-box-grow-fullscreen > .alert-box-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alert-box-container.alert-box-grow-row > .alert-box-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alert-box-container.alert-box-grow-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.alert-box-container.alert-box-grow-column.alert-box-bottom,
.alert-box-container.alert-box-grow-column.alert-box-center,
.alert-box-container.alert-box-grow-column.alert-box-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alert-box-container.alert-box-grow-column.alert-box-bottom-left,
.alert-box-container.alert-box-grow-column.alert-box-bottom-start,
.alert-box-container.alert-box-grow-column.alert-box-center-left,
.alert-box-container.alert-box-grow-column.alert-box-center-start,
.alert-box-container.alert-box-grow-column.alert-box-top-left,
.alert-box-container.alert-box-grow-column.alert-box-top-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alert-box-container.alert-box-grow-column.alert-box-bottom-end,
.alert-box-container.alert-box-grow-column.alert-box-bottom-right,
.alert-box-container.alert-box-grow-column.alert-box-center-end,
.alert-box-container.alert-box-grow-column.alert-box-center-right,
.alert-box-container.alert-box-grow-column.alert-box-top-end,
.alert-box-container.alert-box-grow-column.alert-box-top-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.alert-box-container.alert-box-grow-column > .alert-box-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alert-box-container:not(.alert-box-top):not(.alert-box-top-start):not(.alert-box-top-end):not(.alert-box-top-left):not(.alert-box-top-right):not(.alert-box-center-start):not(.alert-box-center-end):not(.alert-box-center-left):not(.alert-box-center-right):not(.alert-box-bottom):not(.alert-box-bottom-start):not(.alert-box-bottom-end):not(.alert-box-bottom-left):not(.alert-box-bottom-right):not(.alert-box-grow-fullscreen) > .alert-box-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .alert-box-container .alert-box-modal {
    margin: 0 !important;
  }
}
.alert-box-container.alert-box-fade {
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}

.alert-box-container.alert-box-shown {
  background-color: rgba(0, 0, 0, 0.4);
}

.alert-box-popup {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.alert-box-popup:focus {
  outline: 0;
}

.alert-box-popup.alert-box-loading {
  overflow-y: hidden;
}

.alert-box-popup .alert-box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alert-box-popup .alert-box-title {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.alert-box-popup .alert-box-actions {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1.25em auto 0;
  z-index: 1;
}

.alert-box-popup .alert-box-actions:not(.alert-box-loading) .alert-box-styled[disabled] {
  opacity: 0.4;
}

.alert-box-popup .alert-box-actions:not(.alert-box-loading) .alert-box-styled:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.alert-box-popup .alert-box-actions:not(.alert-box-loading) .alert-box-styled:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.alert-box-popup .alert-box-actions.alert-box-loading .alert-box-styled.alert-box-confirm {
  width: 2.5em;
  height: 2.5em;
  margin: 0.46875em;
  padding: 0;
  border: 0.25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: alert-box-rotate-loading 1.5s linear 0s infinite normal;
  animation: alert-box-rotate-loading 1.5s linear 0s infinite normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.alert-box-popup .alert-box-actions.alert-box-loading .alert-box-styled.alert-box-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

.alert-box-popup .alert-box-actions.alert-box-loading :not(.alert-box-styled).alert-box-confirm::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  border: 3px solid #999;
  border-radius: 50%;
  border-right-color: transparent;
  -webkit-box-shadow: 1px 1px 1px #fff;
  box-shadow: 1px 1px 1px #fff;
  content: "";
  -webkit-animation: alert-box-rotate-loading 1.5s linear 0s infinite normal;
  animation: alert-box-rotate-loading 1.5s linear 0s infinite normal;
}

.alert-box-popup .alert-box-styled {
  margin: 0.3125em;
  padding: 0.625em 2em;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.alert-box-popup .alert-box-styled:not([disabled]) {
  cursor: pointer;
}

.alert-box-popup .alert-box-styled.alert-box-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

.alert-box-popup .alert-box-styled.alert-box-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

.alert-box-popup .alert-box-styled:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
}

.alert-box-popup .alert-box-styled::-moz-focus-inner {
  border: 0;
}

.alert-box-popup .alert-box-footer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.alert-box-popup .alert-box-image {
  max-width: 100%;
  margin: 1.25em auto;
}

.alert-box-popup .alert-box-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  background: 0 0;
  color: #ccc;
  font-family: inherit;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
}

.alert-box-popup .alert-box-close:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  color: #f27474;
}

.alert-box-popup > .alert-box-checkbox,
.alert-box-popup > .alert-box-file,
.alert-box-popup > .alert-box-input,
.alert-box-popup > .alert-box-radio,
.alert-box-popup > .alert-box-select,
.alert-box-popup > .alert-box-textarea {
  display: none;
}

.alert-box-popup .alert-box-content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 1.125em;
  font-weight: 300;
  line-height: normal;
  z-index: 1;
  word-wrap: break-word;
}

.alert-box-popup #alert-box-content {
  text-align: center;
}

.alert-box-popup .alert-box-checkbox,
.alert-box-popup .alert-box-file,
.alert-box-popup .alert-box-input,
.alert-box-popup .alert-box-radio,
.alert-box-popup .alert-box-select,
.alert-box-popup .alert-box-textarea {
  margin: 1em auto;
}

.alert-box-popup .alert-box-file,
.alert-box-popup .alert-box-input,
.alert-box-popup .alert-box-textarea {
  width: 100%;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  font-size: 1.125em;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.alert-box-popup .alert-box-file.alert-box-inputerror,
.alert-box-popup .alert-box-input.alert-box-inputerror,
.alert-box-popup .alert-box-textarea.alert-box-inputerror {
  border-color: #f27474 !important;
  -webkit-box-shadow: 0 0 2px #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.alert-box-popup .alert-box-file:focus,
.alert-box-popup .alert-box-input:focus,
.alert-box-popup .alert-box-textarea:focus {
  border: 1px solid #b4dbed;
  outline: 0;
  -webkit-box-shadow: 0 0 3px #c4e6f5;
  box-shadow: 0 0 3px #c4e6f5;
}

.alert-box-popup .alert-box-file::-webkit-input-placeholder,
.alert-box-popup .alert-box-input::-webkit-input-placeholder,
.alert-box-popup .alert-box-textarea::-webkit-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file:-ms-input-placeholder,
.alert-box-popup .alert-box-input:-ms-input-placeholder,
.alert-box-popup .alert-box-textarea:-ms-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file::-ms-input-placeholder,
.alert-box-popup .alert-box-input::-ms-input-placeholder,
.alert-box-popup .alert-box-textarea::-ms-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file::-webkit-input-placeholder, .alert-box-popup .alert-box-input::-webkit-input-placeholder, .alert-box-popup .alert-box-textarea::-webkit-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file::-moz-placeholder, .alert-box-popup .alert-box-input::-moz-placeholder, .alert-box-popup .alert-box-textarea::-moz-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file:-ms-input-placeholder, .alert-box-popup .alert-box-input:-ms-input-placeholder, .alert-box-popup .alert-box-textarea:-ms-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file::-ms-input-placeholder, .alert-box-popup .alert-box-input::-ms-input-placeholder, .alert-box-popup .alert-box-textarea::-ms-input-placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-file::placeholder,
.alert-box-popup .alert-box-input::placeholder,
.alert-box-popup .alert-box-textarea::placeholder {
  color: #ccc;
}

.alert-box-popup .alert-box-range input {
  width: 80%;
}

.alert-box-popup .alert-box-range output {
  width: 20%;
  font-weight: 600;
  text-align: center;
}

.alert-box-popup .alert-box-range input,
.alert-box-popup .alert-box-range output {
  height: 2.625em;
  margin: 1em auto;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.alert-box-popup .alert-box-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.alert-box-popup .alert-box-input[type=number] {
  max-width: 10em;
}

.alert-box-popup .alert-box-file {
  font-size: 1.125em;
}

.alert-box-popup .alert-box-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.alert-box-popup .alert-box-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  color: #545454;
  font-size: 1.125em;
}

.alert-box-popup .alert-box-checkbox,
.alert-box-popup .alert-box-radio {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alert-box-popup .alert-box-checkbox label,
.alert-box-popup .alert-box-radio label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.alert-box-popup .alert-box-checkbox input,
.alert-box-popup .alert-box-radio input {
  margin: 0 0.4em;
}

.alert-box-popup .alert-box-validation-message {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.625em;
  background: #f0f0f0;
  color: #666;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
}

.alert-box-popup .alert-box-validation-message::before {
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  content: "!";
  zoom: normal;
}

@supports (-ms-accelerator: true) {
  .alert-box-range input {
    width: 100% !important;
  }
  .alert-box-range output {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .alert-box-range input {
    width: 100% !important;
  }
  .alert-box-range output {
    display: none;
  }
}
@-moz-document url-prefix() {
  .alert-box-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}
.alert-box-icon {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  line-height: 5em;
  cursor: default;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  zoom: normal;
}

.alert-box-icon-text {
  font-size: 3.75em;
}

.alert-box-icon.alert-box-error {
  background-color: #f27474;
}

.alert-box-icon.alert-box-error .alert-box-x-mark {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.alert-box-icon.alert-box-error [class^=alert-box-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #fff;
}

.alert-box-icon.alert-box-error [class^=alert-box-x-mark-line][class$=left] {
  left: 1.0625em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-box-icon.alert-box-error [class^=alert-box-x-mark-line][class$=right] {
  right: 1em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.alert-box-icon.alert-box-warning {
  background-color: #f8bb86;
  color: #fff;
}

.alert-box-icon.alert-box-info {
  background-color: #3fc3ee;
  color: #fff;
}

.alert-box-icon.alert-box-question {
  background-color: #87adbd;
  color: #fff;
}

.alert-box-icon.alert-box-success {
  background-color: #a5dc86;
}

.alert-box-icon.alert-box-success [class^=alert-box-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

.alert-box-icon.alert-box-success [class^=alert-box-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 3.75em 3.75em;
  -ms-transform-origin: 3.75em 3.75em;
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.alert-box-icon.alert-box-success [class^=alert-box-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 3.75em;
  -ms-transform-origin: 0 3.75em;
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.alert-box-icon.alert-box-success .alert-box-success-ring {
  position: absolute;
  top: -0.25em;
  left: -0.25em;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 2;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.alert-box-icon.alert-box-success .alert-box-success-fix {
  position: absolute;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1;
}

.alert-box-icon.alert-box-success [class^=alert-box-success-line] {
  display: block;
  position: absolute;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #fff;
  z-index: 2;
}

.alert-box-icon.alert-box-success [class^=alert-box-success-line][class$=tip] {
  top: 2.875em;
  left: 0.875em;
  width: 1.5625em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-box-icon.alert-box-success [class^=alert-box-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.alert-box-progresssteps {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  font-weight: 600;
}

.alert-box-progresssteps li {
  display: inline-block;
  position: relative;
}

.alert-box-progresssteps .alert-box-progresscircle {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
  z-index: 20;
}

.alert-box-progresssteps .alert-box-progresscircle:first-child {
  margin-left: 0;
}

.alert-box-progresssteps .alert-box-progresscircle:last-child {
  margin-right: 0;
}

.alert-box-progresssteps .alert-box-progresscircle.alert-box-activeprogressstep {
  background: #3085d6;
}

.alert-box-progresssteps .alert-box-progresscircle.alert-box-activeprogressstep ~ .alert-box-progresscircle {
  background: #add8e6;
}

.alert-box-progresssteps .alert-box-progresscircle.alert-box-activeprogressstep ~ .alert-box-progressline {
  background: #add8e6;
}

.alert-box-progresssteps .alert-box-progressline {
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #3085d6;
  z-index: 10;
}

[class^=alert-box] {
  -webkit-tap-highlight-color: transparent;
}

.alert-box-show {
  -webkit-animation: alert-box-show 0.3s;
  animation: alert-box-show 0.3s;
}

.alert-box-show.alert-box-noanimation {
  -webkit-animation: none;
  animation: none;
}

.alert-box-hide {
  -webkit-animation: alert-box-hide 0.15s forwards;
  animation: alert-box-hide 0.15s forwards;
}

.alert-box-hide.alert-box-noanimation {
  -webkit-animation: none;
  animation: none;
}

[dir=rtl] .alert-box-close {
  right: auto;
  left: 0;
}

.alert-box-animate-success-icon .alert-box-success-line-tip {
  -webkit-animation: alert-box-animate-success-line-tip 0.75s;
  animation: alert-box-animate-success-line-tip 0.75s;
}

.alert-box-animate-success-icon .alert-box-success-line-long {
  -webkit-animation: alert-box-animate-success-line-long 0.75s;
  animation: alert-box-animate-success-line-long 0.75s;
}

.alert-box-animate-success-icon .alert-box-success-circular-line-right {
  -webkit-animation: alert-box-rotate-success-circular-line 4.25s ease-in;
  animation: alert-box-rotate-success-circular-line 4.25s ease-in;
}

.alert-box-animate-error-icon {
  -webkit-animation: alert-box-animate-error-icon 0.5s;
  animation: alert-box-animate-error-icon 0.5s;
}

.alert-box-animate-error-icon .alert-box-x-mark {
  -webkit-animation: alert-box-animate-error-x-mark 0.5s;
  animation: alert-box-animate-error-x-mark 0.5s;
}

@-webkit-keyframes alert-box-rotate-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes alert-box-rotate-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media print {
  body.alert-box-shown:not(.alert-box-no-backdrop):not(.alert-box-toast-shown) {
    overflow-y: scroll !important;
  }
  body.alert-box-shown:not(.alert-box-no-backdrop):not(.alert-box-toast-shown) > [aria-hidden=true] {
    display: none;
  }
  body.alert-box-shown:not(.alert-box-no-backdrop):not(.alert-box-toast-shown) .alert-box-container {
    position: initial !important;
  }
}
:root {
  font-size: 14px;
}

body {
  background: url("../img/bg.png") center/cover no-repeat fixed #0f1217;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "microsoft yahei", sans-serif;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body {
    background: #0f1217;
  }
}

body .body-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  body .body-wrapper {
    height: 100vh;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Scrollbar */
}
* ::-webkit-scrollbar {
  display: none;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #ffb701;
}

button {
  background-color: #ffb701;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  outline: 0;
}

input {
  border: 0;
  border-radius: 3px;
  height: 30px;
  outline: 0;
  padding: 0 10px;
}
input::-webkit-input-placeholder {
  color: #b8b8b8;
}
input::-moz-placeholder {
  color: #b8b8b8;
}
input:-ms-input-placeholder {
  color: #b8b8b8;
}
input::-ms-input-placeholder {
  color: #b8b8b8;
}
input::placeholder {
  color: #b8b8b8;
}

table {
  width: 100%;
}
table.tbl-border {
  border: 1px solid #ffffff;
  border-collapse: separate;
  border-spacing: 0;
}
table.tbl-border tr th,
table.tbl-border tr td {
  padding: 10px;
}
table.tbl-border tr th:not(:last-child),
table.tbl-border tr td:not(:last-child) {
  border-right: 1px solid #ffffff;
}
table.tbl-border tr:not(:last-child) th,
table.tbl-border tr:not(:last-child) td {
  border-bottom: 1px solid #ffffff;
}
table.faq-tbl {
  border-spacing: 0;
  color: #dde4f4;
}
table.faq-tbl thead {
  border-radius: 4px;
  margin-bottom: 20px;
}
table.faq-tbl thead tr th {
  font-size: 16px;
  padding: 7.5px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
}
table.faq-tbl thead tr th:first-child {
  border-right: 1px solid #ffffff;
  border-radius: 4px 0 0 4px;
}
table.faq-tbl thead tr th:last-child {
  border-radius: 0 4px 4px 0;
}
table.faq-tbl tbody tr td {
  border-bottom: 1px solid #f1f5ff;
  border-right: 1px solid #f1f5ff;
  padding: 10px;
}
table.faq-tbl tbody tr td:first-child {
  border-left: 1px solid #f1f5ff;
}
table.faq-tbl tbody tr:first-child td {
  border-top: 1px solid #f1f5ff;
}
table.faq-tbl tbody tr:first-child td:first-child {
  border-radius: 8px 0 0 0;
}
table.faq-tbl tbody tr:first-child td:last-child {
  border-radius: 0 8px 0 0;
}
table.faq-tbl tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}
table.faq-tbl tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}
table.faq-tbl tbody:before {
  content: "@";
  display: block;
  line-height: 20px;
  text-indent: -99999px;
}

[data-lang] {
  opacity: 0;
  visibility: hidden;
}

.desktop-hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .desktop-hide {
    display: block;
  }
}

.mobile-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}

.pace .pace-progress {
  background: #ffb701;
}

.container {
  position: relative;
  max-width: 1200px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .container {
    width: 95%;
    height: 95%;
  }
}

.btn-top {
  background-color: transparent;
  display: none;
  line-height: 1rem;
  position: absolute;
  bottom: 35px;
  right: -80px;
  text-shadow: 0 0 8px #082210;
}
@media screen and (max-width: 767px) {
  .btn-top {
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.btn-top img {
  background-color: #ffb701;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 8px #fee3a6;
  box-shadow: inset 0 0 8px #fee3a6;
  height: 38px;
  width: 38px;
  padding: 8px;
}

/** ****************** Header ****************** */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 15px 0 auto;
}
@media screen and (max-width: 767px) {
  .header {
    margin: 8px 8px 0 auto;
  }
}
.header .home-button {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f1f4ff), color-stop(52.08%, rgba(211, 217, 238, 0.8)), to(rgba(242, 245, 253, 0.99)));
  background: linear-gradient(180deg, #f1f4ff 3.12%, rgba(211, 217, 238, 0.8) 52.08%, rgba(242, 245, 253, 0.99) 100%);
  -webkit-box-shadow: 0px 2px 5px #c2cae2, rgba(210, 217, 239, 0.53);
  box-shadow: 0px 2px 5px #c2cae2, rgba(210, 217, 239, 0.53);
  border-radius: 7px;
  cursor: pointer;
  height: 36px;
  margin-left: 10px;
  padding: 9px;
  white-space: nowrap;
}
.header .home-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e99e0e), color-stop(51.56%, #f2cf72), to(#e99e0e));
  background: linear-gradient(180deg, #e99e0e 0%, #f2cf72 51.56%, #e99e0e 100%);
}
.header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
}
.header select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  outline: 0;
  margin-right: 10px;
}
.header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #4d5674;
}
.header a img {
  height: 18px;
  width: 18px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .header a .home-button-text {
    display: none;
  }
  .header a img {
    margin-left: 0;
  }
}
.header .language-wrapper {
  cursor: pointer;
  position: relative;
  height: 36px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  .header .language-wrapper {
    width: 35px;
  }
}
.header .language-wrapper .language-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f1f4ff), color-stop(52.08%, rgba(211, 217, 238, 0.8)), to(rgba(242, 245, 253, 0.99)));
  background: linear-gradient(180deg, #f1f4ff 3.12%, rgba(211, 217, 238, 0.8) 52.08%, rgba(242, 245, 253, 0.99) 100%);
  -webkit-box-shadow: 0px 2px 5px #c2cae2, rgba(210, 217, 239, 0.53);
  box-shadow: 0px 2px 5px #c2cae2, rgba(210, 217, 239, 0.53);
  color: #4d5674;
  height: 36px;
  width: 100%;
  padding: 9px;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .language-wrapper .language-option img {
  height: 18px;
  width: 18px;
  margin-right: 10px;
}
.header .language-wrapper .language-option:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e99e0e), color-stop(51.56%, #f2cf72), to(#e99e0e));
  background: linear-gradient(180deg, #e99e0e 0%, #f2cf72 51.56%, #e99e0e 100%);
}
.header .language-wrapper .language-option:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.header .language-wrapper .language-option:nth-child(2) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}
.header .language-wrapper .language-option:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.header .language-wrapper .language-option:nth-child(4) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 767px) {
  .header .language-wrapper .language-option {
    width: 36px;
  }
  .header .language-wrapper .language-option img {
    margin: 0;
  }
  .header .language-wrapper .language-option span {
    display: none;
  }
}
.header .language-wrapper .current-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
}
.header .language-wrapper .current-language:focus {
  -webkit-box-shadow: rgb(144, 144, 144) 0px 0px 2px inset, rgba(144, 144, 144, 0.5) 0px 0px 12px;
  box-shadow: rgb(144, 144, 144) 0px 0px 2px inset, rgba(144, 144, 144, 0.5) 0px 0px 12px;
}
.header .language-wrapper .language-option-wrapper {
  position: absolute;
  left: 0;
  top: 37px;
  width: 130px;
  z-index: 2;
}
.header .language-wrapper .language-option-wrapper .language-option {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
}
.header .language-wrapper .language-option-wrapper .language-option:first-child {
  border-radius: 4px 4px 0 0;
}
.header .language-wrapper .language-option-wrapper .language-option:last-child {
  border-radius: 0 0 4px 4px;
}
.header .language-wrapper .language-option-wrapper.show .language-option {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}

/** ****************** Content ****************** */
.content {
  background-color: #0f1217;
  -webkit-box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 4px 4px 0 0;
  color: #f1f5ff;
  height: 80vh;
  max-height: 1200px;
  min-height: 500px;
  overflow-y: auto;
  /** ****************** Banner ****************** */
  /** ****************** Content Wrapper ****************** */
}
@media screen and (max-width: 767px) {
  .content {
    -webkit-box-shadow: none;
    box-shadow: none;
    min-height: initial;
    height: 100%;
    width: 100vw;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .content {
    height: 90vh;
  }
}
.content .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/banner.png);
  background-size: cover;
  height: 180px;
}
@media screen and (max-width: 767px) {
  .content .banner {
    background: url(../img/banner-mobile.png);
    background-size: cover;
    height: 130px;
  }
}
.content .banner:hover .register-button:after {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}
.content .banner .banner-content {
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .content .banner .banner-content {
    margin-left: 10px;
    width: 50%;
  }
}
.content .banner .banner-content .sub-header {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
}
@media screen and (max-width: 767px) {
  .content .banner .banner-content .sub-header {
    font-size: 16px;
  }
}
.content .banner .banner-content .header {
  color: #ffd54a;
  font-size: 28px;
  font-weight: 900;
  line-height: 33px;
  margin: 5px 0 10px;
}
.content .banner .banner-content .category {
  color: #dde4f4;
  font-size: 16px;
}
.content .banner .banner-content .register-button {
  color: #717a97;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f1f4ff), color-stop(52.08%, rgba(211, 217, 238, 0.8)), to(rgba(242, 245, 253, 0.99)));
  background: linear-gradient(180deg, #f1f4ff 3.12%, rgba(211, 217, 238, 0.8) 52.08%, rgba(242, 245, 253, 0.99) 100%);
  -webkit-box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 5px rgba(210, 217, 239, 0.53);
  box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 5px rgba(210, 217, 239, 0.53);
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  padding: 6px 0;
  width: 127px;
}
.content .banner .banner-content .register-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e99e0e), color-stop(51.56%, #f2cf72), to(#e99e0e));
  background: linear-gradient(180deg, #e99e0e 0%, #f2cf72 51.56%, #e99e0e 100%);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .content .banner .banner-content .register-button:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f1f4ff), color-stop(52.08%, rgba(211, 217, 238, 0.8)), to(rgba(242, 245, 253, 0.99)));
    background: linear-gradient(180deg, #f1f4ff 3.12%, rgba(211, 217, 238, 0.8) 52.08%, rgba(242, 245, 253, 0.99) 100%);
    color: #717a97;
  }
  .content .banner .banner-content .register-button:hover:active {
    background: -webkit-gradient(linear, left top, left bottom, from(#e99e0e), color-stop(51.56%, #f2cf72), to(#e99e0e));
    background: linear-gradient(180deg, #e99e0e 0%, #f2cf72 51.56%, #e99e0e 100%);
    color: #ffffff;
  }
}
.content .banner .header-buttons {
  margin-left: auto;
}
.content .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  height: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .content .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    height: calc(100% - 130px);
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .content .content-wrapper {
    padding: 10px 20px;
  }
}
.content .content-wrapper .nav-sidebar {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 10px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    overflow-x: auto;
    width: 100%;
  }
}
.content .content-wrapper .nav-sidebar button {
  background: url(../img/nav-button-background.png), -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, rgba(241, 244, 255, 0.19)), color-stop(52.08%, rgba(211, 217, 238, 0.01)), to(rgba(242, 245, 253, 0.24)));
  background: url(../img/nav-button-background.png), linear-gradient(180deg, rgba(241, 244, 255, 0.19) 3.12%, rgba(211, 217, 238, 0.01) 52.08%, rgba(242, 245, 253, 0.24) 100%);
  background-size: cover, cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 5px rgba(210, 217, 239, 0.53);
  box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 5px rgba(210, 217, 239, 0.53);
  color: #f1f5ff;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 40px;
  width: 100%;
  margin: 0 10px 10px 0;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-sidebar button {
    background-color: transparent;
    height: 24px;
    margin-bottom: 0;
    padding: 0 10px;
    white-space: nowrap;
    width: unset;
  }
}
.content .content-wrapper .nav-sidebar button.active, .content .content-wrapper .nav-sidebar button:hover {
  background-color: #ffb701;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-sidebar button.active, .content .content-wrapper .nav-sidebar button:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f9cc55), color-stop(52.08%, #e89d0d), to(#f9cc55));
    background: linear-gradient(180deg, #f9cc55 3.12%, #e89d0d 52.08%, #f9cc55 100%);
  }
}
@-webkit-keyframes boxGlowing {
  0% {
    -webkit-box-shadow: 0 0 -10px #7d997a;
    box-shadow: 0 0 -10px #7d997a;
  }
  40% {
    -webkit-box-shadow: 0 0 15px #7d997a;
    box-shadow: 0 0 15px #7d997a;
  }
  60% {
    -webkit-box-shadow: 0 0 15px #7d997a;
    box-shadow: 0 0 15px #7d997a;
  }
  100% {
    -webkit-box-shadow: 0 0 -10px #7d997a;
    box-shadow: 0 0 -10px #7d997a;
  }
}
@keyframes boxGlowing {
  0% {
    -webkit-box-shadow: 0 0 -10px #7d997a;
    box-shadow: 0 0 -10px #7d997a;
  }
  40% {
    -webkit-box-shadow: 0 0 15px #7d997a;
    box-shadow: 0 0 15px #7d997a;
  }
  60% {
    -webkit-box-shadow: 0 0 15px #7d997a;
    box-shadow: 0 0 15px #7d997a;
  }
  100% {
    -webkit-box-shadow: 0 0 -10px #7d997a;
    box-shadow: 0 0 -10px #7d997a;
  }
}
@-webkit-keyframes textGlowing {
  0% {
    text-shadow: 0 0 -10px #ffd059;
  }
  40% {
    text-shadow: 0 0 15px #ffd059;
  }
  60% {
    text-shadow: 0 0 15px #ffd059;
  }
  100% {
    text-shadow: 0 0 -10px #ffd059;
  }
}
@keyframes textGlowing {
  0% {
    text-shadow: 0 0 -10px #ffd059;
  }
  40% {
    text-shadow: 0 0 15px #ffd059;
  }
  60% {
    text-shadow: 0 0 15px #ffd059;
  }
  100% {
    text-shadow: 0 0 -10px #ffd059;
  }
}
.content .content-wrapper .nav-content {
  padding-left: 20px;
  width: calc(100% - 200px);
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content {
    padding: 20px 0;
    width: 100%;
  }
}
.content .content-wrapper .nav-content .nav-section {
  display: none;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  /** ****************** Home section ****************** */
  /** ****************** Plan section ****************** */
  /** ****************** Rules section ****************** */
  /** ****************** Contact section ****************** */
  /** ****************** Register section ****************** */
}
.content .content-wrapper .nav-content .nav-section.active {
  display: block;
}
.content .content-wrapper .nav-content .nav-section .title {
  color: #f1f5ff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin: 0 0 21px 10px;
}
.content .content-wrapper .nav-content .nav-section .subtitle {
  color: #ffb701;
  font-weight: bold;
  margin: 0 0 10px 10px;
}
.content .content-wrapper .nav-content .nav-section .flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  box-shadow: 0px 4px 9px rgba(172, 177, 194, 0.44), inset 0px 0px 22px #d2d9ef;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 15px 15px 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .flex-wrapper {
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=home] {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #1a1e23;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef;
  box-shadow: inset 0px 0px 13px #d2d9ef;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 250px;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container:first-child {
    margin-left: 10px;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container:last-child {
    margin-right: 10px;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container img {
  margin-bottom: 20px;
  padding: 14px;
  height: 89px;
  width: 92px;
  background: url(../img/home-icon-background.png);
  background-size: cover;
  border: 3px solid #ebeef6;
  border-radius: 23px;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container .col-title {
  color: #f1f5ff;
  font-size: 16px;
  margin-bottom: 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container .col-desc {
  line-height: 20px;
  margin-top: auto;
  margin-bottom: 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container button {
  padding: 5px 0;
  width: 156px;
  height: 38px;
  background: url(../img/hash-button-background.png), -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, #f1ce6d), color-stop(52.08%, #e89e0e), to(#f2cb63));
  background: url(../img/hash-button-background.png), linear-gradient(180deg, #f1ce6d 3.12%, #e89e0e 52.08%, #f2cb63 100%);
  background-size: cover;
  -webkit-box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 12px #ffe07f;
  box-shadow: 0px 2px 5px #c2cae2, inset 0px 0px 12px #ffe07f;
  border-radius: 5px;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container button:hover {
  background: url(../img/hash-button-hover-background.png) no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0px 2px 5px #616b8c, inset 0px 0px 12px #616b8c;
  box-shadow: 0px 2px 5px #616b8c, inset 0px 0px 12px #616b8c;
}
.content .content-wrapper .nav-content .nav-section[data-section=home] .home-join-button {
  display: none;
  margin: 30px auto 0;
  height: 40px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=home] .home-join-button {
    display: block;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .with-border {
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table {
  border: none;
  border-collapse: separate;
  border-spacing: 8px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table th,
.content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table td {
  border: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  border-radius: 8px;
  min-width: 100px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table ul,
.content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table ol {
  margin: 0;
  padding-left: 22px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper {
  margin: 0 10px 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 4px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row > div {
  border: none;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row .hierarchy-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  margin: 2px;
  padding: 0 10px;
  margin: 5px 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row .hierarchy-box img {
  width: 22px;
  height: 22px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row .hierarchy-box span {
  color: #f1f5ff;
  font-size: 16px;
  font-weight: 700;
  margin-left: 5px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row .hierarchy-box:not(:first-child) {
  border-left: 1px solid #7580a8;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .commission-section-title {
  color: #d2d9ef;
  font-size: 20px;
  font-family: Roboto;
  font-weight: 500;
  margin: 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .commission-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  border-radius: 8px;
  color: #f1f5ff;
  margin: 0 10px;
  padding: 15px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table {
  margin-bottom: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr th,
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr td {
  padding: 10px 5px;
  text-align: center;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr:nth-child(2) td:first-child,
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr:nth-child(2) td:nth-child(3) {
  border-bottom: none;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr td .dash,
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr td .amount {
  display: inline;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container ul {
  margin-right: 10px;
  padding: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container ul li {
  line-height: 1.5rem;
  list-style: none;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container ul li:before {
  background: url("../img/icon-tick.png") center/80% no-repeat;
  content: "";
  height: 22px;
  width: 22px;
  position: absolute;
  left: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper {
  font-size: 0.9rem;
  height: 290px;
  width: 290px;
  margin: auto;
  padding: 50px;
  position: relative;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper img {
  width: 100%;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper > div {
  color: #f1f5ff;
  position: absolute;
  line-height: 1.1rem;
  text-align: center;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point1 {
  left: 80px;
  top: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point2 {
  left: 0;
  top: 55px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point3 {
  right: 0;
  top: 60px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point4 {
  bottom: 55px;
  left: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point5 {
  bottom: 55px;
  right: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container .graph-wrapper .point6 {
  bottom: 0;
  left: 100px;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container:not(:last-child) {
    margin: 0;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container ol {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container ol {
    margin: 0;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container ol li {
  line-height: 1.3rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .flex-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .with-border {
    border: none;
    padding: 0;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr td .dash {
    display: none;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table tr td .amount {
    display: block;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container.list {
    border: 1px solid #bdc5e1;
    border-radius: 8px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 20px;
    padding: 10px;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container.graph {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container ul {
    margin: 0;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container li:last-child {
    margin-bottom: 0;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper {
    margin: 0 auto 20px;
    max-width: 350px;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row .hierarchy-box span {
    font-size: 14px;
    font-weight: 600;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-wrapper .hierarchy-row:last-child :last-child {
    border: none;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=faq] {
  padding: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .title {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .flex-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 5px;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .section-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef;
  box-shadow: inset 0px 0px 13px #d2d9ef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 3px 14px;
  margin-bottom: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #dde4f4;
  text-align: justify;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container img {
  padding-left: 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container img.cn {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container img {
    float: right;
    margin-left: 20px;
    width: 155px;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container .rule-title {
  color: #ffb701;
  font-size: 16px;
  font-weight: 700;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container p {
  line-height: 1.4rem;
  margin: 10px 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container p.margin-top {
  margin-top: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container ol {
  padding-left: 15px;
  margin-bottom: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container ol li {
  line-height: 1.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container.desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container.img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container.img img {
    margin: auto;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] {
  padding: 0 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .flex-wrapper {
  background: url(../img/contact-lady.png), -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: url(../img/contact-lady.png), linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  background-size: 70%, cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef;
  box-shadow: inset 0px 0px 13px #d2d9ef;
  border-radius: 8px;
  height: 412px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container {
  height: 245px;
  margin-bottom: 15px;
  padding: 10px 15px;
  position: relative;
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef;
  box-shadow: inset 0px 0px 13px #d2d9ef;
  border-radius: 8px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28.5px;
  max-width: 40%;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container img {
  width: 240px;
  float: right;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container:last-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .btn-copy {
  background-color: transparent;
  color: #ffb701;
  margin-left: 8px;
  padding: 0;
  position: relative;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .btn-copy .tooltip {
  background-color: #fff;
  border-radius: 3px;
  opacity: 0.8;
  padding: 2px 5px;
  position: absolute;
  right: 0;
  top: -23px;
  white-space: nowrap;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .btn-copy .tooltip:before {
  border: 6px solid transparent;
  border-bottom: 0;
  border-right: 0;
  border-top-color: #fff;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  bottom: -6px;
  right: 28%;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .business-hours {
  font-size: 16px;
  padding: 15px 10px 15px 20px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .business-hours :not(:first-child) {
  margin-bottom: 6px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .business-hours .office-hour {
  color: #dea031;
  font-weight: 700;
  margin-bottom: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper {
  position: absolute;
  top: 60%;
  right: 23%;
  -webkit-transform: translate(23%, -40%);
  -ms-transform: translate(23%, -40%);
  transform: translate(23%, -40%);
  max-width: 300px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper .office-hour {
  color: #dea031;
  margin-bottom: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper .contact-info-wrapper {
  color: #f1f5ff;
}
.content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper .contact-info-wrapper > div {
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=contacts] .flex-wrapper {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04))), url(../img/contact-lady-mobile.png);
    background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%), url(../img/contact-lady-mobile.png);
    background-size: cover, cover;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .business-hours > div {
    font-weight: 400;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=register] {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=register] {
    zoom: 0.7;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .flex-wrapper {
  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;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .title {
  color: #dea031;
  margin-left: 0;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container {
    width: 100%;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .title {
  margin-bottom: 10px;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .desc {
  margin-bottom: 25px;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .desc .red {
  position: relative;
  top: 7px;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .red {
  color: red;
  font-size: 1.5rem;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row {
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 3px 6px;
  position: relative;
  border: 1px solid #bdc5e1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row:focus-within {
  border: 1px solid #dea031;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row:focus-within .hint-col.focus {
  visibility: visible;
  white-space: normal;
  min-width: 150px;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .hint-col {
  position: absolute;
  top: 50%;
  left: 105%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  background-color: #fff5d5;
  color: #281212;
  border-radius: 6px;
  padding: 5px 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .hint-col {
    left: initial;
    right: 5px;
    max-width: 40%;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .hint-col:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #fff5d5 transparent transparent;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 15px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    margin: 0;
    padding: 0;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col.mobile-username-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col [data-hint-for=username] {
    color: #8c8c8c;
    font-size: 0.8rem;
    padding-left: 10px;
  }
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col ::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col :-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col ::placeholder {
  color: #ffffff;
  opacity: 1;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col :-ms-input-placeholder {
  color: #ffffff;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col ::-ms-input-placeholder {
  color: #ffffff;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col input {
  background-color: transparent;
  color: #ffffff;
  width: 100%;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-row .form-col img[data-verify-code] {
  margin-left: 5px;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] button.btnSubmitRegister {
  background: url(../img/form-button-background.png);
  background-size: cover;
  border: 2px solid #ffffff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-shadow: 0px 3px 2px rgba(51, 51, 51, 0.25);
  margin-top: 10px;
  height: 44px;
  width: 100%;
}
.content .content-wrapper .nav-content .nav-section[data-section=register] button.btnSubmitRegister:hover {
  background: url(../img/form-button-hover-background.png);
}
@media screen and (max-width: 767px) {
  .content .content-wrapper .nav-content .nav-section[data-section=register] button.btnSubmitRegister {
    margin: 20px auto 10px;
    position: sticky;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 0;
  }
}

/** ****************** Footer ****************** */
.footer {
  background: -webkit-gradient(linear, left top, right top, from(#b57e10), color-stop(#ffb701), to(#f9df7b));
  background: linear-gradient(to right, #b57e10, #ffb701, #f9df7b);
  border-radius: 0 0 4px 4px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.85rem;
  padding: 5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer {
    display: none;
  }
}
.footer .disclaimer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .disclaimer img {
  margin-right: 5px;
  width: 25px;
}
.footer .copyright {
  margin-left: auto;
  text-align: right;
}

/**
****************************** Light Theme ******************************
*/
body.light table.tbl-border {
  border-color: #717a97;
}
body.light .btn-top {
  color: #000;
}
body.light .content {
  background-color: #f3f3f3;
  color: #505050;
}
body.light .content .content-wrapper .nav-sidebar {
  -webkit-box-shadow: inset 0px 0px 22px #d2d9ef;
  box-shadow: inset 0px 0px 22px #d2d9ef;
}
@media screen and (max-width: 767px) {
  body.light .content .content-wrapper .nav-sidebar {
    border-bottom-color: #e1e1e1;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
body.light .content .content-wrapper .nav-sidebar button {
  background: url(../img//nav-button-background-light.png), -webkit-gradient(linear, left top, left bottom, color-stop(3.12%, rgba(241, 244, 255, 0.19)), color-stop(52.08%, rgba(211, 217, 238, 0.01)), to(rgba(242, 245, 253, 0.24)));
  background: url(../img//nav-button-background-light.png), linear-gradient(180deg, rgba(241, 244, 255, 0.19) 3.12%, rgba(211, 217, 238, 0.01) 52.08%, rgba(242, 245, 253, 0.24) 100%);
  background-size: cover;
  color: #9aa2bd;
}
body.light .content .content-wrapper .nav-sidebar button.active {
  background-color: #ffb701;
  color: #fff;
}
body.light .content .content-wrapper .nav-content .nav-section {
  /** ****************** Home section ****************** */
  /** ****************** Plan section ****************** */
  /** ****************** FAQ section ****************** */
  /** ****************** Rules section ****************** */
  /** ****************** Contact section ****************** */
  /** ****************** Register section ****************** */
}
body.light .content .content-wrapper .nav-content .nav-section .title {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 251, 0.24)), color-stop(69.27%, rgba(227, 227, 227, 0.04)));
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.24) 0%, rgba(227, 227, 227, 0.04) 69.27%);
  -webkit-box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
  box-shadow: inset 0px 0px 13px #d2d9ef, 0px 0px 13px 0px rgb(210, 217, 239) inset;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container .col-title,
body.light .content .content-wrapper .nav-content .nav-section[data-section=home] .home-col-container .col-desc {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .hierarchy-row .hierarchy-box span {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table td,
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-table th {
  border-color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table,
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-ol-container,
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .plan-reason-container {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .multilevel-table tr td {
  -webkit-box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
  box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .graph-wrapper > div {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .with-border {
  border-color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=plan] .commission-section-title {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=faq] {
  padding: 10px;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=faq] table.faq-tbl {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=faq] table.faq-tbl thead tr th,
body.light .content .content-wrapper .nav-content .nav-section[data-section=faq] table.faq-tbl tbody tr td {
  border-color: #bdc5e1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=rules] .section-wrapper {
  -webkit-box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
  box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=rules] .rule-container {
  color: #717a97;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper p {
  color: #281212;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper .office-hour {
  color: #dea031;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .desktop-contact-wrapper .contact-info-wrapper {
  color: #616b8c;
}
@media screen and (max-width: 767px) {
  body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container {
    -webkit-box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
    box-shadow: 0px 0px 13px 0px rgb(210, 217, 239) inset, inset 0px 0px 13px #d2d9ef;
  }
  body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .header-container p,
  body.light .content .content-wrapper .nav-content .nav-section[data-section=contacts] .contact-container .business-hours :not(:first-child) {
    color: #616b8c;
  }
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .title {
  color: #dea031;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .desc {
  color: #9aa2bd;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .registerForm {
  background: transparent;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container form {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container form {
    background-color: #fff;
  }
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col input {
  color: black;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col ::-webkit-input-placeholder {
  color: #9aa2bd;
  opacity: 1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col ::-moz-placeholder {
  color: #9aa2bd;
  opacity: 1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col :-ms-input-placeholder {
  color: #9aa2bd;
  opacity: 1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col ::-ms-input-placeholder {
  color: #9aa2bd;
  opacity: 1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col ::placeholder {
  color: #9aa2bd;
  opacity: 1;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col :-ms-input-placeholder {
  color: #9aa2bd;
}
body.light .content .content-wrapper .nav-content .nav-section[data-section=register] .register-container .form-col ::-ms-input-placeholder {
  color: #9aa2bd;
}
/*# sourceMappingURL=../maps/main.css.map */
