.modal {
  --bs-modal-zindex: 1090;
  --bs-modal-width: 30rem;
  --bs-modal-padding: 1.25rem;
  --bs-modal-margin: 0.5rem;
  --bs-border-color: #eaeaec;
  --bs-border-color-translucent: rgba(76, 78, 100, 0.175);
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 0px;
  --bs-modal-border-radius: 0.625rem;
  --bs-modal-box-shadow: 0 0 1.25rem 0 rgba(76, 78, 100, 0.4);
  --bs-modal-inner-border-radius: calc(0.625rem - 0px);
  --bs-modal-header-padding-x: 1.25rem;
  --bs-modal-header-padding-y: 1.25rem;
  --bs-modal-header-padding: 1.25rem 1.25rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 0;
  --bs-modal-title-line-height: 1.47;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  -webkit-transform: translateY(-100px) scale(0.8);
          transform: translateY(-100px) scale(0.8);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1089;
  --bs-backdrop-bg: #4c4e64;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close,
.btn-back {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  cursor: pointer;
  display: flex;
  justify-content:center;
  align-items:center;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border-width: 1px;
  border-color: #eaeaec;
  color: #6d788d;
  border-style: solid;
}

.modal-header .btn-close:hover,
.btn-back:hover {
  border-color: #6d788d;
  color: #6d788d;
  transition: border-color 0.3s linear;
}

.modal-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
  font-size: 24px;
}

.modal-divider{
  width: 100%;
  height: 1px;
  background-color: #eaeaec;
  margin-bottom: 8px;
}

.modal-body {
  --padding-modal-body: 10px 0;
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: var(--padding-modal-body);
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 6rem;
    --bs-modal-box-shadow: 0 0 1.25rem 0 rgba(76, 78, 100, 0.4);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 22.5rem;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 50rem;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.report-item {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

.report-item:hover{
  background-color: #eaeaec;
}

.case-report {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.case-report .title-report{
  font-size: 16px;
}

.note-wrap{
  padding: 0.75rem 1.25rem;
}

.note-wrap textarea{
  border: 1px solid #eaeaec;
  border-radius: 10px;
  width: 100%;
  resize: vertical;
  padding: 10px;
  font-size: 14px;
  resize: none;
}

textarea:focus{
  border: 1px;
  border-style: solid;
  border-color: #0062FF;
  outline: none;
}

.button-default-modal{
  width: fit-content;
  padding: 3px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.btn-cancel{
  border: 0px solid #464646;
  background-color: #464646;
}

.btn-submit{
  border: 0px solid #0062FF;
  background-color: #0062FF;
}

* > [data-hidden='true'] {
  display: none;
}

* > [data-hidden='false'] {
  display: block;
}

.icon-check{
  --bs-success: #72e128;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-success);
  color: #fff;
}

.body,
.body-top,
.body-bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}

.body-bottom{
  padding: 0rem 1.25rem;
}
.body-bottom .footer{
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: end;
  align-items: center;
}

.text-top{
  font-size: 20px;
  font-weight: 500;
}

.body-content {
  padding: 0rem 1.25rem;
}

.body-content .content{
  text-align: center;
}
.content-case {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

.text-content:has(.text:empty){
  display: none;
}

.text-content:has(.text:not(:empty)){
  display: block;
  padding: 10px 0;
}

.text-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-case-select{
  --text-badge-dark: #72B2F9;
  --text-badge-light: #0075fc;
  --bg-badge-dark: #243a52d2;
  --bg-badge-light: #7eb4eed2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--bg-badge-light);
  color: var(--text-badge-light);
  width: fit-content;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.btn-back-wrap{
  cursor: pointer;
  padding-right: 10px;
}

#form-report:has(#form-submit-report[data-hidden='true']) .btn-back-wrap{
  display: none;
}
#form-report:has(#form-submit-report[data-hidden='false']) .btn-back-wrap{
  display: block;
}

.other-options{
  width: 100%;
}

.option-title{
  padding: 0.2rem 1.25rem;
}

.option-title h4{
  font-size: 18px;
  font-weight: 600;
}

.other-options:has(#option-refund[data-hidden="true"]) .option-title {
  display: none;
}

.other-options:has(#option-refund[data-hidden="false"]) .option-title {
  display: block;
}

.form-check{
  padding:5px 10px;
}

.item-case{
  padding: 5px 40px;
}

.form-check input[type="radio"]:checked,
.form-check input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.form-check input[type="radio"]:checked + label,
.form-check input[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    background-color: transparent;
}
.form-check input[type="radio"]:checked + label:before,
.form-check input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-style: solid;
    border-color: #ddd;
    border-radius: 100%;
    background-color: #fff;
}
.form-check input[type="radio"]:checked + label:before{
  border-color: #1908ff;
}
.form-check input[type="radio"]:checked + label:after,
.form-check input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #1908ff;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-check input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.form-check input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-check input[type="checkbox"]:checked,
.form-check input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.form-check input[type="checkbox"]:checked + label,
.form-check input[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    background-color: transparent;
}

.form-check input[type="checkbox"]:checked + label:before,
.form-check input[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-style: solid;
    border-color: #ddd;
    background-color: #fff;
    border-radius: 0.25em;
}
.form-check input[type="checkbox"]:checked + label:before{
  border-color: #1908ff;
  background-color: #1908ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 10l3 3l6-6'/%3e%3c/svg%3e");
}

button[disabled="true"]{
  opacity: 0.6;
  cursor: default;
}

.w-100{
  width: 100% !important;
}



