@charset "UTF-8";

@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css");

html {
    scroll-behavior: smooth;
}

body, html {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    height: 100%;
    line-height: 1.8;
    position: relative;
}

/*p {*/
/*    margin: 0px !important;*/
/*}*/

.content {
    height: 100%;
}

.section {
    height: calc(100% - 56px);
    width: 100%;
    text-align: center;
    margin: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
}

.section.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-jumbotron {
    height: 70%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*background-color: rgba(7, 14, 45, 0.37) !important;*/
    background-color: rgb(36, 39, 47) !important;
    /*-webkit-background-clip: text !important;*/
    /*-webkit-text-fill-color: transparent !important;*/
}

.overlay-bg {
    z-index: 2;
    width: 100%;
    height: calc(100% - 15px);
    /*background-color: rgba(7, 14, 45, 0.54);*/
    background-color: rgb(36, 39, 47);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input[type="file"] { /* 파일 필드 숨기기 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="submit"] { /* 파일 필드 숨기기 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-info {
    width: 26%;
    height: 5%;
    display: none;
    min-width: 320px;
    min-height: 50px;
    border-radius: 30px;
    background-color: rgba(200, 200, 200, 0.1);
    margin-top: 0.5em;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
}

.file-info-sub-text {
    width: 100%;
    text-align: left;
    color: whitesmoke;
    display: inline-block;
    padding: .5em .75em;
    margin: 0;
    line-height: 80% !important;
}

#file-modal show {
    height: 500%;
    overflow: visible;
    padding-right: 0 !important;
}

#file-list {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(43, 43, 43, 0.5);
    margin: 0px !important;
}

#file-list .file {
    color: white;
}

#file-list .common {
    height: 15%;
    display: flex;
    font-size: 14px;
    flex-direction: column;
    justify-content: center;
    border-bottom: rgba(43, 43, 43, 0.8) 1px solid;
}


#file-content .size {
    border-left: rgba(200, 200, 200, 0.3) 1px solid;
}

#file-down #download {

}

#file-item-header {
    height: 10% !important;
}

#file-item-list {
    height: 90% !important;
}

#file-down .common {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(200, 200, 200, 0.3) !important;
}


.honey_progress {
    counter-reset: step;
    height: 30%;
    padding: 0;
    margin: 0;
}

.honey_progress li {
    list-style-type: none;
    float: left;
    width: 20%;
    position: relative;
    text-align: center;
    justify-content: center;
    height: 150px;
    display: flex;
    flex-direction: column;
}

.honey_progress li:after {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: rgba(66, 66, 66, 0.3);
    /*background-color: ;*/
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

:root {
    --time: 0s;
    --size: 0px;
}

.honey_progress li.sizeUp:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background: linear-gradient(45deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    /*background-color: ;*/
    animation: sizeUp 0.2s linear 1;
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

.honey_progress li.glowing:before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: linear-gradient(45deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    /*background-color: ;*/
    animation: glowing 10s linear infinite;
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

.honey_progress li.mix:before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: linear-gradient(45deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    /*background-color: ;*/
    animation: mix var(--time) linear 1, glowing 10s var(--time) linear infinite;
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

@keyframes sizeUp {
    0% {
        width: 0px;
    }
    100% {
        width: calc(var(--size) - 30px);
    }
}

@keyframes mix {
    0% {
        width: 0px;
    }
    100% {
        width: calc(100% - 30px);
    }
}


@keyframes glowing {
    0% {
        background-position: 0 0;
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        background-position: 5000px 0;
        opacity: 1;
    }
}

.honey_progress li:first-child:after {
    content: none;
}

.honey_item_circle {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0px auto 0px auto;
    border: 2px solid rgba(66, 66, 66, 0.3);
}

@keyframes anim-glow1 {
    0% {
        border: 2px solid #ef4e7b;
        box-shadow: 0 0 #ef4e7b;
    }
    100% {
        border: 2px solid #ef4e7b;
        box-shadow: 0 0 15px 15px transparent;
    }
}

@keyframes anim-glow2 {
    0% {
        border: 2px solid #a166ab;
        box-shadow: 0 0 #a166ab;
    }
    100% {
        border: 2px solid #a166ab;
        box-shadow: 0 0 15px 15px transparent;
    }
}


@keyframes anim-glow3 {
    0% {
        border: 2px solid #5073b8;
        box-shadow: 0 0 #5073b8;
    }
    100% {
        border: 2px solid #5073b8;
        box-shadow: 0 0 15px 15px transparent;
    }
}

@keyframes anim-glow4 {
    0% {
        border: 2px solid #1098ad;
        box-shadow: 0 0 #1098ad;
    }
    100% {
        border: 2px solid #1098ad;
        box-shadow: 0 0 15px 15px transparent;
    }
}

@keyframes anim-glow5 {
    0% {
        border: 2px solid #f37055;
        box-shadow: 0 0 #f37055;
    }
    100% {
        border: 2px solid #f37055;
        box-shadow: 0 0 15px 15px transparent;
    }
}

@keyframes anim-glow6 {
    0% {
        border: 2px solid #ef4e7b;
        box-shadow: 0 0 #ef4e7b;
    }
    100% {
        border: 2px solid #ef4e7b;
        box-shadow: 0 0 15px 15px transparent;
    }
}

@keyframes anim-glow7 {
    0% {
        border: 2px solid #a166ab;
        box-shadow: 0 0 #a166ab;
    }
    100% {
        border: 2px solid #a166ab;
        box-shadow: 0 0 15px 15px transparent;
    }
}

.honey_item_text {
    margin: 10px auto 0px auto;
}

.container_step {
    height: 70%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 15vw;
    padding-right: 15vw;
}

.container_step_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100px;
    color: white;
    background: rgba(66, 66, 66, 0.3);
}

.container_step_inner.is-dragover {
    background-color: rgba(66, 66, 66, 0.8);
}

.container_step_inner_audio_trace {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100px;
    color: white;
    background: rgba(66, 66, 66, 0.3);
}

.container_step_inner_audio_trace.is-dragover {
    background-color: rgba(66, 66, 66, 0.8);
}

.box_button {
    display: none;
}

.box_dragndrop {
    display: inline;
}

.box_label {
    font-size: 20px;
}

.box_text {
    color: #f79533;
    animation: gradient 2.5s ease infinite;
}

@keyframes gradient {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

#step_extract {
    display: none;
}

#extract_title {
    height: 100px;
    line-height: 100px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
}

#span_extract {
    display: table;
    background: linear-gradient(-60deg, #ffffff, #ef888b, #a166ab);
    -webkit-background-clip: text;
    background-size: 300%;
    margin-left: 15px;
    -webkit-text-fill-color: transparent;
    animation: textMove 3s ease infinite;
}

#step_decrypt {
    display: none;
}

#decrypt_title {
    height: 100px;
    line-height: 100px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
}

#span_decrypt {
    display: table;
    background: linear-gradient(-60deg, #ffffff, #4ca9df, #5073b8);
    -webkit-background-clip: text;
    background-size: 300%;
    margin-left: 15px;
    -webkit-text-fill-color: transparent;
    animation: textMove 3s ease infinite;
}

#step_parse {
    display: none;
}

