﻿#clickableText {
    font-family: 'Oswald';
    color: dimgrey;
    cursor: pointer;
    font-size: small;
    text-decoration: none;
    /* Remove underline */
}

    #clickableText:hover {
        color: #BCB358;
    }

.modalCCM {
    display: none;
    position: absolute;
    top: 5%;
    right: 3%;
    z-index: 100;
    /* Sit on top  */
    min-width: 22%;
    max-width: 22%;
    min-height: 100px;
    height: fit-content;
    overflow: auto;
    /* Enable scroll if needed  */
    background-color: rgb(0,0,0);
    /* Fallback color  */
    background-color: rgba(0,0,0,0.4);
    /* Black w/  opacity */
    border: solid 2px;
    border-color: #BCB358;
    opacity: 0.9;
}

/* Modal Content/Box */
.modal-contentCCM {
    background-color: transparent;
    margin: 0% auto;
    padding: 2px;
    border: none;
    width: 100%;
    height: 100%;
    color: silver;
}

/* The Close Button */
.closeCCM {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .closeCCM:hover,
    .closeCCM:focus {
        color: #BCB358;
        /* deepskyblue; */
        text-decoration: none;
        cursor: pointer;
    }

/*#endregion */

.modal-dialog-right {
    position: fixed;
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    width: 30%;
}

.fade-in-messages-modal {
    animation: fadeIn 1s;
}

.messages-anchor {
    line-height: 21px;
    color: #FFC107;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s ease-in-out;
    background-color: transparent !important;
}

    .messages-anchor:hover {
        outline: none;
        color: #FFC107 !important;
        text-decoration: none;
        transition: transform 0.3s;
        transform: scale(1.1);
        float: left;
    }

    .messages-anchor:focus {
        color: #FFC107 !important;
        text-decoration: none;
        outline: none;
    }

.messages-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}



#messages::-webkit-scrollbar {
    width: 5px;
}


#messages::-webkit-scrollbar-track {
    background-color: transparent;
}

#messages::-webkit-scrollbar-thumb {
    background: #888;
}

    #messages::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


.message-icon-scale {
    transform: scale(0.9) !important;
}

.message-selected {
    border-color: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: none !important;
}

    .message-selected:focus {
        border-color: none !important;
        border: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
        outline: none !important;
    }

    .message-selected:hover {
        font-weight: bold !important;
    }


@media screen and (max-width: 720px) and (min-width: 391px) {
    .loading-icon-mobile {
        display: inline;
    }

    .close-button-toggle {
        padding: 1rem 1rem;
        margin: 0px !important;
    }
}