.popup-outer {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    bottom: 0;
    left: 0;
}

.popup-outer[show="false"] {
    display: none;
}

.popup {
    position: relative;
    width: 500px;
    padding: 5px;
    max-height: 70%;
    border-radius: 15px;
    background-color: white;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.25);
    transform: scale(0.8);
}

.popup::-webkit-scrollbar {
    background-color: transparent !important;
    width: 4px !important;
}

.popup::-webkit-scrollbar-track {
    background-color: transparent !important;
}

.popup::-webkit-scrollbar-thumb {
    background-color: #babac0 !important;
    border-radius: 16px !important;
    border: none !important;
}

.popup::-webkit-scrollbar-button {
    display:none !important;
}

.popup[show="true"] {
    transform: scale(1);
}

.popup-title {
    font-family: 'UniChat';
    font-size: 33px;
    font-weight: 600;
}

.popup-text {
    font-family: 'UniChat';
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

ol {
    font-family: 'UniChat'; font-size: 18px; margin: 5px 0px;
}

li {
    line-height: 25px;
}

.transition-0_5 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media screen and (max-width: 750px) {
    .popup {
        width: calc(100% - 16px);
        max-width: 500px;
        height: 0;
        max-height: unset;
        position: absolute;
        bottom: 0;
        border-radius: 15px 15px 0px 0px;
        box-shadow: 0px -2px 4px 2px rgba(0, 0, 0, 0.35);
        background: rgba(255, 255, 255, 1);
        overflow-y: scroll;
        transform: scale(1);
        padding-bottom: 30px;
    }

    .popup[show="true"] {
        height: 450px;
    }
}

.sounds-good-button {
    font-size: 25px;
    font-family: "UniChat";
    color: white;
    background-color: rgba(var(--main-blue), 1);
    border-radius: 10px;
    padding: 5px 10px;
    margin: 5px auto;
    border: none;
    outline: none;
}

.sounds-good-button:hover {
    cursor: pointer;
    background-color: rgb(3, 40, 173);
}

.message-notif {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.message-notif-header {
    display: flex;
    align-items: center;
}

.message-notif-header img {
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 17.5px;
}

.message-notif-header-name {
    font-family: 'UniChat';
    font-weight: 600;
    font-size: 20px;
    color: black;
}

.message-notif-text {
    width: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Fira Sans, Ubuntu, Oxygen, Oxygen Sans, Cantarell, Droid Sans, Apple Color Emoji, Segoe UI Emoji, Segoe UI Emoji, Segoe UI Symbol, Lucida Grande, Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: black;
    line-height: calc(1.5 * 1em);
    margin-top: 7px;
}

.message-notif-buttons {
    width: calc(100% - 9px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 35px;
}

.message-notif-buttons button {
    padding: 5px;
    color: white;
    background-color: black;
    border-radius: 10px;
    font-family: "UniChat";
    font-weight: 500;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}