﻿/* 사이즈별 스타일 */
/* 사이즈별 스타일 */
/* ps. 우선순위를 위해 작은 사이즈가 css파일 위로 와야 한다. (아래로 갈수록 우선순위UP) */

/* free 사이즈일 때 동작 */

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-flex {
  display: flex !important;
}

.display-inline-block {
  display: inline-block !important;
}

.height-calc100 {
  height: calc(100vh - 100px);
}
.height-calc150 {
  height: calc(100vh - 150px);
}
.height-calc200 {
  height: calc(100vh - 200px);
}
.height-calc250 {
  height: calc(100vh - 250px);
}
.height-calc300 {
  height: calc(100vh - 300px);
}
.height-calc350 {
  height: calc(100vh - 350px);
}
.height-calc400 {
  height: calc(100vh - 400px);
}
.height-calc450 {
  height: calc(100vh - 450px);
}
.height-calc500 {
  height: calc(100vh - 500px);
}
.height-calc550 {
  height: calc(100vh - 550px);
}
.height-calc600 {
  height: calc(100vh - 600px);
}
.height-calc650 {
  height: calc(100vh - 650px);
}

/* COL-SM일 때 동작 */
@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }

  .w-sm-auto {
    width: auto !important;
  }

  .display-sm-none {
    display: none !important;
  }

  .display-sm-block {
    display: block !important;
  }

  .display-sm-flex {
    display: flex !important;
  }

  .display-sm-inline-block {
    display: inline-block !important;
  }

  .height-sm-calc100 {
    height: calc(100vh - 100px);
  }
  .height-sm-calc150 {
    height: calc(100vh - 150px);
  }
  .height-sm-calc200 {
    height: calc(100vh - 200px);
  }
  .height-sm-calc250 {
    height: calc(100vh - 250px);
  }
  .height-sm-calc300 {
    height: calc(100vh - 300px);
  }
  .height-sm-calc350 {
    height: calc(100vh - 350px);
  }
  .height-sm-calc400 {
    height: calc(100vh - 400px);
  }
  .height-sm-calc450 {
    height: calc(100vh - 450px);
  }
  .height-sm-calc500 {
    height: calc(100vh - 500px);
  }
  .height-sm-calc550 {
    height: calc(100vh - 550px);
  }
  .height-sm-calc600 {
    height: calc(100vh - 600px);
  }
  .height-sm-calc650 {
    height: calc(100vh - 650px);
  }

  .h-sm-75{
      height: 75% !important;
  }
  .h-sm-100{
      height: 100% !important;
  }
}

/* COL-MD일 때 동작 */
@media (min-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }

  .w-md-auto {
    width: auto !important;
  }

  .display-md-none {
    display: none !important;
  }

  .display-md-block {
    display: block !important;
  }

  .display-md-flex {
    display: flex !important;
  }

  .display-md-inline-block {
    display: inline-block !important;
  }

  .height-md-calc100 {
    height: calc(100vh - 100px);
  }
  .height-md-calc150 {
    height: calc(100vh - 150px);
  }
  .height-md-calc200 {
    height: calc(100vh - 200px);
  }
  .height-md-calc250 {
    height: calc(100vh - 250px);
  }
  .height-md-calc300 {
    height: calc(100vh - 300px);
  }
  .height-md-calc350 {
    height: calc(100vh - 350px);
  }
  .height-md-calc400 {
    height: calc(100vh - 400px);
  }
  .height-md-calc450 {
    height: calc(100vh - 450px);
  }
  .height-md-calc500 {
    height: calc(100vh - 500px);
  }
  .height-md-calc550 {
    height: calc(100vh - 550px);
  }
  .height-md-calc600 {
    height: calc(100vh - 600px);
  }
  .height-md-calc650 {
    height: calc(100vh - 650px);
  }

  .h-md-75{
      height: 75% !important;
  }
  .h-md-100{
      height: 100% !important;
  }
}

/* COL-LG */
@media (min-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
  }

  .w-lg-auto {
    width: auto !important;
  }

  .display-lg-none {
    display: none !important;
  }

  .display-lg-block {
    display: block !important;
  }

  .display-lg-flex {
    display: flex !important;
  }

  .display-lg-inline-block {
    display: inline-block !important;
  }

  .height-lg-calc100 {
    height: calc(100vh - 100px);
  }
  .height-lg-calc150 {
    height: calc(100vh - 150px);
  }
  .height-lg-calc200 {
    height: calc(100vh - 200px);
  }
  .height-lg-calc210 {
      height: calc(100vh - 210px);
  }
  .height-lg-calc250 {
    height: calc(100vh - 250px);
  }
  .height-lg-calc300 {
    height: calc(100vh - 300px);
  }
  .height-lg-calc350 {
    height: calc(100vh - 350px);
  }
  .height-lg-calc400 {
    height: calc(100vh - 400px);
  }
  .height-lg-calc450 {
    height: calc(100vh - 450px);
  }
  .height-lg-calc500 {
    height: calc(100vh - 500px);
  }
  .height-lg-calc550 {
    height: calc(100vh - 550px);
  }
  .height-lg-calc600 {
    height: calc(100vh - 600px);
  }
  .height-lg-calc650 {
    height: calc(100vh - 650px);
  }

  .h-lg-75{
      height: 75% !important;
  }
  .h-lg-100{
      height: 100% !important;
  }
}

/* COL-XL일 때 동작 */
@media (min-width: 1200px) {
  .w-xl-100 {
    width: 100% !important;
  }

  .w-xl-auto {
    width: auto !important;
  }

  .display-xl-none {
    display: none !important;
  }

  .display-xl-block {
    display: block !important;
  }

  .display-xl-flex {
    display: flex !important;
  }

  .display-xl-inline-block {
    display: inline-block !important;
  }

  .height-xl-calc100 {
    height: calc(100vh - 100px);
  }
  .height-xl-calc150 {
    height: calc(100vh - 150px);
  }
  .height-xl-calc200 {
    height: calc(100vh - 200px);
  }
  .height-xl-calc250 {
    height: calc(100vh - 250px);
  }
  .height-xl-calc300 {
    height: calc(100vh - 300px);
  }
  .height-xl-calc350 {
    height: calc(100vh - 350px);
  }
  .height-xl-calc400 {
    height: calc(100vh - 400px);
  }
  .height-xl-calc450 {
    height: calc(100vh - 450px);
  }
  .height-xl-calc500 {
    height: calc(100vh - 500px);
  }
  .height-xl-calc550 {
    height: calc(100vh - 550px);
  }
  .height-xl-calc600 {
    height: calc(100vh - 600px);
  }
  .height-xl-calc650 {
    height: calc(100vh - 650px);
  }

  .h-xl-75{
      height: 75% !important;
  }
  .h-xl-100{
      height: 100% !important;
  }
}

