#app {
  background-color: white;
}

body {
  overscroll-behavior-y: none !important;
  min-height: calc(100% + env(safe-area-inset-top));
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto,
    "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.scrolldiv {
  width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch !important;
  padding-top: 0px;
  height: 100dvh !important;
}

.scrolldiv .ios {
  padding-top: 60px;
}

:not(.both-css, .width-css, .height-css) ::-webkit-scrollbar {
  height: 0;
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  display: none;
  /* Optional: just make scrollbar invisible */
}

.height-css ::-webkit-scrollbar {
  height: 0 !important;
  width: 10px !important;
  background-color: #1f1f1f !important;
  display: block;
}

.height-css ::-webkit-scrollbar-thumb {
  background-color: #808080 !important;
  border: 5px solid #808080 !important;
  border-radius: 10px;
}

.clickable {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.font-7 {
  font-size: 7px;
}

.font-8 {
  font-size: 8px;
}

.font-9 {
  font-size: 9px;
}

.font-10 {
  font-size: 10px;
}

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-25 {
  font-size: 25px;
}

.font-26 {
  font-size: 26px;
}

.font-27 {
  font-size: 27px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.font-32 {
  font-size: 32px;
}

.font-33 {
  font-size: 33px;
}

.font-35 {
  font-size: 35px;
}

.font-36 {
  font-size: 36px;
}

.font-40 {
  font-size: 40px;
}

.font-48 {
  font-size: 48px;
}

.font-50 {
  font-size: 50px;
}

.font-100 {
  font-weight: 100;
}

.font-200 {
  font-weight: 200;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

.font-900 {
  font-weight: 900;
}

.d-flex {
  display: flex;
}

.d-wrap {
  flex-wrap: wrap;
}

.d-fit {
  justify-content: space-between;
}

.d-end {
  justify-content: flex-end;
}

.d-start {
  justify-content: flex-start;
}

.d-center {
  justify-content: center;
}

.d-even {
  justify-content: space-evenly;
}

.d-around {
  justify-content: space-around;
}

.c-white {
  color: white;
}

.c-white2 {
  color: #bebfc1;
}

.c-black0 {
  color: #000000;
}

.c-gray{
  color:#909090;
}

.text-underline {
  text-decoration: underline;
}

.el-message {
  border: 1px solid transparent;
  border-radius: 10px !important;
  font-size: 30px;
  box-shadow: rgba(54, 79, 199, 0.08) 0px 8px 36px,
    rgba(0, 0, 0, 0.1) 0px 12px 48px;
  z-index: 2102 !important;
}

.el-message__content {
  font-size: 16px;
}

.el-message--success {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.el-message__icon.el-icon-success {
  color: lawngreen !important;
}

.el-message--success .el-message__content {
  color: white !important;
}

.el-message--error {
  background-color: #e91e63 !important;
  border-color: #e91e63 !important;
}

.el-message .el-icon-error,
.el-message--error .el-message__content {
  color: white !important;
}

.style input,
.style textarea {
  background-color: #e9eef9;
  border-radius: 5px !important;
  border: 1px solid #333333;
  width: 100%;
  height: 44px;
  margin: 0px;
  padding-left: 10px;
  font-weight: normal;
  font-size: 16px;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.style input:hover,
.style textarea:hover {
  border: 1px solid #333333 !important;
}

.wrap-twoline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wrap-threeline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ant-input:hover {
  border-color: #333333;
  border-right-width: 1px !important;
}

.ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) {
  border-color: #333333;
  border-right-width: 1px !important;
}

.style input:focus,
.style textarea:focus {
  border: 1px solid #333333 !important;
  background-color: #ffffff;
}

.ant-dropdown {
  border-radius: 5px;
  width: 150px;
}

.el-dropdown-menu__item {
  color: #606266 !important;
  width: 150px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.ant-dropdown-menu-item:hover,
.el-dropdown-menu__item:hover {
  background-color: #e7e7e5 !important;
}


.s-standard-button11 {
  background-color: #f5f5f5;
  border: 2px solid #111111;
  text-align: center;
  color: #111111;
  border-radius: 20px;
  padding: 9px 10px 5px;
  cursor: pointer;
  height: 45px;
  font-size: 16px;
}

.custom-btn1 {
  padding: 7px 15px 5px;
  font-weight: 700;
  font-size: 14px;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
}

.custom-btn1-2 {
  background-color: #3e5bf1;
  border: 1px solid #3e5bf1;
  color: #f5f5f5;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.24);
}


.addmodal .ant-modal-header {
  padding-left: 10px !important;
}
.addmodal .ant-modal-body {
  padding: 10px !important;
}

.addmodal.fit .ant-modal-body {
  padding: 0 !important;
}

.addmodal .ant-modal-header {
  border-bottom: 0 solid #f5f5f5 !important;
}
.addmodal .ant-modal-footer {
  border-top: 0 solid #f5f5f5 !important;
  height: 60px;
}

.mobile .ant-modal-content {
  background-color: #2c2c2c;
}

.removefoot .ant-modal-footer {
  display: none;
}

.s-standard-button5 {
  text-align: center;
  color: #0a64bc;
  padding: 5px 10px;
  cursor: pointer;
}

.s-standard-button4 {
  background-color: #0a64bc;
  text-align: center;
  color: #f5f5f5;
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
}

.s-standard-button4.disabled {
  background-color: #cbcbcb;
  color: #f5f5f5;
}

.drag:hover{
  cursor: grab;
}


.ant-checkbox-checked::after {
  border: 1px solid #333333 !important;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #333333 !important;
}

.ant-checkbox-checked .ant-checkbox-inner {
  background: #333333 !important;
  border: 1px solid #333333 !important;
}

.ant-checkbox-indeterminate .ant-checkbox-inner::after {
  background-color: #333333 !important;
}


.mobile.search .el-drawer__body,
.mobile.search .el-drawer {
  background-color: #202124;
}

@media (max-width: 800px) {
  .el-message {
    width: calc(100vw - 30px) !important;
    min-width: calc(100vw - 30px) !important;
    top : 7% !important;
  }
}