#parse_title {
    height: 100px;
    line-height: 100px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
}

#span_parse {
    display: table;
    background: linear-gradient(-60deg, #ffffff, #0ccda3, #1098ad);
    -webkit-background-clip: text;
    background-size: 300%;
    margin-left: 15px;
    -webkit-text-fill-color: transparent;
    animation: textMove 3s ease infinite;
}

#step_delivery {
    display: none;
}

#delivery_title {
    height: 100px;
    line-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
    margin-bottom: 20px !important;
}

#span_delivery {
    display: table;
    background: linear-gradient(-60deg, #ffffff, #fffcce, #ffb330, #f37055);
    -webkit-background-clip: text;
    background-size: 300%;
    margin-left: 15px;
    -webkit-text-fill-color: transparent;
    animation: textMove 3s ease infinite;
}

@keyframes textMove {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.delivery_button_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 30%;
    opacity: 0;
}

.delivery_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20%;
    min-width: 150px;
    margin-left: 15px;
    margin-right: 15px;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.1);
}

.delivery_button:hover {
    background-color: rgba(200, 200, 200, 0.3);
}

.app_image {
    width: 100%;
    height: 80%;
    background-image: url("../images/splash.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app_title {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.div_center_vertical_image {
    width: 30%;
    height: 100%;
    display: flex;
    margin-left: 10%;
    flex-direction: column;
    justify-content: center;
}

.div_center_vertical_title {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apk_container {
    height: 100% !important;
    padding-left: 10vw !important;
    padding-right: 10vw !important;
}

.apk_inner_container {
    width: 100%;
    height: 100%;
    min-height: 100px;
    color: white;
    background: rgba(66, 66, 66, 0.3);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.apk_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 15vw;
    min-width: 150px;
    max-width: 200px;
    margin-left: 15px;
    margin-right: 15px;
    height: 10vh;
    background-color: rgba(200, 200, 200, 0.1);
}

.apk_button:hover {
    background-color: rgba(200, 200, 200, 0.3);
}

.apk_button_container {
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    height: 30%;
}

.honey_audio_progress {
    counter-reset: step;
    height: 30%;
    padding: 0;
    margin: 0;
}

.honey_audio_progress li {
    list-style-type: none;
    float: left;
    width: 50%;
    position: relative;
    text-align: center;
    justify-content: center;
    height: 150px;
    display: flex;
    flex-direction: column;
}

.honey_audio_progress li:after {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: rgba(66, 66, 66, 0.3);
    /*background-color: ;*/
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

.honey_audio_progress li:first-child:after {
    content: none;
}

.honey_audio_progress li.glowing:before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: linear-gradient(45deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    /*background-color: ;*/
    animation: glowing 10s linear infinite;
    top: 37%;
    left: -50%;
    margin-left: 15px;
}

#bnr_list {
}

#brn_contents {

}

.bnr_list_container {
    height: 80vh;
    overflow: auto;
}

.bnr_list_header {
    background: rgba(66, 66, 66, 0.3);
    /*background: rgb(31, 34, 44);*/
    color: white;
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
}

.bnr_list_header_center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bnr_list_contents {
    background: rgb(31, 34, 44);
    width: 100%;
    height: 90%;
}

.bnr_compare_list {
    height: auto;
    width: 100%;
    background: rgba(66, 66, 66, 0.3);
}

.bnr_row_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.bnr_add {
    height: 25px;
    width: 25px;
    background-position: center;
    background-size: cover;
    background-image: url("../images/ic_add_circle.png");
}

.bnr_add:hover {
    opacity: 0.5;
}

.bnr_title {
    height: 25px;
    margin: 0px;
    width: 80%;
    text-align: left;
}

.bnr_text_container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnr_border {
    background: #ef4e7b;
    width: 2px;
    height: 100%;
}

.bnr_modal_header {
    border-bottom: 1px solid rgba(66, 66, 66, 0.7) !important;
}

.bnr_modal_content {
    height: 80%;
    background: rgb(36, 39, 47) !important;
}

.bnr_modal_footer {
    border-top: 1px solid rgba(66, 66, 66, 0.7) !important;
}

.bnr_modal_title {
    /*color: rgb(31, 34, 44);*/
}

.bnr_modal_body {
    height: 80%;
}

.bnr_close {
    color: white !important;
    opacity: 1 !important;
}

.bnr_close:hover {
    opacity: 0.5 !important;
}

.bnr_confirm_button {
    background: #f79533 !important;
    color: white !important;
}

.modal_content_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#modal_content_backup:hover {
    opacity: 0.5;
    color: #ffb330;
}

