.addon-service__modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.addon-service__modal .modal__container {
  border-radius: 1rem;
  background: #ede4d8;
  width: min(400px, 95vw);
  max-height: 95vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.addon-service__modal .modal__header .modal__close:before {
  content: "\2715";
}
.addon-service__modal .modal__content {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  padding: 30px;
}
.addon-service__modal .modal__btn {
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.addon-service__modal .modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.addon-service__modal .modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.addon-service__modal {
  display: none;
}

.addon-service__modal.is-open {
  display: block;
}

.addon-service__modal[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.addon-service__modal[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.addon-service__modal[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.addon-service__modal[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.addon-service__modal .modal__container,
.addon-service__modal .modal__overlay {
  will-change: transform;
}

.addon-service {
    padding: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #ede4d8;
    border-radius: 1rem;
}

.addon-service__title {
  cursor: pointer;
  margin-bottom: 5px;
  font-weight: 600;
}

.addon-service__title svg {
	width: 14px !important;
	height: 14px !important;
	margin-right: 7px;
}

.addon-service__modal__content h2 {
	font-size: 1.5rem !important;
    font-weight: 600 !important;
	margin-bottom: 1rem;
}

.addon-service-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.addon-service-item .addon-service-item__label {
	font-weight: 600;
}

.addon-service-item__content {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.addon-service-item__quantity {
	padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    border-radius: 15px;
}

.addon-service-item__quantity-input {
	padding: 0 !important;
    width: 30px !important;
	text-align: center !important;
	    outline: none !important;
    border: none !important;
}

.addon-service-item__quantity-input::-webkit-outer-spin-button,
.addon-service-item__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
.addon-service-item__quantity-input[type=number] {
  -moz-appearance: textfield !important;
}

.addon-service-item__quantity-btn {
	background: #ede4d8;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
	user-select: none;
}

.addon-service__modal__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.addon-service__modal__add-btn {
	margin-top: 0 !important;
}

.addon-service__modal__cancel-btn {
	color: #CEC3B1;
	border: 2px solid #CEC3B1;
	background: transparent;
	border-radius: var(--radius-pill);
    font-size: var(--text-m);
    font-weight: 600;
    line-height: 1;
    padding-top: var(--space-16);
    padding-right: var(--space-24);
    padding-bottom: var(--space-16);
    padding-left: var(--space-24);
}