/* - - - - - - 큰 사이즈 column 옵션 추가 - - - - - - - - */
/* - - - - - - 큰 사이즈 column 옵션 추가 - - - - - - - - */

@media (min-width: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .display-xxl-none {
    display: none !important;
  }

  .display-xxl-block {
    display: block !important;
  }

  .display-xxl-flex {
    display: flex !important;
  }

  .display-xxl-inline-block {
    display: inline-block !important;
  }

  .height-xxl-calc100 {
    height: calc(100vh - 100px);
  }
  .height-xxl-calc150 {
    height: calc(100vh - 150px);
  }
  .height-xxl-calc200 {
    height: calc(100vh - 200px);
  }
  .height-xxl-calc250 {
    height: calc(100vh - 250px);
  }
  .height-xxl-calc300 {
    height: calc(100vh - 300px);
  }
  .height-xxl-calc350 {
    height: calc(100vh - 350px);
  }
  .height-xxl-calc400 {
    height: calc(100vh - 400px);
  }
  .height-xxl-calc450 {
    height: calc(100vh - 450px);
  }
  .height-xxl-calc500 {
    height: calc(100vh - 500px);
  }
  .height-xxl-calc550 {
    height: calc(100vh - 550px);
  }
  .height-xxl-calc600 {
    height: calc(100vh - 600px);
  }
  .height-xxl-calc650 {
    height: calc(100vh - 650px);
  }

  .h-xxl-75{
      height: 75% !important;
  }
  .h-xxl-100{
      height: 100% !important;
  }
}

@media (min-width: 1600px) {
  .col-xxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxxl-first {
    order: -1;
  }

  .order-xxxl-last {
    order: 13;
  }

  .order-xxxl-0 {
    order: 0;
  }

  .order-xxxl-1 {
    order: 1;
  }

  .order-xxxl-2 {
    order: 2;
  }

  .order-xxxl-3 {
    order: 3;
  }

  .order-xxxl-4 {
    order: 4;
  }

  .order-xxxl-5 {
    order: 5;
  }

  .order-xxxl-6 {
    order: 6;
  }

  .order-xxxl-7 {
    order: 7;
  }

  .order-xxxl-8 {
    order: 8;
  }

  .order-xxxl-9 {
    order: 9;
  }

  .order-xxxl-10 {
    order: 10;
  }

  .order-xxxl-11 {
    order: 11;
  }

  .order-xxxl-12 {
    order: 12;
  }

  .offset-xxxl-0 {
    margin-left: 0;
  }

  .offset-xxxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxxl-11 {
    margin-left: 91.6666666667%;
  }

  .display-xxxl-none {
    display: none !important;
  }

  .display-xxxl-block {
    display: block !important;
  }

  .display-xxxl-flex {
    display: flex !important;
  }

  .display-xxxl-inline-block {
    display: inline-block !important;
  }

  .height-xxxl-calc100 {
    height: calc(100vh - 100px);
  }
  .height-xxxl-calc150 {
    height: calc(100vh - 150px);
  }
  .height-xxxl-calc200 {
    height: calc(100vh - 200px);
  }
  .height-xxxl-calc250 {
    height: calc(100vh - 250px);
  }
  .height-xxxl-calc300 {
    height: calc(100vh - 300px);
  }
  .height-xxxl-calc350 {
    height: calc(100vh - 350px);
  }
  .height-xxxl-calc400 {
    height: calc(100vh - 400px);
  }
  .height-xxxl-calc450 {
    height: calc(100vh - 450px);
  }
  .height-xxxl-calc500 {
    height: calc(100vh - 500px);
  }
  .height-xxxl-calc550 {
    height: calc(100vh - 550px);
  }
  .height-xxxl-calc600 {
    height: calc(100vh - 600px);
  }
  .height-xxxl-calc650 {
    height: calc(100vh - 650px);
  }

  .h-xxxl-75{
      height: 75% !important;
  }
  .h-xxxl-100{
      height: 100% !important;
  }
}

@media (min-width: 1920px) {
  .col-xxxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxxxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxxxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxxxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxxxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxxxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxxxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxxxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxxxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxxxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxxxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxxxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxxxl-first {
    order: -1;
  }

  .order-xxxxl-last {
    order: 13;
  }

  .order-xxxxl-0 {
    order: 0;
  }

  .order-xxxxl-1 {
    order: 1;
  }

  .order-xxxxl-2 {
    order: 2;
  }

  .order-xxxxl-3 {
    order: 3;
  }

  .order-xxxxl-4 {
    order: 4;
  }

  .order-xxxxl-5 {
    order: 5;
  }

  .order-xxxxl-6 {
    order: 6;
  }

  .order-xxxxl-7 {
    order: 7;
  }

  .order-xxxxl-8 {
    order: 8;
  }

  .order-xxxxl-9 {
    order: 9;
  }

  .order-xxxxl-10 {
    order: 10;
  }

  .order-xxxxl-11 {
    order: 11;
  }

  .order-xxxxl-12 {
    order: 12;
  }

  .offset-xxxxl-0 {
    margin-left: 0;
  }

  .offset-xxxxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxxxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxxxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxxxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxxxl-11 {
    margin-left: 91.6666666667%;
  }

  .display-xxxxl-none {
    display: none !important;
  }

  .display-xxxxl-block {
    display: block !important;
  }

  .display-xxxxl-flex {
    display: flex !important;
  }

  .display-xxxxl-inline-block {
    display: inline-block !important;
  }

  .height-xxxxl-calc100 {
    height: calc(100vh - 100px);
  }
  .height-xxxxl-calc150 {
    height: calc(100vh - 150px);
  }
  .height-xxxxl-calc200 {
    height: calc(100vh - 200px);
  }
  .height-xxxxl-calc250 {
    height: calc(100vh - 250px);
  }
  .height-xxxxl-calc300 {
    height: calc(100vh - 300px);
  }
  .height-xxxxl-calc350 {
    height: calc(100vh - 350px);
  }
  .height-xxxxl-calc400 {
    height: calc(100vh - 400px);
  }
  .height-xxxxl-calc450 {
    height: calc(100vh - 450px);
  }
  .height-xxxxl-calc500 {
    height: calc(100vh - 500px);
  }
  .height-xxxxl-calc550 {
    height: calc(100vh - 550px);
  }
  .height-xxxxl-calc600 {
    height: calc(100vh - 600px);
  }
  .height-xxxxl-calc650 {
    height: calc(100vh - 650px);
  }

  .h-xxxxl-75{
      height: 75% !important;
  }
  .h-xxxxl-100{
      height: 100% !important;
  }
}

