html {
  font-size: 14px;
}
.form-check-label {
  margin-right: 25px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px)
  {
  .newPost-content {
      height: 340px;
      overflow: hidden;
  }
  .newProduct-content {
      height: 340px;
      overflow: hidden;
  }
  .newRegister-content {
      height: 340px;
      overflow: hidden;
  }
  .newBooking-content {
      height: 340px;
      overflow: hidden;
  }
  .newOrder-content {
      height: 340px;
      overflow: hidden;
  }
  .newCustomer-content {
      height: 340px;
      overflow: hidden;
  }
}
.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 {
  margin-bottom: 0px;
}
.content .row {
  padding-left:0 !important;
  padding-right:0 !important;
}
.content .row>* {
  padding:10px !important;
}
.sidebar-footer{
    position: absolute;
    left: 0;
    bottom:80px;
}
.btn-setting
{
  display: flex;
  background-color: #08f;
}
.sidebar-footer a{
  text-align: center;
  color: #fff;
}
#drop_file_zone {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 0 0 10px;
  margin: 0 auto;
  font-size: 12px;
  background-color: #fff;
  border: #999 1px dashed;
}
#drag_upload_file {
  display: block;
  width: 105px;
  height: 40px;
  margin: 0 auto;
}
#drag_upload_file #btnUpload {
  position: absolute;
  width: 90%;
  height: 30px;
  left: 5%;
  bottom: 10px;
  padding: 0 !important;
}
#drag_upload_file #selectfile {
  display: none;
}
.box-post-item {
  width: 100%;
  height: 100px;
}
.box-post-item img{
    float: left;
    margin-right: 15px;
    display: block;
    border: 1px solid #eee;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 75px;
    height: 75px;
}
.box-post-item .box-post-title {
  display: block;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 13px;
}
.box-product-item {
  width: 100%;
  height: 100px;
}
.box-product-item img{
    float: left;
    margin-right: 15px;
    display: block;
    border: 1px solid #eee;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 75px;
    height: 75px;
}
.box-product-item .box-product-title {
  display: block;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 13px;
}


/* gemni chat */
.parent-container {
  display: grid;
  grid-template-areas: "overlay";
  place-items: center; /* Centers the content within the grid area */
}

.parent-container > * {
  grid-area: overlay;
}
.btn-chat {
  position: fixed;
  bottom: 10px; 
  right: 10px; 
  z-index: 99; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  border-radius: 50%;
  background-color: #04AA6D; /* Set a background color */
  color: #fff; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transition: all 0.5s;
}

.btn-chat span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn-chat span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn-chat:hover span {
  padding-right: 25px;
}

.btn-chat:hover span:after {
  opacity: 1;
  right: 0;
}
.btn-chat:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
.msg-text
{
  color: #555;
}
    .msger {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        width: 100%;
        max-width: 867px;
        margin: 25px 10px;
        height: calc(100% - 50px);
        border: var(--border);
        border-radius: 5px;
        background: var(--msger-bg);
        box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
    }

    .msger-header {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border-bottom: var(--border);
        background: #eee;
        color: #666;
    }

    .msger-chat {
        flex: 1;
        overflow-y: auto;
        padding: 10px;
    }

        .msger-chat::-webkit-scrollbar {
            width: 6px;
        }

        .msger-chat::-webkit-scrollbar-track {
            background: #ddd;
        }

        .msger-chat::-webkit-scrollbar-thumb {
            background: #bdbdbd;
        }

    .msg {
        display: flex;
        align-items: flex-end;
        margin-bottom: 10px;
    }

        .msg:last-of-type {
            margin: 0;
        }

    .msg-img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        background: #ddd;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 50%;
    }

    .msg-bubble {
        max-width: 450px;
        padding: 15px;
        border-radius: 15px;
        background: var(--left-msg-bg);
    }

    .msg-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .msg-info-name {
        margin-right: 10px;
        font-weight: bold;
    }

    .msg-info-time {
        font-size: 0.85em;
    }

    .left-msg .msg-bubble {
        border-bottom-left-radius: 0;
    }

    .right-msg {
        flex-direction: row-reverse;
    }

        .right-msg .msg-bubble {
            background: var(--right-msg-bg);
            color: #fff;
            border-bottom-right-radius: 0;
        }

        .right-msg .msg-img {
            margin: 0 0 0 10px;
        }

    .msger-inputarea {
        display: flex;
        padding: 10px;
        border-top: var(--border);
        background: #eee;
    }

        .msger-inputarea * {
            padding: 10px;
            border: none;
            border-radius: 3px;
            font-size: 1em;
        }

    .msger-input {
        flex: 1;
        background: #ddd;
    }

    .msger-send-btn {
        margin-left: 10px;
        background: rgb(0, 196, 65);
        color: #fff;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.23s;
    }

        .msger-send-btn:hover {
            background: rgb(0, 180, 50);
        }

    .msger-chat {
        background-color: #fcfcfe;
    }

    .imgLoader {
        height: 100px;
        position: relative;
        left: 55px;
        top: -40px;
    }