@charset "UTF-8";
/* Mixins */
/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row  {
  margin: 0px !important;
  position: relative;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Animation */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Fonts* */
body {
  font-family: "Tisa Sans Pro", arial, sans-serif;
  font-size: 32px;
  line-height: 57px;
  line-height: 31px;
  color: #222222;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../img/grid.svg") repeat;
  background-color: #5ec9c9;
  overflow: hidden;
}
body .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
}
body .row .left {
  width: 850px;
}
body .row .left .map {
  position: relative;
}
body .row .left .map::before {
  content: "";
  position: absolute;
  background: url("../img/bg1.webp");
  width: 358px;
  height: 351px;
  background-repeat: no-repeat;
  left: -130px;
  top: -90px;
}
body .row .left .map::after {
  content: "";
  position: absolute;
  background: url("../img/bg2.webp");
  width: 386px;
  height: 589px;
  background-repeat: no-repeat;
  right: -130px;
  bottom: -90px;
  z-index: -10;
  right: -30px;
  bottom: -183px;
  z-index: -10;
}
body .row .left .map img {
  width: 768px;
}
body .row .left .map .level {
  position: absolute;
  width: 247px;
  height: 266px;
  left: 0;
  background: url("../img/level.png") no-repeat;
}
body .row .left .map .level.bounce {
  -webkit-animation: pulsate-fwd 1.2s ease-in-out infinite both;
  animation: pulsate-fwd 1.2s ease-in-out infinite both;
}
body .row .left .map .level.inactive {
  background: url("../img/level_red.png") no-repeat;
}
body .row .left .map .level#level1 {
  left: 32px;
  bottom: 79px;
}
body .row .left .map .level#level2 {
  left: 230px;
  bottom: 250px;
}
body .row .left .map .level#level3 {
  left: 400px;
  bottom: 540px;
}
body .row .right {
  width: 727px;
  margin-top: -50px;
}
body .row .right img.logo {
  width: 375px;
  margin-left: calc(50% - 207.5px);
  display: block;
  margin-bottom: 24px;
  margin-top: 30px;
}
body .row .right .right_box {
  width: 685px;
  height: 826px;
}
body .row .right .right_box#step1 {
  /* display: none; */
}
body .row .right .right_box#step2 {
  /* display: block; */
}
body .row .right .right_box#step3 {
  /* display: none; */
}
body .row .right .right_box#step1 {
  background: url("../img/board.webp") no-repeat;
  background-size: 100%;
}
body .row .right .right_box#step1 .words {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  padding-top: 80px;
}
body .row .right .right_box#step1 .words .stone_box {
  position: relative;
}
body .row .right .right_box#step1 .words .stone_box .stone {
  position: relative;
  transition: transform 0.4s ease;
  cursor: pointer;
  z-index: 10;
  width: 157px;
  height: 142px;
}
body .row .right .right_box#step1 .words .stone_box .input-container {
  position: absolute;
  /* top: 40px; */
  top: 98px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
body .row .right .right_box#step1 .words .stone_box .input-container input {
  width: 167px;
  height: 56px;
  border-radius: 50px;
  border: 3px solid #161616;
  font-size: 19px;
  background-color: #f9f4e2;
  padding-left: 20px;
  padding-right: 40px;
}
body .row .right .right_box#step1 .words .stone_box .input-container input:focus-visible, body .row .right .right_box#step1 .words .stone_box .input-container input:focus {
  outline-color: black;
  outline: none;
}
body .row .right .right_box#step1 .words .stone_box .input-container.show {
  opacity: 1;
}
body .row .right .right_box#step1 .words .stone_box .input-container button {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 11px;
  border: 0px;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}
