﻿.relative {
    position: relative
}

#loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    width: 100%;
    height: 100%;
}

    #loading::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.19);
    }

    #loading > figure {
        height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 100;
        transform: translateX(-50%);
    }

        #loading > figure > img {
            height: auto;
            object-fit: cover;
            text-align: center;
            margin: 0 auto;
        }

        #loading > figure > figcaption {
            text-align: center;
            margin: 10px auto;
            padding: 10px 0;
            color: #000;
        }

.btn-comment-send {
    margin-top: 12px;
    width: 100%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: #08a4f5;
    transition: all .3s;
}

#tbl-price {
    border-collapse: collapse;
    width: 100%;
}

    #tbl-price td, th {
        border: 1px solid #dddddd;
        text-align: center;
        padding: 8px;
    }

    #tbl-price tr:nth-child(even) {
        background-color: #dddddd;
    }

.user-icon {
    background-color: #ff008f;
    color: #fff;
    padding: 2px 3px;
    width: 100%;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
}
    .user-icon img {
        border-radius: 50%;
        margin-left: 7px;
        width: 33px;
        height: 33px;
    }
.badge-message {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    color: white;
    text-align: center;
    padding: 10px;
    background: #258dce;
    border-radius: 50%;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}