/* 서비스예약 */
.cost-container {
  position: fixed;
  width: 100%;
  height: 260px;
  background-color: var(--color-gray-f0);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.reserve-container {
  padding-top: 260px;
  overflow: hidden;
}
.dialog-ui {
  margin-top: 0px;
  margin-bottom: 80px; }
.dialog-ui .box-right {
  margin-top: 20px;
  width: fit-content;
  height: fit-content;
  max-width: 80%;
  min-height: 50px;
  border: none;
  border-radius: 12px 0px 12px 12px;
  background-color: var(--color-gray-40);
  display: flex;
  flex-direction: column;
  margin-left: auto;
  justify-content: center;
  padding: 0px 16px;
  font-family: PretendardR;
  font-size: 16px;
  color: var(--color-white);
  text-align: right;
}
.dialog-ui .box-left {
  margin-top: 20px;
  width: fit-content;
  height: fit-content;
  min-width: 40%;
  max-width: 80%;
  min-height: 50px;
  border: none;
  border-radius: 0px 12px 12px 12px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  margin-right: auto;
  justify-content: center;
  padding: 0px 16px;
  font-family: PretendardR;
  font-size: 16px;
  color: var(--color-gray-10);
  text-align: left;
}
.dialog-ui p {
  line-height: 1.4em;
}
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--color-gray-d0);
}
.control-indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control-radio .control-indicator {
  border-radius: 50%;
}
.control-radio .control-indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--color-white);
}
.control-checkbox .control-indicator {
  border-radius: 2px;
}
.control-checkbox .control-indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control input:checked ~ .control-indicator {
  background: var(--color-main);
}
.control input:checked ~ .control-indicator:after {
  display: block;
}
.btn-reserve-cost {
  height: 35px;
  border: none;
  border-bottom: 1px solid var(--color-gray-80);
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-f0);
  text-align: end;
}
.btn-reserve-edit {
  text-align: right;
  padding-top: 8px;
  cursor: pointer;
}

/* 파일업로드 */
.dropzone {
  background: white;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  border-image: none;
  min-height: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
  margin-bottom: 4px;
  cursor: pointer;
  width: 100%;
}
.dropzone .dz-image {
  position: relative;
  z-index: 1 !important;
}
.dropzone .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none !important;
}
.dropzone .dz-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  font-size: 16px !important;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #202020 !important;
  border-radius: 50%;
  background-color: #202020 !important;
  z-index: 2 !important;
}

/* 예약리스트 */
.blink {
  animation: blink 2s infinite;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

@media (max-width: 575px) {
  .cost-container { width: 100%; padding: 0 8px; }
}
@media (min-width: 576px) {
  .cost-container { width: 540px; }
}
@media (min-width: 768px) {
  .cost-container { width: 720px; }
}
@media (min-width: 992px) {
  .cost-container { width: 960px; }
}
@media (min-width: 1200px) {
  .cost-container { width: 1140px; }
}
@media (min-width: 1400px) {
  .cost-container { width: 1320px; }
}
