@charset "UTF-8";
.container {
  max-width: 1600px;
  width: 90%;
}

.account-title img {
  max-width: 300px;
}
@media (max-width: 767px) {
  .account-title {
    max-width: 70%;
    margin: auto;
  }
  .account-title h2 {
    margin-bottom: 0;
  }
  .account-title img {
    width: 100%;
  }
}

h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.3rem;
  }
}

.section01 {
  background: url("../images/section1bg.png") no-repeat;
  background-position: 150% 111%;
  background-size: 80%;
  padding-bottom: 1.5rem;
}
@media (max-width: 1199px) {
  .section01 {
    background-position: 50% 100%;
    background-size: 130% 92vh;
  }
}
.section01.home_page {
  padding-bottom: 10rem;
}

.circlebg::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 1%;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  opacity: 0.5;
  animation: opacity2 -1.5s 3s infinite;
}
.circlebg::after {
  content: "";
  position: absolute;
  top: 37%;
  right: -6%;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  opacity: 0.5;
  animation: opacity2 -1.5s 2.5s infinite;
}

.circle {
  position: absolute;
  left: -5%;
  top: 65%;
  animation: opacity2 -2s 2s infinite;
}

.btns {
  position: relative;
}
.btns::before {
  content: "";
  background: url(../images/bg-3.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 12%;
  left: 35%;
  width: 50px;
  height: 45px;
  opacity: 0.5;
  animation: opacity2 -1s 2s infinite;
}
@media screen and (max-width: 768px) {
  .btns::before {
    left: 0;
    top: 13vh;
  }
}

.indexPerson {
  position: absolute;
  top: 2vh;
  width: 100%;
  max-width: 765px;
  animation-name: fly;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@media (max-width: 991px) {
  .indexPerson {
    position: relative;
    width: 80%;
    margin-top: -5%;
  }
}

.index_people::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 130px;
  background: url("../images/talk.png") no-repeat;
  background-size: contain;
  right: 10%;
  top: 3%;
  background-size: contain;
  transform-origin: 10% bottom;
  animation: talk 1s ease infinite;
}
@media screen and (max-width: 768px) {
  .index_people::before {
    width: 65px;
    right: 20px;
    top: -15px;
  }
}
.index_people::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 150px;
  background: url("../images/paper.png") no-repeat;
  background-size: contain;
  right: 4%;
  top: 65%;
  background-size: contain;
  animation: fly 5s infinite;
}
@media screen and (max-width: 768px) {
  .index_people::after {
    width: 60px;
    right: 3%;
    top: 50%;
  }
}

@keyframes talk {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.maintit {
  position: relative;
}
.maintit::before {
  content: "";
  background: url(../images/bg-1.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 9vw;
  left: 6%;
  width: 80px;
  height: 65px;
  opacity: 0.5;
  animation: opacity2 3s infinite;
}
@media screen and (max-width: 768px) {
  .maintit::before {
    width: 50px;
    height: 50px;
  }
}
.maintit::after {
  content: "";
  background: url(../images/bg-2.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
  right: -8%;
  width: 80px;
  height: 80px;
  opacity: 0.5;
  animation: opacity2 -1.5s 3s infinite;
}
@media screen and (max-width: 768px) {
  .maintit::after {
    width: 50px;
    height: 50px;
  }
}

.exam_list {
  position: relative;
}
.exam_list::before {
  content: "";
  width: 25%;
  height: 22%;
  position: absolute;
  right: 0;
  top: -116px;
  background: url("../images/exam_bg.png") no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .exam_list::before {
    top: -46px;
    width: 35%;
    height: 115px;
  }
}

.mock_item a {
  margin: 0.8rem;
  position: relative;
  display: block;
  background: #fff;
  border: 3px solid #3A457D;
  padding: 65px 15px 15px;
  border-radius: 20px;
  text-decoration: none;
  color: #343434;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 7px 7px 0 #3A457D;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .mock_item a {
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  .mock_item a {
    font-size: 1.3rem;
    padding: 34px 15px 7px;
  }
}
.mock_item a::before {
  content: "";
  width: 100%;
  height: 45px;
  border-radius: 18px 18px 0 0;
  position: absolute;
  background-image: url("../images/control_img.png");
  background-repeat: no-repeat;
  background-position: 95% 15px;
  border-bottom: 0 0, 3px solid #3A457D;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .mock_item a::before {
    height: 30px;
    background-position: 95% 6px;
  }
}
.mock_item a:hover {
  transform: translateX(7px) translateY(7px);
  transition: all 0.5s;
  box-shadow: none;
}
.mock_item:nth-child(6n+1) a::before {
  background-color: #FFB35D;
}
.mock_item:nth-child(6n+2) a::before {
  background-color: #FF80B4;
}
.mock_item:nth-child(6n+3) a::before {
  background-color: #3BAAF2;
}
.mock_item:nth-child(6n+4) a::before {
  background-color: #00E7C3;
}
.mock_item:nth-child(6n+5) a::before {
  background-color: #FF706E;
}
.mock_item:nth-child(6n) a::before {
  background-color: #B35AFF;
}
.mock_img {
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #3A457D;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .mock_img {
    margin-bottom: 0.5rem;
  }
}

.white_block, .test_block {
  background: #fff;
  border-radius: 30px;
  border: 2px solid #343434;
  box-shadow: 0px 7px 0px 0 #343434;
  padding: 3% 5%;
  position: relative;
  margin: 2rem 0 4rem;
  font-size: 1.4rem;
  min-height: 47vh;
}
@media (max-width: 767px) {
  .white_block, .test_block {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
    padding: 3% 3.5%;
    min-height: auto;
  }
}
.white_block p, .test_block p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .white_block p, .test_block p {
    font-size: 1.1rem;
  }
}
.white_block ol, .test_block ol {
  margin-left: 0.5rem;
}
.white_block ol li, .test_block ol li {
  margin-bottom: 1em;
}

