* {
  margin: 0;
  font-family: "Noto Sans";
}
.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.layerContents .modal-content .col {
  gap: 52px;
}
.layerContents .modal-content .row {
  justify-content: center;
  align-items: center;
  gap: 66px;
  position: relative;
}
.layerContents .modal-content .col div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.layerContents .modal-content .row .right:last-child {
  border-radius: 40px;
  border: 4px dashed var(--stroke, rgba(95, 134, 253, 0.60));
  padding: 40px;
}
.layerContents .modal-content .row > div:last-child::after {
  content: "SERVER";
  border-radius: 30px;
  border: 4px dashed var(--stroke, rgba(95, 134, 253, 0.60));
  background: #FFF;
  position: absolute;
  top: -26px;
  padding: 8px 16px;
  color: #003252;
  font-size: 24px;
  font-weight: 700;
  }
.modal-content .col {
  display: flex;
  flex-direction: column;
} 
.modal-content .row {
  display: flex;
  flex-direction: row;
}
.nextBtn, .prevBtn {
  position: absolute;
  width: 52px;
  height: 52px;
  bottom: 0;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  box-shadow: 0px 4px 14px 0px rgba(95, 134, 253, 0.20);
  border-radius: 50%;
}
.nextBtn {
  right: 0;
  background-image: url('../img/modal/arrow_next.svg');
}
.prevBtn {
  display: none;
  left: 0;
  background-image: url('../img/modal/arrow_prev.svg');
}
.nextBtn:hover,
.prevBtn:hover {
  background-color: #DCF1FF;
}
.nextBtn:active,
.prevBtn:active {
  background-color: #BDDBEF;
}
.img {
  position: relative;
  box-shadow: 0px 4px 14px 0px rgba(95, 134, 253, 0.20);
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background-color: #FFF;
}
.right {
  justify-content: space-between;
  gap: 106px;
}
.img::after, .img::before {
  content: "";
  display: inline-block;
  width: 66px;
  height: 56px;
  position: absolute;

}
.taxAuth::after {
  background-image: url('../img/modal/arrow_leftRight.svg');
  top: calc(50% - 33px);
  right: -86px;
  background-size: 66px;
}
.taxAuth.arrow4::after {
  background-image: url('../img/modal/arrow_bothSide_2x.gif');
}
.hxp.active,
.was.active,
.taxAuth.active {
  box-shadow: 0px 4px 14px 0px #5F86FD;
}
.hxp.active img {
  width: 120px;
}
.hxp::before {
  background-image: url('../img/modal/arrow_leftRight.svg');
  top: calc(50% - 33px);
  left: -86px;
  background-size: 66px;
}
.hxp.arrow2::before {
  background-image: url('../img/modal/right-arrow-animation.gif');
}
.hxp.arrow3::before {
  background-image: url('../img/modal/left_arrow_animation.gif');
}
.was::after {
  background-image: url('../img/modal/arrow_topBottom.svg');
  height: 66px;
  width: 56px;
  bottom: -86px;
  /* left: calc(50% - 28px); */
  left: calc(50% - 16px);
}
.was.arrow2::after {
  background-image: url('../img/modal/left_arrow_animation.gif');
  background-size: 66px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  width: 66px !important;
  height: 66px !important;
}
.was.arrow3::after {
  background-image: url('../img/modal/right-arrow-animation.gif');
  background-size: 66px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  width: 66px !important;
  height: 66px !important;
}
