.simple-modal-overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 20000;
    width: 100vw;
    height: 100vh;
    background: #1e1e1e90;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-modal-container {
    width: 40vw;
    background-color: #1e1e1e;
    color: white;
    display: flex;
    flex-direction: column;
    border: #ddb86c 4px solid;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 3%) 0px 1px 1px, rgb(0 0 0 / 12%) 0px 0px 32px, rgb(0 0 0 / 24%) 0px 0px 1px;
}

.simple-html-modal-container {
    width: calc(70vw - 32px);
    margin-right: 16px;
    min-height: 20vh;
    max-height: 90vh;
    background-color: #1e1e1e;
    color: white;
    display: flex;
    flex-direction: column;
    border: #ddb86c 4px solid;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 3%) 0px 1px 1px, rgb(0 0 0 / 12%) 0px 0px 32px, rgb(0 0 0 / 24%) 0px 0px 1px;
    overflow-y: scroll;
}

.simple-html-modal-container::-webkit-scrollbar {
    width: 6px;
}
.simple-html-modal-container::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #ddb86c;
    width: 6px;
    border-radius: 8px;
    margin-top: 10vh;
}
.simple-html-modal-container::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid #ecab29;
    width: 6px;
    border-radius: 3px;
    margin-top: 10%;
    margin-bottom: 10%;
}
.simple-modal-close-row {
    display: flex;
    width: 100%;
    justify-content: end;
    padding: 10px 20px;
    font-size: 2vw;
    border-radius: 50%;
    flex-direction: row-reverse;
}

.simple-modal-close-button {
    width: 3vw;
    height: 3vw;
    text-align: center;
    line-height: 3vw;
}
.simple-modal-close-button:hover {
    cursor: pointer;
    border-radius: 50%;
    background-color: #4e4e4e;
}

.simple-modal-text-row {
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.8vw;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-flow: wrap;
}
.simple-modal-text-row img {
    padding: 10%;
    padding-bottom: 0;
}

.simple-modal-header-row {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    padding: 0px 15px;
}

@keyframes simple_rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-90deg);
    }
    50% {
        transform: rotate(-180deg);
    }
    75% {
        transform: rotate(-270deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes scale_from_top {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.scalable_image {
    object-fit: cover;
    object-position: right top;
    height: 100%;
}

.star-above-text {
    color: white;

    position: absolute;
    padding: 2px 12px;
    border-radius: 12px;
    border: #65f4de 2px solid;
    font-weight: bold;
    background-color: #1e1e1e85;
    left: 0;
    top: 0%;
    transition: all 500ms;
}

.star-above-text:hover {
    background-color: black;
    cursor: pointer;
}

.text-above {
    position: absolute;
    padding: 2px 5px;
    border-radius: 12px;
    border: #ddb86c 2px solid;
    font-weight: bold;
    background-color: #1e1e1e;
    transition: opacity 300ms;
    text-align: center;
    font-size: 0.9vw;
    z-index: 300;
}

.clicable-icon {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.clicable-icon:hover {
  transform: scale(1.1);
}

.ml-2 {
    margin-left: 1rem;
}

.appear-when-scrolled {
    opacity: 0;
    /* transform: translateY(20px); */
    transition: opacity 600ms ease-out, transform 600ms ease-out;



}