/* - - - - - - 큰 사이즈 column 옵션 추가 END - - - - - - - - */
/* - - - - - - 큰 사이즈 column 옵션 추가 END - - - - - - - - */

/* - - - - - - 라드젠 column 사이즈별 옵션 추가 START - - - - - - - - */
/* - - - - - - 라드젠 column 사이즈별 옵션 추가 START - - - - - - - - */

/* free 사이즈 */
.rz-height-calc100 {
  height: calc(100vh - 100px);
}
.rz-height-calc150 {
  height: calc(100vh - 150px);
}
.rz-height-calc200 {
  height: calc(100vh - 200px);
}
.rz-height-calc250 {
  height: calc(100vh - 250px);
}
.rz-height-calc300 {
  height: calc(100vh - 300px);
}
.rz-height-calc350 {
  height: calc(100vh - 350px);
}
.rz-height-calc400 {
  height: calc(100vh - 400px);
}
.rz-height-calc450 {
  height: calc(100vh - 450px);
}
.rz-height-calc500 {
  height: calc(100vh - 500px);
}
.rz-height-calc550 {
  height: calc(100vh - 550px);
}
.rz-height-calc600 {
  height: calc(100vh - 600px);
}
.rz-height-calc650 {
  height: calc(100vh - 650px);
}

/* XS */
@media (min-width: 576px) {
  .rz-align-content-xs-start {
    align-content: flex-start !important;
  }

  .rz-align-content-xs-end {
    align-content: flex-end !important;
  }

  .rz-align-content-xs-center {
    align-content: center !important;
  }

  .rz-align-content-xs-between {
    align-content: space-between !important;
  }

  .rz-align-content-xs-around {
    align-content: space-around !important;
  }

  .rz-align-content-xs-stretch {
    align-content: stretch !important;
  }

  .rz-height-xs-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-xs-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-xs-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-xs-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-xs-calc300 {
    height: calc(100vh - 300px);
  }
  .rz-height-xs-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-xs-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-xs-calc450 {
    height: calc(100vh - 450px);
  }
  .rz-height-xs-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-xs-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-xs-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-xs-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-xs-75{
      height: 75% !important;
  }
  .rz-h-xs-100{
      height: 100% !important;
  }
}

/* SM */
@media (min-width: 768px) {
  .rz-align-content-sm-start {
    align-content: flex-start !important;
  }

  .rz-align-content-sm-end {
    align-content: flex-end !important;
  }

  .rz-align-content-sm-center {
    align-content: center !important;
  }

  .rz-align-content-sm-between {
    align-content: space-between !important;
  }

  .rz-align-content-sm-around {
    align-content: space-around !important;
  }

  .rz-align-content-sm-stretch {
    align-content: stretch !important;
  }

  .rz-height-sm-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-sm-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-sm-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-sm-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-sm-calc300 {
    height: calc(100vh - 300px);
  }
  .rz-height-sm-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-sm-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-sm-calc450 {
    height: calc(100vh - 450px);
  }
  .rz-height-sm-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-sm-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-sm-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-sm-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-sm-75{
      height: 75% !important;
  }
  .rz-h-sm-100{
      height: 100% !important;
  }
}

/* MD */
@media (min-width: 1024px) {
  .rz-align-content-md-start {
    align-content: flex-start !important;
  }

  .rz-align-content-md-end {
    align-content: flex-end !important;
  }

  .rz-align-content-md-center {
    align-content: center !important;
  }

  .rz-align-content-md-between {
    align-content: space-between !important;
  }

  .rz-align-content-md-around {
    align-content: space-around !important;
  }

  .rz-align-content-md-stretch {
    align-content: stretch !important;
  }

  .rz-height-md-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-md-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-md-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-md-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-md-calc300 {
    height: calc(100vh - 300px);
  }
  .rz-height-md-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-md-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-md-calc450 {
    height: calc(100vh - 450px);
  }
  .rz-height-md-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-md-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-md-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-md-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-md-75{
      height: 75% !important;
  }
  .rz-h-md-100{
      height: 100% !important;
  }
}

/* LG */
@media (min-width: 1280px) {
  .rz-align-content-lg-start {
    align-content: flex-start !important;
  }

  .rz-align-content-lg-end {
    align-content: flex-end !important;
  }

  .rz-align-content-lg-center {
    align-content: center !important;
  }

  .rz-align-content-lg-between {
    align-content: space-between !important;
  }

  .rz-align-content-lg-around {
    align-content: space-around !important;
  }

  .rz-align-content-lg-stretch {
    align-content: stretch !important;
  }

  .rz-height-lg-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-lg-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-lg-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-lg-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-lg-calc300 {
    height: calc(100vh - 300px);
  }
    .rz-height-lg-calc310 {
        height: calc(100vh - 310px);
    }
  .rz-height-lg-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-lg-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-lg-calc450 {
    height: calc(100vh - 450px);
  }
    .rz-height-lg-calc465 {
        height: calc(100vh - 465px);
    }
  .rz-height-lg-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-lg-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-lg-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-lg-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-lg-75{
      height: 75% !important;
  }
  .rz-h-lg-100{
      height: 100% !important;
  }
}

/* XL */
@media (min-width: 1920px) {
  .rz-align-content-xl-start {
    align-content: flex-start !important;
  }

  .rz-align-content-xl-end {
    align-content: flex-end !important;
  }

  .rz-align-content-xl-center {
    align-content: center !important;
  }

  .rz-align-content-xl-between {
    align-content: space-between !important;
  }

  .rz-align-content-xl-around {
    align-content: space-around !important;
  }

  .rz-align-content-xl-stretch {
    align-content: stretch !important;
  }

  .rz-height-xl-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-xl-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-xl-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-xl-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-xl-calc300 {
    height: calc(100vh - 300px);
  }
  .rz-height-xl-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-xl-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-xl-calc450 {
    height: calc(100vh - 450px);
  }
  .rz-height-xl-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-xl-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-xl-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-xl-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-xl-75{
      height: 75% !important;
  }
  .rz-h-xl-100{
      height: 100% !important;
  }
}