.test_block {
  position: relative;
  margin: 2rem 0 4rem;
}
@media (max-width: 767px) {
  .test_block {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
  }
}
.test_block::before {
  content: "";
  width: 105px;
  height: 88px;
  bottom: -32px;
  left: -54px;
  position: absolute;
  background: url("../images/airplane_bg.png") no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .test_block::before {
    width: 81px;
    height: 88px;
    bottom: -58px;
    left: -31px;
    z-index: 1;
  }
}
.test_block::after {
  content: "";
  width: 260px;
  height: 243px;
  bottom: -107px;
  right: -100px;
  position: absolute;
  background: url("../images/test_bg.png") no-repeat;
  background-size: contain;
}
.test_block-table::after {
  background: url(../images/table_bg.png) no-repeat;
  background-size: contain;
  content: "";
  max-width: 20%;
  width: 306px;
  height: 50vh;
  max-height: 50vh;
  bottom: -5vh;
  right: -15%;
  position: absolute;
}
@media (max-width: 767px) {
  .test_block-table::after {
    height: 25vh;
    right: -7%;
  }
}
@media screen and (max-width: 1200px) {
  .test_block::after {
    width: 240px;
    height: 243px;
    bottom: -122px;
    right: -55px;
  }
}
@media screen and (max-width: 768px) {
  .test_block::after, .test_block::before {
    content: none;
  }
}

.tit {
  position: relative;
  margin-top: -5.5rem;
  margin-bottom: 1rem;
}
.tit img {
  max-width: 300px;
}
@media (max-width: 767px) {
  .tit {
    max-width: 70%;
    margin: -2.5rem auto 0.5rem;
  }
  .tit img {
    width: 100%;
  }
}

section.purpose {
  position: relative;
  margin-top: -5rem;
}
@media (max-width: 991px) {
  section.purpose {
    margin-top: -12rem;
  }
}

