﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: keep-all; /*default: break-all*/
}

.navbar-custom {
    /*background-color: #ff5500;*/
}
    /* change the brand and text color */
    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-text {
        color: rgba(255,255,255,.8);
    }
    /* change the link color */
    .navbar-custom .navbar-nav .nav-link {
        color: rgba(255,255,255,.5);
    }
    /* change the color of active or hovered links */
    .navbar-custom .nav-item.active .nav-link,
    .navbar-custom .nav-item:hover .nav-link {
        color: #ffffff;
    }

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 70px;
    margin-top: 70px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: normal; /* Vertically center the text there */
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}
/* -------------------------------------------------- */

/* --- My Settings ---*/

/*Круглая кнопка*/
/*.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}*/

.btn-circle {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    padding: 0px; /*Для IE*/
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
}

.col-fixed {
    width: 10px;
}

/*.clear_td.table > tbody > tr > td {
  padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border: none;
}*/

/* Отступ в таблицах после заголовка */
/*tbody:before {
    content: "@";
    display: block;
    line-height: 10px;
    text-indent: -99999px;
}*/

.border_bottom {
    border-bottom: 1px solid #ddd;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn-brand {
    color: white;
    background-color: #ff8038;
    /*border-color: #1861ac;*/
}

    .btn-brand:hover {
        color: white;
    }

    .btn-brand:focus {
    }

.brand-color {
    background-color: #ff8038;
}

.text-brand {
    color: #ff8038;
}

.text-blue {
    color: #5a99ee;
}

.text-dark-orange {
    color: #fc6d4c;
}

.color-brand-active {
    color: #ff8038;
}

    .color-brand-active:hover {
        color: #fc6d4c;
    }

.attach-list {
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    border: 1px solid #ced4da;
    background-color: white;
    padding: .375rem .75rem;
    width: 100%;
    overflow-y: scroll;
    cursor: context-menu;
}

.light-link {
    color: white;
}

    .light-link:hover {
        color: white;
    }

/* Chat */

/*.chat-messages {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
}*/

.chat-list {
    padding: 0;
    font-size: .8rem;
}

    .chat-list li {
        margin-bottom: 10px;
        overflow: auto;
        color: #ffffff;
    }

    .chat-list .chat-img {
        float: left;
        margin-top: 1px;
        /* width: 48px;*/
    }

    /*        .chat-list .chat-img img {
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            border-radius: 50px;
            width: 100%;
        }
*/
    .chat-list .chat-message {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background: #5a99ee;
        display: inline-block;
        padding: 10px 20px;
        position: relative;
    }

        .chat-list .chat-message:before {
            content: "";
            position: absolute;
            top: 15px;
            width: 0;
            height: 0;
        }

        .chat-list .chat-message h5 {
            margin: 0 0 5px 0;
            font-weight: 600;
            line-height: 100%;
            font-size: .9rem;
        }

        .chat-list .chat-message p {
            line-height: 18px;
            margin: 0;
            padding: 0;
        }

    .chat-list .chat-body {
        margin-left: 20px;
        float: left;
        width: 70%;
    }

    .chat-list .in .chat-message:before {
        left: -12px;
        border-bottom: 20px solid transparent;
        border-right: 20px solid #5a99ee;
    }

    .chat-list .out .chat-img {
        float: right;
    }

    .chat-list .out .chat-body {
        float: right;
        margin-right: 20px;
        text-align: right;
    }

    .chat-list .out .chat-message {
        background: #ff8038;
    }

        .chat-list .out .chat-message:before {
            right: -12px;
            border-bottom: 20px solid transparent;
            border-left: 20px solid #ff8038;
        }
