.float-button-container {
  z-index: 100;
  position: fixed;
  transform: translate(-50%, 30%);
  right: 2%;
  bottom: 50%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

.float-button-container-mob {
  z-index: 100;
  position: fixed;
  transform: translate(-50%, 0%);
  left: 50%;
  bottom: 67px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #fff;
  height: 40px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #e9e9e9;
  border-radius: 30px;
  text-decoration: none !important;
}


.float-button-mob {
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  color:#2b2b2b !important;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  font-weight: bold;
  transition: 0.5s;
}

.float-button-mob:hover {
  transform: translate(0%, -20%);
}

.float {
  padding: 15px 0 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  background-color: #efefef;
}
.float > p{
  font-family: 'Pretendard5';
  color: #000;
}

.next{
  position: absolute;
  bottom: 2%;
}

/* pc */
.modal1,
.modal2,
.modal3{
  position:absolute;
  display:none;
  justify-content: center;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 10000;
}
.modal_body1,
.modal_body2,
.modal_body3{
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,0.15);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_body1 > img,
.modal_body2 > img,
.modal_body3 > img{
  width: 83%;
}

.btn-close-modal1,
.btn-close-modal2,
.btn-close-modal3{
  display: block;
  width: 30px;
  height: 30px;
  z-index: 10001;
  position: absolute;
  top: 20px;
  right: 20px;
}
.btn-open-modal1,
.btn-open-modal2,
.btn-open-modal3{
  display: flex;
  align-items: center;
  padding: 30px 0px;
  cursor: pointer;
  color: #2b2b2b !important;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  font-weight: bold;
  transition: 0.5s;
  width: 100%;
  border-top: 1px dashed #1d327348;
  justify-content: center;
  transition: all 0.3s;
  text-align: center;
  line-height: 1.5;
  font-family: 'Pretendard4';
}

.btn-open-modal1:hover,
.btn-open-modal2:hover{
  background-color: #E8F2FF;
}
.btn-open-modal3:hover{
  background-color: #E8F2FF;
  border-radius: 0 0 15px 15px;
}

/* mobile */
.modal-mob1,
.modal-mob2,
.modal-mob3{
  position:absolute;
  display:none;
  justify-content: center;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 10000;
}
.modal_body-mob1,
.modal_body-mob2,
.modal_body-mob3{
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,0.15);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_body-mob1 > img,
.modal_body-mob2 > img,
.modal_body-mob3 > img{
  height: 90%;
}

.btn-close-modal-mob1,
.btn-close-modal-mob2,
.btn-close-modal-mob3{
  display: block;
  width: 30px;
  height: 30px;
  z-index: 10001;
  position: absolute;
  top: 20px;
  right: 20px;
}
.btn-open-modal-mob1,
.btn-open-modal-mob2,
.btn-open-modal-mob3{
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  color: #2b2b2b !important;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  font-weight: bold;
  transition: 0.5s;
  width: 100%;
  justify-content: center;
  transition: all 0.3s;
  text-align: center;
  line-height: 1.5;
}

.btn-open-modal-mob1:hover,
.btn-open-modal-mob2:hover,
.btn-open-modal-mob3:hover{
  transform: translate(0%, -20%);
}

@media (max-width: 2000px) {
  .float-button-container{
    right: -2%;
  }
}
@media (max-width: 1700px) {
  .modal_body1 > img,
  .modal_body2 > img,
  .modal_body3 > img{
    width: 100%;
  }
  .float-button-container{
    display: none;
  }
  .float-button-container-mob{
    display: flex;
  }
  .next{
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
  }
  .next > img{
    width: 100%;
  }
}