/* modal bottom Start */
.panel-bottom {
    display: none;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 500;
    width: 100%;
    background-color: #E3E3E3;
}

.panel-bottom.active {
    display: block;
}

.note-container {
    padding: 20px;
}

.note-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.note-item {
}

.note-detail {
    font-size: 12px;
    line-height: 16px;
}

.note-btn-close {
    margin: auto;
    width: 100%;
    max-width: 17px;
    cursor: pointer;
}

.note-btn-close img {
    margin: auto;
    width: 100%;
}

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

#footer-space-bottom {
    height: 0px;
}

@media(max-width: 640px) {
    .panel-bottom {
        bottom: 40px;
        bottom: 0;
    }

    #footer-space-bottom.active {
        height: 180px;
    }

    .note-container {
        padding: 15px 0px;
    }

    .note-flex {
        flex-direction: column;
        gap: 4px;
    }

    .note-item.part-1 {
        align-self: flex-end;
    }
}

@media(min-width: 641px) and (max-width: 820px) {
    .panel-bottom {
        bottom: 40px;
        bottom: 0;
    }

    #footer-space-bottom.active {
        height: 120px;
    }
}

@media(min-width: 641px) {
    .note-item.part-1 {
        order: 2;
    }

    .note-item.part-1 {
        order: 1;
    }
}

@media(min-width: 821px) {
    #footer-space-bottom.active {
        height: 80px;
    }
}
/* modal bottom End */