/* XX */
@media (min-width: 2560px) {
  .rz-align-content-xx-start {
    align-content: flex-start !important;
  }

  .rz-align-content-xx-end {
    align-content: flex-end !important;
  }

  .rz-align-content-xx-center {
    align-content: center !important;
  }

  .rz-align-content-xx-between {
    align-content: space-between !important;
  }

  .rz-align-content-xx-around {
    align-content: space-around !important;
  }

  .rz-align-content-xx-stretch {
    align-content: stretch !important;
  }

  .rz-height-xx-calc100 {
    height: calc(100vh - 100px);
  }
  .rz-height-xx-calc150 {
    height: calc(100vh - 150px);
  }
  .rz-height-xx-calc200 {
    height: calc(100vh - 200px);
  }
  .rz-height-xx-calc250 {
    height: calc(100vh - 250px);
  }
  .rz-height-xx-calc300 {
    height: calc(100vh - 300px);
  }
  .rz-height-xx-calc350 {
    height: calc(100vh - 350px);
  }
  .rz-height-xx-calc400 {
    height: calc(100vh - 400px);
  }
  .rz-height-xx-calc450 {
    height: calc(100vh - 450px);
  }
  .rz-height-xx-calc500 {
    height: calc(100vh - 500px);
  }
  .rz-height-xx-calc550 {
    height: calc(100vh - 550px);
  }
  .rz-height-xx-calc600 {
    height: calc(100vh - 600px);
  }
  .rz-height-xx-calc650 {
    height: calc(100vh - 650px);
  }

  .rz-h-xx-75{
      height: 75% !important;
  }
  .rz-h-xx-100{
      height: 100% !important;
  }
}

/* - - - - - - 라드젠 column 사이즈별 옵션 추가 END - - - - - - - - */
/* - - - - - - 라드젠 column 사이즈별 옵션 추가 END - - - - - - - - */

/* - - - - - - 라드젠 셀렉트 바 - - - - - - - - */
/* - - - - - - 라드젠 셀렉트 바 - - - - - - - - */

/*  버튼의 그림자 삭제 */
.rz-selectbutton .rz-button {
  box-shadow: none !important;
}
/*  버튼의 색상 변경 */
.rz-selectbutton .rz-button.rz-state-active {
  background-color: #9adfdf !important;
  color: var(--rz-primary) !important;
}

/* - - - - - - 라드젠 셀렉트 바 END - - - - - - - - */
/* - - - - - - 라드젠 셀렉트 바 END - - - - - - - - */

/* - - - - - - 라드젠 데이터 그리드 - - - - - - - - */
/* - - - - - - 라드젠 데이터 그리드 - - - - - - - - */

/* Row 글자 강조  -  신규 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-new] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-new] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-new] > td.rz-frozen-cell:before {
    color: palevioletred;
    font-weight: bold;
}

/* Row 글자 강조  -  선택된 신규 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-new] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-new] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-new] > td.rz-frozen-cell:before {
    color: pink;
    font-weight: bold;
}

/* Row 글자 강조  -  WARNING 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-warning] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-warning] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-warning] > td.rz-frozen-cell:before,
/* Cell 글자 강조  -  WARNING 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-warning],
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-warning] .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-warning].rz-frozen-cell:before {
    color: darkorange;
}

/* Row 글자 강조  -  선택된 WARNING 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-warning] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-warning] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-warning] > td.rz-frozen-cell:before,
/* Cell 글자 강조  -  선택된 WARNING 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-warning],
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-warning] .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-warning].rz-frozen-cell:before {
    color: gold;
}

/* Row 글자 강조  -  안좋은 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-error] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-error] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-error] > td.rz-frozen-cell:before,
/* Cell 글자 강조 -  안좋은 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-error],
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-error] .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row > td[cell-data-error].rz-frozen-cell:before {
    color: crimson;
}

/* Row 글자 강조  -  선택된 안좋은 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-error] > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-error] > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-error] > td.rz-frozen-cell:before,
/* Cell 글자 강조 -  선택된 안좋은 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-error],
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-error] .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td[cell-data-error].rz-frozen-cell:before {
    color: pink;
}

/* Row 글자 강조  -  수정 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-modify] > td:not(.custom-cell-merge),
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-modify] > td:not(.custom-cell-merge) .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-modify] > td:not(.custom-cell-merge).rz-frozen-cell:before {
    color: green;
    font-weight: bold;
}

/* Row 글자 강조  -  선택된 수정 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-modify] > td:not(.custom-cell-merge),
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-modify] > td:not(.custom-cell-merge) .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-modify] > td:not(.custom-cell-merge).rz-frozen-cell:before {
    color: lightgreen;
    font-weight: bold;
}

/* Row 글자 강조  -  수정 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-disable] > td:not(.custom-cell-merge):not(.cell-data-none) .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row[data-disable] > td.rz-frozen-cell:not(.custom-cell-merge):not(.cell-data-none):before {
    opacity: 0.4;
}

/* Row 글자 강조  -  선택된 수정 아이템  + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-disable] > td:not(.custom-cell-merge):not(.cell-data-none) span,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-disable] > td:not(.custom-cell-merge):not(.cell-data-none) .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight[data-disable] > td.rz-frozen-cell:not(.custom-cell-merge):not(.cell-data-none):before {
    opacity: 0.5;
    font-weight: bold;
}

/* Row 배경 색  -  선택된 아이템 + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.rz-frozen-cell:before {
    background-color: #03939b;
}
/* Row 글자 색  -  선택된 아이템  */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight .rz-cell-data {
    color: white;
}
/* Cell 버튼 스타일 - 선택된 아이템 */
.rz-datatable.rz-selectable table  tbody tr.rz-data-row.rz-state-highlight .rz-cell-data .rz-button {
  color: white;
}
/* Cell 버튼 스타일 - 마우스 오버 + 선택된 아이템 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight .rz-cell-data .rz-button:hover {
  color: inherit;
  background-color: rgba(54, 199, 199, 0.38);
}

/* Row 배경 색  -  마우스 오버 아이템 + frozen셀 + Merged 아이템*/
.rz-datatable.rz-selectable table tbody tr.rz-data-row:hover:not(.rz-state-highlight) > td,
.rz-datatable.rz-selectable table tbody tr.rz-data-row:hover:not(.rz-state-highlight) > td.rz-frozen-cell:before,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.custom-cell-merge:hover {
    background-color: rgba(54, 199, 199, 0.18);
}
/* Row 글자 색  -  마우스 오버 아이템 + frozen셀 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row:hover:not(.rz-state-highlight) > td .rz-cell-data,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.custom-cell-merge .rz-cell-data {
  color: inherit;
}

/* Row 배경 색  -  Merged 아이템 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.custom-cell-merge,
.rz-datatable.rz-selectable table tbody tr.rz-data-row:hover > td.custom-cell-merge,
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.custom-cell-merge.rz-frozen-cell:before {
    background-color: inherit;
}
/* Row 글자 색  -  Merged 아이템 */
.rz-datatable.rz-selectable table tbody tr.rz-data-row.rz-state-highlight > td.custom-cell-merge .rz-cell-data {
    color: inherit;
}