.example_img {
  border: 2px solid #3A457D;
  filter: drop-shadow(5px 5px 0 #3A457D);
  border-radius: 15px;
}

.detail_btn, .next_btn, .final_btn {
  margin-top: 4rem;
}

.question_img {
  border: 2px solid #3A457D;
  filter: drop-shadow(5px 5px 0 #3A457D);
  border-radius: 15px;
  padding: 5px;
  background: #fff;
}

.final_block h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.final_btn a {
  margin: 1rem 10px;
}

.bank-container {
  max-width: 1150px;
  margin: 0 auto;
  justify-content: center;
  transform-origin: top;
}

.computer_nobg .screen_img {
  max-width: 900px;
  padding: 2.2% 8% 16%;
  background: url(../images/computer_listPic.png) no-repeat;
  background-size: 100% 100%;
  margin: auto;
}
@media (max-width: 1600px) {
  .computer_nobg .screen_img {
    padding: 2.2% 8% 17%;
  }
}
@media (max-width: 768px) {
  .computer_nobg .screen_img {
    padding: 2.2% 8% 18%;
  }
}
@media (max-width: 425px) {
  .computer_nobg .screen_img {
    padding: 2.2% 8% 20%;
  }
}
.computer_nobg .screen_img a {
  display: block;
  position: relative;
}
.computer_nobg .screen_img a::before {
  content: "登入存摺";
  background: rgba(0, 0, 0, 0.3803921569);
  font-size: 2.3rem;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.631372549);
  top: 0;
  opacity: 0;
  left: 0;
  opacity: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: 0.5s all;
}
.computer_nobg .screen_img a:hover:before, .computer_nobg .screen_img a:hover .circle_line, .computer_nobg .screen_img a:hover .finger {
  opacity: 0;
  transition: 0.5s all;
}
.computer_nobg .screen_img .circle_line {
  position: absolute;
  width: 38%;
  height: 70%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  border: 5px solid #fff;
}
@media (max-width: 767px) {
  .computer_nobg .screen_img .circle_line {
    display: none;
  }
}
.computer_nobg .screen_img .finger {
  position: absolute;
  right: 20%;
  max-width: 20%;
  top: 60%;
  animation: finger_move 1s infinite;
}

@keyframes finger_move {
  50% {
    transform: translateX(10px) translateY(10px);
  }
}
/* 翻開 */
@keyframes turn-page {
  90% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}
/* 斜放效果 */
@keyframes turn-transcript {
  50% {
    transform: rotateX(45deg) scale(0.9);
  }
  100% {
    transform: rotateX(0deg) scale(1);
  }
}
@media (max-width: 768px) {
  .computer {
    padding-top: 20%;
  }
}
@media (max-width: 550px) {
  .computer {
    padding-top: 8%;
  }
}

.open-welcome-page .welcome-page {
  animation: turn-page 1s 1s forwards;
}

/* 斜放用 */
.transcript_change {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.transcript_change.active .bank-test.active {
  margin: 0;
  animation: turn-transcript 2s forwards;
}

.computer_nobg.active {
  animation: computer_big 2s 1 forwards;
}

@keyframes computer_big {
  95% {
    transform: scale(1.5);
    transform-origin: center 20%;
  }
  100% {
    transform: scale(1.5);
    transform-origin: center 20%;
    opacity: 0;
  }
}
#barchart2,
#barchart1 {
  height: 500px;
}

.bank-section {
  position: relative;
  padding: 2% 4% 3%;
}
@media (max-width: 1600px) {
  .bank-section {
    padding: 2% 4% 5%;
  }
}
@media (max-width: 1300px) {
  .bank-section {
    padding: 4% 4% 5%;
  }
}
@media (max-width: 1100px) {
  .bank-section {
    padding: 4% 4% 8%;
  }
}
@media (max-width: 992px) {
  .bank-section {
    padding: 4% 4% 0%;
  }
}
@media (max-width: 768px) {
  .bank-section {
    padding: 0% 4% 22%;
  }
}
@media (max-width: 550px) {
  .bank-section {
    padding: 5% 4% 18%;
  }
}
@media (max-width: 425px) {
  .bank-section {
    padding: 0% 4% 25%;
  }
}

.passbook-recordlogo {
  background: #fff;
  padding: 2% 10%;
}
@media (max-width: 1600px) {
  .passbook-recordlogo {
    padding: 5% 10%;
  }
}
@media (max-width: 1400px) {
  .passbook-recordlogo {
    padding: 6% 10%;
  }
}
@media (max-width: 1300px) {
  .passbook-recordlogo {
    padding: 6% 10%;
  }
}
@media (max-width: 1200px) {
  .passbook-recordlogo {
    padding: 5% 10%;
  }
}
@media (max-width: 1100px) {
  .passbook-recordlogo {
    padding: 6% 10%;
  }
}
@media (max-width: 1050px) {
  .passbook-recordlogo {
    padding: 7% 10%;
  }
}
@media (max-width: 992px) {
  .passbook-recordlogo {
    padding: 6% 10%;
  }
}
@media (max-width: 900px) {
  .passbook-recordlogo {
    padding: 8% 10%;
  }
}
@media (max-width: 800px) {
  .passbook-recordlogo {
    padding: 10% 10%;
  }
}
@media (max-width: 768px) {
  .passbook-recordlogo {
    padding: 8% 10%;
  }
}
@media (max-width: 500px) {
  .passbook-recordlogo {
    padding: 15% 5%;
  }
}
@media (max-width: 425px) {
  .passbook-recordlogo {
    padding: 25% 5%;
  }
}

.transcript_book {
  min-height: 600px;
  transform-style: preserve-3d;
  transform-origin: top;
  perspective: 1000px;
}
@media (max-width: 768px) {
  .transcript_book {
    min-height: 475px;
  }
}

.start-page {
  border-radius: 30px;
  box-shadow: 15px 15px 0 #727272;
  overflow: hidden;
  transform-origin: top;
  z-index: 2;
  position: absolute;
  width: 100%;
  top: 0;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .start-page {
    box-shadow: 10px 10px 0 #727272;
  }
}
@media (max-width: 550px) {
  .start-page {
    border-radius: 10px;
    box-shadow: 5px 5px 0 #727272;
  }
}
@media (max-width: 500px) {
  .start-page {
    border-radius: 8px;
  }
}

.passbook-top {
  background-color: #00E7C3;
}

.passbook-bottom {
  background-color: #EDE4FF;
}

.passbook-top {
  padding: 2.5% 5%;
}
@media (max-width: 550px) {
  .passbook-top {
    padding: 5.5% 5%;
  }
}
@media (max-width: 500px) {
  .passbook-top {
    padding: 7.5% 5%;
  }
}

.bank-tit {
  top: 0px;
  width: 315px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1200px) {
  .bank-tit {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .bank-tit {
    margin-bottom: 10px;
  }
}
.bank-tit .title-icon {
  top: 5px;
  left: -10px;
}
@media (max-width: 768px) {
  .bank-tit .title-icon {
    top: 3px;
  }
}
@media (max-width: 500px) {
  .bank-tit .title-icon {
    top: 8px;
    left: -2px;
  }
}
@media (max-width: 768px) {
  .bank-tit {
    width: 265px;
    padding: 0 1.5% 0 65px;
  }
}
@media (max-width: 500px) {
  .bank-tit {
    width: 215px;
    padding: 0 1.5% 0 55px;
  }
}
@media (max-width: 425px) {
  .bank-tit {
    width: 205px;
    padding: 0 1.5% 0 55px;
  }
}
.bank-tit h2 {
  padding: 5px;
}
@media (max-width: 500px) {
  .bank-tit h2 {
    font-size: 1.4rem;
    line-height: 55px;
  }
}
.bank-tit .title-icon img {
  width: 70px;
}
@media (max-width: 768px) {
  .bank-tit .title-icon img {
    width: 60px;
  }
}
@media (max-width: 500px) {
  .bank-tit .title-icon img {
    width: 50px;
  }
}

.passbook-bottom {
  padding: 2.5% 5%;
}
@media (max-width: 550px) {
  .passbook-bottom {
    flex-wrap: wrap;
    padding: 5.5% 5%;
  }
}
@media (max-width: 500px) {
  .passbook-bottom {
    padding: 6.5% 5%;
  }
}
.passbook-bottom p {
  text-align: center;
  color: #333;
  font-size: 3rem;
  font-weight: bold;
  padding-left: 10%;
}
@media (max-width: 768px) {
  .passbook-bottom p {
    padding-left: 0%;
  }
}

.bank-container {
  max-width: 1150px;
  margin: 0 auto;
  justify-content: center;
  transform-origin: top;
}
@media (max-width: 1600px) {
  .bank-container {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .bank-container {
    width: 100%;
  }
}
.bank-container .start-page-logo {
  max-width: 314px;
  width: 40%;
  height: 100%;
}
@media (max-width: 550px) {
  .bank-container .start-page-logo {
    width: 49%;
  }
}
.bank-container .start-page-item {
  max-width: 359px;
  width: 40%;
  height: 100%;
}
@media (max-width: 550px) {
  .bank-container .start-page-item {
    width: 49%;
  }
}
.bank-container .bank-subtitle {
  max-width: 148px;
  height: 100%;
}
@media (max-width: 768px) {
  .bank-container .bank-subtitle {
    max-width: 108px;
  }
}
@media (max-width: 500px) {
  .bank-container .bank-subtitle {
    max-width: 98px;
  }
}
@media (max-width: 425px) {
  .bank-container .bank-subtitle {
    max-width: 75px;
  }
}
.bank-container .passbook-bottom .bank-user {
  display: flex;
  line-height: 55px;
}
@media (max-width: 1200px) {
  .bank-container .passbook-bottom .bank-user {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .bank-container .passbook-bottom .bank-user {
    font-size: 2.2rem;
    height: 2.2rem;
    margin-top: 5px;
  }
  .bank-container .passbook-bottom .bank-user span {
    font-size: 2rem;
    height: 2rem;
  }
}
@media (max-width: 500px) {
  .bank-container .passbook-bottom .bank-user {
    font-size: 2rem;
    line-height: 35px;
  }
  .bank-container .passbook-bottom .bank-user span {
    font-size: 1.2rem;
  }
}
@media (max-width: 425px) {
  .bank-container .passbook-bottom .bank-user {
    font-size: 1.8rem;
  }
}

.band-page-top {
  position: relative;
  justify-content: space-between;
  padding: 1% 2.5%;
}
@media (max-width: 768px) {
  .band-page-top {
    padding: 2% 2.5% 1%;
  }
}
@media (max-width: 425px) {
  .band-page-top {
    padding: 4% 2.5% 1%;
  }
}
.band-page-top .band-page-logo {
  max-width: 370px;
  width: 40%;
  height: 100%;
}
.band-page-top .band-page-item {
  width: 40%;
  max-width: 370px;
  height: 100%;
}
.band-page-top::after {
  content: "";
  width: 90%;
  left: 5%;
  bottom: 0%;
  height: 3px;
  background-color: #ACACAC;
  position: absolute;
}

.bottom-box {
  width: 100%;
  padding: 0 2.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: url("../images/roadBg.png") no-repeat;
  background-position: -37% 85%;
  background-size: 63% 112%;
}
@media (max-width: 992px) {
  .bottom-box img {
    display: none;
  }
}

.bank-content {
  width: 75%;
  position: relative;
  transform-origin: top;
}
@media (max-width: 1250px) {
  .bank-content {
    width: 100%;
  }
}
.bank-content .content-form {
  padding: 2% 1%;
  width: 100%;
}
@media (max-width: 600px) {
  .bank-content .content-form {
    overflow-y: auto;
    max-height: 35vh;
  }
}
@media (max-width: 425px) {
  .bank-content .content-form {
    max-height: 47vh;
  }
}
.bank-content .content-form .td-body .td {
  height: 55px;
  position: relative;
}
.bank-content .content-form .td-body .td::after {
  content: "";
  height: 1px;
  width: 90%;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  left: 5%;
}
@media (max-width: 767px) {
  .bank-content .content-form .td-body .td {
    height: auto;
  }
}
@media (max-width: 550px) {
  .bank-content .content-form .td-body .td:first-child {
    border-radius: 10px 10px 0 0 !important;
  }
  .bank-content .content-form .td-body .td:last-child {
    border-radius: 0 0 10px 10px !important;
  }
  .bank-content .content-form .td-body .td:last-child::after {
    content: none !important;
  }
}
.bank-content .content-form .td-body:nth-child(2) .td {
  border-radius: 10px 10px 0 0;
}
@media (max-width: 600px) {
  .bank-content .content-form .td-body:nth-child(2) .td {
    border-radius: unset;
  }
}
.bank-content .content-form .td-body:last-child .td {
  border-radius: 0 0 10px 10px;
}
@media (max-width: 600px) {
  .bank-content .content-form .td-body:last-child .td {
    border-radius: unset;
  }
}
.bank-content .content-form .td-body:last-child .td::after {
  content: none;
}
@media (max-width: 550px) {
  .bank-content .content-form .td-body:last-child .td::after {
    content: "";
  }
}
.bank-content .th-head,
.bank-content .td-body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .bank-content .th-head,
  .bank-content .td-body {
    flex-direction: column;
    margin: 5px 0;
  }
}
@media (max-width: 600px) {
  .bank-content .th-head {
    display: none;
  }
}
.bank-content .th {
  text-align: center;
  background: #EDE4FF;
  font-size: 1.4rem;
  padding: 10px;
  margin: 10px;
  font-weight: bold;
  border-radius: 10px;
  width: 30%;
}
@media (max-width: 768px) {
  .bank-content .th {
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .bank-content .th {
    font-size: 1rem;
  }
}
.bank-content .td {
  text-align: center;
  background: #CDFFE4;
  font-size: 1.3rem;
  padding: 5px 10px;
  margin: 0 10px;
  font-weight: bold;
  line-height: 2.2;
  position: relative;
  width: 30%;
}
@media (max-width: 768px) {
  .bank-content .td {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .bank-content .td {
    width: 95%;
    text-align: start;
  }
}
@media (max-width: 500px) {
  .bank-content .td {
    font-size: 0.9rem;
  }
}
.bank-content .td span {
  display: none;
  width: 95px;
}
@media (max-width: 600px) {
  .bank-content .td span {
    display: inline-block;
    margin-right: 15px;
  }
}
@media (max-width: 500px) {
  .bank-content .td span {
    width: 85px;
    margin-right: 5px;
  }
}

.bank-btn-group {
  text-align: center;
  height: auto;
  padding: 15px 0;
  width: 100%;
  padding-left: 20%;
  margin-bottom: 10px;
}
@media (max-width: 1250px) {
  .bank-btn-group {
    padding-left: 0px;
  }
}

.bank-btn {
  box-shadow: 3px 3px #000000;
  font-size: 1.2rem;
  padding: 6px 30px;
  border-radius: 20px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid #343434;
  margin: 0 15px;
}
.bank-btn:hover {
  background-color: #ff9100;
  color: white;
}
.bank-btn.btn-prv {
  background: #FFB35D;
}
.bank-btn.btn-next {
  background: #FFBCBC;
}
@media (max-width: 768px) {
  .bank-btn {
    font-size: 1.1rem;
    padding: 8px 20px;
  }
}
@media (max-width: 500px) {
  .bank-btn {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

.top-group {
  background-color: #fffdef;
  padding: 2% 0% 0;
  box-shadow: 15px 15px 0 #9c9c9c;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-group {
    box-shadow: 10px 10px 0 #9c9c9c;
  }
}
@media (max-width: 550px) {
  .top-group {
    border-radius: 15px;
    box-shadow: 5px 5px 0 #9c9c9c;
  }
}
@media (max-width: 500px) {
  .top-group {
    border-radius: 15px;
    box-shadow: 3px 3px 0 #9c9c9c;
  }
}
.top-group::before {
  content: "";
  position: absolute;
  height: 20px;
  border-radius: 20px 20px 0 0;
  background-color: #484848;
  left: 0;
  top: 0px;
  width: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .top-group::before {
    height: 17px;
  }
}
@media (max-width: 500px) {
  .top-group::before {
    height: 15px;
    border-radius: 8px 8px 0 0;
  }
}
@media (max-width: 425px) {
  .top-group::before {
    height: 12px;
  }
}

.bank-person {
  width: 23%;
  height: 100%;
  margin-top: 5vh;
}
@media (max-width: 1250px) {
  .bank-person {
    display: none;
  }
}

.test_content {
  position: relative;
  border-radius: 30px;
}

.welcome-page,
.pre_page,
.now_page,
.next_page {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  transform-origin: 0% 20px;
}
@media (max-width: 768px) {
  .welcome-page,
  .pre_page,
  .now_page,
  .next_page {
    margin-top: 20px;
  }
}

.welcome-page {
  z-index: 3;
}

.next_page {
  z-index: 0;
}

.welcome-page {
  border-radius: 30px;
  top: -5px;
}
@media (max-width: 550px) {
  .welcome-page {
    border-radius: 5px;
  }
}

/* 上一頁 */
@keyframes pre-page {
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    transform: rotateX(0deg);
    z-index: 2;
  }
  100% {
    transform: rotateX(0deg);
    z-index: 0;
  }
}
@keyframes next-page {
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}
.pre_page {
  transform: rotateX(180deg);
  opacity: 0;
  z-index: 0;
}

.pre_page.active {
  animation: pre-page 1s 1s backwards;
}

.next_page {
  opacity: 0;
}

.next_page.active {
  animation: next-page 1s 1s backwards;
  z-index: 0;
}

.decorate-start-page {
  background-color: #ffb554;
}

.bank-p {
  padding: 0;
}

.login_block {
  position: relative;
}
.login_block::before {
  content: "";
  position: absolute;
  bottom: -8%;
  left: -5%;
  width: 20%;
  height: 15%;
  max-width: 120px;
  background: url("../images/airplane_bg.png") no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .login_block::before {
    content: none;
  }
}

.form_style label {
  font-weight: bold;
}
.form_style label span {
  color: #c73c4a;
  font-size: 0.8em;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .form_style label span {
    display: block;
  }
}
.form_style input, .form_style select {
  border: none;
  background: #FFF7E3;
}
.form_style .form-select {
  font-size: 1.1rem;
}

.text-danger {
  color: #c73c4a;
}

.pssword {
  font-size: 0.9em;
  color: #333;
}

.nomal-btn, .nomal-btn2 {
  margin: 10px;
  color: #343434;
  border-radius: 50px;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 1.25rem;
  margin: 5px;
  font-weight: bold;
  transition: all 0.5s;
  background: #EDE4FF;
  white-space: nowrap;
}
.nomal-btn:hover, .nomal-btn2:hover {
  background: #ffb877;
  color: #000;
}
@media (max-width: 400px) {
  .nomal-btn, .nomal-btn2 {
    font-size: 1rem;
    padding: 5px 10px;
  }
}

.nomal-btn2 {
  background: #D6FFBC;
}

.main-btn {
  margin: 10px;
  color: #343434;
  border-radius: 50px;
  padding: 5px 35px;
  text-decoration: none;
  border: 2px solid #343434;
  font-size: 1.4rem;
  box-shadow: 0px 5px 0px 0 #343434;
  margin: 5px;
  font-weight: bold;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .main-btn {
    font-size: 1.1rem;
    padding: 5px 25px;
  }
}
@media (max-width: 400px) {
  .main-btn {
    font-size: 1rem;
  }
}
.main-btn.register-btn {
  background: #D6FFBC;
}
.main-btn.login-btn {
  background: #EDE4FF;
}
.main-btn:hover {
  background: #ffb877;
  color: #000;
  box-shadow: none;
  transform: translateY(2px);
  transition: all 0.5s;
}

.person1 {
  position: relative;
}
.person1::before {
  content: "";
  top: 10%;
  position: absolute;
  left: 2%;
  width: 30%;
  height: 40%;
  background: url("../images/personbg1-1.png") no-repeat;
  animation: opacity2 -1s 2s infinite;
}
.person1::after {
  content: "";
  top: 4%;
  position: absolute;
  left: 1%;
  width: 40%;
  height: 50%;
  background: url("../images/personbg1-2.png") no-repeat;
  animation: opacity2 2s infinite;
  background-size: contain;
}
.person1 span::before {
  content: "";
  top: 10%;
  position: absolute;
  right: 2%;
  width: 30%;
  height: 60%;
  background: url("../images/personbg1-3.png") no-repeat;
  animation: opacity2 -1s 2s infinite;
}
.person1 span::after {
  content: "";
  top: 20%;
  position: absolute;
  right: 0%;
  width: 40%;
  height: 50%;
  background: url("../images/personbg1-4.png") no-repeat;
  animation: opacity2 2s infinite;
  background-size: contain;
}

.person2 {
  position: relative;
}
.person2::before {
  content: "";
  top: 4%;
  position: absolute;
  left: 2%;
  width: 30%;
  height: 40%;
  background: url("../images/personbg2-1.png") no-repeat;
  animation: opacity2 -1s 2s infinite;
}
.person2::after {
  content: "";
  top: 4%;
  position: absolute;
  right: 2%;
  width: 40%;
  height: 50%;
  background: url("../images/personbg2-2.png") no-repeat;
  animation: opacity2 2s infinite;
  background-size: contain;
}

@keyframes opacity2 {
  0%, 100% {
    opacity: 0.05;
  }
  50% {
    opacity: 1;
  }
}
.btn-sitemap {
  background: #FFECBC;
  color: #343434;
  border-radius: 50px;
  padding: 10px 15px;
  border: 2px solid #343434;
  font-size: 1.25rem;
  box-shadow: 0px 3px 0px 0 #343434;
  margin: 0.5em 1em;
  font-weight: bold;
  transition: all 0.5s;
  text-decoration: none;
  font-size: 1.4rem;
  min-width: 17%;
  display: inline-block;
  text-align: center;
}
.btn-sitemap:nth-child(3n) {
  background: #EDE4FF;
}
.btn-sitemap:nth-child(3n+1) {
  background: #D6FFBC;
}
.btn-sitemap:nth-child(3n+2) {
  background: #ffdaa9;
}
.btn-sitemap:hover {
  background: #18E7C3;
  color: #000;
  box-shadow: none;
  transform: translateY(2px);
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .btn-sitemap {
    width: 38%;
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .btn-sitemap {
    width: 45%;
    padding: 10px;
    margin: 0.2rem;
  }
}

.statistics-btn {
  font-size: 1.4rem;
  border: 2px solid #000;
  box-shadow: 5px 5px #000;
  border-radius: 30px;
  text-decoration: none;
  padding: 10px 2em;
  font-weight: bold;
  margin: 0 1em;
  color: #222;
  background-color: #FFECBC;
}
.statistics-btn.active {
  transform: scale(1.1);
  background: #ffb877;
}
.statistics-btn:hover {
  background: #18E7C3;
  color: #000;
  box-shadow: none;
  transform: translateY(2px);
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .statistics-btn {
    font-size: 1rem;
    padding: 5px 1em;
    box-shadow: 3px 3px #000;
  }
}

.totable, .tochart {
  font-size: 1.4rem;
  border: 2px solid #000;
  box-shadow: 5px 5px #000;
  border-radius: 30px;
  text-decoration: none;
  padding: 10px 2em;
  font-weight: bold;
  margin: 0 1em;
  color: #222;
  background-color: #18E7C3;
  display: inline-block;
}
.totable:hover, .tochart:hover {
  background: #FFECBC;
  color: #000;
  box-shadow: none;
  transform: translateY(2px);
  transition: all 0.5s;
}

.card {
  margin-top: 2.5rem;
  border-radius: 20px;
  border: 5px solid #FFECBC;
  overflow: hidden;
}
@media (max-width: 767px) {
  .card {
    margin-top: 1.3rem;
  }
}
.card .card-header {
  background: #FFECBC;
  text-align: center;
  border: none;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .card .card-header {
    font-size: 1.3rem;
  }
}

.data_show {
  width: 23%;
  margin: 1%;
}
@media (max-width: 767px) {
  .data_show {
    width: 48%;
    margin-top: 0.5rem;
  }
}
.data_show:nth-child(1) span:nth-child(1) {
  background: #EDE4FF;
}
.data_show:nth-child(2) span:nth-child(1) {
  background: #CDFFE4;
}
.data_show:nth-child(3) span:nth-child(1) {
  background: #FFBCBC;
}
.data_show:nth-child(4) span:nth-child(1) {
  background: #C2DEFD;
}
.data_show span {
  display: block;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding: 5%;
  background: #F2F2F2;
  margin: 0 0 15px 0;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .data_show span {
    margin: 0;
    border-radius: 5px;
  }
}

.question_img img {
  border: 2px solid #3A457D;
  filter: drop-shadow(5px 5px 0 #3A457D);
  border-radius: 15px;
  padding: 5px;
  background: #fff;
}

.my-select {
  background-color: #ffecbc;
  border-radius: 50px;
  display: inline-block;
  padding: 0.8rem;
  font-size: 1.4rem;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  min-width: 150px;
  box-shadow: 3px 3px 1px #333;
  border: 2px solid #333;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .my-select {
    font-size: 1.1rem;
    padding: 5px;
  }
}
.my-select.active {
  background: #18E7C3;
}
.my-select:hover {
  background-color: #18E7C3;
  color: #333;
  box-shadow: none;
  transform: translateY(2px);
  transition: all 0.5s;
}

.award-out-block {
  background: #EDE4FF;
  border-radius: 20px;
  margin-bottom: 2rem;
  padding: 0.5rem;
}
.award-out-block .out-block-content {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  border-top: none;
  padding: 1% 1.5%;
}
.award-out-block .out-tit {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5% 0;
}

.week-award {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #CDFFE4;
  margin-bottom: 15px;
}
.week-award .week-award-tit {
  border-radius: 35px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5% 0;
  background: none;
}
@media (max-width: 767px) {
  .week-award .week-award-tit {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.week-award .week-award-tit:focus {
  background: #FFBCBC;
}
.week-award .week-content {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  border: 10px solid #CDFFE4;
  border-top: none;
  padding: 1% 1.5%;
}
.week-award .week-content p {
  font-weight: bold;
  margin: 1rem 0;
}
.week-award .week-content .gift {
  max-width: 150px;
}
.week-award .week-content .last-gift {
  max-width: 800px;
}

.award-list {
  list-style: none;
}
@media (max-width: 767px) {
  .award-list {
    padding-left: 0;
  }
}
.award-list li {
  display: flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .award-list li .bg-color2 {
    padding-top: 0.5rem;
  }
}
.award-list span {
  border-radius: 9px;
  font-weight: bold;
  padding: 0.5rem;
  display: inline-block;
}
.award-list .bg-color {
  border-radius: 9px;
  background: #FFBCBC;
  white-space: nowrap;
  padding: 5px 30px;
}
@media (max-width: 767px) {
  .award-list .bg-color {
    border-radius: 5px;
  }
}
.award-list .bg-color2 {
  border-radius: 9px;
  background: #F2F2F2;
  width: 100%;
  padding: 5px 30px;
}
@media (max-width: 767px) {
  .award-list .bg-color2 {
    border-radius: 0;
    background: transparent;
    padding: 0;
  }
}
.award-list.table {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.award-list.table * {
  border: none;
}
@media (max-width: 767px) {
  .award-list.table {
    margin-bottom: 0;
  }
  .award-list.table th {
    display: none;
  }
  .award-list.table td {
    display: flex;
    width: 100% !important;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #fff;
    background: #d1fff8;
    flex-wrap: wrap;
  }
  .award-list.table td:before {
    content: attr(data-th) " : ";
    font-weight: bold;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    padding-right: 5px;
    color: #181043;
  }
  .award-list.table td:last-child {
    border-bottom: none;
  }
  .award-list.table tr {
    display: block;
  }
  .award-list.table tr:last-child {
    margin-bottom: 1rem;
  }
  .award-list.table tr + tr {
    margin-top: 1rem;
  }
}

.table.table-list {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.table.table-list * {
  border: none;
}
.table.table-list th > div {
  background: #EDE4FF;
  border-radius: 9px;
  padding: 10px 30px;
  white-space: nowrap;
}
.table.table-list td {
  padding: 0 0.5rem;
}
.table.table-list td > div {
  background: #CDFFE4;
  padding: 10px 30px;
  position: relative;
  white-space: nowrap;
}
.table.table-list td > div::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 1px;
  background: rgba(124, 124, 124, 0.4);
}
.table.table-list tbody tr:first-child td div {
  border-radius: 8px 8px 0 0;
}
.table.table-list tbody tr:last-child td div {
  border-radius: 0 0 8px 8px;
}
.table.table-list tbody tr:last-child td div::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .table.table-list th {
    display: none;
  }
  .table.table-list td {
    display: flex;
  }
  .table.table-list td::before {
    content: attr(data-label) "：";
    width: 100%;
    max-width: 40%;
    background: #EDE4FF;
    align-content: center;
    text-align: right;
  }
  .table.table-list td > div {
    border-radius: 0 !important;
    flex: 1;
    text-align: start;
    padding: 0 1rem;
  }
  .table.table-list tr {
    display: block;
    margin-bottom: 1rem;
  }
  .table.table-list tr:last-child div::after {
    content: "" !important;
  }
}

.page_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 90%;
  margin: 2% auto 0;
}
.page_list a {
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid;
  background: #EDE4FF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 5px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}
.page_list a:hover {
  background: #FF80B4;
}

.theme-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 5%;
  text-align: center;
}
.theme-card a {
  text-decoration: none;
  color: #212529;
  transition: all 0.5s;
  display: block;
  margin: auto;
  font-size: 1.5rem;
  font-weight: bold;
}
.theme-card a img {
  display: block;
  border-radius: 30px;
  border: 2px solid #3A457D;
  box-shadow: 0px 6px 0px #3A457D;
  width: 100%;
  margin: auto;
  margin-bottom: 1rem;
}
.theme-card a:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .theme-card {
    width: 100%;
  }
}

.clock {
  position: absolute;
  z-index: 3;
  border-radius: 30px;
  border: 2px solid #343434;
  width: 120px;
  padding: 5px 15px;
  font-size: 1.5rem;
  background: #fff;
  top: -12px;
  right: -35px;
  display: flex;
  align-items: center;
}
.clock img {
  margin-right: 15px;
}
.clock .clock_pause {
  display: none;
}
.clock .time-info {
  display: none;
}
.clock.time_pause {
  color: #FF706E;
}
.clock.time_pause .clocking {
  display: none !important;
}
.clock.time_pause .clock_pause {
  display: inline-block !important;
}
.clock.time_pause .time-info {
  font-size: 0.95rem;
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clock {
    position: unset;
    margin: auto;
    margin-bottom: 1rem;
  }
  .clock .time-info {
    display: none !important;
  }
}

.audio_block {
  position: absolute;
  top: 10px;
  right: 50px;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: 1rem;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .audio_block {
    right: 15px;
  }
}
.audio_block:hover {
  background: #FFECBC;
}
.audio_block.muted::after {
  content: "";
  width: 100%;
  background: #ff706e;
  display: block;
  position: absolute;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.audio_block i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ans_img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 250px;
}

.question_answer {
  padding: 1.5rem 0;
  margin-left: 5%;
}
.question_answer label {
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 15px;
  width: 100%;
  border: 1px solid #343434;
  position: relative;
  margin-bottom: 20px;
  border-radius: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}
.question_answer label:hover {
  background: #FFB35D;
}
.question_answer label.ans_active {
  background: #FFECBC;
}
.question_answer label.ans_disabled {
  pointer-events: none;
}
.question_answer label input {
  position: absolute;
  z-index: -1;
}
.question_answer label span {
  min-width: 40px;
  height: 40px;
  font-size: 1.5rem;
  padding: 5px;
  background: #FF80B4;
  border: 1px solid #343434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.question_answer label img {
  max-width: 40px;
}
@media screen and (max-width: 768px) {
  .question_answer {
    margin-left: 0;
    padding: 1rem 0;
  }
  .question_answer label {
    padding: 10px 40px 10px 15px;
    margin-bottom: 10px;
  }
  .question_answer label span {
    min-width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  .question_answer label img {
    max-width: 30px;
  }
}

.start_btn a, .detail_btn a, .next_btn a, .final_btn a {
  max-width: 200px;
  display: inline-block;
  transition: all 0.5s;
}
.start_btn a img, .detail_btn a img, .next_btn a img, .final_btn a img {
  transition: all 0.5s;
  filter: drop-shadow(5px 5px 0 #343434);
}
.start_btn a:hover, .detail_btn a:hover, .next_btn a:hover, .final_btn a:hover {
  transform: translateX(5px) translateY(5px);
  transition: all 0.5s;
}
.start_btn a:hover img, .detail_btn a:hover img, .next_btn a:hover img, .final_btn a:hover img {
  transition: all 0.5s;
  filter: none;
}
@media screen and (max-width: 768px) {
  .start_btn a, .detail_btn a, .next_btn a, .final_btn a {
    max-width: 150px;
  }
}

.result_block {
  margin: 3rem 0;
  background: #EDE4FF;
  border: 4px solid #3A457D;
  border-radius: 20px;
  box-shadow: 2px 2px 0 #3A457D;
  padding: 4%;
  font-size: 1.8rem;
}
.result_block span {
  font-size: 4.8rem;
  color: #3a457d;
  font-weight: bold;
}
.result_block div {
  padding: 0 4%;
  flex: auto;
  white-space: nowrap;
}
.result_block div + div {
  border-left: 2px solid #3A457D;
}
@media screen and (max-width: 768px) {
  .result_block {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }
  .result_block span {
    font-size: 2rem;
    padding: 0.5rem;
  }
  .result_block div + div {
    border: none;
    border-top: 2px solid #3A457D;
  }
}

.test-page-block {
  position: relative;
  z-index: 2;
}

.test-page {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .test-page {
    margin: 1.5rem;
  }
}

#certificate input {
  position: absolute;
  top: 71%;
  left: -18%;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 26%;
  font-size: 170%;
  border: none;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
  opacity: 0;
  z-index: 2;
  box-shadow: none;
}
#certificate span {
  position: absolute;
  white-space: nowrap;
  top: 87.5%;
  left: 48%;
  font-weight: bold;
  display: inline-block;
  font-size: 134%;
  color: #4d4d4d;
  opacity: 0;
}

#msg .modal-content {
  border-radius: 30px;
  border: 2px solid #343434;
  text-align: center;
  box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
}
#msg .modal-content .modal-header {
  border: none;
}
#msg .modal-content .modal-body {
  font-size: 1.6rem;
}
#msg .modal-content .close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  background: #FFBCBC;
}
#msg .modal-content .close-btn i {
  color: #343434;
}/*# sourceMappingURL=inside.css.map */