html {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 100%;
    min-width: 100%;
}

body {
    font-family: sans-serif !important;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container:before,
.container:after {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid:before,
.container-fluid:after {
    content: " ";
    display: table;
}

.container-fluid:after {
    clear: both;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.block-center {
    margin: 0 auto;
    text-align: center;
    display: block !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bold {
    font-weight: bold;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

i {
    cursor: pointer;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: #000;
}

a:disabled {
    cursor: not-allowed !important;
}

a:hover {
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

input {
    border: 0px none;
    background: transparent;
    outline: none;
}

.responsive-img {
    width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.inputbox {
    display: block;
    position: relative;
    padding-left: 2em;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
}

/* Hide the browser's default checkbox */
.inputbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #cdcdcd;
}
.checkmark_radio {
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.inputbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.inputbox input:checked ~ .checkmark {
    background-color: #2196F3;
}
.inputbox input:disabled ~ .checkmark {
    cursor: not-allowed;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.inputbox input:checked ~ .checkmark::after {
    display: block;
}

/* Style the checkmark/indicator */
.inputbox .checkmark::after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.inputbox .checkmark_radio::after {
    left: 4px;
    top: 4px;
    width: 5px;
    height: 5px;
	border-radius: 50%;
	background: white;
}



.input-block {
    position: relative;
    display: block;
    margin: 1%;
}

.input-block select:focus~.floating-label,
.input-block select:not(:focus):not(.ng-empty)~.floating-label,
.input-block input:focus~.floating-label,
.input-block input:not(:focus):not(.ng-empty)~.floating-label {
    top: -5px;
    bottom: 5px;
    left: 0px;
    font-size: 9px;
    opacity: 1;
    font-weight: bolder;
    color: #787676;
}

.input-block input[type="date"]~.floating-label {
    top: -5px;
    bottom: 5px;
    left: 0px;
    font-size: 9px;
    opacity: 1;
    font-weight: bolder;
}

.input-block input:not([type]),
.input-block input[type="email"],
.input-block input[type="number"],
.input-block input[type="password"],
.input-block input[type="tel"],
.input-block input[type="url"],
.input-block input[type="text"],
.input-block input[type="date"],
.input-block select {
    font-size: 14px;
    height: 35px;
    border-bottom: 1px solid #787676;
    width: 100%;
    color: #787676;
    transition: color 0.3s 0.15s;
}

.input-block input[type="date"] {
    height: 37px;
}

.input-block select {
    height: 39px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid;
}

.input-block .floating-label {
    color: #787676;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: 15px;
    transition: 0.2s ease all;
}

.filter.input-block {
    margin: 0;
}

textarea:disabled,
input:not([type]):disabled,
input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="time"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled {
    cursor: not-allowed;
}

/*placeholder css*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: #787676 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
    /* Firefox 18- */
    color: #787676 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    /* Firefox 19+ */
    color: #787676 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: #787676 !important;
}

/*auto fill css*/

input::-webkit-input-autofill,
textarea::-webkit-input-autofill,
select::-webkit-input-autofill {
    background: rgba(146, 135, 187, 0.8) !important;
}

input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
    /* Firefox 18- */
    background: rgba(146, 135, 187, 0.8) !important;
}

input::-moz-autofill,
textarea::-moz-autofill,
select::-moz-autofill {
    /* Firefox 19+ */
    background: rgba(146, 135, 187, 0.8) !important;
}

input:-ms-input-autofill,
textarea:-ms-input-autofill,
select:-ms-input-autofill {
    background: rgba(146, 135, 187, 0.8) !important;
}

select {
    outline: none;
    width: 100%;
}

input.ng-invalid-pattern:not(.ng-pristine),
input.ng-invalid-pattern:not(.ng-pristine)+span,
input.ng-invalid-required:not(.ng-pristine),
input.ng-invalid-required:not(.ng-pristine)+span,
input.ng-invalid-minlength:not(.ng-pristine),
input.ng-invalid-minlength:not(.ng-pristine)+span {
    border-color: #ff0000 !important;
    color: #ff0000 !important;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

p {
    color: #000;
    word-wrap: break-word;
}

.pointer-cursor {
    cursor: pointer;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right !important;
}

/*menu*/

header {
    padding: 1%;
    box-shadow: 0 0px 0px #e1dfdf, 0 1px 1px #e1dfdf;
    position: fixed;
    left: 15%;
    right: 0;
    top: 0;
    z-index: 1024;
    background: #fff;
}

.select_menu {
    background: #f7f6f6;
    padding: 2% 3%;
    color: #707070;
    border-radius: 5px;
    line-height: 2;
}

.user_name {
    background: #0072bc;
    padding: 1.5%;
    color: #fff;
    border-radius: 5px;
}

.left_menu {
    box-shadow: 1px 0px 0px #e1dfdf, 1px 0px 1px #e1dfdf;
    width: 15%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}

.img {
    width: 50%;
    height: auto;
    padding: 10%;
}

.image {
    width: 50%;
    height: auto;
    padding: 10%;
}

.left_menu_list li {
    margin: 10%;
    background: #e8e6e5;
    cursor: pointer;
    text-align: left;
}

.left_menu_list li a {
    padding: 5%;
    display: block;
}

.left_menu_list li.active {
    background: #cdcdcd;
}

.logout {
    position: fixed;
    left: 2%;
    bottom: 3%;
    cursor: pointer;
}

.menu_icon {
    margin: 0 5px;
}

.menu_text {}

/*menu end*/

/*dashboard*/

.right_wrapper {
    margin: 7% 3% 0% 18%;
}

.count_wrapper {
    margin-top: 2%;
    padding: 3% 0%;
    box-shadow: 1px 1px 0px #d9edf7, -1px -1px 1px #d9edf7;
}

.dashboard_no {
    margin: 5%;
    font-weight: bold;
    font-size: 1.5rem;
}

.dashboard_text {
    margin: 5%;
    font-weight: bold;
    font-size: 12px;
}

.q_by_status {
    margin: 4% 2% 0% 0%;
    box-shadow: 1px 1px 0px #d9edf7, -2px -2px 1px #d9edf7;
    border-radius: 5px;
}

.q_by_time {
    margin: 4% 0% 0% 2%;
    box-shadow: 1px 1px 0px #d9edf7, -2px -2px 1px #d9edf7;
    border-radius: 5px;
}

.q_head {
    background: #d9edf7;
    padding: 1%;
    font-size: 13px;
    border-radius: 5px 5px 0px 0px;
}

.refresh {
    background: #787676;
    padding: 1%;
    color: #fff;
}

.week_wise {
    background: transparent;
    box-shadow: 1px 1px 0px #e1dfdf, -1px -1px 1px #e1dfdf;
    border-radius: 5px;
    padding: 1%;
}

.chart_wrapper {
    margin-bottom: 2%;
}

.q_form_wrapper {
    border-right: 1px solid #e1dfdf;
    margin-top: -10%;
    height: 100%;
}

.q_form {
    padding-top: 10%;
}

/*dashboard end*/

.q_right_wrapper {
    margin: 6% 0% 0% 15%;
}

.progressbar {
    display: inline-flex;
    position: relative;
    /*flex-flow: column nowrap;*/
    background: none;
    z-index: 2;
}

.progressbar li {
    margin: 40px;
    border: 1px solid #0000ff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: block;
    cursor: pointer;
}

.progressbar li.active {
    background: #0000ff;
    color: #fff;
}

.progressbar li:nth-child(1)::after {
    width: 36%;
    height: 1px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 32%;
    z-index: 1;
    background-color: #0000ff;
    content: " ";
}

.form {
    /* padding: 5% 10%; */
    padding: 2% 15%;
}

.form .input-block {
    /* margin-top: 2%;
    margin-bottom: 4%; */
    margin-top: 1%;
    margin-bottom: 1%;
}

.difficulty {
    /* margin: 4% 0; */
    margin-top: 2%;
}

.difficulty_q {
    display: inline-flex;
    position: relative;
}

.difficulty_q li {
    /*border: 1px solid #0000ff;*/
    border-radius: 50%;
    height: 30px;
    width: 40px;
    line-height: 30px;
    display: block;
    margin: 4% 3%;
    cursor: pointer;
}

/*.difficulty_q li:focus {
    background: #0000ff;
    color: #fff;
}*/

.line_height_3 {
    line-height: 3;
}

.right_form_wrapper {
    padding: 3%;
}

hr {
    border-color: #e1dfdf;
    margin: 0;
    height: auto;
    padding: 0;
}

.feedback_box {
    height: 60vh;
    overflow: auto;
}

.feedback {
    margin: 4% 0%;
    box-shadow: 1px 1px 0px #0072BC, 0px 0px 2px #0072BC;
    border-radius: 5px;
    margin: 2%;
}

.feedback_head {
    background: #0072BC;
    padding: 1%;
    font-size: 13px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    margin-bottom: 20px;
}

.feedback_padding {
    padding: 3%;
}

.save {
    padding: 15px 20px;
    background: #0072bc;
    border-radius: 5px;
    color: #fff;
}

.submit {
    padding: 15px;
    background: #0072bc;
    border-radius: 5px;
    color: #fff;
}

a.submit,
a.greenbtn,
a.bluebtn {
    padding: 3px;
    font-size: 13px;
}

/* a.submit i,
a.greenbtn i,
a.bluebtn i {
    cursor: none !important;
} */

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn_tbl {
    padding: 3px;
    margin-top: 10px;
    display: block;
}

.btn_tbl_n {
    padding: 3px;
    display: inline;
    font-size: 13px;
}

.btn_options {
    /* background: #d3d3d3; */
    background: #eee;
    padding: 5%;
    width: 90%;
    margin: 2%;
    border-radius: 5px;
    position: relative;
}

.btn_options .img_preview {
    height: 40px;
    width: 40px;
    border: 1px solid #ccc;
    margin-left: 10px;
    border-radius: 5px;
    padding: 1%;
    position: absolute;
    left: -5px;
    top: 4px;
    max-width: 60px;
}
.btn_options .img_preview1 {
    height: 40px;
    width: 40px;
    border: 1px solid #ccc;
    margin-left: 10px;
    border-radius: 5px;
    padding: 1%;
    position: absolute;
    left: 55px;
    top: 4px;
    max-width: 60px;
}
.btn_options.set {
    background: #90ee90;
}

.btn_options span {
    display: inline-block;
}

.btn_options.empty {
    background: transparent;
    border: 1px dashed #d3d3d3;
}

.leaderboard {
    padding: 5%;
}

.lead_border {
    border-bottom: 1px solid #d3d3d3;
}

.btn_wrapper {
    margin-top: 2%;
    padding: 1%;
}

.photo_wrapper {
    padding: 5% 10%;
    margin-top: 0%;
}

.ref_img {
    width: 50%;
    height: auto;
    max-width: 150px;
}

.illu_wrapper {
    margin-top: 0;
    padding: 0% 10%;
}

.gray {
    color: #7d7d7d;
}

.green {
    color: #008000;
}

.greenbtn {
    padding: 15px;
    background: #008000;
    border-radius: 5px;
    color: #fff;
}

.bluebtn {
    padding: 15px;
    background: #0000ff;
    border-radius: 5px;
    color: #fff;
}

.whitebtn {
    /* padding: 15px;
    background: #fff;
    border-radius: 5px;
    color: #000;
    border: 1px solid #d3d3d3; */
    padding: 15px;
    background: #0072bc;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #0072bc;
}

.estimate_bg {
    background: #f7f6f6;
    border: 1px dashed #cdcdcd;
    border-radius: 5px;
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.remarks {
    padding: 5%;
}

.blur {
    cursor: pointer;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 5555;
}

.popup {
    background: #fff;
    z-index: 6666;
    color: #000;
    position: fixed;
    margin: 0px auto;
    /*overflow: auto;
    overflow-x: hidden;*/
    text-align: center;
    border-radius: 5px;
    left: 0;
    right: 0;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    top: 15%;
    width: 30%;
}

.popup-confirm {
    padding: 2%;
}
.blur.confirm{
    z-index: 6666;
}

.reviewInput {
    height: 300px;
    overflow: auto;
}

.popup-full {
    width: 100%;
    top: 0;
    padding: 1%;
    border-radius: 0;
    overflow: scroll;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

.popup2 {
    background: #fff;
    z-index: 6666;
    color: #fff;
    position: fixed;
    margin: 0px auto;
    text-align: center;
    border-radius: 5px;
    left: 0;
    right: 0;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    top: 1%;
    width: 60%;
}

.paddin-fix {
    padding: 2%;
}

.two_textarea {
    margin: 1px;
}

.black {
    color: #000;
}

.upload_hint {
    font-size: 0.6rem;
    padding: 2%;
    font-weight: bold;
    font-family: arial;
    text-align: center;
}

.que_wrapper {
    /* padding: 5%; */
    padding: 1% 5%;
}

.width_100 {
    width: 100px !important;
    float: left;
    margin-left: 1%;
}

.filter_i {
    float: left;
    line-height: 3;
}

.table_filter {
    /* border-bottom: 1px solid #d0d0d0; */
    border-bottom: 1px solid #0072bc;
    margin-top: 1%;
    /*padding: 0% 2%;*/
}

.table-fix-w {
    width: 50% !important;
}

.table_filter li {
    display: inline-flex;
    padding: 2%;
    cursor: pointer;
}

.table_filter li a {
    /* color: #87ceeb; */
    color: #0072bc;
}

.table_filter li.active a {
    color: #000;
}

.table_filter li.active {
    border-bottom: 0 !important;
    /* border: 1px solid #d0d0d0; */
    border: 1px solid #0072bc;
    border-radius: 5px 5px 0 0;
}

.table-header {
    margin: 0px 15px 0;
    text-align: center;
    border-radius: 3px;
    background: rgb(246, 137, 31);
    box-shadow: 0 12px 20px -10px rgba(244, 67, 54, 0.28), 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(244, 67, 54, 0.2)
}

.table-header h1 {
    padding: 1%;
}

table {
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    /*border: solid thin #999999;*/
    margin: 0 auto;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

table tr {
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    padding: 5px;
    border-bottom: 1px solid #d3d3d3;
}

table th,
table td {
    padding: 10px;
    text-align: center;
}

table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
}

table th:nth-child(1) {
    text-align: center;
}

table th:nth-child(6) {
    text-align: center;
}

table th:nth-child(7) {
    text-align: center;
}

table th:nth-child(8) {
    text-align: center;
}

thead {
    border-bottom: 2px solid #d3d3d3;
    /*border-top: 2px solid #f11D50;*/
}

table tbody tr td {
    text-align: left;
}

table tbody tr td:nth-child(1) {
    text-align: center;
}

table tbody tr td:nth-child(6) {
    text-align: center;
}

table tbody tr td:nth-child(7) {
    text-align: center;
}

table tbody tr td:nth-child(8) {
    text-align: center;
}
/* .sub_table th:nth-child(1),.sub_table td:nth-child(1) {
    width: 75px;
    text-align: center;
    display: block;
}
.sub_table th:nth-child(2),.sub_table td:nth-child(2) {
    width: 83px;
} */
.login_center {
    margin-top: 15%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_wrapper {
    background: #f7f6f6;
    border-radius: 5px;
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 3% 2%;
}

.loginbtn {
    padding: 3% 5%;
    background: #fff;
    border-radius: 5px;
    color: #000;
    -webkit-box-shadow: inset 0px 0px 9px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.login_size {
    margin-top: 10%;
    margin-bottom: 5%;
}

.hint {
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 2% 3%;
    border-radius: 5px;
    background: #f7f6f6;
    margin-bottom: 10px;
}

.greenHint {
    background: #90ee90;
}

.insertimg_wrapper {
    height: auto;
    padding: 3%;
}

.upload_img {
    margin-top: 5%;
    margin-bottom: 1%;
}

.width_180 {
    width: 180px !important;
}

.icon_btn i {
    padding: 2%;
    border: 1px solid #d3d3d3;
    margin: 2% 0%;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #428bca;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-right-color: rgb(221, 221, 221);
    border-bottom-color: rgb(221, 221, 221);
    border-left-color: rgb(221, 221, 221);
    margin-left: -1px;
}

.bar {
    display: none;
}

.hide {
    display: none !important;
}

/*message block start*/

#messages {
    position: fixed;
    top: 60px;
    right: 0;
    color: #fff;
    z-index: 9999;
}

#errorMessageDiv {
    background: rgba(255, 165, 0, 0.8);
    padding: 10px;
    border-radius: 5px 0px 0px 5px;
    margin: 5px 0px;
}

#successMessageDiv {
    background: rgba(9, 173, 9, 0.8);
    padding: 10px;
    border-radius: 5px 0px 0px 5px;
    margin: 5px 0px;
}

/*end*/

.cke_dialog_ui_vbox.cke_dialog_page_contents>table>tbody>tr:last-child {
    display: none !important;
}

.btn_absolutediv {
    position: absolute;
    right: 2%;
}

table.sub-tables>tbody>tr>td>table>tbody>tr:last-child {
    border-bottom: 0
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-default:hover,
.open>.btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 7;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
}

.open>.dropdown-menu {
    display: block;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #777;
    white-space: nowrap;
}
.datepicker .dropdown-menu>li>a {
    cursor: pointer;
}
.datepicker .dropdown-menu {
    display: unset;
    overflow: auto;
    max-height: 8.8em;
}
.graph_filter_block{
    background: #eee;
    padding: 1em;
    text-align: center;
}
.pages {
    margin-top: 5%;
    float: right;
}

.page-number {}

.pagenumber {
    margin-right: 5px;
}

.page-select {
    float: left;
    width: auto;
    height: 45px;
    margin-right: 10px;
}
.page-select.max_width{
    max-width: 15em;
}
/*Page Loader*/

.loader {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 5555;
}

.sk-cube-grid {
    width: 40px;
    height: 40px;
    top: 50%;
    position: fixed;
    left: 50%;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #333;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

.chart-block {
    margin: 5%;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 1px 1px 0px #d9edf7, -1px -1px 1px #d9edf7;
}

.chart-header {
    background: #eee;
    padding: 2%;
    line-height: 2;
}

.chart-body {
    padding: 2%;
    margin: 1%;
}

.chart-header select {
    float: right;
    width: 20%;
}

.ql-editor-preview {
    line-height: inherit !important;
    height: inherit !important;
    padding: inherit !important;
    overflow-y: unset !important;
}

.sum-data {
    border: 1px solid #d3d3d3;
    font-weight: bold;
}

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    text-align: center;
    padding: 10px;
    margin: 10px;
}

.ref_img {
    height: 150px;
    width: 150px;
    padding: 2%;
    border: 1px solid;
}

.popup .ref_img {
    border: none;
}

.drop-box.dragover {
    border: 5px dashed blue;
}

/* Tooltip container */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #0072bc;
    /* If you want dots under the hoverable text */
}

/* Tooltip text */

.tooltip .tooltiptext {
    box-shadow: 1px 2px #ccc;
    visibility: hidden;
    width: 115px;
    background-color: #0072bc;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

.tooltip .tooltip-top {
    bottom: 125%;
    left: 50%;
    margin-left: -58px;
}

.tooltip-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0072bc transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.img_preview {
    height: 40px;
    width: auto;
    border: 1px solid #ccc;
    margin-left: 10px;
    border-radius: 5px;
    padding: 3%;
}

.question_mode  {
    display: inline-flex;
}
.question_mode  .inputbox{
    margin-right: 1em;
}

.display_image {
    height: 100px;
    width: 100px;
}

.expand_btn {
    text-align: center;
    border: 1px solid #ccc;
    padding: 3%;
    font-size: 1.2rem;
    float: right;
    color: #0072bc;
}

.privew_max {
    /* max-height: 100vh; */
    overflow: auto;
}

.btn_comment {
    text-align: right;
}

.ql-container .ql-editor {
    min-height: 100px;
}

.los-list {}

.los-list li {
    list-style-type: circle;
    padding: 1%;
    margin: 1%;
    margin-left: 1rem;
}


.chat_box {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 0.5em;
    border-radius: 5px;
}

.chat_head {
    background: #ccc;
    padding: 0.5em;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.2em;
}

.chat_body {
    max-height: 50vh;
    overflow-y: auto;
}

.chat {
    float: left;
    padding: 0.5em;
    margin-bottom: 0.5em;
    background: #ccc;
    width: 70%;
}

.chat.me {
    float: right;
}

.chat.mark {
    /* background: #333;
    color: #fff; */
}

.chat_user {
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.chat_comment {
    margin-left: 0.5em;
}

/* width */

::-webkit-scrollbar {
    width: 0.5em;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    /* border-radius: 5px; */
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #0072bc;
    border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #0072bc;
}
.image_opl{
    height: 50px;
    width: 50px;
}
.header_h1{
    border-bottom: 4px solid #ccc;
    margin: 1em;

}
.popup-contetn-update{
    width: 50%;
}
.popup-contetn-update .form{
padding: 2%;
}
.chat_btn_trash{
    float: right;
    padding: 3px;
    font-size: 13px;
    background: #0072bc;
    border-radius: 5px;
    color: #fff;
}
.btn_tbl_n_l {
    padding: 3px;
    display: inline;
    font-size: 13px;
    margin: 0.5em;
}
.btn_tbl_n_active {
    font-size: 1.5em;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 0.5em;
    background: #fff;
    color: rgb(46, 204, 113);
}
button:disabled i{
    cursor: not-allowed;
}
.min_width_65{
    min-width: 65px;

}