/* radzen 그리드 안에 셀 에딧모드일 때 varient.Text 인풋, Numeric, ComboBox의 스타일 */
.rz-data-grid.rz-datatable .rz-cell-data .rz-form-field.rz-variant-text input,
.rz-data-grid.rz-datatable .rz-cell-data .rz-form-field.rz-variant-text span.rz-spinner,
.rz-data-grid.rz-datatable .rz-cell-data .rz-form-field.rz-variant-text span.rz-numeric,
.rz-data-grid.rz-datatable .rz-cell-data .rz-form-field.rz-variant-text div.rz-dropdown {
  width: 100%;
  display: block;
  font-size: inherit;
  padding: 0px;
  height: inherit;
  color: inherit;
  text-align: inherit;
}

/* radzen 그리드 안에 셀 에딧모드일 때 varient.Text ComboBox의 스타일 Compact하게 */
.rz-data-grid .rz-cell-data .rz-form-field.rz-variant-text div.rz-dropdown .rz-dropdown-trigger span {
  margin: 0px;
}

/* radzen 그리드 안에 셀 에딧모드일 때 varient.Text 인풋의 스타일 */
/* 폼필드의 상단 타이틀 없애기 */
.rz-data-grid .rz-cell-data .rz-form-field.rz-variant-text .rz-form-field-content {
  margin: 0px;
}

/* radzen 그리드 안에 셀 에딧모드일 때 varient.Text 인풋의 스타일 */
/* ComboBox의 상단 패딩 */
.rz-data-grid .rz-cell-data .rz-form-field.rz-variant-text label.rz-dropdown-label {
  padding-top: 0px !important;
}

/* 컬럼 padding 제거 */
.grid_column_padding-zero div {
  padding: 0 !important;
}
.grid_column_padding-zero span {
  line-height: normal !important;
}


/* 데이터 그리드가 비어있을 때 나오는 텍스트 Padding */
tr.rz-datatable-emptymessage-row td.rz-datatable-emptymessage {
  padding: 1rem;
}
/* 데이터 그리드가 비어있을 때 나오는 텍스트 */
.custom-data-grid.editable-data-grid .rz-grid-table tr.rz-datatable-emptymessage-row td.rz-datatable-emptymessage p {
  font-size: 24px;
  text-align: left;
  margin: 2rem;
  opacity: 0.5;
  text-wrap: pretty;
}

/* 데이터 그리드가 비어있을 때 나오는 Row */
/*.custom-data-grid.editable-data-grid .rz-grid-table tr.rz-datatable-emptymessage-row {
    display: inline;
}*/
/* 데이터 그리드가 비어있을 때 나오는 텍스트 컨테이너 */
/*.custom-data-grid.editable-data-grid .rz-grid-table tr.rz-datatable-emptymessage-row td.rz-datatable-emptymessage {
    position: sticky;
    left: 0;
    border-bottom: none;
    padding: 1rem;
}*/

/*  그리드 로딩 배경  */
.rz-datatable-loading,
.custom-data-grid .rz-datatable-loading {
  animation-duration: 1.4s;
  animation-name: grid_loading_fade_in;
  backdrop-filter: blur(1.3px);
  background: unset;
}

/*  그리드 로딩 컨텐츠  */
.rz-datatable-loading-content,
.custom-data-grid .rz-datatable-loading-content {
  animation-duration: 0.5s;
  animation-name: grid_loading_fade_in;
}

@keyframes grid_loading_fade_in {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*  그리드 필터
.rz-grid-filter-icon:after {
    content: unset;
}
.rz-overlaypanel{
    min-width : 100px !important;
}
*/

/*  그리드 Density Compact 사이즈 재정의 */
.rz-data-grid.rz-density-compact.custom-data-grid {
  --rz-grid-cell-line-height: 1.2rem; /* 살짝 올림 */
  --rz-grid-cell-padding: 0.3rem 0.5rem; /* 살짝 올림 */
  --rz-grid-header-cell-padding: 0.35rem 0; /* 살짝 올림 */
  --rz-grid-header-padding: 0.25rem 1rem;
  --rz-grid-header-title-padding: 0 0 0 0.5rem;
  --rz-grid-filter-padding: 0.25rem 0.5rem;
  --rz-grid-group-header-padding: 0.25 0.5rem;
  --rz-grid-group-header-item-padding: 0.25 0.5rem;
}

.rz-data-grid.custom-data-grid .showChart i,
.rz-data-grid.custom-data-grid i.showChart{
  border-left: solid 2px;
  border-bottom: solid 2px;
}

/* 셀 워닝, 에러 표시 스타일 */
.cell-style-warning,
.cell-style-error,
.cell-style-disabled {
  position: relative;
}

.cell-style-warning::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 12px solid gold;
  border-left: 12px solid transparent;
  opacity: 0.9;
}
/* 셀 에러 스타일은 워닝을 덮음 */
.cell-style-error::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 12px solid crimson;
  border-left: 12px solid transparent;
  opacity: 0.9;
}
/* 셀 비활성화 스타일 */
.cell-style-disabled::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 80%;
  height: 70%;
  opacity: 0.6;
  background: linear-gradient(
    to right bottom,
    transparent 47%,
    var(--rz-base-300) 50%,
    var(--rz-base-300) 51%,
    transparent 54%
  );
  /*background: linear-gradient(to right bottom, 
    transparent 23%, 
    var(--rz-base-300) 25%, 
    var(--rz-base-300) 26%,  
    transparent 28%,

    transparent 48%, 
    var(--rz-base-300) 50%, 
    var(--rz-base-300) 51%, 
    transparent 53%,

    transparent 73%, 
    var(--rz-base-300) 75%, 
    var(--rz-base-300) 76%, 
    transparent 78%);*/
  background-color: inherit;
}
/* 셀 비활성화 스타일(row 마우스 오버) */
tr:not(.rz-expanded-row-content):nth-child(even):hover .cell-style-disabled::after {
  /*background-color: var(--rz-grid-stripe-background-color);*/
  background-color: transparent;
}
/* 셀 비활성화 스타일(row 마우스 오버) */
tr:not(.rz-expanded-row-content):nth-child(odd):hover .cell-style-disabled::after {
  /*background-color: var(--rz-grid-background-color);*/
  background-color: transparent;
}

