:root {
    --modal-background-100: #F5F5F5;
    --modal-text-100: #E35728;
    --modal-text-101: #3D3D3D;
}

.green-mode {
    --modal-background-100: #F5F5F5;
    --modal-text-100: #E35728;
    --modal-text-101: #3D3D3D;
}

.dark-mode {
    --modal-background-100: #F5F5F5;
    --modal-text-100: #E35728;
    --modal-text-101: #3D3D3D;
}

body:has(.ht-slideup-modal-container) {
    overflow: hidden;
}

.ht-slideup-modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 9999;

    display: flex;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, 0.2);
}

.ht-slideup-content-wrapper {
    background-color: var(--modal-background-100);
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    /* height: 100%; */
    max-height: 85%;
    overflow: hidden;
    padding: 0rem 0.5rem 0.7rem;
    padding-bottom: 0;
    width: 100%;
    transform: translateY(100%);
    transition-duration: 100ms;
}

.ht-slideup-modal-container.active .ht-slideup-content-wrapper {
    transform: translateY(0%);
}

.ht-slideup-content-wrapper > .ht-slideup-slider {
    text-align: center;
    padding-bottom: 0.3rem;
}

.ht-slideup-content-wrapper > .ht-slideup-slider > img {
    max-width: 0.8rem;
}

.ht-slideup-content-wrapper > .ht-slideup-title {
    color: var(--modal-text-101);
    font-family: CenturyGothic-SemiBold;
    padding-bottom: 0.2rem;
} 

.ht-slideup-content-wrapper > .ht-slideup-optionlist {
    height: 100%;
    overflow: auto;
    /* padding-bottom: 1rem; */
}