html {
  font-size: 14px;
}
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: iransansx-medium;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  height:100%;
}

.layout-menu-fixed .layout-navbar-full .layout-menu,
.layout-menu-fixed-offcanvas .layout-navbar-full .layout-menu {
    top: 62px !important;
}

.layout-page {
    padding-top: 62px !important;
}

.content-wrapper {
    padding-bottom: 38.9375px !important;
}

a:hover {
    color:mediumaquamarine !important;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.dataTables_filter {
    margin-bottom: 10px;
}

.dataTables_filter input {
    margin-right: 10px;
}

#chat-circle {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #007bff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 24px;
    z-index: 1000;
}

.chat-box {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 350px;
    max-width: 85vw;
    max-height: 500px;
    background: #fff;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0px 5px 35px 9px rgba(0,0,0,0.1);
}

.chat-box-header {
    background: #007bff;
    height: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
}

.chat-box-body {
    height: 350px;
    overflow-y: auto;
    padding: 15px;
    background: #f7f9fb;
}

.chat-msg {
    margin-bottom: 15px;
}

.cm-msg-text {
    padding: 10px;
    border-radius: 10px;
    background: white;
    color: #555;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
    white-space:pre-line;
}

.chat-msg.user .cm-msg-text {
    background: #007bff;
    color: white;
    text-align: right;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #eee;
}

#chat-input {
    width: 80%;
    border: none;
    outline: none;
    padding: 5px;
}

.chat-submit {
    background: none;
    border: none;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
}