:root {
  --accent-blue: #2c66bc;
}

.multi-items__wrap .item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #f2f6fd;
  padding-bottom: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}
.multi-items__wrap .item .title {
  width: inherit;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.multi-items__wrap .item .title input {
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 8px;
  border-radius: 4px;
  border: 1px solid #91a8bd;
  cursor: pointer;
}
.multi-items__wrap .item .title label {
  margin-bottom: 0;
  cursor: pointer;
}
.multi-items__wrap .item .time {
  width: 80px;
  color: #91a8bd;
}
.multi-items__wrap .item .price {
  width: 80px;
  text-align: right;
}
.multi-items__wrap .item .price .num {
  font-weight: 600;
}
.multi-items__wrap .item .price .cur {
  font-size: 12px;
}
@media (max-width: 780px) {
  .multi-items__wrap .item {
    flex-wrap: wrap;
  }
  .multi-items__wrap .item .title {
    margin-bottom: 6px;
    line-height: 1;
    align-items: flex-start;
  }
  .multi-items__wrap .item .title input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .multi-items__wrap .item .time {
    margin-left: 32px;
  }
}

.multi-record-filter .each-filter {
  border-bottom: 1px solid #e1e8f5;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media (max-width: 780px) {
  .multi-record-filter .each-filter {
    padding-bottom: 16px;
    margin-bottom: 16px;
    margin-top: 0;
  }
}

.shadow-box {
  padding: 24px;
  border-radius: 16px;
  background: var(--white, #fff);
  box-shadow: 0px 9px 25px 0px rgba(4, 35, 69, 0.07), 0px 3.76px 9.755px 0px rgba(4, 35, 69, 0.05), 0px 2.01px 4.502px 0px rgba(4, 35, 69, 0.03), 0px 1.127px 2.006px 0px rgba(4, 35, 69, 0.02), 0px 0.599px 0.742px 0px rgba(4, 35, 69, 0.01), 0px 0.249px 0.159px 0px rgba(4, 35, 69, 0);
}
@media (max-width: 780px) {
  .shadow-box {
    padding: 12px;
  }
}

.steps-navigation {
  display: flex;
  counter-reset: steps;
}
.steps-navigation .item {
  counter-increment: steps;
  display: flex;
  align-items: center;
  margin-right: 24px;
  color: #c5c8db;
}
.steps-navigation .item.active {
  color: var(--accent);
}
.steps-navigation .item.active:before {
  background: var(--accent);
}
.steps-navigation .item:before {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  content: counter(steps);
  background: #c5c8db;
  color: var(--white, #fff);
  border-radius: 50%;
  align-content: center;
  margin-right: 7px;
}
.steps-navigation .item span {
  display: block;
  flex: 1;
}
@media (max-width: 780px) {
  .steps-navigation .item {
    margin-right: 16px;
    align-items: flex-start;
  }
  .steps-navigation .item:before {
    display: flex;
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .steps-navigation .item span {
    line-height: 1;
    font-size: 12px;
  }
}

.select-filter-v1 {
  display: flex;
}
.select-filter-v1 input {
  display: none;
}
.select-filter-v1 input:checked + label {
  background: var(--gradient-dark);
  border: 0;
  color: var(--white);
  padding-top: 13px;
  padding-bottom: 13px;
}
.select-filter-v1 label {
  border: 1px solid #e1e8f5;
  height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--accent);
}
.select-filter-v1 label:hover {
  border-color: var(--accent);
  background-color: #f2f6fd;
}
.select-filter-v1 .filter-item:first-child label {
  border-radius: 30px 0px 0px 30px;
}
.select-filter-v1 .filter-item:last-child label {
  border-radius: 0px 30px 30px 0px;
}

.select-filter-v2 {
  display: flex;
  gap: 16px;
}
.select-filter-v2 input {
  display: none;
}
.select-filter-v2 input:checked + label {
  background: var(--gradient-dark);
  border: 0;
  color: var(--white);
  padding-top: 13px;
  padding-bottom: 13px;
}
.select-filter-v2 label {
  border: 1px solid #e1e8f5;
  height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 32px;
  color: var(--accent);
}
.select-filter-v2 label:hover {
  border-color: var(--accent);
  background-color: #f2f6fd;
}
@media (max-width: 780px) {
  .select-filter-v2 {
    overflow: scroll;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
  }
  .select-filter-v2 label {
    white-space: nowrap;
  }
}

@media (max-width: 780px) {
  .select-dilter-mobile-v2 {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.h3.title-light {
  color: var(--dark-grey, #6d7882);
  font-weight: 400;
}

.multi-record-total {
  display: flex;
  justify-content: space-between;
}
.multi-record-total span {
  font-size: 20px;
}
.multi-record-total span.number {
  font-weight: bold;
}
.multi-record-total span.currency {
  font-size: 12px;
}

.multi-record-cart .each-item {
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f2f6fd;
}
.multi-record-cart .time-item {
  margin-bottom: 20px;
  margin-top: 18px;
  color: var(--gray, #91a8bd);
}
.multi-record-cart .time-item svg {
  margin-right: 10px;
}

.btn-cosm.btn-next-step {
  font-size: 16px;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.btn-cosm.btn-next-step.disabled {
  opacity: 0.15;
  box-shadow: none;
  cursor: default;
}

.btn-cosm-sm {
  font-size: 16px;
  padding: 10px;
}

.btn.btn-cosm-bordered {
  font-size: 16px;
  width: 100%;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #777faa;
  background-color: transparent;
  color: #777faa;
  align-items: center;
  justify-content: center;
}
.btn.btn-cosm-bordered:hover {
  background-color: transparent;
  border-color: #e1e8f5;
}

.schedule-wrap-v2 .talon {
  cursor: pointer;
}
.schedule-wrap-v2 .talon.active {
  background-color: var(--accent, #7981ad);
  color: #fff;
}

.chosen-talon .title {
  color: var(--gray, #91a8bd);
  font-size: 12px;
  margin-bottom: 8px;
  padding-top: 10px;
}
.chosen-talon .date {
  color: var(--black, #222328);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

label[for=RECORD_B_DATE] {
  margin-top: -10px;
  white-space: nowrap;
}

.ageAlert {
  padding: 12px 8px 12px 8px;
  background-color: #fff0f0;
  margin-bottom: 24px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.phone-approve-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(61, 61, 61, 0.85);
  z-index: 99;
  text-align: center;
  display: none;
}

.result-of-approve.ev-message {
  margin-top: 10px;
  padding: 4px;
  border-radius: 5px;
  color: #f83636;
  font-size: 14px;
}

.js-chage-phone {
  color: #2c66bc;
  text-decoration: underline;
  cursor: pointer;
}

.js-chage-phone:hover {
  text-decoration: none;
}

.phone-approve-popup .bg {
  background: #ecf4ff;
  border-radius: 5px;
}

.phone-approve-popup.show {
  display: block;
}

.phone-approve-code {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

#CODE_APPROVE {
  padding: 4px;
  text-align: center;
  font-size: 30px;
  letter-spacing: 8px;
  width: 124px;
  margin: 0 auto;
}

.record-success__wrap {
  width: 328px;
  margin: 0 auto;
}
.record-success__wrap .h3 {
  font-size: 20px;
  font-weight: 400;
}
.record-success__wrap .line .title {
  color: #7a8693;
  font-size: 16px;
}
.record-success__wrap .line .data {
  color: #2c3339;
  font-size: 18px;
}