body .row .right .right_box#step1 .words .stone_box .input-container button:hover {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.08);
}
body .row .right .right_box#step1 .words .stone_box .input-container button:active {
  background-color: rgba(0, 0, 0, 0.15);
}
body .row .right .right_box#step1 .words .stone_box .input-container button img {
  width: 21px;
}
body .row .right .right_box#step1 .words .stone_box .input-container button:focus-visible {
  outline: 2px solid black;
}
body .row .right .right_box#step1 .words .stone_box .input-container.correct input {
  background-color: #6cce93;
  color: #287e4b !important;
}
body .row .right .right_box#step1 .words .stone_box .input-container.correct::before {
  content: "";
  position: absolute;
  background: url("../img/correct.svg");
  width: 22px;
  height: 16px;
  background-repeat: no-repeat;
  top: 18px;
  right: 12px;
}
body .row .right .right_box#step1 .words .stone_box .input-container.correct button {
  display: none;
}
body .row .right .right_box#step1 .words .stone_box .input-container.wrong input {
  background-color: #f16a4a;
  color: #a7280a !important;
}
body .row .right .right_box#step1 .words .stone_box .input-container.wrong::before {
  content: "";
  position: absolute;
  background: url("../img/wrong.svg");
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  top: 19px;
  right: 16px;
}
body .row .right .right_box#step1 .words .stone_box .input-container.wrong button {
  display: none;
}
body .row .right .right_box#step1 .words .stone_box.blue .stone {
  background: url("../img/blue_stone.png");
  background-size: 100%;
  transition: all 0.5s ease-in-out;
}
body .row .right .right_box#step1 .words .stone_box.blue .stone:hover {
  background: url("../img/blue_stone_hover.png");
  transition: all 0.5s ease-in-out;
  background-size: 100%;
}
body .row .right .right_box#step1 .words .stone_box.green .stone {
  background: url("../img/green_stone.png");
  background-size: 100%;
  transition: all 0.5s ease-in-out;
}
body .row .right .right_box#step1 .words .stone_box.green .stone:hover {
  background: url("../img/green_stone_hover.png");
  transition: all 0.5s ease-in-out;
  background-size: 100%;
}
body .row .right .right_box#step1 .words .stone_box.red .stone {
  background: url("../img/red_stone.png");
  background-size: 100%;
  transition: all 0.5s ease-in-out;
}
body .row .right .right_box#step1 .words .stone_box.red .stone:hover {
  background: url("../img/red_stone_hover.png");
  transition: all 0.5s ease-in-out;
  background-size: 100%;
}
body .row .right .right_box#step1 .question {
  background: url("../img/input_bg.png") no-repeat;
  background-size: 100%;
  width: 100%;
  width: 540px;
  height: 303px;
  margin-left: 80px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  padding: 0px 40px;
}
body .row .right .right_box#step1 .question #error-msg {
  z-index: 100;
  position: absolute;
  margin-left: -40px;
  width: 540px;
  height: 303px;
  text-align: center;
  color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: grey;
  border-radius: 40px;
  padding: 20px;
  background: url("../img/paper.png") no-repeat;
  background-size: cover;
  font-size: 28px;
  border: 5px solid black;
  padding-top: 5%;
}
body .row .right .right_box#step1 .question #error-msg:before {
  content: "";
  position: absolute;
  background: url("../img/vr_headset.svg");
  width: 80px;
  height: 60px;
  background-repeat: no-repeat;
  left: calc(50% - 45px);
  top: 27%;
}
body .row .right .right_box#step1 .question p {
  color: #f8e6cf;
  font-size: 26px;
  line-height: 51px;
}
body .row .right .right_box#step1 .question p span.red {
  color: #d36766;
}
body .row .right .right_box#step1 .question p span.blue {
  color: #6dacc5;
}
body .row .right .right_box#step1 .question p span.green {
  color: #59b57e;
}
body .row .right .right_box#step1 .question p span button {
  width: auto;
  background: transparent;
  outline: none;
  border: 0;
}
body .row .right .right_box#step1 .question p span.stone {
  position: relative;
  width: 78px;
  display: inline-block;
}
body .row .right .right_box#step1 .question p span.stone img {
  width: 78px;
  border: 0px;
  outline: none;
  margin-bottom: -20px;
  position: absolute;
  left: 0;
  width: 71px;
  height: 67px;
  top: -42px;
  transition: all 0.3s ease;
}
body .row .right .right_box#step1 .question p span.stone img:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
body .row .right .right_box#step1 .timebar {
  width: 512px;
  height: 81px;
  background: url("../img/time_bar.png");
  background-size: contain;
  margin-left: 93px;
  margin-top: 40px;
  position: relative;
}
body .row .right .right_box#step1 .timebar .line {
  height: 76px;
  top: 2px;
  width: 4px;
  background-color: black;
  position: absolute;
  z-index: 10;
}
body .row .right .right_box#step1 .timebar .line:nth-child(1) {
  left: 25%;
}
body .row .right .right_box#step1 .timebar .line:nth-child(2) {
  left: 50%;
}
body .row .right .right_box#step1 .timebar .line:nth-child(3) {
  left: 75%;
}
body .row .right .right_box#step1 .timebar .progress-container {
  width: 480px;
  height: 49px;
  background: transparent;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  top: 15px;
  left: 15px;
}
body .row .right .right_box#step1 .timebar .progress-fill {
  width: 480px;
  height: 100%;
  background: linear-gradient(to right, #e12526 0%, #f18818 30%, #4bd682 100%);
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0 round 50px); /* Rounded clipping */
  transition: clip-path 0.5s ease-in-out;
  -webkit-box-shadow: inset 0px 5px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 5px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 5px 2px 0px rgba(0, 0, 0, 0.3);
}
body .row .right .right_box#step1 .timebar:before {
  content: "";
  position: absolute;
  background: url("../img/skull.webp");
  width: 30px;
  height: 35px;
  background-repeat: no-repeat;
  left: 27px;
  top: 22px;
  z-index: 10;
}
body .row .right .right_box#step2, body .row .right .right_box#step3 {
  background: url("../img/board2.webp") no-repeat;
  background-size: 100%;
  text-align: center;
  color: #1a2021;
}
body .row .right .right_box#step2 img.winner, body .row .right .right_box#step3 img.winner {
  margin-top: -50px;
  margin: 0 auto;
  display: block;
  width: 280px;
}
body .row .right .right_box#step2 h2, body .row .right .right_box#step3 h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -1.1px;
  margin-top: 30px;
  margin-bottom: 30px;
}
body .row .right .right_box#step2 p, body .row .right .right_box#step3 p {
  font-size: 30px;
}
body .row .right .right_box#step2 .time, body .row .right .right_box#step3 .time {
  width: 239px;
  height: 104px;
  background: url("../img/time.png") no-repeat;
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .row .right .right_box#step2 .time p, body .row .right .right_box#step3 .time p {
  font-size: 51px;
  font-weight: 600;
  color: #fde9cc;
  text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
  margin-top: -12px;
}
body .row .right .right_box#step2 p.about, body .row .right .right_box#step3 p.about {
  font-size: 27px;
  line-height: 40px;
  padding: 0px 60px 0px 70px;
  margin-top: 30px;
}
body .row .right .right_box#step2 p:nth-of-type(2), body .row .right .right_box#step3 p:nth-of-type(2) {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 30px;
}
body .row .right .right_box#step2 button, body .row .right .right_box#step3 button {
  background: url("../img/restart_btn.png") no-repeat;
  width: 300px;
  height: 118px;
  background-size: 100%;
  border: 0px;
  font-weight: 600;
  font-size: 35px;
  color: #0c2a2c;
  text-transform: uppercase;
  margin-top: 0px;
  transition: all 0.3s ease-in-out;
}
body .row .right .right_box#step2 button:hover, body .row .right .right_box#step3 button:hover {
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 1px 13px rgba(255, 255, 255, 0.9);
}
body .row .right .right_box#step2 button:active, body .row .right .right_box#step3 button:active {
  text-shadow: none;
}
body .row .right .right_box#step2 h2 {
  margin-top: 50px;
}
body .row .right .right_box#step2 p.about {
  padding: 0px 30px 0px 40px;
}
body .row .right .right_box#step2 p:nth-of-type(2) {
  font-weight: 400;
  margin-top: 40px;
}
body .row .right .right_box#step2 p b {
  font-weight: 700;
}
body .row .right .right_box#step3 h2 {
  margin-bottom: 50px;
  margin-top: 60px;
}
body .row .right .right_box#step3 img.loser {
  margin-top: -50px;
  margin: 0 auto;
  display: block;
}
body .row .right .right_box#step3 p.about {
  padding: 0px 50px 0px 60px;
}
body img.leaf1 {
  position: fixed;
  bottom: -224px;
  z-index: 10;
  left: -40px;
}
body img.leaf2 {
  position: fixed;
  bottom: -125px;
  z-index: 10;
  right: -214px;
  width: 450px;
}
body img.leaf3 {
  position: fixed;
  top: -180px;
  left: -110px;
  -webkit-transform: rotate(-290deg);
  transform: rotate(-290deg);
  z-index: 10;
}
body button.pakal {
  border: 0px;
  bottom: 70px;
  right: 0;
  position: fixed;
  cursor: pointer;
  background: none;
}
body button.pakal img {
  width: 160px;
  height: 202px;
  right: 0;
  position: relative;
}
body button.pakal:before {
  content: "";
  position: absolute;
  background: url("../img/talk.svg");
  width: 60px;
  height: 40px;
  background-repeat: no-repeat;
  left: 69px;
  top: -50px;
  transition: all 0.3s ease;
}
body button.pakal:hover:before {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  background: url("../img/talk_hover.svg");
  width: 60px;
  height: 40px;
  background-repeat: no-repeat;
  left: 69px;
  top: -50px;
}
body button.pakal:hover:after {
  content: "";
  position: absolute;
  background: url("../img/dots_hover.svg");
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  left: 84px;
  top: -34px;
}
body button.pakal:after {
  content: "";
  position: absolute;
  background: url("../img/dots.svg");
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  left: 84px;
  top: -34px;
  transition: all 0.3s ease;
}
body footer {
  height: 61px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: url("../img/stone_line.png") repeat-x;
}

.popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 40px;
  padding: 10px;
  background: url("../img/paper.png") no-repeat;
  background-size: cover;
  border: 1px solid #ccc;
  width: 510px;
  z-index: 20;
  transform: translate(-50%, -50%);
  top: 50px;
  border-radius: 35px;
  border: 5px solid black;
  padding: 30px 10px 10px 10px;
}
.popup h3 {
  font-size: 29px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
.popup button.close {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 11px;
  border: 0px;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}
.popup button.close img {
  width: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup button.close:hover {
  transition: all 0.3sease;
  background-color: rgba(0, 0, 0, 0.08);
}
.popup.pick {
  /* margin-top: -25px; */
}
.popup.pick .stones {
  display: flex;
  gap: 24px;
  margin-top: 0px;
}
.popup.pick .stone_box {
  width: 30%;
  text-align: center;
  cursor: pointer;
  border-radius: 23px;
  transition: all 0.5s ease-in-out;
  padding-bottom: 25px;
  padding-top: 10px;
}
.popup.pick .stone_box:hover {
  transition: all 0.5s ease-in-out;
}
.popup.pick .stone_box .stone {
  width: 95px;
  height: 87px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.popup.pick .stone_box p {
  line-height: 20px !important;
}
.popup.pick .stone_box p span {
  font-size: 22px;
  font-weight: bold;
}
.popup.pick .stone_box.blue {
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.blue:hover {
  transition: all 0.2s ease-in-out;
  background-color: #6dacc5;
}
.popup.pick .stone_box.blue:hover span {
  transition: all 0.2s ease-in-out;
  color: #1b3c49;
}
.popup.pick .stone_box.blue:hover .stone {
  background: url("../img/blue_stone_hover.png");
  transition: all 0.2s ease-in-out;
  background-size: 100%;
}
.popup.pick .stone_box.blue span {
  color: #6dacc5;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.blue .stone {
  background: url("../img/blue_stone.png");
  background-size: 100%;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.green {
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.green:hover {
  transition: all 0.2s ease-in-out;
  background-color: #59b57e;
}
.popup.pick .stone_box.green:hover span {
  transition: all 0.2s ease-in-out;
  color: #235c39;
}
.popup.pick .stone_box.green:hover .stone {
  background: url("../img/green_stone_hover.png");
  transition: all 0.2s ease-in-out;
  background-size: 100%;
}
.popup.pick .stone_box.green span {
  color: #59b57e;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.green .stone {
  background: url("../img/green_stone.png");
  background-size: 100%;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.red {
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.red:hover {
  transition: all 0.2s ease-in-out;
  background-color: #e68180;
}
.popup.pick .stone_box.red:hover span {
  transition: all 0.2s ease-in-out;
  color: #882826;
}
.popup.pick .stone_box.red:hover .stone {
  background: url("../img/red_stone_hover.png");
  transition: all 0.2s ease-in-out;
  background-size: 100%;
}
.popup.pick .stone_box.red span {
  color: #d36766;
  transition: all 0.2s ease-in-out;
}
.popup.pick .stone_box.red .stone {
  background: url("../img/red_stone.png");
  background-size: 100%;
  transition: all 0.2s ease-in-out;
}
.popup.no {
  margin-top: -25px;
}
.popup.pick {
  /*         display: flex;
              gap: 0px;
              flex-direction: column;
              margin-top: -30px; */
}
.popup.pick * {
  text-align: center;
  justify-content: center;
}
.popup.pick div {
  margin-top: -12px;
  font-size: 23px;
  margin-bottom: 15px;
}

.modal#messageModal {
  width: 100%;
  background-color: white;
  padding: 50px;
  color: #282828;
}
.modal#messageModal .modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.modal#messageModal .modal-dialog .modal-content {
  border-radius: 20px;
  height: 100%;
  background: url("../img/grid.svg") repeat;
  background-color: #ebebeb;
  border: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}
.modal#messageModal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal#messageModal .modal-dialog .modal-content .box {
  /*  display: flex; */
}
.modal#messageModal .modal-dialog .modal-content button.close {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  outline: none;
  border: 0px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #ebebeb;
  transition: 0.2s all ease-in-out;
}
.modal#messageModal .modal-dialog .modal-content button.close:hover {
  background-color: #dbd7d7;
  transition: 0.2s all ease-in-out;
}
.modal#messageModal .modal-dialog .modal-content button.close img {
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 9px);
  width: 18px;
}
.modal#messageModal .modal-dialog .modal-content .left {
  position: absolute;
  left: 6%;
  bottom: -23px;
  float: left;
}
.modal#messageModal .modal-dialog .modal-content .left div {
  background-color: white;
  text-align: center;
  border-radius: 12px;
  width: 500px;
  padding: 40px 30px;
  font-family: "Tisa Sans Pro", Arial, Helvetica, sans-serif;
  position: relative;
  margin-left: 0px;
  margin-top: 140px;
}
.modal#messageModal .modal-dialog .modal-content .left div h2 {
  font-size: 34px;
  margin-bottom: 40px;
  margin-top: 10px;
  font-weight: 600;
}
.modal#messageModal .modal-dialog .modal-content .left div h3 {
  color: #5fc4c8;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 30px;
}
.modal#messageModal .modal-dialog .modal-content .left div p {
  font-size: 20px;
  line-height: 29px;
}
.modal#messageModal .modal-dialog .modal-content .left div:before {
  content: "";
  position: absolute;
  background: url("../img/talking_pakal.svg");
  width: 40px;
  height: 62px;
  background-repeat: no-repeat;
  left: calc(50% - 20px);
  bottom: -51px;
}
.modal#messageModal .modal-dialog .modal-content .left img.character {
  /* position: absolute; */
  height: 325px;
  left: 140px;
  bottom: -60px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  margin-left: 110px;
  margin-top: 50px;
}
.modal#messageModal .modal-dialog .modal-content .right {
  background-color: #5fc4c8;
  border-radius: 0 20px 20px 0;
  width: 795px;
  float: right;
  margin-right: 0px;
  padding-top: 50px;
  height: 100%;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps {
  margin: 0 auto;
  display: table;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step {
  border-radius: 20px;
  border: 2px solid black;
  width: fit-content;
  margin-bottom: 33px;
  position: relative;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step .title {
  color: white;
  background-color: #5fc4c8;
  position: relative;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  margin-left: 50px;
  height: 43px;
  padding-top: 5px;
  font-family: "Tisa Sans Pro", Arial, Helvetica, sans-serif;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step .title::before {
  content: "";
  position: absolute;
  background: url("../img/step1.svg");
  width: 78px;
  height: 78px;
  background-repeat: no-repeat;
  left: -90px;
  top: -17px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step p {
  padding: 20px;
  font-size: 16px;
  line-height: 26px;
  border-radius: 0px 0px 20px 20px;
  background-color: white;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step p b {
  font-weight: 700;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step p span {
  color: #00a3ac;
  background-color: #d5f0f2;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(1)::before {
  content: "";
  position: absolute;
  background: url("../img/link1.svg");
  width: 76px;
  height: 126px;
  background-repeat: no-repeat;
  right: -70px;
  top: 52px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(2) {
  margin-left: 160px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(2) .title::before {
  content: "";
  position: absolute;
  background: url("../img/step2.svg");
  width: 76px;
  height: 78px;
  background-repeat: no-repeat;
  left: -90px;
  top: -17px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(2)::before {
  content: "";
  position: absolute;
  background: url("../img/link2.svg");
  width: 72px;
  height: 109px;
  background-repeat: no-repeat;
  left: -66px;
  top: 69px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(3) .title::before {
  content: "";
  position: absolute;
  background: url("../img/step3.svg");
  width: 78px;
  height: 78px;
  background-repeat: no-repeat;
  left: -90px;
  top: -17px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(3)::before {
  content: "";
  position: absolute;
  background: url("../img/link1.svg");
  width: 76px;
  height: 126px;
  background-repeat: no-repeat;
  right: -70px;
  top: 52px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(4) {
  margin-left: 160px;
}
.modal#messageModal .modal-dialog .modal-content .right .full_steps .step:nth-child(4) .title::before {
  content: "";
  position: absolute;
  background: url("../img/step4.svg");
  width: 78px;
  height: 78px;
  background-repeat: no-repeat;
  left: -90px;
  top: -17px;
}
.modal#messageModal .modal-dialog .modal-content .right p.final {
  color: white;
  text-align: center;
  font-size: 23px;
  line-height: 33px;
  font-weight: 600;
  margin-top: 0px;
}
.modal#messageModal .modal-dialog .modal-content .right button {
  background-color: #206467;
  font-size: 24px;
  line-height: 35px;
  outline: none;
  padding: 15px 50px 19px 50px;
  color: white;
  outline: none;
  border: 0;
  margin: 0 auto;
  margin-top: 47px;
  display: block;
  border-radius: 15px;
  margin-top: 40px;
  transition: 0.2s all ease-in-out;
}
.modal#messageModal .modal-dialog .modal-content .right button:focus-within {
  outline: none;
}
.modal#messageModal .modal-dialog .modal-content .right button:hover {
  transition: 0.2s all ease-in-out;
  background-color: #164143;
}
.modal#messageModal .modal-dialog .modal-content .right button:focus {
  background-color: #0d292a;
}

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