/* 셀 하이라이트 스타일 */
.custom-data-grid td.custom-state-highlight {
  background-color: var(--rz-primary) !important;
}
.custom-data-grid td.custom-state-highlight span.rz-cell-data {
  color: var(--rz-white) !important;
}

/* 셀 수정(로우 수정아님!) 스타일 */
.custom-data-grid td[cell-data-modify] span.rz-cell-data {
  color: green !important;
  font-weight: bold;
}
.custom-data-grid td.custom-state-highlight[cell-data-modify] span.rz-cell-data {
  color: lightgreen !important;
  /*font-weight: bold;*/
}

/* - - - - - - 라드젠 데이터 그리드 END - - - - - - - - */
/* - - - - - - 라드젠 데이터 그리드 END - - - - - - - - */

/* - - - - - - 라드젠 팝 업 - - - - - - - - */
/* - - - - - - 라드젠 팝 업 - - - - - - - - */

.rz-popup-title {
  padding: 1rem 1rem 0.5rem 1rem;
}

.rz-popup-content {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

/* - - - - - - 라드젠 팝 업 END - - - - - - - - */
/* - - - - - - 라드젠 팝 업 END - - - - - - - - */

/* - - - - - - 라드젠 버튼 - - - - - - - - */
/* - - - - - - 라드젠 버튼 - - - - - - - - */

/* Secondary 스타일 배경색 글자색 */
.rz-button.rz-secondary {
  background: #9adfdf;
  color: var(--rz-primary) !important;
  font-weight: bold;
}

/* 버튼 내부의 체크박스 체크 아이콘 위치 조정 */
.rz-button-md .rzi {
  line-height: 1;
}

/* - - - - - - 라드젠 버튼 END - - - - - - - - */
/* - - - - - - 라드젠 버튼 END - - - - - - - - */

/* - - - - - - 라드젠 뱃지 - - - - - - - - */
/* - - - - - - 라드젠 뱃지 - - - - - - - - */

/* 높이 조절, 가운데 정렬 조절 */
.rz-badge {
    height: fit-content;
    align-self: center;
}

/* - - - - - - 라드젠 뱃지 END - - - - - - - - */
/* - - - - - - 라드젠 뱃지 END - - - - - - - - */

/* - - - - - - 라드젠 트리뷰 - - - - - - - - */
/* - - - - - - 라드젠 트리뷰 - - - - - - - - */

/* 트리뷰 라벨 너비 조절 */
.rz-treenode-content .rz-treenode-label {
    width: 100%;
}

/* - - - - - - 라드젠 트리뷰 END - - - - - - - - */
/* - - - - - - 라드젠 트리뷰 END - - - - - - - - */

/* - - - - - - 라드젠 콤보박스 - - - - - - - - */
/* - - - - - - 라드젠 콤보박스 - - - - - - - - */

/* Multiple=true 에서 아이템들 패딩조절 */
.rz-multiselect-panel .rz-multiselect-items.rz-multiselect-list {
  padding-top: 0 !important;
}
/* Multiple=true 에서 전체선택 헤더 패딩조절 */
.rz-multiselect-panel .rz-multiselect-header {
  padding: 0px 5px !important;
}
.rz-multiselect-panel .rz-multiselect-header > span {
  padding-top: 10px !important;
  padding-bottom: 6px !important;
  width: 100%;
  color:black;
}

/* - - - - - - 라드젠 콤보박스 END - - - - - - - - */
/* - - - - - - 라드젠 콤보박스 END - - - - - - - - */

/* - - - - - - 라드젠 컴포넌트 (노티파이, 다이얼로그, 컨텍스트 메뉴, 툴 팁) - - - - - - - - */
/* - - - - - - 라드젠 컴포넌트 (노티파이, 다이얼로그, 컨텍스트 메뉴, 툴 팁) - - - - - - - - */

/* 노티파이(토스트 메시지) */
div.rz-notification {
  pointer-events: none;
  display: flex;
  flex-direction: column-reverse;
  bottom: 100px;
  right: 30px !important;
  top: unset !important;
}

/* 노티파이(토스트 메시지) 닫기 버튼 */
.rz-notification .rz-notification-message .rz-growl-item .rz-growl-icon-close {
  pointer-events: initial;
}

/* 노티파이(토스트 메시지) 배경 */
.rz-growl-item-container {
  background: radial-gradient(
    rgb(255, 255, 255, 90%) 40%,
    rgb(255, 255, 255, 75%)
  );
}

/* - - - - - - 라드젠 컴포넌트 (노티파이, 다이얼로그, 컨텍스트 메뉴, 툴 팁) END - - - - - - - - */
/* - - - - - - 라드젠 컴포넌트 (노티파이, 다이얼로그, 컨텍스트 메뉴, 툴 팁) END - - - - - - - - */

/* - - - - - - DevExpress Native 리포팅 - - - - - - - - */
/* - - - - - - DevExpress Native 리포팅 - - - - - - - - */

.dxbrv-wrapper .dxrbv-viewbox .dxbrv-surface-wrapper {
  background: var(--rz-body-background-color);
}

.dxbrv-wrapper .dxbrv-toolbar .dxbl-btn-group.btn-secondary.disabled {
  background: var(--rz-base-background-color);
}

/* - - - - - - DevExpress Native 리포팅 END - - - - - - - - */
/* - - - - - - DevExpress Native 리포팅 END - - - - - - - - */

/* - - - - - - 커스텀 스타일 - - - - - - - - */
/* - - - - - - 커스텀 스타일 - - - - - - - - */

.tooltip[role="tooltip"] {
  pointer-events: none;
}

.LoginHeader {
  height: auto;
  max-width: 9999px;
  padding: 10px;
  background: white;
  box-shadow: 0 0 10px 5px rgb(0, 0, 0, 0.2);
  z-index: 1;
  width: 100%;
  position: fixed;
  top: 0;
}

.rz-state-highlight ::selection {
  background-color: rgb(124, 215, 190, 0.8);
}

sub {
  font-size: 90%;
}

/* .btn.btn-naked  내용만 있는 버튼 스타일 */
.btn-naked img.rzi,
.btn-naked-transparency img.rzi {
  width: 0.75em;
  height: 0.8em;
}
.btn.btn-naked {
  opacity: 0.6;
  background: transparent;
  padding: 0;
}
.btn.btn-naked-transparency {
  opacity: 0;
  background: transparent;
  padding: 0;
}
.btn.btn-naked:hover,
.btn.btn-naked-transparency:hover {
  opacity: 1;
}
.btn.btn-naked:focus,
.btn.btn-naked-transparency:focus {
  outline: none;
  box-shadow: none;
}

/* 데브익스프레스 그래프 툴팁 */
.dx-chart-tooltip {
  pointer-events: none;
}

/* 데브익스프레스 에딧 크기를 라드젠 컴포넌트와 똑같게 */
.rz-form-field .dxbl-text-edit {
  font-size: var(--rz-input-font-size);
  height: var(--rz-input-height);
}
.rz-form-field .dxbl-text-edit > input {
  padding: var(--rz-input-padding);
  padding-top: 5px;
  color:black;
}
/* 하지만 데이터 그리드 안에있는 에딧크기라면... */
.rz-data-grid-data .rz-form-field .dxbl-text-edit {
  font-size: var(--rz-grid-cell-font-size);
  height: inherit;
}

/* 데브익스프레스 에딧 버튼 스타일 */
.rz-form-field .dxbl-btn-group.dxbl-btn-group-right {
  background: none;
}
.rz-form-field .dxbl-text-edit button.dxbl-btn {
  border-left: transparent;
  background: inherit;
  min-width: 33px;
}
.rz-form-field .dxbl-text-edit button.dxbl-btn > svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* 라드젠 FormField의 Varient Text일 때 스타일 */
.rz-form-field.rz-variant-text input.rz-textbox {
  padding-bottom: 0;
}

.boxShadow-popup {
  box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* 메인화면 우측 빈공간 없애기 */
.content {
  padding-right: 0;
}

/* 네비바가 접힐 때 동작 */
/* col-free ~ col-sm */
@media (max-width: 767px) {
  .fixed .content-wrapper {
    padding-top: 50px;
  }
  .main-sidebar,
  .left-side {
    padding-top: 50px;
  }
}


/* 네비 바 사이드 스크롤 바 */

/*.sidebar > ul::-webkit-scrollbar {
    width: 7px;
}

.sidebar > ul::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidebar > ul::-webkit-scrollbar-thumb {
    border: 1px solid transparent;
}*/


/* 우선순위를 위한 재정의 */
.rz-splitbutton .rz-button {
    padding: 0.1em 0.7em;
    text-overflow: clip !important;
}

/* SplitButton 드롭다운 버튼 너비 줄이기 */
.rz-splitbutton.rz-buttonset.compact .rz-splitbutton-menubutton {
  padding: 0;
  min-width: unset;
  width: 2.25rem;
}

/* btn style */
.rz-button.rz-danger:not(.iconbutton),
.rz-button.rz-secondary:not(.iconbutton) {
  height: 32px;
  padding: 0.1em 0.7em;
}

/* 상단 프로필 메뉴 */
ul.rz-profile-menu {
  background-color: transparent;
}
/* 상단 프로필 메뉴 Expander 화살표 */
ul.rz-profile-menu .rz-navigation-item-icon-children {
  color: var(--rz-primary);
}
/* 상단 프로필 메뉴 목록 padding */
ul.rz-profile-menu ul.rz-navigation-menu {
  padding-top: 0 !important;
}

/* pick list 아이템 margin 수정 */
.rz-listbox-list {
  margin: 1px !important;
}

.font-white-border {
  text-shadow: -2px 0px 2px #ffffff, 0px 2px 2px #ffffff, 2px 0px 2px #ffffff,
    0px -2px 2px #ffffff;
}

.main-announcement {
  position: fixed;
  bottom: 0rem;
  width: 100%;
  height: 4rem;
  z-index: 9999;
}
.main-announcement .wrap-background {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rz-base-500) 15%,
    var(--rz-base-500) 85%,
    transparent 100%
  );
}
.main-announcement .wrap-message {
  font-size: 2.5rem;
  font-weight: 500;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: end;
  color: var(--rz-primary);
  text-shadow: 2px 0 6px var(--rz-white), -2px 0px 6px var(--rz-white);
}
.button-relative {
  right: 0;
  top: 0;
  margin-right: -15px;
  margin-top: -15px;
  z-index: 999;
}


