.my-bttn {
    cursor: pointer;
    background-color: #f5f5f5;
    box-sizing: border-box;
    padding: 3px 5px;
    min-width: 100px;
    min-height: 40px;
    display: inline-block;
}

.my-chat-input:focus, input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.my-message-my {
    justify-content: flex-end !important;
}

.my-message-other {
    justify-content: flex-start !important;
}

.my-message-my .toast, .my-message-my .toast-header {
    background-color: #f8fff4;
}

.my-message-other .toast, .my-message-other .toast-header {
    background-color: #f7f8ff;
}

.my-single-message .my-message-block.delete, .my-single-message .my-message-block.delete .toast-header {
    background-color: #c4c4c1;
}

body.delete .my-chat-window .my-message-block {
    cursor: grab;
}

.my-message-my .my-message-author {
    color: #c89631;
}

.my-message-other .my-message-author {
    color: #53bdeb;
}

body {
    background-color: #efeae2;
}

.my-chat-window {
    background-color: #efeae2;
    background-image: url("/images/bg.png");
}

.my-image-preview {
    max-height: 50px;
}

.my-message-reply {
    max-height: 75px;
    overflow: hidden;
}

.my-message-reply .my-single-message {
    opacity: 0.7;
    justify-content: center !important;
}

.toast-body.my-reply-history {
    background-color: rgba(0, 0, 0, 0.1);
}

.toast-body.my-reply-history .author {
    color: #fff;
    font-size: 0.85rem;
}


.toast-body.my-reply-history .message {
    color: #7d7d7d;
    font-size: 0.80rem;
}

.d-flex .my-hidden {
    display: none !important;
}

em-emoji-picker {
    width: 100%;
}


.my-dropdown.dropdown-toggle::after {
    display: none;
}

.redactor-voice-label {
    display: none;
}


/* Absolute Center Spinner */
.loading {
    display: none;
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: 20px;
    top: 20px;
    left: 20px;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    /* display: block; */
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

.theme_xbox .pace_activity, .theme_xbox .pace_activity::after, .theme_xbox .pace_activity::before, .theme_xbox_lg .pace_activity, .theme_xbox_lg .pace_activity::after, .theme_xbox_lg .pace_activity::before, .theme_xbox_sm .pace_activity, .theme_xbox_sm .pace_activity::after, .theme_xbox_sm .pace_activity::before {
    border-top-color: #0f4418;
}

.my-bttn-logout {
    position: fixed;
    bottom: 260px;
    left: 15px;
    z-index: 999;
    opacity: 0.5;
}

.my-bttn-logout:hover {
    opacity: 1;
}

.my-bttn-logout i {
    font-size: 1.5rem;
}

.my-bttn-load-messages {
    opacity: 0.9;
    background-color: #f5f1eb;
    color: #198754;
}

.my-bttn-load-messages i {
    font-size: 1.5rem;
}

.my-chat-window .my-single-message img {
    border: 3px solid #c8c3c3;
    margin: 2px;
}

.my-is-typing {
    text-align: right;
}

.my-is-typing .name {
    font-size: 0.90rem;
    color: #90949c;
}

.my-is-typing .name, .my-is-typing .tiblock {
    display: inline-block;
}

.tiblock {
    align-items: center;
    display: flex;
    height: 17px;
}

.my-is-typing .tidot {
    background-color: #90949c;
}

.tidot {
    -webkit-animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
    border-radius: 2px;
    display: inline-block;
    height: 4px;
    margin-right: 2px;
    width: 4px;
}

@-webkit-keyframes mercuryTypingAnimation {
    0% {
        -webkit-transform: translateY(0px)
    }
    28% {
        -webkit-transform: translateY(-5px)
    }
    44% {
        -webkit-transform: translateY(0px)
    }
}

.tidot:nth-child(1) {
    -webkit-animation-delay: 200ms;
}

.tidot:nth-child(2) {
    -webkit-animation-delay: 300ms;
}

.tidot:nth-child(3) {
    -webkit-animation-delay: 400ms;
}

.my-controls {
    text-align: right;
    position: relative;
    width: 100%;
    height: 10px;
    bottom: 50px;
}

.my-controls .wrapper {
    margin-right: 10rem;
    position: relative;
}


.my-controls .btn {
    position: relative;
    background-color: #c2473c;
}

.my-controls .btn.delete {
    background-color: #99817f;
}

.my-controls .btn.delete .close {
    position: absolute;
    top: -20px;
    color: #af9997;
}

.my-controls .btn span i {
    font-size: 1.5rem;
}

.my-controls .btn.delete:hover {
    background-color: #af9997;
}

body.initial .my-controls .btn.delete {
    display: none;
}

body.delete .my-controls .btn.delete {
    display: inline-block;
    animation: myAnim 2s ease 0s 1 normal forwards;
}

@keyframes myAnim {
    0% {
        opacity: 0;
        transform: translateY(10px) rotate(200deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

body:not(.delete):not(.initial) .my-controls .btn.delete {
    display: inline-block;
    animation: myAnim2 2s ease 0s 1 normal forwards;
}

@keyframes myAnim2 {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px) rotate(200deg);
    }
}

._my-button-settings {
    background-color: #c2473c;
    opacity: 0.75;
}
._my-button-settings:hover, ._my-button-settings:first-child:active {
    background-color: #c2473c;
    border: 1px solid #c2473c;
    opacity: 1;
}

.my-admin .btn.logout-np {
    background-color: #c2473c;
}

.my-admin .online {
    min-height:100px;
    max-height: 350px;
    font-size: 12px;
}

.my-admin .online .list-group-item {
    padding: 4px 7px;
}

.my-admin .online .list-group-item .logout {
    position: absolute;
    top: -5px;
    right: 5px;
    background-color: #c2473c;
    border: 1px solid #c2473c;
    opacity: 1;
}

.my-admin .online .list-group-item .logout:hover {
    opacity: 0.75;
}

.my-admin .online .list-group-item .logout [class^="icon-"] {
    margin: 0 0.25rem;
}

.modal-dialog .btn {
    background-color: #c2473c;
    border: 1px solid #c2473c;
}

.modal-dialog .btn:active {
    background-color: #c2473c;
    border: 1px solid #c2473c;
    opacity: 0.75;
}