@charset "utf-8";
body,
ul,
li {
  margin: 0;
  padding: 0;
}
.plus-modal-wrap{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  list-style: none;
}

.modalWrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
}

.modalWrap.hide {
  display: none
}

.modalWrap div::-webkit-scrollbar {
  width: 4px;
  background-color: #ebeced;
  border-radius: 100px
}

@media only screen and (max-width: 767px) {
  .modalWrap div::-webkit-scrollbar {
      display:none
  }
}

.modalWrap div::-webkit-scrollbar-thumb {
  background-color: #adb1b5;
  border-radius: 100px
}

@media only screen and (max-width: 767px) {
  .modalWrap div::-webkit-scrollbar-thumb {
      display:none
  }
}

.modalWrap .modalMask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(20,24,28,0.5)
}

.modalWrap .modal {
  position: relative;
  z-index: 101;
  background: #fff;
  border-radius: 8px;
  max-height: 662px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .modalWrap .modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 662px;
    min-height: 256px;
    padding: 32px
  }
}


@media only screen and (max-width: 767px) {
  .modalWrap .modal {
      padding:24px 16px;
      top: 0;
      left: 0;
      min-width: 100vw;
  }
}

.modalWrap .modal .modalCloseIcon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  z-index: 2;
  cursor: pointer
}

.modalWrap .modal .modalCloseIcon img {
  width: 100%;
  height: 100%
}

.modalHeader .modalTitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  color: #14181c;
  font-family: var(--secondaryFontFamily)
}

@media only screen and (max-width: 767px) {
  .modalHeader .modalTitle {
      font-weight:500;
      font-size: 22px;
      line-height: 30px;
      color: #14181c;
      font-family: var(--secondaryFontFamily)
  }
}

.modalHeader.showCloseHeader {
  padding-right: 24px
}

.modalBody {
  flex: 1;
  overflow-y: auto
}

.modalBody .modalTitle {
  display: none
}

.modalBody.scrollble {
  padding-right: 12px
}

@media only screen and (max-width: 767px) {
  .modalBody.scrollble {
      padding-right:0
  }
}

.modalFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal {
      padding:0 16px;
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      height: 100%;
      max-height: 100%;
      min-height: 100%;
      top: 0;
      left: 0;
      transform: translate(0,0);
      border-radius: 0
  }
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .modalTitle {
      display:none;
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      color: #14181c;
      font-family: var(--secondaryFontFamily)
  }
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .modalHeader {
      padding-right:0;
      display: flex;
      align-items: center;
      height: 48px;
      display: none;
      width: 100%
  }
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .showCloseHeader {
      display:block;
      position: relative;
      padding-right: 24px
  }

  .fullScrrenModal .showCloseHeader::after {
      position: absolute;
      display: block;
      content: "";
      border-bottom: 1px solid #ebeced;
      bottom: 0;
      left: -16px;
      right: -16px
  }
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .modalCloseIcon {
      top:12px;
      right: 16px
  }
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .modalBody .modalTitle {
      padding-right:0;
      display: block;
      margin-top: 24px;
      margin-bottom: 24px
  }
}

.fullScrrenModal .modalFooter {
  justify-content: center
}

@media only screen and (max-width: 767px) {
  .fullScrrenModal .modalFooter {
      padding-bottom:calc(24px + env(safe-area-inset-bottom))
  }
}

.supportModal {
  width: 100%;
  height: 100%;
  max-width: 760px !important;
  max-height: 662px !important;
  border-radius: 16px !important
}


@media only screen and (max-width: 767px) {
  .supportModal {
      padding:0 16px 24px !important;
      border-radius: 0 !important
  }
}

.supportModal .plus-modal-body {
  padding-top: 24px
}

@media only screen and (max-width: 767px) {
  .supportModal .plus-modal-body {
      padding-top:0
  }
}

.supportModal .supportTitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  color: #14181c;
  font-family: var(--secondaryFontFamily);
  margin-bottom: 24px
}

@media only screen and (max-width: 767px) {
  .supportModal .supportTitle {
      margin-top:24px;
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      color: #14181c;
      font-family: var(--secondaryFontFamily)
  }
}

.supportModal .supportTitle2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #14181c;
  font-family: var(--secondaryFontFamily);
  margin-top: 32px;
  margin-bottom: 16px
}

@media only screen and (max-width: 767px) {
  .supportModal .supportTitle2 {
      font-weight:500;
      font-size: 20px;
      line-height: 26px;
      color: #14181c;
      font-family: var(--secondaryFontFamily)
  }
}

.supportModal .eachSupRow {
  display: flex;
  height: 57px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebeced;
  cursor: pointer
}

.supportModal .eachSupRow:last-child {
  border-bottom: 0
}

.supportModal .eachSupRow .leftRow {
  display: flex;
  align-items: center
}

.supportModal .eachSupRow .leftRow .leftIcon {
  margin-right: 8px;
  flex: none;
  width: 20px;
  height: 20px
}

.supportModal .eachSupRow .leftRow .leftTitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #14181c;
  font-family: var(--pri)
}

.supportModal .eachSupRow .leftRow .leftTitle.normalFontWeight {
  font-weight: 400
}

.supportModal .eachSupRow .arrow_right, .supportModal .eachSupRow .arrow_right img{
  width: 20px;
  height: 20px;
}

.fabContainer{
  display: none;
}
@media only screen and (max-width:767px){
  div#aim-chatbot-wrapper{
      width: 360px !important;
  }
}
div#aim-chatbot-wrapper {
  width: 368px !important;
}