/* 각 화면별 세로 너비용 */
.singlePageRow{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}



.custom-ripple{
    position:relative;
}
.custom-ripple:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: left;
    /*background: radial-gradient(circle, currentColor 1%, transparent 1%) center / 15000%;*/
    background: linear-gradient(90deg, currentColor 1%, transparent 1%) left / 55000%;
    transition: background 0.8s, opacity 0.8s;
}
.custom-ripple:active:before {
    transition: background 0s, opacity 0s;
    opacity: .22;
    background-size: 100%;
}


/* 스크롤 버튼 */
.btn-scrollTo {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    z-index: 9999;
    opacity: 0.8;
    gap: 0.15rem;
    width: 2.5rem;
}
/* 스크롤 버튼 - 기본 */
.btn-scrollTo .btn-scrollTo-top {
    border-radius: 15px 15px 5px 5px; 
    height: 2.5rem;
}
.btn-scrollTo .btn-scrollTo-bottom {
    border-radius: 5px 5px 15px 15px; 
    height: 2.5rem
}
/* 스크롤 버튼 - 탑일 때 */
.btn-scrollTo.top .btn-scrollTo-top {
    height: 1.8rem;
}
.btn-scrollTo.top .btn-scrollTo-bottom {
    height: 3.2rem;
}
/* 스크롤 버튼 - 바텀일 때 */
.btn-scrollTo.bottom .btn-scrollTo-top {
    height: 3.2rem;
}
.btn-scrollTo.bottom .btn-scrollTo-bottom {
    height: 1.8rem;
}