#modal_content_restore:hover {
    opacity: 0.5;
    color: #ffb330;
}

.modal_content_item {
    width: 80%;
    height: 50%;
    background: rgba(66, 66, 66, 0.3);
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal_content_text {
    text-align: center;
    overflow-y: auto;
}

.bnr_list_header {
    background: rgba(66, 66, 66, 0.3);
    /*background: rgb(31, 34, 44);*/
    color: white;
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
}

.bnr_list_header_center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bnr_list_contents {
    background: rgb(31, 34, 44);
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.bnr_compare_list {
    height: auto;
    width: 100%;
    background: rgba(66, 66, 66, 0.3);
}

.bnr_compare_item_container {
    width: 100%;
    padding-top: 15px;
}

.bnr_compare_item_tag {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 1px solid rgba(135, 135, 135, 0.8);
}

.bnr_compare_item {
    word-wrap: break-word;
    padding: 10px;
    /*margin: 10px;*/
}

.bnr_pass_fail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnr_pass_fail_icon {
    width: 25px;
    height: 25px;
    background-position: center;
    background-size: cover;
    background-image: url("../images/ic_action_check_circle_outline.png");
    margin-left: auto;
    margin-right: auto;
}

.bnr_row_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnr_add {
    height: 25px;
    width: 25px;
    background-position: center;
    background-size: cover;
    background-image: url("../images/ic_add_circle.png");
}

.bnr_add:hover {
    opacity: 0.5;
}

.bnr_title {
    height: 25px;
    margin: 0px;
    width: 80%;
    text-align: left;
}

.bnr_text_container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnr_border {
    background: #ef4e7b;
    width: 2px;
    height: 100%;
}

.bnr_modal_header {
    border-bottom: 1px solid rgba(66, 66, 66, 0.7) !important;
}

.bnr_modal_content {
    height: 80%;
    background: rgb(36, 39, 47) !important;
}

.bnr_modal_footer {
    border-top: 1px solid rgba(66, 66, 66, 0.7) !important;
}

.bnr_modal_title {
    /*color: rgb(31, 34, 44);*/
}

.bnr_modal_body {
    height: 80%;
}

.bnr_close {
    color: white !important;
    opacity: 1 !important;
}

.bnr_close:hover {
    opacity: 0.5 !important;
}

.bnr_confirm_button {
    background: #f79533 !important;
    color: white !important;
}

.bnr_list_item {
    background: rgba(66, 66, 66, 0.3);
    /*background: rgb(31, 34, 44);*/
    color: white;
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
    margin-top: 1px;
    margin-bottom: 1px;
}

.bnr_list_item:hover {
    opacity: 0.5;
}

.bnr_list_item_bar {
    background: rgba(135, 135, 135, 0.8);
    width: 2px;
    height: 100%;
}

.bnr_list_item:nth-child(odd) {
    /*background: rgba(66, 66, 66, 0.5);*/
}

.bnr_list_item_backup {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.bnr_list_item_restore {
    display: flex;
    flex-direction: row;
    width: 50%;
}


.bnr_list_item_label {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnr_list_item_title {
    width: 50%;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-overflow: ellipsis;
}

.backup_text_align {
    text-align: start;
}

.bnr_list_item_backup_circle {
    position: relative;
    width: 30%;
    display: flex;
    margin: 10px;
}

.bnr_list_item_restore_circle {
    position: relative;
    width: 30%;
    display: flex;
    margin: 10px;
}

#modal_content_backup:hover {
    opacity: 0.5;
    color: #ffb330;
}

#modal_content_backup.is-dragover {
    opacity: 0.5;
    color: #ffb330;
}

#modal_content_restore:hover {
    opacity: 0.5;
    color: #ffb330;
}

#modal_content_restore.is-dragover {
    opacity: 0.5;
    color: #ffb330;
}

