﻿body {
}


@media (max-width: 767px) {
    #chatButton {
        display: none !important;
    }
}

html {
    scrollbar-gutter: stable;
}

.drpdown {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

@media (max-width:768px) {
    .mobile-login-header.bgcol {
        padding: 0 !important;
    }

    .navbar-light.main-menu {
        position: absolute !important;
        right: 0;
    }
}

.mobile-login-header.bgcol {
    max-width: 100% !important;
}

.mobile-login-header.bgcol {
    margin: 0px !important;
}

.feedbacktext::-webkit-scrollbar {
    width: 8px;
}

.feedbacktext::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.feedbacktext::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.feedbacktext {
    resize: none;
    width: 100%;
    background: transparent;
    border-radius: 0.5rem;
    border-color: #515a65 !important;
    padding: 1rem;
    color: #fff;
    border: solid 2px;
    outline: unset;
    height: 9rem;
    font-size: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f0f0f0;
}

textarea.feedbacktext :: {
    color: #858585;
}

.feedbackdiv {
    background: #061323;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 400px;
    position: relative;
}

.star {
    color: #FFB400 !important;
    cursor: pointer;
    font-size: 2rem;
}

.feedbackposi {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    z-index: 999999;
    background-color: rgba(0,0,0,0.7);
}

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 0rem;
}

.submitbutton {
    background: linear-gradient(92.23deg, #FF56F6 21.43%, #B936EE 50.63%, #273571 100%, #0F1F61 117.04%);
    border: 0;
    padding: 0.4rem 2rem;
    color: #ffffff;
    border-radius: 0.5rem;
}

.cancelbutton {
    background: transparent;
    color: #fff;
    padding: 0.4rem 2rem;
    border-radius: 0.5rem;
    border: solid 2px blueviolet !important;
    margin-right: 1rem;
}

.submitcancel {
    display: flex;
    justify-content: end;
}

.cancelbuttonfeedback {
    background: unset;
    border: unset;
    margin-left: auto;
    display: block;
    color: #fff;
    font-size: 2.3rem;
    position: absolute;
    top: -0.5rem;
    right: 0.5rem;
}

.justifyfixed {
    justify-content: center !important;
}

.chatRoomHeading {
    display: flex;
    width: 100%;
    background: #fff;
}


.fon-450 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.input-validation-error {
    display: block;
    color: red;
}



.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}


@media (max-width: 767px) {
    .message-container {
        height: 190px;
    }

    .chat-popup {
        top: 23% !important;
    }
}

@media (max-height:550px) {
    .chat-popup .message-container {
    height:100px !important;
    }

        .chat-popup .message-container #messagesList {
        min-height: unset !important;
        }
}

.brdunset {
    border: unset !important;
}

.opac {
    opacity: unset !important;
}

.closedd {
    height: 26px !important;
    margin-top: 6px !important;
    margin-right: 6px !important;
}

.closeddfixed {
    height: 25px !important;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}


/*Global chat box*/
.global-chat-box {
    background-color: blue;
    position: fixed;
    top: 50%;
    right: 0%;
    width: 370px;
}

.form-container.width-for-chat-global {
    /*max-width: 250px;*/
    /*max-width: 300px;*/
}



/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    background-color: #000;
    color: white;
    border: solid 2px #5B6384;
    cursor: pointer;
    position: fixed;
    top: 82%;
    right: 2%;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    box-shadow: -5px 0px 10px rgb(0 0 0 / 5%);
}

    .open-button:focus {
        outline: none;
    }

.open-button-team {
    background-color: #ffffff;
    color: white;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 60%;
    right: 0%;
    width: 58px;
    height: 40px;
    border-radius: 25px 0px 0px 25px;
    box-shadow: -5px 0px 10px rgb(0 0 0 / 5%);
}

    .open-button-team:focus {
        outline: none;
    }
/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    top: 20%;
    position: fixed;
    right: 6%;
    z-index: 9;
    box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    /*border-radius: 15px 0px 0px 15px;*/
    width: 300px;
}




/* Hide the scrollbar */
.scrollable-content {
    scrollbar-width: thin; /* For Mozilla Firefox */
    scrollbar-color: transparent transparent; /* For Mozilla Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

    /* Hide the scrollbar for WebKit-based browsers (Chrome and Safari) */
    .scrollable-content::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }






/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
    /*border-radius: 0px 0px 0px 15px;*/
    background-color: #fafafa;
}

    /* Full-width textarea */
    .form-container textarea {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
        resize: none;
        min-height: 200px;
    }

        /* When the textarea gets focus, do something */
        .form-container textarea:focus {
            background-color: #ddd;
            outline: none;
        }

    /* Set a style for the submit/send button */
    .form-container .btn {
        background-color: #4CAF50;
        color: white;
        padding: 5px 5px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    /* Add a red background color to the cancel button */
    .form-container .cancel {
        background-color: red;
        margin-bottom: 4px !important
    }

    /* Add some hover effects to buttons */
    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }

.message-container {
    overflow-y: scroll;
    height: 300px;
    width: 100%;
}



/*    .userNameClass {
            font-weight: 700;
            font-size: 12px;
            margin-top: 15px;
        }*/





.userNameClass {
    font-weight: 500;
    font-size: 16px;
    font-family: poppins;
}






/*BOC Shubham*/
ul#subscription li {
    padding: 0px 20px !important;
}

    ul#subscription li a {
        padding-left: 0px !important;
    }
/*EOC Shubham*/
.messageClass {
    font-size: 16px;
    text-align: left;
    overflow-wrap: anywhere;
    font-weight: 100;
    font-family: poppins;
    /* border-bottom: 1px solid #ddd; */
    /*  background: #0c2c53; */
    /*border-radius: 15px;*/
    /*padding: 10px;*/
    /* color: #ffffff;*/
    /*  margin-left: 10px;
            margin-right: 10px;*/
    /*margin-top: 5px;*/
}

.global-chat-box-content-head {
    width: 100%;
    /*height: 63.39px;*/
    background: #ffffff;
    /* border: 2px solid blue; */
    color: #000;
    text-align: center;
    line-height: 63.39px;
    /*border-radius: 15px 0px 0px 0px;*/
    font-size: 13px;
    /*font-family: Arial, Helvetica, sans-serif;*/
    /* box-shadow: 18px 12px 21px 0px #000;
            border: 1px solid #aba7a7b3;*/
    font-size: 1.4rem;
    font-family: poppins;
}

.input-for-global-chat {
    border-top: none;
    border-left: none;
    border-right: none;
    border: 0;
}

    .input-for-global-chat:focus-visible {
        border-top: none;
        border-left: none;
        border-right: none;
        outline: none;
    }


.input-for-global-chat-bg {
    background-color: #ffffff;
    padding: 5px;
    border-radius: 1.5rem;
    border: solid 2px;
    margin: 0 0.5rem;
}


.modalhei {
    min-height: unset !important;
}

#messageInput {
width:100%;
}

@media (max-width:768px){
    .mob-enterprise-name {
        display: none;
    }
}

.lay.mar-38 {
    margin-top:3.8rem !important;
}

.navCollapse {
    line-height: 1;
}

.collapseIcon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #838991;
    border-radius: 50%;
    right: -0.3rem;
    width: 1.2rem;
    text-align: center;
    height: 1.2rem;
    line-height: 1;
    /*opacity: 0.5;*/
    font-size: 1.1rem;
    color: #000 !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border:solid 0.5px #000;
}


.navigation-con {
    position: relative;
}

@media (min-width: 992px) {
    .lay.body-content.container.mar55px {
        margin-left: 55px !important;
    }
}
.lay.body-content.container {
    flex-grow: 1;
    width: 87% !important;
}

#navbarsExample09.bg-nav-side {
    transition: width 0.5s ease;
}

.bg-nav-side.animate-width-55 {
    width: 55px !important;
    transition: width 0.5s ease;
}


@media (max-width:991.5px) {
    .collapseIcon {
    display:none !important;
    }
}

body {
    background-image: linear-gradient(0deg, rgba(6, 19, 35, 0.2), rgba(6, 19, 35, 0.2)),linear-gradient(117.49deg, rgba(84, 39, 13, 0.3) 14.44%, rgba(134, 92, 252, 0.3) 47.48%, rgba(0, 0, 0, 0.18) 76.59%, rgba(0, 0, 0, 0.3) 109.94%);
    background-color: #061323;
    background-attachment: fixed;
}

.top-fixed-layout {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0%;
    z-index: 8;
}

.mob-enterprise-name {
font-size:1.3rem;
font-weight:600;
}

textarea#comment::placeholder {
color:#fff;
}