.loginBox {
    width: 8rem;
}
.loginbox .rz-textbox {
    width: 100%;
}

.cursor-pointer{
    cursor: pointer;
}


/* 즐겨찾기 별모양 버튼 */
.btn-favorite {
    border-radius: 100%;
    width: 25px;
    height: 30px;
    padding: 0;
    color: #FFD02C !important;
}
.btn-i-favorite {
    font-weight: 300 !important;
    font-size:32px !important;

}
.btn-i-favorite.active {
    font-variation-settings: 'FILL' 1;
}


/* 첫 페이지 로딩 */
.loading-overlay {
    position: absolute;
    inset: 0; /* top, right, bottom, left = 0 */
    background: rgba(255,255,255, 0.5);
    backdrop-filter: blur(2px);
    align-content: center;
    text-align: end;
    z-index: 9999;
    font: 2rem;
    font-weight: bold;
    color: #333;
    padding-right: 2rem;
    opacity: 0;
    animation: showOverlay 0.5s linear 0.2s forwards;
}

@keyframes showOverlay {
    to {
        opacity: 1;
    }
}

.loginRememberMe {
    margin-left: -1.5rem;
    margin-bottom: -0.5rem;
    margin-top: 0.3rem
}

.user-select-none {
    user-select:none !important;
}

/* Devexpress spin edit 스핀 버튼 */
.rz-form-field .dxbl-spin-btns{
    margin: 1px;
}

/* - - - - - - 커스텀 스타일 END - - - - - - - - */
/* - - - - - - 커스텀 스타일 END - - - - - - - - */

/* 사이즈별 스타일은 최 상단에 존재함 */
/* 사이즈별 스타일은 최 상단에 존재함 */
/* 사이즈별 스타일은 최 상단에 존재함 */

/*모바일에서 미디어 쿼리*/
@media (max-width: 1350px) {
    .Main2_gif,
    .Main4_image,
    .Main5_image {
        width: 90% !important;
        left: 0 !important;
        justify-self: anchor-center;
        overflow: hidden;
    }
    
  .Main2_gif,
  .Main4_gif {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .Main1 {
    background-image: url(../images/mobile_bg.png) !important;
    background-size: 100% 100%;
  }
  .imgflow .Main2_gif {
    width: 1200px !important;
  }
  .loginRememberMe {
    margin-top: -0.5rem;
    margin-bottom: 0;
    margin-left: 0;
  }
  .btnWrapper {
    margin-top: 10px;
    display: flex;
    align-item: center;
    justify-content: center;
    width: 100%;

    flex-flow: column-reverse;
    gap: 0.5rem;
  }
  .btnWrapper .rz-button {
    height: 40px;
    width: 100% !important;
  }
  .Main1_title_group {
    height: calc(100vh - 35rem) !important;
  }
  .Main1_title {
    font-size: 5rem !important;
  }
  .form {
      justify-content: start !important;
  }
  .loginbox {
      max-width: 100%;
      flex: auto;
  }
  .btnWrapper {
      margin-top: 20px;
  }
  .loginBox,
  .loginbox .rz-textbox {
    width: 100%;
    margin-top: 5px;
  }
  .button-relative {
    position: relative !important;
    margin-right: 0;
    margin-top: 0;
    display: none;
  }
  .logo {
    display: none !important;
  }
  .btnMain {
    display: none !important;
    margin-right: 0px;
    margin-top: 0px;
    z-index: 999;
  }
  .homeFrame {
    height: 100vh !important;
  }
  #header {
    width: auto !important;
    position: absolute;
    top: calc(100vh - 10rem);
    left: 50%;
    width: 350px !important;
    margin-left: -175px; /* width의 50% */
    margin-top: -175px; /* height의 50% */
    border-radius: 10px;
    background: #ffffffe3;
    padding: 20px;
  }
    .ButtonList,
    .home_Bg1_icon,
    #section2,
    #section3,
    #section4,
    #section5,
    #section6 {
        display: none !important;
    }
  .skin-blue .main-header .navbar {
    margin-left: 0 !important;
  }
  .main-header .logo .logo-lg {
    display: none !important;
  }

  .headerlink,
  .rz-profile-menu:last-child {
    display: none !important;
  }
  .row1 {
    display: block;
  }

  ul.rz-profile-menu .rz-navigation-menu .rz-navigation-item:first-child {
    display: none !important;
  }
  .rz-navigation-menu li:nth-child(4) {
    display: none !important;
  }
  .md-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .rz-dialog {
    margin-top: 3rem !important;
    height: calc(100vh - 10rem);
  }
  .rz-dialog:not(.rz-dialog-confirm):not(.rz-dialog-alert) {
    position: relative !important;
  }
}
@media (min-width: 768px) {
  .skin-blue .main-header .navbar {
    background: white;
    box-shadow: 0 0 5px 0 #909090;
    border-radius: 0 0 0 30px;
    border: none;
    margin-left: 240px;
  }
  .main-header .logo .logo-lg {
  }

  .row1 {
    display: flex;
  }
  .sidebar-mini.sidebar-collapse
    .sidebar-menu
    > li:hover
    > a
    > span:not(.pull-right) {
    background: #03939b;
  }
}

.rz-multiselect-item-content{
    color: black;
}

.rz-dropdown-item, .rz-menuitem, .rz-autocomplete-list-item, .rz-multiselect-item, .rz-dropdown-items li, .rz-autocomplete-items li, .rz-multiselect-items li {
    color:black;
}

.rz-variant-outlined.rz-badge-base.rz-shade-default{
    opacity: 50%;
    padding-top:5px;
}

.rz-selectbar.rz-selectbar-horizontal .rz-button:first-child{
    text-align:center;
}

.rz-switch.rz-switch-checked .rz-switch-circle{
    background:#bfeef0
}