.modal_content_item {
    width: 80%;
    height: 50%;
    background: rgba(66, 66, 66, 0.3);
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal_content_text {
    text-align: center;
}

.bnr_backup_form {
    text-align: center;
}

.bnr_restore_form {
    text-align: center;
}

.modal_content_db_upload_container {
    width: 95%;
    height: 40px;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-end;
}

.modal_content_db_icon {
    height: 30px;
    width: 30px;
    background-position: center;
    background-size: cover;
}


.modal_content_db_icon:hover {
    opacity: 0.5 !important;
}

#modal_content_db_upload {
    background-image: url("../images/ic_add.png");
}

#modal_content_db_navigate_up {
    display: none;
    background-image: url("../images/ic_navigate_up.png");
}

.modal_content_db_backup_and_restore {
    width: 100%;
    height: 100%;
}

.modal_content_db_list {
    display: contents;
}

.modal_content_db_item {
    width: 95%;
    height: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    overflow-y: scroll;
    will-change: transform;
}

#modal_content_db_item_show {
    opacity: 0;
}

.modal_content_db_item_container {
    width: 100%;
    height: 15%;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(66, 66, 66, 0.3);
    border: 2px rgb(36, 39, 47) solid;
}

.overlay {
    content: 'selected';
    position: absolute;
    width: 100%;
    height: 60px;
    background: rgb(196, 55, 55);
    left: 0;
}

.modal_content_db_item_container:hover {
    opacity: 0.5;
}

.modal_common_padding {
    padding: 0 !important;
}

.modal_db_item_image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-repeat: no-repeat;
    background-size: contain;
}

.modal_image_top {
    background-image: url("../images/top.jpeg");
}

.modal_image_bloom {
    background-image: url("../images/bloom.jpeg");
}

.modal_image_canvas {
    background-image: url("../images/canvas.jpeg");
}


.modal_content_db_item_text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}

.modal_content_db_item_info {
    width: 100%;
    font-size: 14px;
}

#modal_content_db_item_insert {
    display: none;
    opacity: 0;
    justify-content: flex-start;
    flex-direction: column;
}

.modal_content_db_item_insert_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    background: rgba(66, 66, 66, 0.3);
    will-change: transform;
}

.modal_content_db_file_name {
    font-size: 50px;
    margin-left: auto;
    margin-right: auto;
    will-change: transform;
}

.db_box {
    text-align: center;
}

.modal_content_db_item_form {
    display: none;
    width: 100%;
    height: 100%;
}

.modal_content_db_item_form_input {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.modal_content_db_item_form_input_label {
    width: 100px !important;
    padding: 0px !important;
    max-width: 100px;
    text-align: center;
    justify-content: center;
}