.modal {
    position: fixed;
    top: calc(50% + 12px);
    left: 50%;
    z-index: 1000000;
    background: #fff;
    width: 400px;
    padding: 10px 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 3%;
}
  
@media screen and (max-width: 768px) {
    .modal {
        width: 80%;
    }
}

.modal.-fullHeight {
    height: 70%;
}
@media screen and (max-width: 768px) {
    .modal.-fullHeight {
        height: auto;
    }
}
  
.modal__close {
    display: block;
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.modal__close::before, .modal__close::after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 30px;
}
  
.modal__close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
  
.modal__close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
.modal__header {
    position: relative;
}
  
.modal__body {
    padding: 20px;
    height: auto;
}
  
.modal__body.scroll-area {
    height: 420px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media screen and (max-width: 768px) {
    .modal__body.scroll-area {
        height: 300px!important;
    }
}

.modal__body.scroll-area::-webkit-scrollbar{
    display: none;
}
  
.modal__bg {
    position: fixed;
    top: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
}
.modal__bg.-lighten {
    background: rgba(0, 0, 0, 0.3);
}
.notice_message {
    font-size: 1.2rem;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 300;
    background-color: rgba(80, 84, 95, 0.8);
    color: #fff;
    width: auto;
    min-width: 290px;
    height: auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(24, 125, 177, 0.2);
    /*opacity: 0.8%;*/
}

.notice_message div {
    display: table;
    width: 100%;
    height: 100%;
}


.c-balloon {
    color: #062037;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    z-index: 220;
    background: #fff;
    padding: 10px;
    /* box-shadow: 0 0 20px 0 rgba(0, 91, 172, 0.5); */
    cursor: pointer;
  }
  .c-balloon__wrap {
    position: relative;
  }
  .c-balloon .buttons {
    text-align: center;
    margin-top: 10px;
  }
  .c-balloon .buttons .c-btn {
    width: 70px;
  }
  .c-balloon .buttons .c-btn + .c-btn {
    margin-left: 5px;
  }
  .c-balloon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
  }
  .c-balloon.-warning::before {
    content: "";
    display: block;
    background: url(../images/icon/icon_warning.svg) no-repeat top center/25px 25px;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
  }
  .c-balloon.-caution::before {
    content: "";
    display: block;
    background: url(../images/icon/icon_caution.svg) no-repeat top center/25px 25px;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
  }
  .c-balloon.-left {
    top: 50%;
    right: calc(100% + 15px);
    transform: translateY(-50%);
  }
  .c-balloon.-left::after {
    left: calc(100% - 1px);
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #ffffff;
  }
  .c-balloon.-right {
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
  }
  .c-balloon.-right::after {
    right: calc(100% - 1px);
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  .c-balloon.-topLeft {
    bottom: 100%;
    right: 0;
  }
  .c-balloon.-topLeft::after {
    display: none;
  }
  .c-balloon.-topRight {
    bottom: 100%;
    left: 0;
  }
  .c-balloon.-topRight::after {
    display: none;
  }
  .c-balloon.-topCenter {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-balloon.-topCenter::after {
    display: none;
  }
  .c-balloon.-bottomLeft {
    top: 100%;
    right: 0;
  }
  .c-balloon.-bottomLeft::after {
    display: none;
  }
  .c-balloon.-bottomRight {
    top: 100%;
    left: 0;
  }
  .c-balloon.-bottomRight::after {
    display: none;
  }
  .c-balloon.-bottomCenter {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-balloon.-bottomCenter::after {
    display: none;
  }
  