/* Font Declaration */
@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/Roboto-Light.eot");
  src: url("../fonts/Roboto-Light.otf") format("embedded-opentype"),
    url("../fonts/Roboto-Light.ttf") format("truetype"),
    url("../fonts/Roboto-Light.woff2") format("woff2"),
    url("../fonts/Roboto-Light.woff") format("woff"),
    url("../fonts/Roboto-Light.svg") format("svg");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.otf") format("embedded-opentype"),
    url("../fonts/Roboto-Bold.ttf") format("truetype"),
    url("../fonts/Roboto-Bold.svg") format("svg");
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.eot"),
    url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("truetype"),
    url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg"),
    url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.otf") format("embedded-opentype"),
    url("../fonts/Roboto-Medium.ttf") format("truetype"),
    url("../fonts/Roboto-Medium.svg") format("svg");
}
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../fonts/ProximaNova-Bold.eot"),
    url("../fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ProximaNova-Bold.otf") format("embedded-opentype"),
    url("../fonts/ProximaNova-Bold.ttf") format("truetype"),
    url("../fonts/ProximaNova-Bold.svg#ProximaNova-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* End */

/* Custom Styles */
body {
  font-family: "Roboto-Regular";
}
main.login_page {
  padding: 0px;
}
main {
  min-height: 100vh;
  float: left;
  background: #e0e2e6;
  padding: 30px 30px 30px 215px;
  width: 100%;
}
a {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
a:focus,
input:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
.no_padding {
  padding: 0px;
}
.no_margin {
  margin: 0px;
}
.site_btn {
  display: inline-block;
  background: #f26422;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  border-radius: 4px;
  border: none;
}
.site_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: 50%;
  -webkit-transform-origin: 50%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  border-radius: 3px;
}
.site_btn:hover:before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.success_message {
  background: #dff0d8;
  border: 1px solid #9ad581;
  border-radius: 4px;
  left: 0;
  margin: 0 auto;
  max-width: 500px;
  padding: 12px 15px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 70px;
  width: 95%;
  z-index: 1000;
}
.success_message h5 {
  color: #3c763d;
  font-family: "Roboto-Bold";
  font-size: 15px;
  margin: 0px;
}
.error_message {
  background: #f2dede;
  border: 1px solid #bd4949;
  border-radius: 4px;
  left: 0;
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 500px;
  padding: 5px 15px;
  position: initial;
  right: 0;
  text-align: center;
  top: 125px;
  width: 95%;
  z-index: 1000;
}
.error_message h5 {
  color: #a94442;
  font-family: "Roboto-Bold";
  font-size: 15px;
  margin: 0px;
}
.center {
  text-align: center;
}
.mand {
  position: relative;
  width: auto;
  height: auto;
}
.mand:after {
  content: "*";
  color: #ff0000;
  position: absolute;
  top: -4px;
  left: 2px;
}
.glbbx {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  font-family: "Roboto-Regular";
  font-size: 13px;
  padding: 7px 15px;
  transition: all 0.2s ease 0s;
  width: 100%;
}
.glbbx:focus {
  border: 1px solid #0395fa;
}
/* Page Loader */

.pgloader {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.pgloader .content {
  width: 69px;
  height: 69px;
  margin: auto;
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.pgloader .outer {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid #0395fa;
  opacity: 0.9;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  width: 69px;
  height: 69px;
  margin: 0 auto;
  -moz-animation: spin 0.5s infinite linear;
  -webkit-animation: spin 0.5s infinite linear;
}
.pgloader .inner {
  background: transparent;
  border: none;
  opacity: 1;
  border-radius: 50px;
  width: 49px;
  height: 49px;
  margin: 0 auto;
  position: relative;
  top: -59px;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.login_txt {
  color: #3c51a0;
  font-family: "Trebuchet MS";
  font-size: 22px;
  line-height: 30px;
  margin-top: 42px;
}
.recent_updates {
  background: url("../images/recent-pdates.jpg") no-repeat;
}
/* End */

/* Login Page */

.container {
  max-width: 1400px;
  width: 100%;
}
#pagewrapper {
  font-family: Roboto-Regular;
  width: 100vw;
  height: 100vh;
  display: block;
}
.loginform {
  max-width: 370px;
  background: #fff;
  padding: 35px;
  float: right;
  width: 100%;
  border-radius: 5px;
  position: absolute;
  right: 10%;
  top: 15%;
  z-index: 11;
}
.loginlogo {
  text-align: center;
}
.loginlogo img {
  max-height: 128px;
}
.overlay {
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 15%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.43) 85%,
    rgba(4, 4, 6, 0.55) 99%,
    rgba(4, 4, 6, 0.8) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 15%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.43) 85%,
    rgba(4, 4, 6, 0.55) 99%,
    rgba(4, 4, 6, 0.8) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    top,
    rgba(0, 0, 0, 0) 15%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.43) 85%,
    rgba(4, 4, 6, 0.55) 99%,
    rgba(4, 4, 6, 0.8) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#040406', GradientType=0 );
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.loginformdiv {
  margin-top: 45px;
}
.loginformdiv input[type="text"],
.loginformdiv input[type="email"],
.loginformdiv input[type="password"] {
  border: 0;
  font-size: 14px;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: left 8px;
  padding: 5px 0 5px 25px;
  position: relative;
}
.loginformdiv input.username {
  border-bottom: 1px solid #999999;
  background-image: url(../images/username.png) !important;
}
.loginformdiv input.username:focus,
.loginformdiv input.username:active {
  background-image: url(../images/username_active.png) !important;
}
.loginformdiv input.userpassword {
  border-bottom: 1px solid #999999;
  background-image: url(../images/userpassword.png) !important;
}
.loginformdiv input[type="checkbox"] {
  margin-right: 7px;
}
.loginformdiv input.userpassword:focus {
  border-bottom: 1px solid #999999;
  background-image: url(../images/userpassword_active.png) !important;
}
.loginformdiv .form-group {
  position: relative;
}
.loginformdiv .form-control ~ .high_border {
  background: #2c51a3;
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.loginformdiv .form-control:focus ~ .high_border {
  width: 100%;
}
.loginformdiv .form-check-label {
  font-size: 14px;
  color: #000000;
  font-weight: normal;
}
.registerlink {
  font-size: 14px;
  color: #000;
  font-family: Roboto-Regular;
}
.registerlink a {
  color: #ff6633;
  text-decoration: underline;
}
.loginformdiv .site_btn {
  /*background:#66cc33;*/
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  font-size: 18px;
  border: 0;
  font-family: Roboto-Bold;
  padding: 12px 0;
  margin: 25px 0;
  color: #fff;
  position: relative;
}
.iddlogo {
  float: left;
  position: absolute;
  left: 10%;
  top: 35%;
  z-index: 11;
}
.footer {
  position: absolute;
  bottom: 0px;
  color: #fff;
  font-size: 13px;
  padding: 0 25px;
  font-family: Roboto-Light;
  width: 98%;
}
.footer .sitename {
  margin-bottom: 25px;
  font-size: 16px;
  margin-bottom: 18px;
}
.footer .sitename span {
  display: block;
  font-size: 16px;
}
.footer .besteclogo {
  background: url(../images/bestec-logo.png) no-repeat left top;
  background-size: cover;
  width: 319px;
  height: 45px;
  margin-bottom: 25px;
}
.footer .col-sm-7 {
  display: table;
}
.footer .modal {
  color: #000;
  font-size: 14px;
  font-family: Roboto-Regular;
}
.footer .modal-dialog {
  max-width: 1000px;
  width: 100%;
}
.footer .modal-title {
  color: #000;
  font-size: 18px;
  padding-left: 13px;
}
.footer .modal-footer {
  color: #000;
  border-top: 0;
}
.footer .modal-header .close {
  opacity: 0.8;
}
.copyrighttext {
  margin-bottom: 25px;
  font-size: 13px;
  text-align: right;
  vertical-align: bottom;
  display: table-cell;
  height: 75px;
}
.copyrighttext a {
  color: #fff;
}
.copyrighttext span {
  padding: 0 8px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
.site_btn {
  display: inline-block;
  background: #66cc33;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  border-radius: 4px;
  border: none;
}
.site_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c51a3;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: 50%;
  -webkit-transform-origin: 50%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  border-radius: 3px;
}
.site_btn:hover:before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
a:focus,
.btn:focus,
input:focus,
select:focus {
  outline: 0;
}
/*******************************************************PDF Editor************************************/
#innerwrapper {
  font-family: Roboto-Light;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
}
#innerwrapper header {
  height: 60px;
  padding-top: 10px;
  font-size: 13px;
  color: #666666;
  font-family: "Roboto-Regular";
  position: fixed;
  z-index: 100;
  background: #fff;
  width: 100%;
}
#innerwrapper header .pad-top {
  padding-top: 8px;
}
#innerwrapper header .icons {
  width: 25px;
  height: 25px;
  float: left;
  margin: 0 15px 0 0;
}
#innerwrapper header .icons-back {
  font-size: 20px;
}
#innerwrapper header .icon-prev {
  background: url(../images/prev-arr.png) no-repeat center top;
}
#innerwrapper header .icon-next {
  background: url(../images/next-arr.png) no-repeat center top;
}
#innerwrapper header .num_sec {
  border: 0px solid #ddd;
  padding: 2px 10px;
  float: left;
  margin: 0 0px 0 0;
}
#innerwrapper header .num_digit {
  float: left;
  width: 50px;
  line-height: 25px;
  margin: 0 15px 0 0;
}
#innerwrapper header .percentage {
  border-left: 1px solid #ddd;
  float: left;
  padding-left: 15px;
  margin: 0 15px 0 0;
}
#innerwrapper header .percentage select {
  width: 75px;
  height: 25px;
}
#innerwrapper header .icon-plus {
  background: url(../images/icon-plus.png) no-repeat center top;
  cursor: pointer;
}
#innerwrapper header .icon-minus {
  background: url(../images/icon-minus.png) no-repeat center top;
  cursor: pointer;
}
#innerwrapper header .split_page {
  border-left: 1px solid #ddd;
  padding: 0 0 0 15px;
  margin: 0 15px 0 0;
  float: left;
  border-right: 1px solid #ddd;
}
#innerwrapper header .split_page a.dropdown-toggle {
  display: block; /*background:url(../images/icon-page-nav.png) no-repeat left top;*/
  width: 50px;
  height: 26px;
}
#innerwrapper header .split_page a.dropdown-toggle:hover {
  text-decoration: none;
}
.search-sec {
  border: 1px solid #ddd;
  border-radius: 25px;
  float: left;
  background: url(../images/icon-search.png) no-repeat 95% 5px;
  margin: 0 15px 0 0;
  padding-right: 30px;
  font-style: normal !important;
  font-size: 13px !important;
}
.search-sec input[type="text"] {
  border: 0;
  padding: 0 10px;
  color: #727272;
  background: transparent;
  line-height: 25px;
  font-style: normal !important;
  font-size: 13px !important;
}
.search-sec input[type="search"] {
  border: 0;
  padding: 0 10px;
  color: #727272;
  background: transparent;
  line-height: 25px;
  font-style: normal !important;
  font-size: 13px !important;
}
#innerwrapper header #scaleSelectContainer {
  float: left;
  margin-right: 15px; /* width:150px*/
}
#innerwrapper header #scaleSelectContainer select {
  color: #727272;
  width: 156px;
  font-family: "Roboto-Regular";
  font-size: 13px;
  height: 25px;
  border: 1px solid #b7b7b7;
  width: 75px;
  cursor: pointer;
}
/* #innerwrapper header .icon-close { background: url(../images/icon-close.png) no-repeat left 5px; width: 25px; height: 25px; float: right; margin: -20px -155px 0 0px } */
#innerwrapper header .icon-close {
  background: url(../images/icon-close.png) no-repeat left 5px;
  width: 25px;
  height: 25px;
  float: right;
  margin-left: 9px;
}
#innerwrapper header #download {
  margin: 0 15px 0 0;
}
.content-column {
  width: 100%;
  height: 100%;
  background: #d0d2d6;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 60px;
}
.content-column .col-sm-2,
.content-column .col-sm-8 {
  padding: 0;
}
.content-column .col1,
.content-column .col3 {
  background: #f1f2f4;
  height: 100vh;
  border-top: 1px solid #d0d2d6;
}
.content-column .col1 {
  width: 20%;
  position: absolute;
  z-index: 1000;
  left: 0;
}
.content-column .col2 {
  margin: 0 auto;
  padding: 0 20%;
}
.content-column .col3 {
  width: 20%;
  position: absolute;
  z-index: 1000;
  right: 0;
}
.padding-0 {
  padding: 0;
}
.col1 .backward-sec,
.col3 .backward-sec {
  background: #e2e4e8;
  height: 20px;
  text-align: right;
  display: block;
  width: 100%;
  padding-right: 12px;
  line-height: normal;
}
.col3 .forward-sec {
  background: #e2e4e8;
  height: 20px;
  text-align: left;
  display: block;
  width: 100%;
  padding-left: 12px;
  line-height: normal;
}
.col1 .backward-sec .fa-backward,
.col1 .backward-sec .fa-forward {
  color: #666666;
  font-size: 13px;
  cursor: pointer;
}
.col3 .forward-sec .fa-forward,
.col3 .forward-sec .fa-backward {
  color: #666666;
  font-size: 13px;
  cursor: pointer;
}
.col1 .project-details {
  padding: 35px 30px;
  border-bottom: 2px solid #b9bbbf;
}
.col1 .project-details h6 {
  text-transform: uppercase;
}
.col1 .project-details h2 {
  color: #000;
  font-size: 26px;
  font-family: "Roboto-Light";
}
.content-column .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}
.content-column .nav li {
  width: 50%;
}
.content-column .nav-tabs .nav-link {
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #666666;
  padding: 25px 25px;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #e2e4e8;
}
.content-column .nav-tabs .nav-link.active {
  color: #333333;
  background-color: #f1f2f4;
}
.content-column .nav-tabs .nav-link .fa-list,
.nav-tabs .nav-link .fa-file-o,
.nav-tabs .nav-link .fa-image,
.nav-tabs .nav-link .fa-comment {
  font-size: 16px;
  margin-right: 10px;
}
.content-column .nav-tabs .nav-link.active .fa-list,
.content-column .nav-tabs .nav-link.active .fa-file-o,
.content-column .nav-tabs .nav-link.active .fa-image,
.content-column .nav-tabs .nav-link.active .fa-comment {
  color: #3959ad;
}
.comments_sec {
}
.comments_sec .single_comment {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  font-family: "Roboto-Regular";
  font-size: 12px;
  cursor: pointer;
  width: 90%;
}
.comments_sec .single_comment.odd {
  background: #f4fee3;
}
.comments_sec .single_comment .col-sm-2,
.comments_sec .single_comment .col-sm-3,
.comments_sec .single_comment .col-sm-6,
.comments_sec .single_comment .col-sm-1 {
  padding: 0;
}
.comments_sec .single_comment h6 {
  font-size: 10px;
  font-family: "Roboto-Bold";
  margin-bottom: 0px;
}
.comments_sec .single_comment .fa-ellipsis-v {
  font-size: 16px;
}
.comments_sec .single_comment span {
  color: #666666;
  font-size: 9px;
}
.comments_sec .comment-list-item {
  background: #fff;
  border: 1px solid #cccccc;
  color: #666666;
  border-radius: 5px;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-family: "Roboto-Regular";
  cursor: pointer;
  width: 90%;
  font-size: 18px;
}
form.comment-list-form input[type="text"] {
  padding: 15px;
  border-radius: 8px;
  color: #666666;
  border: 0;
}
.content-column .col2 {
  background: #d0d2d6;
  height: 100vh;
}
.content-column .col2 .pdf-page {
  display: block;
  position: relative;
  padding: 55px 75px;
  margin: 0 auto;
  left: 0;
  top: 0;
  right: 0;
}
.toolset {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 105px;
  border: 1px solid #999;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 12px 5px rgba(192, 192, 192, 0.9);
  padding: 10px 4px 10px 8px;
  cursor: move;
}
.toolset .tool-div {
  border: 1px solid #eaebee;
  float: left;
  margin: 5px 3px 3px 3px;
}
.toolset .tool-div a {
  display: block;
}
.toolset button {
  background: transparent;
  cursor: pointer;
}
.toolset .tool-div.icon-tool-select {
  background: url(../images/icon-tool-select.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-select:hover,
.toolset .tool-div.icon-tool-select:focus,
.toolset .tool-div.icon-tool-select.active {
  background: url(../images/icon-tool-select-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-comments {
  background: url(../images/icon-tool-comments.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-comments:hover,
.toolset .tool-div.icon-tool-comments:focus,
.toolset .tool-div.icon-tool-comments.active {
  background: url(../images/icon-tool-comments-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-edit {
  background: url(../images/icon-tool-edit.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-edit:hover,
.toolset .tool-div.icon-tool-edit:focus,
.toolset .tool-div.icon-tool-edit.active {
  background: url(../images/icon-tool-edit-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-paste {
  background: url(../images/icon-tool-paste.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-paste:hover,
.toolset .tool-div.icon-tool-paste:focus,
.toolset .tool-div.icon-tool-paste.active {
  background: url(../images/icon-tool-paste-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-align {
  background: url(../images/icon-tool-align.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-align:hover,
.toolset .tool-div.icon-tool-align:focus,
.toolset .tool-div.icon-tool-align.active {
  background: url(../images/icon-tool-align-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-text-strike {
  background: url(../images/icon-tool-text-strike.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-text-strike:hover,
.toolset .tool-div.icon-tool-strike:focus,
.toolset .tool-div.icon-tool-strike.active {
  background: url(../images/icon-tool-text-strike-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-image {
  background: url(../images/icon-tool-image.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-image:hover,
.toolset .tool-div.icon-tool-image:focus,
.toolset .tool-div.icon-tool-image.active {
  background: url(../images/icon-tool-image-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-rectangle {
  background: url(../images/icon-tool-rectangle.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-rectangle:hover,
.toolset .tool-div.icon-tool-rectangle:focus,
.toolset .tool-div.icon-tool-rectangle.active {
  background: url(../images/icon-tool-rectangle-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-line {
  background: url(../images/icon-tool-line.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-line:hover,
.toolset .tool-div.icon-tool-line:focus,
.toolset .tool-div.icon-tool-line.active {
  background: url(../images/icon-tool-line-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-signature {
  background: url(../images/icon-tool-signature.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-signature:hover,
.toolset .tool-div.icon-tool-signature:focus,
.toolset .tool-div.icon-tool-signature.active {
  background: url(../images/icon-tool-signature-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-callout {
  background: url(../images/icon-tool-callout.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-callout:hover,
.toolset .tool-div.icon-tool-callout:focus,
.toolset .tool-div.icon-tool-callout.active {
  background: url(../images/icon-tool-callout-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-cloud {
  background: url(../images/icon-tool-cloud.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-cloud:hover,
.toolset .tool-div.icon-tool-cloud:focus,
.toolset .tool-div.icon-tool-cloud.active {
  background: url(../images/icon-tool-cloud-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-wifi {
  background: url(../images/icon-tool-wifi.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-wifi:hover,
.toolset .tool-div.icon-tool-wifi:focus,
.toolset .tool-div.icon-tool-wifi.active {
  background: url(../images/icon-tool-wifi-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-arrow {
  background: url(../images/tool-arrow.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-arrow:hover,
.toolset .tool-div.icon-tool-arrow:focus,
.toolset .tool-div.icon-tool-arrow.active {
  background: url(../images/tool-arrow-on.png) #3959ad;
}
.toolset .tool-div.icon-tool-pencil {
  background: url(../images/pencil.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.icon-tool-pencil:hover,
.toolset .tool-div.icon-tool-pencil:focus,
.toolset .tool-div.icon-tool-pencil.active {
  background: url(../images/pencil-on.png) #3959ad;
}
.toolset .tool-div .dropdown-toggle:after {
  border: 0;
}
.toolset .tool-div .dropdown-menu {
  min-width: 50px;
}
.toolset .tool-div.rectangle {
  background: url(../images/rectangle.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.rectangle:hover,
.toolset .tool-div.rectangle:focus,
.toolset .tool-div.rectangle.active {
  background: url(../images/rectangle-on.png) no-repeat center top #3959ad;
}
.toolset .tool-div.rectangle1 {
  background: url(../images/rectangle1.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.rectangle1:hover,
.toolset .tool-div.rectangle1:focus,
.toolset .tool-div.rectangle1.active {
  background: url(../images/rectangle1-on.png) no-repeat center top #3959ad;
}
.toolset .tool-div.rectangle2 {
  background: url(../images/rectangle2.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.rectangle2:hover,
.toolset .tool-div.rectangle2:focus,
.toolset .tool-div.rectangle2.activer {
  background: url(../images/rectangle2-on.png) no-repeat center top #3959ad;
}
.toolset .tool-div.rectangle3 {
  background: url(../images/rectangle3.png) no-repeat center top;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}
.toolset .tool-div.rectangle3:hover,
.toolset .tool-div.rectangle3:focus,
.toolset .tool-div.rectangle3.active {
  background: url(../images/rectangle3-on.png) no-repeat center top #3959ad;
}
.tab-content #media ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab-content #media ul li {
  float: left;
  margin: 10px 25px 25px 0;
  border: 1px solid #ddd;
  width: 60px;
  height: 63px;
  box-shadow: 0px 0px 8px #999;
}
.tab-content #media ul li img {
  width: 60px;
  height: 60px;
}
/*  .draggable  float: left; margin: 0 10px 10px 0; 
  #draggable { margin-bottom:20px; }
  #draggable { cursor: n-resize; }
  #containment-wrapper { width: 95%; height:150px; border:2px solid #ccc; padding: 10px; }
		
*/
.tool_show {
  background: url(../images/tool_hide.png) no-repeat center top;
  width: 35px;
  height: 35px;
  display: none;
}
.tool_hide {
  background: url(../images/tool_show.png) no-repeat center top;
  width: 35px;
  height: 35px;
}
.thumb_click {
  padding-top: 160px;
  margin-top: -160px;
}
.tab-content {
  padding: 30px 27px;
  height: 60vh;
  overflow: auto;
  position: relative;
}
.tab-content h6 {
  font-size: 11px;
  text-transform: uppercase;
}
.tab-content a {
  display: block;
  font-family: Roboto-Medium;
  font-size: 13px;
  color: #3959ad;
  padding: 8px 0;
}
.tab-content ul {
  margin: 0;
  list-style: none;
  padding-left: 10px;
}
.tab-content ul li {
  font-family: "Roboto-Regular";
  float: left;
  width: 60px;
  border: 1px solid transparent;
  height: 65px;
  margin: 0 15px;
}
.tab-content ul li a {
  padding: 0;
  border: 1px solid transparent;
}
.tab-content ul li a:focus,
.tab-content ul li a.active {
  border: 1px solid #f44a4d;
}
.tab-content #Hotspot_view ul li a {
  width: 60px;
  height: 90px;
  margin: 0 15px;
}
/*.tab-content #Hotspot_view ul li a:focus, .tab-content #Hotspot_view ul li a.active {
    border:1px solid #F44A4D
}*/
.tab-content ul li {
  height: 72px;
  margin-bottom: 12px; /*   border:1px solid transparent; */
}
.tab-content .media_pop_in ul li a {
  height: 72px;
  border: 1px solid transparent;
}
.tab-content .media_pop_in ul li a:focus {
  border: 1px solid #f44a4d !important;
}
/* #hotspotmodel .tab-content ul li a:focus, #hotspotmodel .tab-content ul li a:hover {border: 1px solid transparent;} */
.modal-body .search-sec {
  float: right;
}
a.hotspotlink:focus {
  color: #f44a4d;
}
a.hotspotlink:hover {
  text-decoration: none;
}
.tab-content #Hotspot_view canvas {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.tab-content #Hotspot_view canvas:focus {
  border: 1px solid #e3383b;
}
#draggable {
  width: 150px;
  padding: 0.5em;
}
.draggable {
  width: 105px;
}
#draggable {
  margin-bottom: 20px;
}
#containment-wrapper {
  width: 100%;
}
.modal-content .tab-content {
  padding: 30px 27px;
  height: 400px;
  overflow: auto;
}
.edusrModal .modal-content h4,
.edusrModal .modal-content h4.modal-title {
  display: inline-block;
}
.nav-tabs {
  border-bottom: 0;
}
.modal-header .nav-tabs {
  margin-top: 10px;
  border-bottom: 0;
}
.top a {
  position: fixed;
  right: 10px;
  bottom: 0;
  background: #000;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.top a.fa {
  text-align: center;
}
.top a .fa-arrow-up {
  padding-top: 10px;
}
.top a:hover {
  opacity: 0.8;
}
.terms-privacy {
  position: absolute;
  bottom: 0;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
}
.terms-privacy a {
  font-size: 12px;
  color: #000;
  display: block;
  text-align: center;
  line-height: 25px;
}
.cell-pad {
  padding: 5px;
}

/* Developer 3 */
.plusminus {
  background: #000;
  font-size: 20px;
}
.accordion_head {
  color: #333333;
  cursor: pointer;
  font-family: Roboto-Bold;
  font-size: 18px;
  margin: 0;
  /*background: url(../images/acc-menu.png) no-repeat 30px 22px;*/
  padding: 20px 25px 20px 95px;
}
.inspectionpg .handle.btn.btn-primary {
  background: none;
  color: #ddd;
  border: 0;
  position: absolute;
  top: 12px;
  text-align: center;
  font-size: 20px;
  width: 55px;
  box-shadow: none;
}
.inspectionpg {
  position: relative;
}
.accordion_container {
  width: 100%;
}
.inspectionpg .accsec {
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px; /* float: left;  width: 100%; */
}
.inspectionpg .plusminus {
  float: right;
  background: url(../images/arrow-right.png) no-repeat 0px 5px;
  width: 15px;
}
.inspectionpg .plusminus.active {
  background: url(../images/arrow-down.png) no-repeat 0px 5px;
}
.accordion_body {
  padding: 10px 30px 20px 30px;
}
.accordion_body p {
  padding: 0px 0px;
  margin: 0px;
}

.uploadfiledrag {
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 100%;
  height: 100px;
  background: #fff;
  border: 1px dashed #bbb;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: center;
  padding: 30px 0px;
}

.individual_inspections .media .filedrag label {
  padding: 0px 0px;
  background: #0395fa;
  margin-left: 25px;
  color: #fff;
  padding: 7px 20px;
  border-radius: 15px;
}
.individual_inspections .media .mediahd {
  float: left;
  width: 100%;
}
.individual_inspections .media .mediahd .clmleft {
  float: left;
}
.individual_inspections .media .mediahd .clmright {
  text-align: right;
}
.clmright button {
  text-align: right;
}
section.adddoc_section .liblist ul li.fielduser {
  background-image: url("../images/pop-usericon.png");
}

.inspectionpg .addplus {
  float: right;
  margin-top: -62px;
  margin-right: 40px;
}

.inspectionpg .addplus a {
  color: #646363;
  font-size: 24px;
  text-decoration: none;
}

.addplus1 {
  float: right;
  margin-top: -10px;
  margin-right: -5pxpx;
  color: #646363;
  font-size: 24px;
  text-decoration: none;
}

.inspectionpg .gplabel {
  color: #f3f2f2;
  font-size: 13px;
  background: #373634;
  margin-top: -25px;
  position: absolute;
  padding: 0px 10px;
  line-height: 25px;
  bottom: 0;
}

.carousel-inner.multiple_pictures {
  min-height: 300px;
  border: 1px solid #cfcfcf;
}
.carousel-inner.multiple_pictures > .item {
  width: 100%;
  margin: 10px;
  border: 0px solid #9f9f9f;
  min-height: 300px;
}
.carousel-inner.multiple_pictures > .item .thcol {
  border: 1px solid #9f9f9f;
  margin-bottom: 20px;
  padding: 0;
  height: 70px;
  width: 28%;
  margin-right: 4.5%;
  overflow: hidden;
}
/*.carousel-inner.multiple_pictures>.item>a>img, .carousel-inner.multiple_pictures>.item>img { max-width:100%; } */
.carousel-inner .carousel-control {
  /* opacity: 0.5;  */
}

.media .fixed {
  position: fixed;
  margin: 20px 20px 20px !important;
}

.media-checkbox .media-img .close {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;
  background-color: #ff0000;
  padding: 3px 4px 4px 4px;
  color: #fff;
  cursor: pointer;
  opacity: 0.9;
  text-align: center;
  font-size: 16px;
  line-height: 10px;
}

.media-checkbox .media-img .close a {
  color: #fff;
  text-decoration: none;
}
.media-checkbox .media-img .close a:hover {
  color: #fff;
  text-decoration: none;
}

.customslide {
}
.customslide .carousel-inner > .item {
  text-align: center;
}
.customslide .carousel-inner > .item > a > img {
  height: 355px;
  display: inline-block;
  width: 100%;
}
.customslide .carousel-control {
  color: #000;
}

.modal_inspection.custpp .modal-dialog {
  width: 500px;
}
.modal_inspection.custpp .modal-dialog .modal-body img {
  max-height: 500px;
}
.modal_inspection.custpp .modal-body {
  text-align: center;
}
.modal_inspection.custpp .carousel-control {
  color: #000;
}

.inspectionpg .sltbx {
  float: left;
  margin-top: 18px;
  margin-left: 65px;
  position: absolute;
}
.inspectionpg .sltbx .chkbtn {
  display: none;
}
.inspectionpg .sltbx .chklabel {
  background-image: url("../images/tbcheck_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  margin: 3px auto 0px;
  cursor: pointer;
  display: block;
}
.inspectionpg .sltbx .chkbtn:checked + .chklabel {
  background-image: url("../images/tbcheck_on.png");
}
.chklabel_get_previous_summary {
  background-image: url("../images/tbcheck_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  margin: 3px auto 0px;
  cursor: pointer;
}
.mediafixed.affix {
  top: 0px;
  right: 23px;
}

@media (max-width: 1600px) {
  .content-column .nav-tabs .nav-link {
    padding: 25px 10px 25px 20px;
  }
}

@media (max-width: 1440px) {
  .tab-content {
    padding: 30px 10px;
  }
}

@media (max-width: 1400px) {
  .tab-content {
    padding: 30px 10px;
  }
}

@media (max-width: 1280px) {
  .content-column .col1 {
    width: 23%;
  }
  .content-column .col2 {
    margin: 0 auto;
    padding: 0 23%;
  }
  .content-column .col3 {
    width: 23%;
  }
  .tab-content {
    overflow: scroll;
  }
}

@media (max-width: 1280px) {
  .nav-tabs .nav-link {
    padding: 15px 15px;
  }
  .col1 .project-details h2 {
    font-size: 1.42rem;
  }
}

@media (max-width: 1024px) {
  .content-column .nav-tabs .nav-link {
    font-size: 12px;
  }
  .content-column .nav-tabs .nav-link {
    padding: 25px 10px 25px 15px;
  }
}

@media (max-width: 991px) {
  .loginform {
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 60px;
  }
}

@media (max-width: 767px) {
  .loginform {
    position: relative;
    top: 0;
    margin-top: 60px;
  }
  .footer {
    position: relative;
    margin: 0;
    padding: 35px 10px 0;
    clear: both;
  }
  #pagewrapper {
    height: 100%;
    width: 100%;
  }
  .copyrighttext {
    margin: 0;
    padding-bottom: 35px;
  }
  .mediafixed.affix {
    position: relative;
    top: unset;
    right: unset;
  }
}

@media (max-width: 479px) {
  .copyrighttext span {
    display: block;
  }
}
/*******************************************************PDF Editor************************************/

/* Register Page */

section.login_section .login_blk .txt_box.name {
  background-image: url("../images/name_icon_off.png");
}
section.login_section .login_blk .txt_box.name:focus {
  background-image: url("../images/name_icon_on.png");
}
section.login_section .login_blk .txt_box.tkey {
  background-image: url("../images/token_icon_off.png");
}
section.login_section .login_blk .txt_box.tkey:focus {
  background-image: url("../images/token_icon_on.png");
}
section.login_section .login_blk .txt_box.cmpy {
  background-image: url("../images/Company_off.png");
}
section.login_section .login_blk .txt_box.cmpy:focus {
  background-image: url("../images/Company_on.png");
}
section.login_section .login_blk .txt_box.phone {
  background-image: url("../images/phone_off.png");
}
section.login_section .login_blk .txt_box.phone:focus {
  background-image: url("../images/phone_on.png");
}
section.login_section .login_blk .txt_box.locations {
  background-image: url("../images/Location_off.png");
}
section.login_section .login_blk .txt_box.locations:focus {
  background-image: url("../images/Location_on.png");
}
section.login_section .login_blk .txt_box.userlimits {
  background-image: url("../images/userlimits_off.png");
}
section.login_section .login_blk .txt_box.userlimits:focus {
  background-image: url("../images/userlimits_on.png");
}
section.reg_section .passdrop {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  padding: 0px 20px;
  width: 100%;
  max-width: 275px;
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #333;
  left: -107%;
  top: 0px;
}
section.reg_section .passdrop li {
  margin: 15px 0px;
  padding: 0px 0px 0px 25px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../images/non_valid_on.png");
}
section.reg_section .passdrop li.active {
  background-image: url("../images/valid_ok_on.png");
}
section.reg_section .passdrop:after {
  border: medium solid transparent;
  content: "";
  height: 0;
  right: -28px;
  pointer-events: none;
  position: absolute;
  top: 13px;
  width: 0;
  border-bottom-color: #fff;
  border-width: 14px;
  margin-left: -12px;
  margin-top: -1px;
  margin-right: 0px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
/* End */

/* Header Section */

header.navbar-static-top {
  position: relative;
  border: none;
}
section.left_menu {
  position: fixed;
  width: 225px;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
}
section.left_menu .menu_blk {
  width: 185px;
  height: 100%;
  background: #fff;
  position: relative;
  padding: 25px 0px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
section.left_menu .logo {
  display: inline-block;
  background: transparent url("../images/dash_logo.png") no-repeat scroll center
    center;
  background-size: cover;
  width: 111px;
  overflow: hidden;
}
section.left_menu .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -20em;
}
section.left_menu .nav {
  font-family: "Roboto-Regular";
  font-size: 14px;
  text-align: left;
  margin: 20px 0px;
  border: none;
}
section.left_menu .nav > li {
  padding: 8px 0px;
  position: relative;
}
section.left_menu .nav > li:before {
  content: "";
  background: #e5e5e5;
  width: 75%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
section.left_menu .nav > li:last-child:after {
  content: "";
  background: #e5e5e5;
  width: 75%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
section.left_menu .nav > li > a {
  color: #333;
  padding: 8px 8px 8px 60px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 24px center;
  background-size: 17px auto;
}
section.left_menu .nav > li > a:before {
  content: "";
  background: #0395fa;
  width: 4px;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
section.left_menu .nav > li > a:hover:before,
section.left_menu .nav > li.active > a:before {
  height: 100%;
}
section.left_menu .nav > li > a:hover,
section.left_menu .nav > li > a:focus {
  background-color: transparent;
  color: #000;
}
section.left_menu .nav > li.active > a {
  font-family: "Roboto-Bold";
}
section.left_menu .nav > li.dash_link > a {
  background-image: url("../images/dash_icon_off.png");
}
section.left_menu .nav > li.docs_link > a {
  background-image: url("../images/doc_icon_off.png");
}
section.left_menu .nav > li.docs_link ul {
  list-style: none;
}
section.left_menu .nav > li.QAQC_link > a {
  background-image: url("../images/QAQC_link.png");
}
section.left_menu .nav > li.QAQC_link ul {
  list-style: none;
}
section.left_menu .nav > li ul li.inspection a {
  padding-left: 20px;
  color: #333;
  font-family: "Roboto-Bold";
}
section.left_menu .nav > li ul li.inspection a:before {
  content: "\f0da";
  position: relative;
  left: -10px;
  font-family: "FontAwesome";
  color: #0395fa;
  font-size: 20px;
}
section.left_menu .nav > li ul li.inspection a:hover {
  color: #0395fa;
  text-decoration: none;
}
section.left_menu .nav > li.favs_link > a {
  background-image: url("../images/fav_icon_off.png");
}
section.left_menu .nav > li.grp_link > a {
  background-image: url("../images/grp_icon_off.png");
}
section.left_menu .nav > li.usr_link > a {
  background-image: url("../images/usr_icon_off.png");
  background-size: 15px auto;
}
section.left_menu .nav > li.role_link > a {
  background-image: url("../images/role_icon_off.png");
}
section.left_menu .nav > li.sett_link > a {
  background-image: url("../images/sett_icon_off.png");
}
section.left_menu .nav > li.cmnt_link > a {
  background-image: url("../images/cmnts_off.png");
}
section.left_menu .nav > li.ulink_link > a {
  background-image: url("../images/useful_off.png");
}
section.left_menu .nav > li.cnfg_link > a {
  background-image: url("../images/cngfr_off.png");
}
section.left_menu .nav > li.log_link > a {
  background-image: url("../images/alog_off.png");
}
section.left_menu .nav > li.dash_link > a:hover,
section.left_menu .nav > li.dash_link.active > a {
  background-image: url("../images/dash_icon_on.png");
}
section.left_menu .nav > li.docs_link > a:hover,
section.left_menu .nav > li.docs_link.active > a {
  background-image: url("../images/doc_icon_on.png");
}
section.left_menu .nav > li.favs_link > a:hover,
section.left_menu .nav > li.favs_link.active > a {
  background-image: url("../images/fav_icon_on.png");
}
section.left_menu .nav > li.grp_link > a:hover,
section.left_menu .nav > li.grp_link.active > a {
  background-image: url("../images/grp_icon_on.png");
}
section.left_menu .nav > li.usr_link > a:hover,
section.left_menu .nav > li.usr_link.active > a {
  background-image: url("../images/usr_icon_on.png");
}
section.left_menu .nav > li.role_link > a:hover,
section.left_menu .nav > li.role_link.active > a {
  background-image: url("../images/role_icon_on.png");
}
section.left_menu .nav > li.sett_link > a:hover,
section.left_menu .nav > li.sett_link.active > a {
  background-image: url("../images/sett_icon_on.png");
}
section.left_menu .nav > li.cmnt_link > a:hover,
section.left_menu .nav > li.cmnt_link.active > a {
  background-image: url("../images/cmnts_on.png");
}
section.left_menu .nav > li.ulink_link > a:hover,
section.left_menu .nav > li.ulink_link.active > a {
  background-image: url("../images/useful_on.png");
}
section.left_menu .nav > li.cnfg_link > a:hover,
section.left_menu .nav > li.cnfg_link.active > a {
  background-image: url("../images/cngfr_on.png");
}
section.left_menu .nav > li.log_link > a:hover,
section.left_menu .nav > li.log_link.active > a {
  background-image: url("../images/alog_on.png");
}
section.left_menu .nav > li .sub_list {
  list-style: none;
  display: block;
  padding: 0px;
  margin: 0px;
  background: #fff;
  width: 185px;
  position: absolute;
  bottom: 0;
  left: 185px;
  font-family: "Roboto-Regular";
  font-size: 13px;
  text-align: left;
  border: none;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  opacity: 0;
  visibility: collapse;
}
section.left_menu .nav > li .sub_list li {
  padding: 8px 0px;
  position: relative;
}
section.left_menu .nav > li .sub_list li:before {
  content: "";
  background: #e5e5e5;
  width: 90%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
section.left_menu .nav > li .sub_list li:first-child:before {
  content: none;
}
section.left_menu .nav > li .sub_list li a {
  color: #333;
  position: relative;
  text-decoration: none;
  padding: 6px 10px;
  display: block;
}
section.left_menu .nav > li .sub_list li a:hover,
section.left_menu .nav > li .sub_list li.active a {
  color: #000;
}
section.left_menu .nav > li:hover .sub_list {
  opacity: 1;
  visibility: visible;
}
section.top_menu {
  width: calc(100% - 185px);
  height: 60px;
  background: #0395fa;
  background: -webkit-linear-gradient(left, #543586, #0890f4);
  background: -o-linear-gradient(right, #3c3c3c, #000000);
  background: -moz-linear-gradient(right, #543586, #0890f4);
  background: linear-gradient(to right, #66cc33, #2c5fff);
  padding: 0px 30px;
  display: table;
  margin: 0px 0px 0px 185px;
}
section.top_menu .title {
  font-family: "Roboto-Light";
  font-size: 20px;
  color: #fff;
  margin: 0px;
  display: table-cell;
  vertical-align: middle;
}
section.top_menu .log_menu {
  float: right;
  border: none;
}
section.top_menu .log_menu > li {
  float: left;
  position: relative;
}
section.top_menu .log_menu > li > a {
  padding: 15px 18px;
  color: #fff;
  position: relative;
}
section.top_menu .log_menu > li > a:hover,
section.top_menu .log_menu > li > a:focus {
  background: transparent;
}
section.top_menu .log_menu .profile {
  font-family: "Roboto-Light";
  font-size: 15px;
  margin-left: 10px;
}
section.top_menu .log_menu .profile img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  margin-left: 8px;
}
section.top_menu .log_menu .profile .caret {
  color: #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px dashed;
  margin-left: 8px;
}
section.top_menu .log_menu .notify {
  color: #fff;
  font-size: 22px;
  margin: 0px;
}
section.top_menu .log_menu > li:hover {
  background: rgba(82, 52, 132, 0.2);
}
section.top_menu .log_menu .notify .msg {
  background: #fd5807;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 12px;
  line-height: 15px;
  padding: 0;
  position: absolute;
  right: 11px;
  top: 17px;
  display: inline-block;
  min-width: 17px;
  min-height: 17px;
  vertical-align: middle;
  text-align: center;
}
section.top_menu .drop_down {
  position: absolute;
  width: 465px;
  list-style: none;
  padding: 10px 0px;
  margin: 0px;
  right: -25px;
  top: 100px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  visibility: collapse;
  opacity: 0;
}
section.top_menu .log_menu > li:hover .drop_down {
  visibility: visible;
  top: 70px;
  opacity: 1;
}
section.top_menu .drop_down > li {
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
}
section.top_menu .drop_down > li > a {
  text-decoration: none;
}
section.top_menu .drop_down > li:last-child {
  border-bottom: none;
}
section.top_menu .drop_down .msgtit {
  margin: 0px;
  font-family: "Roboto-Regular";
  font-size: 16px;
  color: #333;
}
section.top_menu .drop_down .msgtime {
  margin: 8px 0px 0px;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #999;
}
section.top_menu .drop_down:after {
  border: medium solid transparent;
  content: "";
  height: 0;
  right: 39px;
  pointer-events: none;
  position: absolute;
  top: -29px;
  width: 0;
  border-bottom-color: #fff;
  border-width: 15px;
  margin-left: -12px;
  margin-top: -1px;
  margin-right: 0px;
}
section.top_menu .profile .drop_down {
  right: -3px;
  width: 230px;
  padding: 0px;
}
section.left_menu .navbar-toggle {
  display: none;
  background: transparent;
  margin: 0;
  padding: 0;
}
section.left_menu .navbar-toggle .icon-bar {
  background: #fff;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
}
section.left_menu .toggle_btn {
  position: absolute;
  top: 22px;
  right: 0;
}
/* End */

/* Upload List */

section.upllist_section {
  display: block;
  width: 100%;
  height: auto;
}
section.upllist_section .title {
  font-family: "Roboto-Light";
  font-size: 20px;
  color: #333;
  margin: 0px;
  line-height: 23px;
}
article.filact_blk {
  background: #fff;
  height: auto;
  border-radius: 4px;
  box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 0px 0px 30px;
}
article.filact_blk .headblk {
  padding: 10px 25px 10px 10px;
}
article.filact_blk .left_blk h4 {
  font-family: "Roboto-Bold";
  font-size: 18px;
  color: #333;
  margin: 0px;
}
article.filact_blk .left_blk h5 {
  font-family: "Roboto-Regular";
  font-size: 15px;
  font-style: italic;
  margin: 8px 0px 0px;
  color: #333;
}
article.filact_blk .right_blk {
  text-align: right;
}
article.filact_blk .right_blk a {
  text-transform: uppercase;
  font-family: "ProximaNova-Bold";
  font-size: 12px;
  color: #f26422;
  margin: 6px 0px 0px 10px;
  display: inline-block;
  border: 1px solid #f26422;
  border-radius: 4px;
  padding: 8px 15px;
  text-decoration: none;
  position: relative;
  text-align: center;
}
article.filact_blk .right_blk a:hover {
  background: #f26422;
  color: #fff;
}
article.filact_blk .table_blk {
  clear: both;
}
article.filact_blk .table_blk thead {
  font-family: "Roboto-Light";
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  background: #efefef;
}
article.filact_blk .table_blk .table {
  margin: 0px 0px 10px;
  min-width: 1024px;
}
article.filact_blk .table_blk th {
  border-bottom: none;
  padding: 10px 15px;
  vertical-align: middle;
}
article.filact_blk .table_blk th:first-child,
article.filact_blk .table_blk td:first-child {
  padding-left: 40px;
  width: 110px;
}
article.filact_blk .table_blk th:first-child,
article.filact_blk .table_blk td:first-child {
  padding-left: 40px;
}
article.filact_blk .table_blk th:last-child,
article.filact_blk .table_blk td:last-child {
  padding-right: 40px;
}
article.filact_blk .table .chkbtn {
  display: none;
}
article.filact_blk .table .chklabel {
  background-image: url("../images/tbcheck_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  margin: 3px 0px 0px 15px;
  cursor: pointer;
}
article.filact_blk .table .chkbtn:checked + .chklabel {
  background-image: url("../images/tbcheck_on.png");
}
article.filact_blk .table_blk td {
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #333;
  padding: 13px 15px;
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid #efefef;
  word-wrap: break-word;
}
article.filact_blk .table_blk tbody tr {
  background: #fff;
}
article.filact_blk .table_blk tbody tr.active td {
  background: #f1f7fc;
}
article.filact_blk .favblk {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
}
article.filact_blk .favblk .favico {
  display: block;
  background-image: url("../images/fav_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 11px;
  height: 10px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
}
article.filact_blk .favblk .favico.selactive {
  background-image: url("../images/fav_on.png");
}
article.filact_blk .status {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
}
article.filact_blk .status .result {
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
  width: 15px;
  height: 15px;
}
article.filact_blk .status.failed,
article.filact_blk .action.error {
  color: #ff3333;
}
article.filact_blk .status.failed .result {
  background-image: url("../images/failed_cir.png");
}
article.filact_blk .status.success .result {
  background-image: url("../images/success_cir.png");
}
article.filact_blk .status.uploading .result {
  background-image: url("../images/upload_cir.png");
}
article.filact_blk .action {
  position: relative;
  font-size: 13px;
  padding-right: 45px;
}
article.filact_blk .action .actico {
  display: block;
  background-image: url("../images/delicon_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0px;
  width: 13px;
  height: 14px;
}
article.filact_blk .action .actico a {
  display: block;
  width: 100%;
  height: 100%;
}
article.filact_blk .action .actico.edit {
  background-image: url("../images/editicon_off.png");
  right: 25px;
}
article.filact_blk tbody tr.active .action .actico.edit {
  background-image: url("../images/editicon_on.png");
}
article.filact_blk tbody tr.active .action .actico {
  background-image: url("../images/delicon_on.png");
}
.pagination_blk {
  margin: 10px 0px 0px;
  padding: 0px 25px;
  text-align: right;
}
.pagination_blk ul {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  display: table;
  float: right;
  font-family: "Roboto-Regular";
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination_blk ul li {
  border-right: 1px solid #d7d7d7;
  float: left;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.pagination_blk ul li a {
  color: #333;
  display: inline-block;
  padding: 3px 10px;
  text-decoration: none;
}
.pagination_blk ul li.active {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.pagination_blk ul li.active a {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.pagination_blk ul li:hover {
  background: rgba(0, 0, 0, 0.2);
}
.pagination_blk ul li:first-child:hover {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
/* End */
.inspectionstatus {
  border: 1px solid #ddd;
}
/* Edit User Modal */

.edusrModal .modal-content {
  border-radius: 3px;
}
.edusrModal .modal-dialog,
.hotspot_edit_modal .modal-dialog {
  max-width: 700px;
}
.edusrModal .modal-title {
  font-family: "Roboto-Regular";
  font-size: 21px;
  margin-top: 12px;
  color: #333;
  text-transform: uppercase;
}
.edusrModal .modal-header {
  padding: 15px 30px 0 30px;
  position: relative;
  border: none;
}
.edusrModal .modal-header:after {
  content: "";
  background: #ccc;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.edusrModal .close {
  opacity: 1;
  color: #666;
  font-family: "Roboto-Regular";
  font-size: 30px;
  font-weight: normal;
  margin: 0px;
}
.edusrModal .close:hover {
  color: #333;
}
.edusrModal .modal-body {
  padding: 15px 25px 30px;
  display: table;
  width: 100%;
}
.edusrModal .ipfield {
  margin: 0px 0px 15px;
  display: table;
  width: 100%;
  position: relative;
}
.edusrModal .plclabel {
  display: block;
  font-weight: normal;
  font-family: "Roboto-Regular";
  font-size: 13px;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.edusrModal .txt_box {
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 15px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.edusrModal .txt_box:focus {
  border: 1px solid #0395fa;
}
.edusrModal .filer {
  display: none;
}
.edusrModal .filer + .brwbtn {
  font-family: "Roboto-Regular";
  font-size: 13px;
  background: #0395fa;
  padding: 6px 20px;
  color: #fff;
  margin: 0px;
  cursor: pointer;
}
.edusrModal .sel_box:focus {
  border: 1px solid #ccc;
}
.edusrModal .sel_box {
  padding: 7px 30px 7px 15px;
  background: #fff url("../images/select_arr.png") no-repeat scroll 98% center;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
.edusrModal .submit_btn,
.submit_btn {
  display: block;
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #fff;
  text-align: center;
  width: auto;
  padding: 8px 25px;
  margin: 5px 0px 0px;
  text-transform: uppercase;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  float: right;
}
.edusrModal .ipfield.btnb {
  text-align: right;
  margin: 0px;
}
.edusrModal .txt_box.mobilecde {
  padding-left: 60px;
}
.edusrModal .txt_box.mobilecde + .codes {
  background: #fff;
  left: 0px;
  padding: 0px;
  position: absolute;
  top: 24px;
  width: 50px;
}
.edusrModal .txt_box.mobilecde + .codes .txt_box {
  padding: 7px 10px 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
/* End */

/* hotspot_edit Modal */

.hotspot_edit_modal .modal-content {
  border-radius: 3px;
}
.hotspot_edit_modal .modal-dialog {
  max-width: 700px;
}
.hotspot_edit_modal .modal-title {
  font-family: "Roboto-Regular";
  font-size: 21px;
  margin-top: 12px;
  color: #333;
  text-transform: uppercase;
}
.hotspot_edit_modal .modal-header {
  padding: 15px 30px 0 30px;
  position: relative;
  border: none;
}
.hotspot_edit_modal .modal-header:after {
  content: "";
  background: #ccc;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hotspot_edit_modal .close {
  opacity: 1;
  color: #666;
  font-family: "Roboto-Regular";
  font-size: 30px;
  font-weight: normal;
  margin: 0px;
}
.hotspot_edit_modal .close:hover {
  color: #333;
}
.hotspot_edit_modal .modal-body {
  padding: 15px 25px 30px;
  display: table;
  width: 100%;
}
.hotspot_edit_modal .ipfield {
  margin: 0px 0px 15px;
  display: table;
  width: 100%;
  position: relative;
}
.hotspot_edit_modal .plclabel {
  display: block;
  font-weight: normal;
  font-family: "Roboto-Regular";
  font-size: 13px;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.hotspot_edit_modal .txt_box {
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 15px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.hotspot_edit_modal .txt_box:focus {
  border: 1px solid #0395fa;
}
.hotspot_edit_modal .filer {
  display: none;
}
.hotspot_edit_modal .filer + .brwbtn {
  font-family: "Roboto-Regular";
  font-size: 13px;
  background: #0395fa;
  padding: 6px 20px;
  color: #fff;
  margin: 0px;
  cursor: pointer;
}
.hotspot_edit_modal .sel_box:focus {
  border: 1px solid #ccc;
}
.hotspot_edit_modal .sel_box {
  padding: 7px 30px 7px 15px;
  background: #fff url("../images/select_arr.png") no-repeat scroll 98% center;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
.hotspot_edit_modal .submit_btn,
.submit_btn {
  display: block;
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #fff;
  text-align: center;
  width: auto;
  padding: 8px 25px;
  margin: 5px 0px 0px;
  text-transform: uppercase;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  float: right;
}
.hotspot_edit_modal .ipfield.btnb {
  text-align: right;
  margin: 0px;
}
.hotspot_edit_modal .txt_box.mobilecde {
  padding-left: 60px;
}
.hotspot_edit_modal .txt_box.mobilecde + .codes {
  background: #fff;
  left: 0px;
  padding: 0px;
  position: absolute;
  top: 24px;
  width: 50px;
}
.hotspot_edit_modal .txt_box.mobilecde + .codes .txt_box {
  padding: 7px 10px 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
/* End */
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #eee; /* border-color: #dee2e6 #dee2e6 #fff; */
}
.nav-tabs .nav-link {
  color: #333;
}
.nav-link {
  padding: 0.9rem 3.5rem;
}
/* Delete Modal */

.deleteModal .modal-body {
  padding: 25px 30px;
}
.deleteModal .desc_del {
  font-family: "Roboto-Regular";
  font-size: 15px;
  margin: 0px 0px 15px;
}
.deleteModal .submit_btn {
  margin: 5px 0px 0px 5px !important;
  padding: 6px 25px;
}
/* End */

/* Roles Page */

.roles_section article.filact_blk .action .actico.edit {
  right: 0px;
  left: 0;
  margin: 0 auto;
}
.roles_section article.filact_blk .table_blk thead th:last-child {
  width: 100px;
}
.roles_section article.filact_blk .table_blk .table {
  min-width: 500px;
}
.edroleModal .roleprv_set thead {
  font-family: "Roboto-Light";
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  background: #efefef;
}
.edroleModal .roleprv_set .table {
  margin: 0px 0px 10px;
  min-width: 415px;
}
.edroleModal .roleprv_set th {
  border-bottom: none;
  padding: 10px 0px;
  vertical-align: middle;
  text-align: center;
  text-align: center;
  width: 50px;
}
.edroleModal .roleprv_set th:first-child,
.edroleModal .roleprv_set td:first-child {
  padding-left: 20px;
  text-align: left;
}
.edroleModal .roleprv_set th:last-child,
.edroleModal .roleprv_set td:last-child {
  padding-right: 20px;
}
.edroleModal .roleprv_set td {
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #333;
  padding: 13px 0px;
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid #efefef;
}
.edroleModal .roleprv_set .chkbtn {
  display: none;
}
.edroleModal .roleprv_set .chklabel {
  background-image: url("../images/tbcheck_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  margin: 3px auto 0px;
  cursor: pointer;
  display: block;
}
.edroleModal .roleprv_set .chkbtn:checked + .chklabel {
  background-image: url("../images/tbcheck_on.png");
}
.edroleModal .submit_btn {
  margin: 5px 0px 0px 5px !important;
}
.edroleModal .modal-body {
  display: block;
}
.edroleModal .ipfield.btnb {
  display: table;
  width: 100%;
}
.edroleModal .ipfield {
  display: block;
}
/* End */

/* Groups Page */

.grp_section article.filact_blk .right_blk a {
  margin-top: 0px;
}
.grp_section article.filact_blk .headblk {
  padding: 15px 25px;
}
/* End */

/* Group Modal */

.edgrpModal .modal-dialog {
  width: auto;
  max-width: 700px;
}
.edgrpModal .user_set .block {
  float: left;
  width: 50%;
  margin: 5px 0px 0px;
}
.edgrpModal .user_set .block h5 {
  text-transform: uppercase;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #333;
  margin: 0px;
}
.edgrpModal .user_set .chsn.block h5 {
  color: #0395fa;
}
.edgrpModal .desc_list {
  list-style: none;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #000;
  margin: 10px 0px 0px;
  padding: 0px;
  max-height: 300px;
  overflow-y: auto;
  width: 90%;
}
.edgrpModal .desc_list li {
  border-bottom: 1px solid #e5e5e5;
  color: #000;
  cursor: pointer;
  display: block;
  padding: 19px 0px 19px 40px;
  position: relative;
}
.edgrpModal .desc_list .prfpic {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
}
.edgrpModal .desc_list li .add_cls {
  bottom: 0;
  color: #f26422;
  display: inline-block;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  margin: auto 0;
  position: absolute;
  right: 0px;
  text-align: center;
  top: 0;
  width: 30px;
  z-index: 1;
}
.edgrpModal .chsn.block .desc_list li .add_cls {
  font-size: 24px;
}
.grp_section article.filact_blk .table_blk .table {
  min-width: 700px;
}
/* End */

/* User List Section */

section.usrlist_section {
  display: table;
  width: 100%;
}
.usrlist_section .list_blk {
  background: #fff;
  height: auto;
  border-radius: 4px;
  box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 30px 30px;
}
.usrlist_section .list_blk.left {
  width: 69%;
  float: left;
}
.usrlist_section .list_blk.right {
  width: 30%;
  float: right;
}
.usrlist_section .sub_title {
  font-family: "Roboto-Regular";
  font-size: 18px;
  color: #333;
  margin: 0px;
  border-bottom: 1px solid #e5e5e5;
  padding: 0px 0px 20px;
}
.usrlist_section .list_blk .ipfield {
  margin: 15px 0px 0px;
  display: table;
  width: 100%;
}
.usrlist_section .ipfield .usrlabel {
  display: block;
  font-weight: normal;
  font-family: "Roboto-Regular";
  font-size: 13px;
  text-transform: uppercase;
  margin: 0px 0px 5px;
}
.usrlist_section .ipfield .txt_box {
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 15px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.usrlist_section .ipfield .txt_box:focus {
  border: 1px solid #0395fa;
}
.usrlist_section .ipfield .sel_box:focus {
  border: 1px solid #ccc;
}
.usrlist_section .ipfield .sel_box {
  padding: 7px 30px 7px 15px;
  background: #fff url("../images/select_arr.png") no-repeat scroll 98% center;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
.usrlist_section .ipfield .submit_btn {
  display: inline-block;
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #fff;
  text-align: center;
  width: auto;
  padding: 8px 25px;
  margin: 5px 0px 0px 5px;
  text-transform: uppercase;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  float: right;
}
.usrlist_section .tabs_list .nav {
  font-family: "Roboto-Regular";
  font-size: 18px;
}
.usrlist_section .tabs_list .nav-tabs > li {
  margin: 0px 15px 0px 0px;
}
.usrlist_section .tabs_list .nav > li > a {
  color: #333;
  border: none;
  padding: 0px 50px 15px 0px;
  position: relative;
}
.usrlist_section .tabs_list .nav > li > a:after {
  content: "";
  background: #0395fa;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.usrlist_section .tabs_list .nav > li.active > a {
  color: #000;
}
.usrlist_section .tabs_list .nav > li > a:hover {
  background: transparent;
}
.usrlist_section .tabs_list .nav > li.active > a:after,
.usrlist_section .tabs_list .nav > li > a:hover:after {
  width: 100%;
  height: 3px;
}
.usrlist_section .usrlist {
  margin: 30px 0px 0px;
}
.usrlist_section .usrlist .filter_blk {
  float: left;
  width: 55%;
}
.filtlabel {
  font-family: "Roboto-Regular";
  font-size: 13px;
  font-weight: normal;
  color: #333;
  text-transform: uppercase;
  width: 70px;
  margin: 0px;
}
.filtsel_box {
  padding: 7px 30px 7px 15px !important;
  background: #fff url("../images/select_arr.png") no-repeat scroll 95% center;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  margin: 0px 0px 0px 5px;
}
.filttxt_box {
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: inline-block;
  width: 40%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 15px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.usrlist_section .usrlist .search_bl {
  width: 40%;
  float: right;
}
.srch_box {
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 50px 7px 15px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  background: #fff url("../images/search_icon.png") no-repeat scroll 98% center;
}
.srch_box:focus {
  border: 1px solid #0395fa;
}
.usrlist_section .userblk {
  margin: 20px 0px 15px;
}
.usrlist_section .userblk .block {
  float: left;
  width: 100%;
  position: relative;
}
.usrlist_section .userblk .block:after {
  content: "";
  background: #ddd;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin: auto 0px;
}
.usrlist_section .userblk figure {
  width: 50%;
  float: left;
  height: 100%;
  min-height: 71px;
  position: relative;
  padding: 10px 25px 23px 80px;
  margin: 10px 0px 0px;
}
.usrlist_section .userblk figure.right {
  padding-left: 105px;
}
.usrlist_section .userblk figure.right img {
  left: 25px;
}
.usrlist_section .userblk figure img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 0;
  margin: 0px;
}
.usrlist_section .userblk figure h5 {
  font-family: "Roboto-Bold";
  font-size: 15px;
  color: #3b4043;
  margin: 0px;
}
.usrlist_section .userblk figure h6 {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #7b878d;
  margin: 8px 0px 0px;
}
.usrlist_section .userblk figure:after {
  content: "";
  background: #ddd;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.usrlist_section .userblk figure.right:after {
  left: 25px;
}
.usrlist_section .userblk .action {
  display: block;
  background-image: url("../images/delicon_off.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  top: 30px;
  right: 10px;
  margin: 2px;
  width: 13px;
  height: 14px;
}
.usrlist_section .userblk .action a {
  display: block;
  width: 100%;
  height: 100%;
}
.usrlist_section .userblk .action.edit {
  background-image: url("../images/editicon_off.png");
  top: 0px;
}
.usrlist_section .userblk .action.view {
  background-image: url("../images/info.png");
  top: 10px;
}
.usrlist_section .userblk .action_bl {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  top: 8px;
  right: 10px;
  opacity: 0;
  visibility: collapse;
}
.usrlist_section .userblk figure:hover .action_bl {
  opacity: 1;
  visibility: visible;
}
.userlist .right_blk {
  width: 15%;
  float: right;
}
.userlist .left_blk {
  width: 80%;
}
.userlist .left_blk .filter_blk {
  width: 60%;
  float: left;
}
.userlist .left_blk .search_bl {
  width: 40%;
  float: left;
}
.headblk.userlist .left_blk .filttxt_box {
  width: 43.5%;
}
/* End */
.popupedit {
  background-image: url("../images/editicon_off.png");
  top: 0px;
  width: 13px;
  height: 13px;
  display: block;
  float: right;
  margin-right: 0px;
}
.popupdelete {
  background-image: url("../images/delbin_icon_off.png");
  width: 12px;
  height: 14px;
  display: block;
  float: right;
  margin-right: 15px;
}
/* Dashboard Page */

.dash_section {
  display: block;
  height: auto;
  width: 100%;
}
.dash_section .search_blk form {
  width: 78%;
}
.dash_section .search_blk .txt_box {
  font-family: "Roboto-Light";
  font-size: 14px;
  display: inline-block;
  width: 50%;
  border: 1px solid #ccc;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 9px 15px 9px 45px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  background: #fff url("../images/search_icon.png") no-repeat scroll 15px center;
  float: left;
}
.dash_section .search_blk .txt_box:focus {
  border: 1px solid #0395fa;
}
.dash_section .search_blk .sel_box {
  padding: 10px 30px 9px 15px;
  background: #fff url("../images/select_arr.png") no-repeat scroll 95% center;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  width: 30%;
  border-left: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.dash_section .search_blk .sel_box:focus {
  border-left: none !important;
  border: 1px solid #ccc;
}
.dash_section .search_blk .srch_btn {
  display: block;
  font-family: "Roboto-Bold";
  font-size: 14px;
  color: #fff;
  text-align: center;
  width: auto;
  padding: 10px 25px;
  margin: 0px 0px 0px 10px;
  text-transform: uppercase;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  float: left;
  width: 15%;
}
.dash_section .descp_blk {
  margin: 4px 0px 0px;
}
.dash_section .parblk {
  background: #0395fa;
  width: 49%;
  height: 225px;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  float: left;
  margin: 0px 1% 0px 0px;
  padding: 30px 15px 20px 25px;
  overflow: hidden;
  position: relative;
}
.dash_section .parblk.usrsum {
  background: #1580e0;
  background: -webkit-linear-gradient(left, #1580e0, #2e65c2);
  background: -o-linear-gradient(right, #1580e0, #2e65c2);
  background: -moz-linear-gradient(right, #1580e0, #2e65c2);
  background: linear-gradient(to right, #1580e0, #2e65c2);
}
.dash_section .parblk.docsum {
  background: #2e65c2;
  background: -webkit-linear-gradient(left, #2e65c2, #4549a0);
  background: -o-linear-gradient(right, #2e65c2, #4549a0);
  background: -moz-linear-gradient(right, #2e65c2, #4549a0);
  background: linear-gradient(to right, #2e65c2, #4549a0);
}
.dash_section .parblk.docsum.secure:after {
  content: "";
  width: 44px;
  height: 54px;
  background-image: url("../images/secure_file.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  position: absolute;
  top: -1px;
  right: 10px;
}
.dash_section .parblk.chartsum {
  background: #4549a0;
  background: -webkit-linear-gradient(left, #4549a0, #573687);
  background: -o-linear-gradient(right, #4549a0, #573687);
  background: -moz-linear-gradient(right, #4549a0, #573687);
  background: linear-gradient(to right, #4549a0, #573687);
}
.dash_section .parblk .title {
  text-transform: uppercase;
  font-family: "Roboto-Bold";
  font-size: 16px;
  color: #fff;
  margin: 0px;
}
.dash_section .detlist {
  margin: 25px 0px;
  display: table;
  width: 100%;
}
.dash_section .detlist .cblk {
  float: left;
  width: 50%;
  position: relative;
}
.dash_section .docsum .detlist .cblk {
  width: 33.33%;
}
.dash_section .detlist .left.cblk {
  padding-right: 20px;
}
.dash_section .detlist .right.cblk {
  padding-left: 20px;
}
.dash_section .detlist .right.cblk:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
}
.dash_section .detlist .cblk h5 {
  font-family: "Roboto-Light";
  font-size: 18px;
  color: #fff;
  margin: 0px;
}
.dash_section .detlist .cblk h2 {
  font-family: "Roboto-Regular";
  font-size: 24px;
  color: #ffba00;
  margin: 12px 0px 0px;
}
.dash_section .detlist .cblk h2 .mesur {
  font-size: 14px;
}
.dash_section .usrsum .cblk h5 {
  width: 50%;
}
.dash_section .parblk .total {
  font-family: "Roboto-Light";
  font-size: 18px;
  color: #fff;
  margin: 0px;
}
.dash_section .parblk .total span {
  font-family: "Roboto-Bold";
}
.dash_section .docsum .detlist {
  margin: 35px 0px;
}
.dash_section .linksum {
  background: #fff;
  margin: 0px;
}
.dash_section .linksum .title {
  color: #666;
}
.dash_section .linksum .uselink {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #0099ff;
  margin: 0px 0px 20px;
  display: inline-block;
  text-decoration: underline;
  text-decoration: underline;
}
.dash_section .linksum .uselink:hover {
  text-decoration: none;
}
article.recdoc_blk .table_blk th:first-child,
article.recdoc_blk .table_blk td:first-child {
  width: 200px;
}
.dashbd_bg article.recdoc_blk .table_blk th:first-child,
article.recdoc_blk .table_blk td:first-child {
  width: auto;
}
article.recdoc_blk .headblk {
  display: table;
  width: 100%;
}
article.recdoc_blk .cblock {
  display: table-cell;
  vertical-align: middle;
}
article.recdoc_blk .left_blk h4 {
  text-transform: uppercase;
}
article.recdoc_blk .right_blk a {
  margin: 0px 0px 0px 30px;
}
article.recdoc_blk a.add_docs {
  padding: 8px 15px 8px 25px;
}
article.recdoc_blk .add_docs:before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 2px;
  font-family: "Roboto-Regular";
  font-size: 18px;
}
article.recdoc_blk .headblk .tip_blk {
  background: transparent url("../images/tip_icon.png") no-repeat scroll 0px 0px;
  font-family: "Roboto-Light";
  font-size: 13px;
  color: #333;
  display: inline-block;
  padding: 0px 0px 0px 45px;
}
article.recdoc_blk .table_blk .table {
  min-width: 610px;
}
.usagebar_chart {
  width: 104%;
  height: auto;
  margin: 10px 0px 0px -10px;
}
.usagebar_chart .highcharts-axis-labels tspan,
.usagebar_chart .highcharts-axis-labels text {
  font-family: "Roboto-Bold";
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  fill: rgba(255, 255, 255, 0.7) !important;
}
.usagebar_chart .highcharts-tooltip tspan {
  font-family: "Roboto-Bold";
  color: #333;
  column-fill: #333;
  font-size: 11px;
}
/* End */

/* Client Dashboard Section */

.cdash_section .actsum {
  width: 43%;
  background: #177fe0;
  background: -webkit-linear-gradient(left, #177fe0, #563586);
  background: -o-linear-gradient(right, #177fe0, #563586);
  background: -moz-linear-gradient(right, #177fe0, #563586);
  background: linear-gradient(to right, #177fe0, #563586);
}
.cdash_section .linksum {
  width: 27.5%;
  margin: 0px 1% 0px 0px;
}
.cdash_section .linksum.useful {
  margin: 0px;
}
.cdash_section .actsum .detlist {
  margin: 35px 0px;
}
.cdash_section .detlist .cblk {
  width: 25%;
  display: table-cell;
}
.cdash_section .detlist .right.lrt {
  padding-right: 20px;
}
.cdash_section .detlist .cblk h5 {
  font-size: 16px;
}
/* End */

/* Add Document Page */

section.adddoc_section {
  background: #fff;
  width: 100%;
  float: left;
  height: auto;
  border-radius: 4px;
  position: relative;
}
section.adddoc_section:after {
  content: "";
  background: #ccc;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 300px;
  width: 1px;
  height: 100%;
}
section.adddoc_section .leftbar {
  width: 300px;
  height: 100%;
  min-height: 75vh;
  padding: 30px 0px 60px;
  position: relative;
}
section.adddoc_section .srchblk {
  width: 100%;
  padding: 0px 25px;
}
section.adddoc_section .srchblk .title {
  font-family: "Roboto-Regular";
  font-size: 16px;
  color: #333;
  margin: 0px;
  font-weight: bold;
}
section.adddoc_section .srchblk .srchbx {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #000;
  border: 1px solid #ccc;
  background: transparent url("../images/ssearch_icon.png") no-repeat scroll 95%
    center;
  width: 100%;
  display: block;
  border-radius: 4px;
  padding: 5px 30px 5px 12px;
  margin: -18px 0px 0px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
section.adddoc_section .srchblk .srchbx:focus {
  border: 1px solid #0395fa;
}
section.adddoc_section .folderopr {
  background: #efefef;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}
section.adddoc_section .folderopr .fileop {
  display: inline-block;
  float: left;
  width: 23px;
  height: 23px;
  background: transparent url("../images/sprite_img.png") no-repeat scroll 0px
    0px;
  margin: 0px 15px 0px 0px;
  transition: all 0.2s ease 0s;
}
section.adddoc_section .folderopr .fileop a {
  display: block;
  width: 100%;
  height: 100%;
}
section.adddoc_section .folderopr .fileop.add {
  background-position: -8px -8px;
}
section.adddoc_section .folderopr .fileop.move {
  background-position: -40px -8px;
}
section.adddoc_section .folderopr .fileop.del {
  background-position: -73px -8px;
}
section.adddoc_section .folderopr .fileop.add:hover {
  background-position: -8px -40px;
}
section.adddoc_section .folderopr .fileop.move:hover {
  background-position: -40px -40px;
}
section.adddoc_section .folderopr .fileop.del:hover {
  background-position: -73px -40px;
}
section.adddoc_section .folderopr .fileop.sharfold {
  background-position: -134px -8px; /* background: url('../images/shr_icon.png') no-repeat scroll center center; width: 13px; height: 13px; */
}
section.adddoc_section .folderopr .fileop.sharfold:hover {
  background-position: -134px -40px;
}

section.adddoc_section .folderopr .fileop.upload {
  background-position: -104px -8px;
}
section.adddoc_section .folderopr .fileop.upload:hover {
  background-position: -104px -40px;
}
section.adddoc_section .foldlist {
  width: 100%;
  margin: 15px 0px;
}
section.adddoc_section .main {
  list-style: none;
  font-family: "Roboto-Light";
  font-size: 13px;
  color: #333;
  margin: 0px;
  padding: 0px;
}
section.adddoc_section .main > li {
  background-image: url("../images/smfold_cl.png");
  background-repeat: no-repeat;
  background-position: 25px 13px;
  display: block;
}
section.adddoc_section .main > li:hover {
  background-color: #f6f7f8;
}
section.adddoc_section .main > li > a {
  color: #333;
  display: block;
  padding: 10px 25px 10px 55px;
  text-decoration: none;
  font-family: "Roboto-Regular";
}
section.adddoc_section .main > li > a:hover {
  color: #000;
}
section.adddoc_section .main > li.active {
  background-image: url("../images/smfold_open.png");
}
section.adddoc_section .sublist {
  list-style: none;
  font-family: "Roboto-Regular";
  font-size: 13px;
  margin: 0px;
  padding: 0px;
}
section.adddoc_section .sublist > li {
  background-image: url("../images/smfold_cl.png");
  background-repeat: no-repeat;
  background-position: 55px 11px;
  display: block;
}
section.adddoc_section .sublist > li a {
  color: #666;
  text-decoration: none;
  padding: 7px 25px 7px 80px;
  display: block;
}
section.adddoc_section .sublist > li a:hover {
  color: #333;
}
section.adddoc_section .sublist > li.active {
  background-image: url("../images/smfold_open.png");
  background-color: #f6f7f8;
}
section.adddoc_section .sublist > .sublist > li {
  background-position: 80px 11px;
}
section.adddoc_section .sublist > .sublist > li a {
  padding-left: 105px;
}
section.adddoc_section .sublist > .sublist > .sublist > li {
  background-position: 105px 11px;
}
section.adddoc_section .sublist > .sublist > .sublist > li a {
  padding-left: 130px;
}
section.adddoc_section .sublist > .sublist > .sublist > .sublist li {
  background-position: 130px 11px;
}
section.adddoc_section .sublist > .sublist > .sublist > .sublist li a {
  padding-left: 155px;
}
section.adddoc_section .foldlib {
  width: 100%;
  float: right;
  width: calc(100% - 300px);
  min-height: 460px;
  height: auto;
}
section.adddoc_section .brdmenu_blk {
  padding: 10px 25px;
  border-bottom: 1px solid #ccc;
  display: table;
  width: 100%;
}
section.adddoc_section .brdmenu_blk ul {
  list-style: none;
  font-family: "Roboto-Regular";
  font-size: 13px;
  padding: 0px;
  margin: 0px;
}
section.adddoc_section .brdmenu_blk ul > li {
  display: inline-block;
  background-image: url("../images/foldnext.png");
  background-repeat: no-repeat;
  background-position: 0px 5px;
  margin: 0px 10px 0px 0px;
}
section.adddoc_section .brdmenu_blk ul > li > a {
  color: #333;
  padding: 0px 0px 0px 15px;
}
section.adddoc_section .brdmenu_blk ul > li:first-child {
  background-image: url("../images/foldbread.png");
  background-position: 0px 4px;
}
section.adddoc_section .brdmenu_blk ul > li:first-child > a {
  padding-left: 25px;
}
section.adddoc_section .brdmenu_blk form {
  position: relative;
  text-align: right;
  min-height: 32px;
}
section.adddoc_section .brdmenu_blk .block {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
section.adddoc_section .brdmenu_blk .attxt_box {
  z-index: 1;
  cursor: text;
  background: #fff;
  border: 1px solid #ccc;
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #000;
  width: 100%;
  border-radius: 4px;
  padding: 5px 30px 5px 12px;
  margin: auto 0px;
  transition: width 0.3s ease 0s;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
section.adddoc_section .brdmenu_blk .clkbtn {
  border: none;
  border-radius: 0px;
  height: 17px;
  width: 16px;
  background: transparent url("../images/input_srch.png") no-repeat scroll
    center center;
  float: right;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  z-index: 2;
  margin: auto 0px;
  cursor: pointer;
}
/*section.adddoc_section .brdmenu_blk .attxt_box:focus { width: 100%; z-index: 1; cursor: text; background: #fff; border: 1px solid #ccc }*/
section.adddoc_section .liblist {
  padding: 25px;
}
section.adddoc_section .liblist .table {
  min-width: 770px;
}
section.adddoc_section .liblist .checkbn {
  display: none;
}
section.adddoc_section .liblist .chklabel {
  background-image: url("../images/doc_check.png");
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  display: block;
  margin: 0px;
}
section.adddoc_section .liblist .checkbn:checked + .chklabel {
  background-image: url("../images/doc_check_on.png");
}
section.adddoc_section .liblist tr td {
  vertical-align: middle;
  border: none;
  padding: 10px;
}
section.adddoc_section .liblist tbody tr {
  border-bottom: 1px solid #dedede;
  font-family: "Roboto-Light";
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease 0s;
}
section.adddoc_section .liblist tbody tr:hover,
section.adddoc_section .liblist tbody tr.active {
  background: #f6f7f8;
}
/* section.adddoc_section .liblist tbody tr:hover .filesize, section.adddoc_section .liblist tbody tr:hover .moreset, section.adddoc_section .liblist tbody tr.active .filesize, section.adddoc_section .liblist tbody tr.active .moreset { opacity: 1 } */
section.adddoc_section .liblist thead tr .moreset {
  opacity: 1;
}
section.adddoc_section .liblist thead tr td {
  padding-bottom: 30px;
}
section.adddoc_section .liblist thead .cntname {
  /* font-family: 'Roboto-Light'; */
  font-size: 20px;
  padding-left: 50px;
  font-family: "Roboto-Regular";
}
section.adddoc_section .liblist .checkboxtable {
  width: 45px;
}
section.adddoc_section .liblist tbody td:last-child {
  width: 75px;
}
/* section.adddoc_section .liblist tbody tr:first-child, section.adddoc_section .liblist tbody tr:nth-child(2) { border: none } */
section.adddoc_section .liblist tbody tr:last-child {
  border: none;
}
section.adddoc_section .liblist tbody tr:first-child:hover {
  background: #fff;
}
/* section.adddoc_section .liblist tbody tr:first-child td { padding: 0px } */
section.adddoc_section .liblist .filedrag {
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 100%;
  height: 100px;
  background: #fff;
  border: 1px dashed #bbb;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: center;
  padding: 30px 0px;
}
section.adddoc_section .liblist .filedrag:hover {
  border: 1px dashed #0395fa;
}
section.adddoc_section .liblist .filedrag h5 {
  /* font-family: 'Roboto-Light'; */
  font-size: 15px;
  color: #333;
  font-family: "Roboto-Regular";
}
section.adddoc_section .liblist .filedrag h5 a {
  color: #0395fa;
}
section.adddoc_section .liblist .filedrag h5 a input[type="file"] {
  display: none;
}
section.adddoc_section .liblist .filedrag h5 a label {
  font-weight: normal;
}
section.adddoc_section .liblist .cntname {
  position: relative;
  width: 100%;
  padding-left: 35px;
  font-family: "Roboto-Regular";
}
section.adddoc_section .liblist .cntname.sec {
  padding-left: 60px;
}
section.adddoc_section .liblist .cntname img {
  position: absolute;
  left: 0;
  top: 4px;
  margin: 0px;
}
section.adddoc_section .liblist .cntname .secure {
  display: inline-block;
  width: 14px;
  height: 17px;
  background: transparent url("../images/secure_icon.png") no-repeat scroll
    center center;
  position: absolute;
  left: 32px;
  top: 3px;
  margin: 0px;
}
section.adddoc_section .liblist .filesize {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #999;
  opacity: 1;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
section.adddoc_section .liblist .favr {
  background-image: url("../images/dfav_icon_off.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 11px;
  height: 11px;
}
section.adddoc_section .liblist .remind {
  background-image: url("../images/remainder.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 11px;
  height: 14px;
}
section.adddoc_section .liblist .remind.active {
  background-image: url("../images/bell_icon_on.png");
}
section.adddoc_section .liblist .workflowimg {
  background-image: url("../images/workflow1.png");
  margin-right: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 14px;
}
section.adddoc_section .liblist .workflowimg.active {
  background-image: url("../images/workflow2.png");
}
section.adddoc_section .liblist tbody td.exttd {
  width: 160px;
}
section.adddoc_section .liblist .extdes span {
  display: block;
  margin-right: 24px;
  float: left;
}
section.adddoc_section .liblist .extdes a {
  display: block;
  width: 100%;
  height: 100%;
}
section.adddoc_section .liblist .favr.active {
  background-image: url("../images/dfav_icon_on.png");
}
section.adddoc_section .liblist .share {
  background: url("../images/shr_icon.png") no-repeat scroll center center;
  width: 13px;
  height: 13px;
}
section.adddoc_section .liblist span.cmnts {
  background: url("../images/cmntsicon.png") no-repeat scroll center center;
  width: 14px;
  height: 13px;
  margin-right: 8px;
}
section.adddoc_section .liblist span.cmntcount {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #666;
  margin: -1px 0px 0px;
  line-height: 13px;
}
section.adddoc_section .liblist .moreset {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #666;
  opacity: 1;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
section.adddoc_section .liblist .moreset a {
  color: #666;
  text-decoration: none;
  display: block;
  width: 100%;
}
section.adddoc_section .liblist .moreset a span {
  display: inline-block;
  font-size: 15px;
  margin-left: 10px;
  line-height: 18px;
}
section.adddoc_section .liblist .moreset a span:focus {
  outline: none;
}
section.adddoc_section .liblist .more-cop a {
  display: inline;
}
section.adddoc_section .liblist .more-cop a:last-child {
  margin-left: 10px;
}
section.adddoc_section .liblist .more-cop .copy-link i {
  font-size: 14px;
}
section.adddoc_section .popover.bottom .arrow {
  left: 10% !important;
}
section.adddoc_section .popover {
  padding: 0px;
  width: 200px;
  max-width: 100%;
  border-radius: 0px;
  border: none;
  box-shadow: -1px 3px 10px rgba(0, 0, 0, 0.3);
  left: auto !important;
  right: 25px;
}
section.adddoc_section .share .popover {
  right: 200px;
}
section.adddoc_section .liblist .popover-content {
  padding: 0px;
}
section.adddoc_section .liblist ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #333;
}
section.adddoc_section .liblist ul li {
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: 15px center;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
section.adddoc_section .liblist ul li a {
  color: #333;
  padding: 10px 10px 10px 40px;
  display: block;
  text-decoration: none;
}
section.adddoc_section .liblist ul li:hover {
  background-color: #efefef;
}
section.adddoc_section .liblist ul li:last-child {
  border-bottom: none;
}
section.adddoc_section .liblist ul li.public {
  background-image: url("../images/publicshare.png");
}
section.adddoc_section .liblist ul li.private {
  background-image: url("../images/shr_icon.png");
}
section.adddoc_section .liblist ul li.group {
  background-image: url("../images/dowbin_icon_off.png");
}
section.adddoc_section .liblist ul li.edit {
  background-image: url("../images/popedit.png");
}
section.adddoc_section .liblist ul li.del {
  background-image: url("../images/popdel.png");
}
section.adddoc_section .liblist ul li.move {
  background-image: url("../images/popmove.png");
}
section.adddoc_section .liblist ul li.mngpr {
  background-image: url("../images/pop_permi.png");
}
section.adddoc_section .liblist ul li.shwFile {
  background-image: url("../images/smfold_cl.png");
}
section.adddoc_section .liblist ul li.uploadFile {
  background-image: url("../images/Upload-small.png");
}

.globectrl {
  background: #f6f7f8;
  width: 100%;
  padding: 15px 50px;
  margin: 0px;
  text-align: right;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.globectrl span a {
  transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  font-family: "Roboto-Regular";
  font-size: 13px;
  display: inline-block;
  color: #666;
  margin-right: 40px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  text-decoration: none;
}
.globectrl span a:hover {
  color: #098ef2;
}
.globectrl span.delete a {
  background-image: url("../images/delbin_icon_off.png");
}
.globectrl span.move a {
  background-image: url("../images/movebin_icon_onf.png");
}
.globectrl span.down a {
  background-image: url("../images/dowbin_icon_off.png");
}
.globectrl span.delete:hover a {
  background-image: url("../images/delbin_icon_on.png");
}
.globectrl span.move:hover a {
  background-image: url("../images/movebin_icon_off.png");
}
.globectrl span.down:hover a {
  background-image: url("../images/dowbin_icon_on.png");
}
.filestatus {
  clear: both;
  background: #fff;
  width: 90%;
  max-width: 360px;
  border-radius: 4px;
  padding: 25px;
  height: auto;
  position: fixed;
  right: 60px;
  bottom: 60px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 9;
}
.filestatus .header {
  display: table;
  width: 100%;
}
.filestatus .header h5 {
  font-family: "Roboto-Regular";
  font-size: 13px;
  text-transform: uppercase;
  color: #333;
  margin: 0px;
  display: table-cell;
  vertical-align: middle;
}
.filestatus .header h5 span {
  font-size: 14px;
  color: #999;
  margin-left: 17px;
}
.filestatus .header .minim {
  display: block;
  width: 22px;
  height: 22px;
  background: #0396fb;
  border-radius: 50%;
  float: right;
  position: relative;
  text-decoration: none;
  color: transparent;
}
.filestatus .header .minim:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0px auto;
  width: 10px;
  height: 3px;
  text-decoration: none;
}
.filestatus .header .minim:hover {
  background: #333;
}
.filestatus .flieslist {
  height: 255px;
  width: 100%;
  overflow-y: auto;
}
.filestatus .flieslist ul {
  list-style: none;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #333;
  margin: 20px 0px;
  padding: 0px;
}
.filestatus .flieslist ul li {
  background: transparent url("../images/jpg_icon.png") no-repeat scroll left
    12px;
  padding: 8px 20px 8px 30px;
  position: relative;
  margin: 8px 0px;
}
.filestatus .flieslist .progbar {
  background: #ccc;
  width: 90%;
  height: 2px;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.filestatus .flieslist .progbar .fillbar {
  background: #57b72c;
  display: block;
  height: 100%;
}
.filestatus .flieslist a.canbtn {
  display: inline-block;
  text-decoration: none;
  width: 9px;
  height: 9px;
  background: transparent url("../images/close_btn.png") no-repeat scroll center
    center;
  position: absolute;
  right: 5px;
  top: 13px;
}
.filestatus.circle {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
  right: 20px;
  padding: 10px;
}
.filestatus.circle .radial-progress {
  width: 60px;
  height: 60px;
  background-color: #ccc;
  border-radius: 50%;
}
.filestatus.circle .mask,
.filestatus.circle .fill {
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 50%;
}
.filestatus.circle .mask,
.filestatus.circle .fill {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 1s;
}
.filestatus.circle .fill {
  clip: rect(0px, 30px, 60px, 0px);
  background-color: #0396fb;
}
.filestatus.circle .mask {
  clip: rect(0px, 60px, 60px, 30px);
}
.filestatus.circle .inset {
  width: 50px;
  height: 50px;
  position: absolute;
  margin: 5px 0 0 5px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.filestatus.circle .inset span {
  font-family: "Roboto-Regular";
  font-size: 15px;
  color: #333;
  display: inline-block;
  line-height: 40px;
}
/* End */

/* View Document Page */

section.doctop_sec {
  width: calc(100% - 325px);
  height: 60px;
  background: #0395fa;
  background: linear-gradient(to right, #66cc33, #2c5fff);
  padding: 0px 45px 0px 30px;
  display: table;
  margin: 0px;
  position: relative;
}
section.doctop_sec .logo {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  background-image: url("../images/acvits_logo.png");
  width: 95px;
  height: 34px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
section.doctop_sec .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -10em;
}
section.doctop_sec .backlist {
  display: inline-block;
  width: 150px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
section.doctop_sec .backlist a {
  display: block;
  width: 100%;
  height: 18px;
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  padding-left: 30px;
}
section.doctop_sec .backlist a > i {
  font-size: 21px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
section.doctop_sec .backlist a:hover i {
  left: -5px;
}
section.dets_sec {
  width: calc(100% - 325px);
  height: 65px;
  background: #fff;
  display: table;
  padding: 0px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
section.dets_sec .left_blk {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
section.dets_sec .left_blk h4 {
  font-family: "Roboto-Regular";
  font-size: 16px;
  color: #333;
  margin: 0px;
}
section.dets_sec .right_blk {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
section.dets_sec .right_blk span.move > a {
  background-image: url("../images/docdow_icon_off.png");
}
section.dets_sec .right_blk span.versions > a {
  background-image: url("../images/versions.png");
}
section.dets_sec .right_blk span.share > a {
  background-image: url("../images/docshr_icon_off.png");
}
section.dets_sec .right_blk span.favt > a {
  background-image: url("../images/docfav_icon_off.png");
  margin-right: 0px;
  padding-right: 0px;
}
section.dets_sec .right_blk span.favt.active > a,
section.dets_sec .right_blk span.favt.active > a:hover {
  background-image: url("../images/docfav_icon_act.png");
}
section.dets_sec .right_blk span > a {
  background-position: left center;
  background-repeat: no-repeat;
  color: #1482e3;
  display: inline-block;
  font-family: "Roboto-Regular";
  font-size: 13px;
  margin-right: 15px;
  padding-left: 35px;
  text-decoration: none;
  transition: all 0.1s ease 0s;
  position: relative;
  padding-right: 25px;
}
section.dets_sec .right_blk span > a:after {
  content: "";
  background: #e5e5e5;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0px;
}
section.dets_sec .right_blk span > a:hover {
  color: #333;
}
section.dets_sec .right_blk span.move > a:hover {
  background-image: url("../images/docdow_icon_on.png");
}
section.dets_sec .right_blk span.share > a:hover {
  background-image: url("../images/docshr_icon_on.png");
}
section.dets_sec .right_blk span.favt > a:hover {
  background-image: url("../images/docfav_icon_on.png");
}
section.dets_sec .right_blk span:last-child > a:after {
  content: none;
}
section.dets_sec .share .popover {
  right: 0px;
  width: 200px;
  border-radius: 4px;
}
section.dets_sec .right_blk .popover-content {
  padding: 0px;
}
section.dets_sec .right_blk .poplist {
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #333;
}
section.dets_sec .right_blk .poplist li {
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: 15px center;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
section.dets_sec .right_blk .poplist li a {
  color: #333;
  padding: 10px 10px 10px 40px;
  margin: 0px;
  display: block;
  text-decoration: none;
}
section.dets_sec .right_blk .poplist li:hover {
  background-color: #efefef;
}
section.dets_sec .right_blk .poplist li:last-child {
  border-bottom: none;
}
section.dets_sec .right_blk .poplist li.public {
  background-image: url("../images/publicshare.png");
}
section.dets_sec .right_blk .poplist li.private {
  background-image: url("../images/privateshare.png");
}
section.dets_sec .right_blk .poplist li.group {
  background-image: url("../images/groupshare.png");
}
section.docside_sec {
  height: 100%;
  right: 0;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.4s ease 0s;
  width: 365px;
}
section.docside_sec .menublk {
  background: #f1f2f4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  height: 100%;
  overflow-y: auto;
  padding: 30px 0;
  position: relative;
  width: 325px;
  margin-left: 40px;
}
section.docside_sec .prop_blk {
  padding: 0px 40px;
}
section.docside_sec .prop_blk h6 {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #333;
  margin: 0px;
  line-height: 18px;
}
section.docside_sec .prop_blk h6.bold {
  font-weight: bold;
}
section.docside_sec .prop_blk .type {
  margin: 20px 0px 0px;
}
section.docside_sec .prop_blk .type h6 {
  color: #666;
  margin: 0px 0px 10px;
}
section.docside_sec .prop_blk .filtype {
  background-repeat: no-repeat;
  background-position: left 4px;
  min-height: 29px;
  padding-left: 40px;
}
section.docside_sec .prop_blk .filtype.pdf {
  background-image: url("../images/pdf_icon.png");
}
section.docside_sec .prop_blk .filtype span {
  display: block;
}
section.docside_sec .prop_blk .rest {
  background-image: url("../images/lock_icon.png");
  background-repeat: no-repeat;
  background-position: left 3px;
  min-height: 13px;
  padding-left: 23px;
}
section.docside_sec .prop_blk .rest span,
section.docside_sec .prop_blk .remin span {
  color: #333;
}
section.docside_sec .prop_blk .remin {
  background-image: url("../images/bell_icon.png");
  background-repeat: no-repeat;
  background-position: left 3px;
  min-height: 13px;
  padding-left: 23px;
}
section.docside_sec .prop_blk .about {
  margin: 25px 0px 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cbcccd;
  float: left;
}
section.docside_sec .prop_blk .about .auth {
  color: #666;
  margin: 0px 0px 15px;
}
section.docside_sec .prop_blk .about .auth span,
section.docside_sec .prop_blk .about .auth span a {
  color: #0099ff;
}
section.docside_sec .prop_blk .about h6.bold {
  margin: 20px 0px 0px;
}
section.docside_sec .prop_blk .doctags {
  padding: 15px 0px 35px;
}
section.docside_sec .prop_blk .doctags h6 a {
  color: #666;
  display: inline-block;
  text-decoration: underline;
  margin: 5px 5px 0px 0px;
}
section.docside_sec .prop_blk .doctags h6 a:hover {
  text-decoration: none;
}
section.docside_sec .linksblk {
  border-top: 1px solid #cbcccd;
  border-bottom: 1px solid #cbcccd;
  display: table;
  width: 100%;
}
section.docside_sec .linksblk .blck {
  width: 50%;
  float: left;
  font-family: "Roboto-Light";
  color: #333;
  padding: 15px 15px 15px 75px;
  background-repeat: no-repeat;
  background-position: 40px center;
}
section.docside_sec .linksblk .blck.down {
  background-image: url("../images/downdeta.png");
}
section.docside_sec .linksblk .blck.favt {
  background-image: url("../images/favdeta.png");
}
section.docside_sec .linksblk .blck.share {
  background-image: url("../images/sharedeta.png");
}
section.docside_sec .linksblk .blck.vers {
  background-image: url("../images/versdeta.png");
}
section.docside_sec .linksblk .blck h5 {
  font-size: 15px;
  margin: 0px;
}
section.docside_sec .linksblk .blck h6 {
  font-size: 12px;
  margin: 5px 0px 0px;
}
section.docside_sec .linksblk .blck.favt,
section.docside_sec .linksblk .blck.vers {
  border-left: 1px solid #cbcccd;
  background-position: 25px center;
  padding-left: 60px;
}
section.docside_sec .linksblk .blck.favt,
section.docside_sec .linksblk .blck.down {
  border-bottom: 1px solid #cbcccd;
}
section.docside_sec .cmntblk {
  padding: 30px 40px;
}
section.docside_sec .cmntblk .cnt {
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #1284e6;
  display: inline-block;
  background: transparent url("../images/cmntsicon.png") no-repeat scroll left
    2px;
  padding-left: 20px;
  margin: 0px 0px 20px;
}
section.docside_sec .cmntblk .cnt a {
  color: #1284e6;
}
section.docside_sec .cmntblk .descp {
  margin: 0px 0px 20px;
}
section.docside_sec .cmntblk .posted {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #666;
  margin: 0px;
}
section.docside_sec .cmntblk .posted span,
section.docside_sec .cmntblk .posted span a {
  color: #1284e5;
}
section.docside_sec .cmntblk .contnt {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #333;
  margin: 5px 0px 0px;
  line-height: 18px;
}
section.docside_sec .cmntblk .posct {
  position: relative;
}
section.docside_sec .cmntblk .txtcmnt {
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #333;
  border: none;
  border-radius: 0px;
  background: transparent;
  display: block;
  width: 100%;
  border-bottom: 2px solid #cbcccd;
  padding: 0px 30px 10px 0px;
}
section.docside_sec .cmntblk .highbr {
  display: block;
  width: 0;
  height: 0;
  background: #1086e8;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  margin: -2px auto 0px;
}
section.docside_sec .cmntblk .txtcmnt:focus + .highbr {
  width: 100%;
  height: 2px;
}
section.docside_sec .cmntblk .posct {
  margin: 25px 0px 0px;
}
section.docside_sec .cmntblk .txtbtn {
  width: 25px;
  height: 25px;
  display: inline-block;
  background: #f26422;
  border: none;
  border-radius: 50%;
  font-size: 10px;
  padding: 5px;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  color: #fff;
  position: absolute;
  top: -5px;
  right: 0;
}
section.docside_sec .cmntblk .txtbtn i {
  margin-left: -1px;
}
main.docview_temp {
  padding: 0px 325px 0px 0px;
}
section.docview_sec {
  display: table;
  width: 100%;
  position: relative;
}
section.docview_sec .docs_set {
  width: calc(100% - 30px);
  max-width: 690px;
  height: auto;
  margin: 40px auto 0px;
  text-align: center;
}
section.docside_sec .navbar-toggle {
  display: none;
  background: transparent;
  margin: 0;
  padding: 0;
}
section.docside_sec .navbar-toggle .icon-bar {
  background: #fff;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
}
section.docside_sec .toggle_btn {
  position: absolute;
  top: 22px;
  left: 0;
}
/* End */

/* 404 Page */

header.notfndpage section.doctop_sec {
  width: 100%;
}
main.notfoundpg {
  padding: 0px;
}
section.ntfnd_sec {
  padding: 30px 15px;
  background: #fff;
  display: table;
  height: 100vh;
  position: relative;
  width: 100%;
  background: #fff;
}
section.ntfnd_sec .wrapblk {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
section.ntfnd_sec .wrapblk h3 {
  font-family: "Roboto-Bold";
  font-size: 36px;
  color: #0395fa;
  margin: 0px;
}
section.ntfnd_sec .wrapblk h5 {
  font-family: "Roboto-Regular";
  font-size: 16px;
  color: #000;
  margin: 10px 0px 0px;
}
/* End */

/* Profile Page */

.profile_section {
  background: #fff;
  height: auto;
  margin: 0px 0px 20px;
  border-radius: 4px;
  box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
}
.profile_section .header_blk {
  border-bottom: 2px solid #e0e0e0;
  display: table;
  width: 100%;
  padding-bottom: 25px;
}
.profile_section .header_blk .title {
  font-family: "Roboto-Regular";
  font-size: 17px;
  color: #333;
  margin: 5px 0px 0px;
}
.profile_section .header_blk .right_blk {
  text-align: right;
}
.profile_section .cobtn {
  display: inline-block;
  font-family: "Roboto-Bold";
  font-size: 13px;
  color: #f26422;
  border: 1px solid #f26422;
  background: #fff;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 4px;
}
.profile_section .cobtn:hover {
  background: #f26422;
  color: #fff;
}
.profile_section .header_blk .toggle {
  display: inline-block;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #666;
  margin-right: 15px;
  position: relative;
  padding-right: 20px;
}
.profile_section .header_blk .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 22px;
  float: right;
  margin-left: 8px;
}
.profile_section .header_blk .switch input {
  display: none;
}
.profile_section .header_blk .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 25px;
}
.profile_section .header_blk .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
.profile_section .header_blk .text:before {
  font-family: "Roboto-Regular";
  font-size: 11px;
  font-weight: normal;
  content: "OFF";
  color: #fff;
  position: absolute;
  right: 5px;
  top: 3px;
}
.profile_section .header_blk input:checked + .slider .text:before {
  font-family: "Roboto-Regular";
  font-size: 11px;
  font-weight: normal;
  content: "ON";
  color: #fff;
  position: absolute;
  left: 8px;
  right: auto;
  top: 3px;
}
.profile_section .header_blk .switch input:checked + .slider {
  background-color: #00a651;
}
.profile_section .header_blk .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.profile_section .header_blk .tool_tip {
  width: 13px;
  height: 16px;
  background: transparent url("../images/quest_tip.gif") no-repeat scroll center
    center;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 3px;
}
.profile_section .header_blk .tool_tip a {
  width: 100%;
  height: 100%;
  display: block;
}
.profile_section .header_blk .tooltip > div {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #fff;
}
.profile_section .info_blk {
  padding: 25px 0px 10px;
  display: table;
  width: 100%;
}
.profile_section .info_blk .block.left {
  padding: 0px 35px 0px 0px;
  border-right: 2px solid #e0e0e0;
}
.profile_section .info_blk .block.right {
  padding: 0px 0px 0px 50px;
}
.profile_section .info_blk .head {
  display: table;
  width: 100%;
}
.profile_section .info_blk .sub_title {
  font-family: "Roboto-Regular";
  font-size: 17px;
  color: #333;
  margin: 5px 0px 0px;
  float: left;
}
.profile_section .info_blk .cobtn {
  float: right;
}
.profile_section .info_blk .details {
  margin: 20px 0px 0px;
  position: relative;
  padding-left: 120px;
  min-height: 115px;
}
.profile_section .info_blk .details img {
  position: absolute;
  left: 0;
  width: 88px;
  height: 89px;
  top: 0;
}
.profile_section .info_blk .block.left .details img {
  border-radius: 50%;
}
.profile_section .info_blk .block.right .details img {
  border-radius: 6px;
}
.profile_section .info_blk .details h3 {
  font-family: "Roboto-Regular";
  font-size: 20px;
  color: #333;
  margin: 0px;
}
.profile_section .info_blk .details h5 {
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #666;
  margin: 10px 0px 0px;
  width: 90%;
  line-height: 23px;
}
.profile_section .info_blk .details h5.mob {
  color: #333;
}
.prgroup_section {
  background: #f8f8f8;
  height: auto;
  margin: 0px 0px 20px;
  border-radius: 4px;
  box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
}
.prgroup_section .grp_title {
  font-family: "Roboto-Light";
  font-size: 17px;
  color: #333;
  margin: 0px;
}
.prgroup_section .chipset {
  margin: 25px 0px;
}
.prgroup_section .chip {
  display: inline-block;
  width: auto;
  border: 1px solid #ccc;
  position: relative;
  padding: 10px 10px 10px 45px;
  background: #fff;
  border-radius: 4px;
  margin: 0px 12px 15px 0px;
}
.prgroup_section .chip a {
  text-decoration: none;
}
.prgroup_section .chip img {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.prgroup_section .chip h6 {
  font-family: "Roboto-Regular";
  font-size: 13px;
  color: #666;
  margin: 0px;
}
.prgroup_section .chip h6 .cnt {
  margin-left: 10px;
}
/* End */

/*Faq Page*/

.faquestion {
  background: #fff;
  border-radius: 3px;
  padding: 40px;
  float: left;
  width: 100%;
}
.faquestion h3 {
  font-size: 24px;
  color: #333;
  font-family: Roboto-Regular;
  margin: 0 0 35px;
}
.faquestion .panel-title a {
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 16px;
  padding-right: 15px;
  text-decoration: none;
  font-family: "Roboto-Regular";
  background: url(../images/faqminus.png) no-repeat 100% center;
}
.faquestion .panel-title a.collapsed {
  background: url(../images/faqplus.png) no-repeat 100% center;
}
.faquestion .panel-heading {
  color: #333;
  background: #fff;
  border-top: 1px solid #cccccc;
  border-radius: 0;
  padding: 10px 0;
}
.faquestion .panel:last-child {
  border-bottom: 1px solid #cccccc !important;
  border-radius: 0;
}
.faquestion .panel-body {
  border: 0 !important;
  padding: 10px 0;
  font-size: 15px;
  color: #666;
  font-family: "Roboto-Regular";
}
.panelmain-title {
  float: left;
  width: 170px;
  border-top: 3px solid #0b90f3;
  font-size: 18px;
  text-transform: uppercase;
  font-family: Roboto-Bold;
}
.panelmain-title h4 {
  display: block;
  width: 165px;
  line-height: 24px;
  margin-top: 20px;
}
.panelrightside {
  float: left;
  width: 80%;
  padding-left: 50px;
}
.faquestion .panel {
  border: 0 !important;
  box-shadow: none;
  margin-top: 0 !important;
}
.getquoteform {
  background: #fff;
  padding: 40px;
  max-width: 97%;
  width: 100%;
  font-family: "Roboto-Regular";
  border-radius: 3px;
}
.getquoteform input[type="email"] {
  width: 100%;
  border: 1px solid #a1a1a1;
  background: url(../images/emailicon.png) no-repeat 10px center;
  border-radius: 5px;
  padding: 7px 7px 7px 35px;
  margin-bottom: 20px;
}
.getquoteform input[type="text"] {
  width: 100%;
  border: 1px solid #a1a1a1;
  background: url(../images/usr_icon_on.png) no-repeat 10px center;
  border-radius: 5px;
  padding: 7px 7px 7px 35px;
  margin-bottom: 20px;
}
.getquoteform textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #a1a1a1;
  border-radius: 5px;
  padding: 10px 15px;
  height: 160px;
}
.getquoteform h4 {
  font-size: 21px;
}
.getquoteform p {
  font-size: 16px;
  color: #666666;
  margin: 10px 0 20px;
}
.getquoteform .submit_btn {
  color: #fff;
  padding: 7px 10px;
  width: 90px;
  margin-top: 20px;
}
.panelgroupfull {
  margin-bottom: 20px;
  clear: both;
  float: left;
  width: 100%;
}
/* End */
/**Inspections*/
.inspection_sec a.backto {
  padding: 0 0 15px 0;
  font-size: 13px;
  color: #0395fa;
  display: block;
}
.inspection_sec a.backto:before {
  content: "\e251";
  font-family: "Glyphicons Halflings";
  position: relative;
  padding-right: 10px;
  top: 2px;
}
.inspection_detail {
  background: #fff;
  float: left;
  width: 100%;
}
.inspection_detail .pad-left {
  padding-left: 0;
}
.inspection_detail .content {
  background: #fff;
  padding: 35px 45px 35px 10px;
  color: #000;
}
.inspection_detail .content h1 {
  font-size: 24px;
  font-family: "Roboto-Bold";
  margin-top: 0;
}
.inspection_detail .content h1 span {
  font-size: 16px;
  color: #666;
  display: block;
  padding-top: 10px;
  font-family: "Roboto-Regular";
}
.inspection_detail .content h1 span:after {
  content: "";
  border-bottom: 3px solid #62c43a;
  position: relative;
  display: block;
  width: 88px;
  padding-bottom: 20px;
}
.inspection_detail .content .created {
  font-size: 13px;
  color: #999;
  text-align: right;
}
.inspection_detail .content h6 {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
  margin-bottom: 0;
}
.inspection_sec .title_search {
  padding: 30px 0;
  float: left;
  width: 100%;
}
.inspection_sec .title {
  font-size: 16px;
  color: #666;
  line-height: 35px;
}
.inspection_sec .search {
  border: 1px solid #c6c7c8;
  border-radius: 25px;
  float: left;
  background: url(../images/icon-search.png) no-repeat 15px 9px;
  margin: 0 15px 0 0;
  padding-left: 40px;
  font-style: normal !important;
  font-size: 13px !important;
  color: #818181;
  width: 100%;
  height: 35px;
}
.inspection_sec .window_inspections {
  float: left;
  width: 100%;
  background: #fff;
  padding: 28px 32px;
  border-radius: 5px;
  box-shadow: 0px 4px 15px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  font-size: 13px;
}
.inspection_sec .window_inspections h1 {
  font-size: 18px;
  font-family: "Roboto-Bold";
  margin-top: 0;
}
.inspection_sec .window_inspections .btn_generate {
  background: url(../images/icon-generate.png) no-repeat 17px 8px #0395fa;
  padding: 8px 25px 8px 40px;
  color: #fff;
  border-radius: 25px;
}
.inspection_sec .window_inspections .row_bdr {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 12px;
}
.inspection_sec .window_inspections span {
  color: #666;
  font-family: "Roboto-Bold";
}
.inspection_sec .window_inspections span.user {
  color: #0395fa;
}
.inspection_sec .window_inspections .icon_complete {
  background: url(../images/icon_complete.png) no-repeat right 0px;
  padding: 0px 25px 0px 10px;
  color: #339900;
  display: inline-block;
}
.inspection_sec .window_inspections a span.dots {
  display: inline-block;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -mstransform: rotate(90deg);
  font-size: 15px;
  margin-left: 20px;
}
.inspection_sec .window_inspections .view_report {
  background: url(../images/icon-pdf.png) no-repeat 17px 8px;
  padding: 8px 25px 8px 40px;
  color: #0395fa;
  border-radius: 25px;
  border: 1px solid #0395fa;
}
/**Inspections Aspects*/
.inspection_detail_sec {
  background: #fff;
  float: left;
  width: 100%;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.inspection_detail_sec .bgaspects {
  background-size: cover;
  height: 119px;
  width: 119px;
  margin-right: 30px;
}
.inspection_detail_sec .content {
  background: #fff;
  padding: 25px 45px 35px 0px;
  color: #000;
}
.inspection_detail_sec .content h1 {
  font-size: 20px;
  font-family: "Roboto-Bold";
  margin-top: 0;
}
.inspection_detail_sec .content h1 span {
  font-size: 16px;
  color: #666;
  display: block;
  padding-top: 10px;
  font-family: "Roboto-Regular";
}
.inspection_detail_sec .content h1 span:after {
  content: "";
  border-bottom: 3px solid #62c43a;
  position: relative;
  display: block;
  width: 88px;
  padding-bottom: 20px;
}
.inspection_detail_sec .content h6 {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  margin-bottom: 0;
}
.inspection_detail_sec .content h6 span {
  font-family: "Roboto-Bold";
}
.fixed_window .title_search {
  padding: 40px 0;
  float: left;
  width: 100%;
  font-size: 14px;
  color: #666;
}
.fixed_window .title_search h1 {
  font-size: 24px;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}
.fixed_window .title_search span {
  font-family: "Roboto-Bold";
}
.individual_inspections {
  float: left;
  width: 100%; /*background: #fff; padding: 28px 30px; border-radius: 5px; box-shadow: 0px 4px 15px 0 rgba(0,0,0,0.2); margin-bottom: 30px; */
  font-size: 14px;
}
.individual_inspections h1 {
  font-size: 18px;
  font-family: "Roboto-Bold";
  margin-top: 0;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #ebedef;
}
.individual_inspections img {
  display: block;
}

.col_title {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.individual_inspections h5 {
  font-family: "Roboto-Bold";
  line-height: 20px;
}
.individual_inspections a.icon_edit {
  background: url(../images/icon_edit.png) no-repeat left top;
  background-size: cover;
  height: 18px;
  width: 18px;
  display: inline-block;
}
.individual_inspections a span.dots {
  display: inline-block;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -mstransform: rotate(90deg);
  font-size: 15px;
  margin-left: 20px;
}
.individual_inspections .odd {
  background: #fff;
  padding: 20px 32px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 5px 15px rgba(0, 0, 0, 0.5);
}
.individual_inspections .greybg {
  background: #fff;
  padding: 20px 32px;
  border-top: 1px solid #ebedef; /*border-bottom:1px solid #ebedef; margin-bottom: 30px; border-radius: 8px; /*box-shadow: 0px 5px 15px 3px rgba(0,0,0,0.2)*/
}
.individual_inspections .greybg.inspectbg {
  padding: 20px 0px;
}
.individual_inspections .inspectbg textarea {
  width: 100%;
}
.individual_inspections .greybg .margin-bot {
  margin-bottom: 12px;
}
.individual_inspections textarea {
  width: 90%;
  height: 135px;
  padding: 15px;
  border-radius: 5px;
  background: #fff !important;
  border: 1px solid #ddd;
  resize: none;
}
.individual_inspections .btn_sec {
  padding-top: 40%;
}
.individual_inspections .btn_sec a.btn_cancel {
  padding: 8px 20px;
  color: #0395fa;
  line-height: 25px;
  text-align: center;
}
.individual_inspections .btn_sec a.btn_cancel:hover {
  background: #0395fa;
  border-radius: 25px;
  color: #fff;
  padding: 8px 20px;
}
.individual_inspections .btn_sec a.btn_done {
  background: #0395fa;
  padding: 8px 20px;
  border-radius: 25px;
  line-height: 25px;
  color: #fff;
  margin-left: 15px;
  text-align: center;
}
.individual_inspections .suggestion {
  color: #333;
}
.individual_inspections .inspectbg .btn_sec {
  padding-top: 0;
}
.commentarea {
  clear: both;
  width: 100%;
}
.top_col_right {
  float: right;
  width: 35%;
}
.top_col_title {
  float: left;
  width: 75%%;
}
.btn-sec-button {
  width: 100%;
  clear: both;
  float: left;
  margin-top: 25px;
}
.individual_inspections .btn-sec-button .btn_sec a {
  display: inline !important;
}
.modal.and.carousel {
  position: fixed;
}
.modal_inspection .modal-dialog {
  width: 800px;
  margin: 30px auto;
}
.modal_inspection .carousel-control.left,
.modal_inspection .carousel-control.right {
  background-image: none;
}
.modal.modal_inspection .row {
  padding: 15px 0;
}
.modal.modal_inspection input {
  width: 100%;
  padding: 5px 10px;
}
.modal.modal_inspection input[type="button"] {
  background: #5ebd3e;
  border-radius: 25px;
  line-height: 25px;
  color: #fff;
  border: 0;
}
.modal.modal_inspection .carousel-control {
  height: 10%;
  top: 40%;
}

.modal.modal_inspection a.icon_edit {
  background: url(../images/icon_edit.png) no-repeat left top;
  background-size: cover;
  height: 18px;
  width: 18px;
  display: inline-block;
  margin: 0 5px;
}
.modal.modal_inspection a.icon_camera {
  background: url(../images/icon_camera.png) no-repeat left top;
  background-size: cover;
  height: 17px;
  width: 19px;
  display: inline-block;
  margin: 0 5px;
}
.modal.modal_inspection a.icon_delete {
  background: url(../images/delicon_off.png) no-repeat left top;
  background-size: cover;
  height: 16px;
  width: 13px;
  display: inline-block;
  margin: 0 20px;
}
/* Custom Media Queries */

/*media*/

.panel-heading {
  padding: 0;
  border: 0;
}
.panel-title > a,
.panel-title > a:active {
  display: block;
  padding: 15px;
  color: #555;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 3px;
  text-decoration: none;
}
.panel-heading a:before {
  font-family: "Glyphicons Halflings";
  content: "\e114";
  float: right;
  transition: all 0.5s;
}
.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.media {
  background: #fff;
  height: auto;
  border-radius: 5px;
  position: fixed; /*margin:20px 20px 20px; */
  padding-bottom: 20px;
  position: relative;
}
.media h2 {
  font-size: 18px;
  font-family: "Roboto-Bold";
  text-align: center;
}
.media h3 {
  background: url(../images/m-icon.png) 5px 5px no-repeat;
  padding: 5px 0 0 30px;
  font-family: "Roboto-Bold";
  font-size: 18px;
  float: left;
  width: 180px;
  margin-left: 20px;
}
.media h4 {
  font-size: 13px;
  font-family: "Roboto-Regular";
  float: left;
  margin: 30px 10px 30px 20px;
}
.media .add {
  font-size: 12px;
  margin: 20px 0;
  color: #fff;
  background: #0395fa;
  border: 0;
  border-radius: 15px;
  outline: none !important;
  padding: 3px 12px;
}
.upload-ic {
  width: 30px;
  float: right;
  margin: 15px 0 0;
  margin-right: 20px;
}
.upload-ic i {
  color: #0395fa;
}
.media-img {
  position: relative;
  float: left;
  margin: 0px 7px 7px;
}
/*.media-img img{width:70px;float:left}*/
.media-checkbox {
  margin: 20px 0 0 20px;
}
.media-img input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 70px;
  height: 70px;
}

.media-img video{
  width: 150px;
  height: 90px;
  /* border: 2px solid #b9b9b9; */
}
.media-img img {
  width: 70px;
  height: 70px;
  border: 2px solid #b9b9b9;
}
.media-img .close {
  display: none;
}
.media-img:hover .close {
  display: block;
}
.media-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 10px;
  left: 40px;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
}

/* On mouse-over, add a grey background color */
.media-container:hover input ~ .checkmark {
  background-color: #0395fa;
}

/* When the checkbox is checked, add a blue background */
.media-container input:checked ~ .checkmark {
  background-color: #0395fa;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

/* Style the checkmark/indicator */
.media-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.delete_icon {
  background: url(../images/delbin_icon_off.png) no-repeat left top;
  background-size: cover;
  height: 13px;
  width: 11px;
  display: inline-block;
  margin: 0 5px;
}
a.plus_icon {
  background: url(../images/plus.png) no-repeat left top;
  background-size: cover;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 5px;
}
a.edit_icon {
  background: url(../images/edit.png) no-repeat left top;
  background-size: cover;
  height: 13px;
  width: 14px;
  display: inline-block;
  margin: 0 5px;
}
a.dot_icon {
  background: url(../images/dots.png) no-repeat left top;
  background-size: cover;
  height: 16px;
  width: 6px;
  display: inline-block;
  margin: 0 5px;
}
.panel-title span {
  background: url(../images/acc-menu.png) no-repeat left top;
  margin: 0 5px;
  padding-left: 30px;
}
.individual_inspections .panel-default > .panel-heading {
  background: none;
}

.ac-container {
  width: 100%;
  margin: 10px auto 30px auto;
  text-align: left;
}
.ac-container label {
  font-family: "BebasNeueRegular", "Arial Narrow", Arial, sans-serif;
  padding: 10px 20px 10px 50px;
  position: relative;
  z-index: 20;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  color: #777;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  line-height: 33px;
  font-size: 19px;

  background: url(../images/acc-menu.png) no-repeat 15px 15px #ffffff;
  margin: 0;

  /* background: -moz-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#eaeaea));
    background: -webkit-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    background: -o-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    background: -ms-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );
    box-shadow: 
      0px 0px 0px 1px rgba(155,155,155,0.3), 
      1px 0px 0px 0px rgba(255,255,255,0.9) inset, 
      0px 2px 2px rgba(0,0,0,0.1); */
}
.ac-container label:hover {
  background: #fff;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover {
  /* background: #c6e1ec;
    color: #3d7489; */
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.6);
  /* box-shadow: 
      0px 0px 0px 1px rgba(155,155,155,0.3), 
      0px 2px 2px rgba(0,0,0,0.1); */
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 7px;
  background: transparent url(../images/arrow_down.png) no-repeat center center;
}
.ac-container input:checked + label:hover:after {
  background-image: url(../images/arrow_up.png);
}
.ac-container input {
  display: none;
}
.ac-container article {
  background: rgba(255, 255, 255, 0.5);
  margin-top: -10px;
  overflow: hidden;
  height: 0px;
  position: relative;
  z-index: 10;
  -webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container article p {
  font-style: italic;
  color: #777;
  line-height: 23px;
  font-size: 14px;
  padding: 20px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.ac-container input:checked ~ article {
  -webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3);
}
.ac-container input:checked ~ article.ac-small {
  height: auto;
}
.ac-container input:checked ~ article.ac-medium {
  height: auto;
}
.ac-container input:checked ~ article.ac-large {
  height: auto;
}

/*25-9-2018*/
.mediafixed.affix {
  top: 0px;
  right: 46px;
  width: 418px;
}
/*25-9-2018*/

/*RN code */
.left_blk .head1 {
  font-size: 22px;
  color: #333;
  margin: 15px 0;
  font-weight: bold;
}
.ins-tabbg .table_blk .headblk {
  padding: 10px 20px;
}
.ins-table {
  background: #fff;
}
.ins-table thead tr:first-child td {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
}
.ins-table > thead > tr > th,
.ins-table > thead > tr > td,
.ins-table > tbody > tr > td {
  padding: 14px 20px;
  border: none;
  border-left: 2px solid #ddd;
}
.ins-table {
  margin-bottom: 0;
  /* margin-top: 10px; */
}
.ins-table thead tr:first-child {
  background: #f0f1f3;
}
.ins-table thead tr:last-child,
.ins-table > tbody > tr {
  border-bottom: 1px solid #efefef;
}
.ins-table > tbody > tr:last-child {
  border-bottom: none;
}
.ins-table > tbody > tr:nth-of-type(odd) {
  background: #fff;
}
.ins-tabbg {
  /* background: #fff; */
  /* border-radius: 4px; */
  /* box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2); */
}
.inspec-divider {
  margin-bottom: 20px;
  /* border-bottom: 4px solid #e0e2e6; */
  /* margin-bottom: 15px;
  margin-top: 15px; */
  padding: 0 20px 20px 20px;
  background: #fff;
  border-radius: 0px 0px 6px 6px;
  box-shadow: -1px 3px 5px rgba(0, 0, 0, 0.2);
}
.inspec-divider:last-child {
  border-bottom: none;
}
.inspection-tab > thead > tr > th {
  color: #999999;
  font-weight: normal;
}
.inspec-title {
  padding-left: 4px;
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  float: left;
  width: 70%;
  padding-bottom: 10px;
}
.media-bg {
  overflow-y: auto;
  max-height: 178px;
  /* max-height: 300px; */
  width: 100%;
}
.close-header {
  text-align: right;
  float: right;
}
.close-header .close {
  margin-top: -3px;
}
.subm-bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #ddd;
  left: 0;
  padding-top: 10px;
}
.subm-bg .subm-in input {
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.it-bg {
  padding: 25px 0;
  background: none;
  color: #000;
  /* border-bottom: 4px solid #5ebd3e; */
}

.new-summary {
  margin: 20px 0;
}
.new-summary td {
  padding-bottom: 10px;
}
.new-summary .table-bg-in td:last-child {
  padding-left: 20px;
}
.addplus .fa-arrow-up {
  font-size: 18px;
  color: #9b9b9b;
}
.copy-link {
  padding-right: 20px;
}
.copy-link i {
  font-size: 18px;
  color: #0395fa;
}
.file_edit_pop li a {
  display: block !important;
}
/* privacy policy */
.privcyp-bg header {
  width: 100%;
  height: 100px;
  background: #0395fa;
  background: -webkit-linear-gradient(left, #543586, #0890f4);
  background: -o-linear-gradient(right, #3c3c3c, #000000);
  background: -moz-linear-gradient(right, #543586, #0890f4);
  background: linear-gradient(to right, #66cc33, #2c5fff);
  padding: 0px 30px;
}
.privcyp-bg header img {
  margin: 10px 0;
  height: 80px;
  width: 117px;
}
.privcyp-bg {
  font-family: Roboto-Regular;
  color: #000;
}
.privcyp-bg p {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}
.privcyp-bg h3 {
  font-size: 16px;
  font-weight: 700;
}
.privcyp-bg h2 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
}
.privcyp-bg article.filact_blk {
  margin: 20px 0;
}
/* privacy policy */
/*RN code */
@media screen and (max-width: 1900px) {
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 380px;
  }
}
@media screen and (max-width: 1800px) {
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 350px;
  }
}

@media screen and (max-width: 1600px) {
  .headblk.userlist .left_blk .filttxt_box {
    width: 41%;
  }
  .panelrightside {
    width: 75%;
  }
  .pad-wrapper {
    padding: 0 100px 0 80px;
    display: block;
  }
  section.login_section .recupdts {
    margin: 35px 0px 0px;
    padding: 37px 100px 15px 80px !important;
  }
  .media h3 {
    width: 20%;
  }
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 338px;
  }
}
@media (max-width: 1550px) {
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 310px;
  }
}

@media (max-width: 1440px) {
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 298px;
  }
}

@media (max-width: 1400px) {
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 288px;
  }
}

@media screen and (max-width: 1367px) {
  section.login_section .left_blk {
    padding: 0 605px 60px 0;
  }
  section.login_section .content .copy_right {
    left: 70px;
  }
  .usrlist_section .userblk figure:after {
    width: 92%;
  }
  .dash_section .detlist .cblk h2 {
    font-size: 23px;
  }
  .dash_section .detlist .left.cblk {
    padding-right: 15px;
  }
  .dash_section .detlist .right.cblk {
    padding-left: 15px;
  }
  .dash_section .detlist .cblk h5,
  .dash_section .parblk .total {
    font-size: 16px;
  }
  .cdash_section .detlist .cblk h5,
  .cdash_section .parblk .total {
    font-size: 15px;
  }
  section.adddoc_section .liblist tbody tr {
    font-size: 15px;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 40.5%;
  }
  .filttxt_box {
    width: 37%;
  }
  .panelrightside {
    width: 70%;
  }
  .faq_section .col-md-9 {
    width: 67%;
  }
  .faq_section .col-md-3 {
    width: 33%;
  }
  .individual_inspections .btn_sec {
    padding-top: 30%;
  }
  .individual_inspections .btn_sec a.btn_cancel,
  .individual_inspections .btn_sec a.btn_done {
    display: block;
  }
  .individual_inspections .btn_sec a.btn_done {
    margin-left: 0px;
    margin-top: 12px;
  }
  .mediafixed.affix {
    top: 0px;
    right: 45px;
    width: 276px;
  }
}

@media screen and (max-width: 1300px) {
  article.filact_blk .headblk.userlist .left_blk {
    width: 80%;
  }
  article.filact_blk .headblk.userlist .right_blk {
    width: 20%;
  }
  article.recdoc_blk .right_blk,
  article.filact_blk .left_blk {
    width: auto;
  }
  section.adddoc_section .liblist .table {
    margin-bottom: 10px;
  }
  article.filact_blk.headblk.userlist .left_blk {
    width: 80%;
  }
  article.filact_blk .headblk.userlist .right_blk {
    width: 20%;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 40%;
  }
  .panelrightside {
    width: 70%;
  }
}

@media screen and (max-width: 1280px) {
  section.adddoc_section .liblist .filedrag {
    width: 89%;
  }
  .profile_section .account_settings .icon_left {
    width: 20%;
    margin-right: 5%;
  }
  .profile_section .account_settings .icon_text {
    width: 75%;
  }
  .getquoteform .submit_btn {
    width: 90px;
  }
  .mediafixed.affix {
    top: 0px;
    right: 46px;
    width: 258px;
  }
}

@media screen and (max-width: 1199px) {
  main {
    padding: 30px 15px;
  }
  section.left_menu {
    left: -185px;
  }
  section.docside_sec {
    right: -325px;
  }
  section.docside_sec.opened {
    right: 0px;
  }
  section.left_menu.opened {
    left: 0px;
  }
  section.top_menu {
    width: 100%;
    margin: 0px;
    padding: 0px 15px 0px 60px;
  }
  section.left_menu .navbar-toggle {
    display: block;
  }
  section.top_menu .title {
    font-size: 18px;
  }
  section.top_menu .log_menu .profile {
    font-size: 14px;
  }
  section.top_menu .drop_down .msgtit {
    font-size: 15px;
  }
  section.top_menu .drop_down .msgtime {
    font-size: 13px;
  }
  section.upllist_section .title {
    font-size: 18px;
  }
  article.filact_blk {
    margin: 20px 0px;
  }
  article.filact_blk .headblk {
    padding: 25px;
  }
  article.filact_blk .left_blk h4 {
    font-size: 16px;
  }
  article.filact_blk .left_blk h5 {
    font-size: 14px;
  }
  article.filact_blk .headblk.userlist .left_blk {
    width: 100%;
  }
  article.filact_blk .headblk.userlist .right_blk {
    margin: 10px 0px 0px;
  }
  article.filact_blk .table_blk .table {
    margin: 0px 0px 20px;
  }
  section.login_section .error-msg {
    top: 58px;
  }
  .success_message h5,
  .error_message h5 {
    font-size: 14px;
  }
  .grp_section article.filact_blk .right_blk {
    margin: 0px;
  }
  .usrlist_section .list_blk.left,
  .usrlist_section .list_blk.right {
    width: 100%;
  }
  .usrlist_section .list_blk {
    margin: 20px 0px 0px;
  }
  .usrlist_section .tabs_list .nav,
  .usrlist_section .sub_title {
    font-size: 16px;
  }
  .dash_section .search_blk form {
    width: 100%;
  }
  .dash_section .search_blk .txt_box,
  .dash_section .search_blk .srch_btn {
    font-size: 13px;
  }
  .dash_section .search_blk .sel_box {
    padding: 10px 30px 10px 15px;
  }
  .dash_section .parblk .title,
  .dash_section .detlist .cblk h5,
  .dash_section .parblk .total {
    font-size: 15px;
  }
  .dash_section .detlist .cblk h2 {
    font-size: 21px;
  }
  .dash_section .parblk {
    width: 49%;
    margin: 0px 1% 1% 0px;
  }
  .dash_section .parblk.linksum,
  .dash_section .parblk.docsum {
    margin-right: 0px;
  }
  .dash_section .detlist {
    margin: 15px 0px;
  }
  .dash_section .usrsum .cblk h5 {
    width: 70px;
  }
  .dash_section .docsum .detlist {
    margin: 25px 0px;
  }
  .dash_section .parblk {
    height: 195px;
  }
  .cdash_section .actsum .detlist {
    margin: 25px 0px;
  }
  section.adddoc_section .srchblk .title,
  section.adddoc_section .main {
    font-size: 15px;
  }
  section.adddoc_section .liblist thead .cntname {
    font-size: 18px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 83%;
  }
  section.adddoc_section .liblist .filedrag h5 {
    font-size: 14px;
  }
  .filestatus {
    bottom: 30px;
    right: 30px;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 39%;
  }
  section.doctop_sec,
  section.dets_sec {
    width: 100%;
  }
  main.docview_temp {
    padding: 0px;
  }
  section.docside_sec .navbar-toggle {
    display: block;
  }
  section.login_section .recupdts {
    margin: 25px 0px 0px;
    padding: 37px 50px 15px 50px !important;
  }
  section.login_section .recupdts h3 {
    font-size: 16px;
  }
  section.ntfnd_sec .wrapblk h3 {
    font-size: 32px;
  }
  .profile_section .header_blk .title,
  .profile_section .info_blk .sub_title,
  .prgroup_section .grp_title {
    font-size: 16px;
  }
  .profile_section .info_blk .details h3 {
    font-size: 18px;
  }
  .profile_section .info_blk .details img {
    width: 70px;
    height: 70px;
  }
  .profile_section .info_blk .details {
    padding-left: 90px;
  }
  .profile_section .info_blk .block.left {
    padding-right: 20px;
  }
  .profile_section .info_blk .block.right {
    padding-left: 25px;
  }
  .panelrightside {
    width: 100%;
    padding-left: 0;
  }
  .panelmain-title {
    width: auto;
  }
  .panelmain-title h4 {
    width: auto;
    margin-top: 14px;
    margin-bottom: 20px;
  }
  .pad-wrapper {
    padding: 0 50px 0 50px;
    display: block;
  }
}

@media (max-width: 1024px) {
  .mediafixed.affix {
    top: 0px;
    right: 30px;
    width: 248px;
  }
}

@media screen and (max-width: 992px) {
  .cdash_section .actsum {
    width: 100%;
  }
  .cdash_section .parblk.linksum {
    margin-right: 1%;
  }
  .cdash_section .parblk.linksum.useful {
    margin-right: 0px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 77%;
  }
}

@media screen and (max-width: 800px) {
  section.login_section .left_blk {
    padding: 0 350px 60px 0px;
  }
  article.recdoc_blk .cblock {
    display: block;
  }
  section.adddoc_section .leftbar {
    width: 100%;
    min-height: 0px;
  }
  section.adddoc_section::after {
    content: none;
  }
  section.adddoc_section .foldlib {
    width: 100%;
  }
  section.adddoc_section .liblist .filedrag {
    width: 93%;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 36%;
  }
  .faq_section .col-md-9 {
    width: 60%;
  }
  .faq_section .col-md-3 {
    width: 40%;
  }
}

@media screen and (max-width: 780px) {
  section.adddoc_section .liblist .filedrag {
    width: 89%;
  }
  .profile_section .account_settings {
    margin-bottom: 15px;
  }
  section.login_section .content .copy_right {
    left: 3px;
  }
}

@media screen and (max-width: 767px) {
  .privcyp-bg header {
    padding: 0px;
  }
  .table-responsive {
    border: none;
  }
  section.login_section {
    height: auto;
    padding: 0px;
    display: block;
  }
  section.login_section .wrapp {
    position: relative;
  }
  section.login_section .left_blk {
    padding: 40px 0px;
  }
  section.login_section .logo {
    width: 180px;
    height: 43px;
  }
  section.login_section .content h4 {
    font-size: 21px;
    line-height: 30px;
  }
  section.login_section .content ul {
    font-size: 14px;
  }
  section.login_section .content ul li {
    line-height: 23px;
    padding: 0px 0px 0px 15px;
  }
  section.login_section .content ul .fa {
    font-size: 18px;
  }
  section.login_section .right_blk {
    position: relative;
  }
  section.login_section .right_blk {
    max-width: 100%;
    padding: 50px 30px 40px;
  }
  section.login_section .login_blk h4 {
    font-size: 16px;
    line-height: 25px;
  }
  section.login_section .login_blk .txt_box {
    font-size: 14px;
  }
  section.login_section .login_blk .check_bx + label {
    font-size: 13px;
  }
  section.login_section .login_blk .forget {
    font-size: 13px;
    margin: 20px 0px 0px;
  }
  section.login_section .login_blk .login_btn {
    font-size: 14px;
    margin: 30px 0px 0px;
  }
  section.login_section .content .copy_right {
    position: relative;
    left: 0px;
    bottom: 0px;
    margin: 30px 0px 0px;
  }
  section.top_menu .title {
    font-size: 16px;
  }
  section.top_menu .drop_down .msgtit {
    font-size: 14px;
  }
  section.top_menu .drop_down .msgtime {
    font-size: 12px;
    margin: 5px 0px 0px;
  }
  section.upllist_section .title {
    font-size: 16px;
  }
  article.filact_blk {
    margin: 15px 0px;
  }
  article.filact_blk .headblk {
    padding: 20px 15px;
  }
  article.filact_blk .table_blk {
    margin: 0px;
    border: none;
  }
  section.login_section .error-msg {
    top: 52px;
  }
  .edusrModal .modal-header {
    padding: 15px 20px;
  }
  .edusrModal .modal-title {
    font-size: 15px;
  }
  .edusrModal .close {
    font-size: 26px;
  }
  .edusrModal .modal-body {
    padding: 15px 20px 20px;
  }
  .edusrModal .submit_btn {
    margin: 0px;
  }
  .pagination_blk {
    padding: 0px 15px;
  }
  .success_message h5,
  .error_message h5 {
    font-size: 13px;
  }
  .edgrpModal .user_set .block {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .edgrpModal .desc_list {
    font-size: 13px;
    width: 100%;
  }
  .login_msg.error_message {
    top: -42px;
  }
  section.reg_section .passdrop {
    left: 0px;
    top: 60px;
  }
  section.reg_section .passdrop:after {
    transform: rotate(0deg);
    top: -27px;
    right: unset;
    left: 28px;
  }
  .usrlist_section .list_blk {
    margin: 15px 0px 0px;
    padding: 15px;
  }
  .usrlist_section .tabs_list .nav > li > a {
    padding: 0px 0px 15px 0px;
  }
  .usrlist_section .tabs_list .nav,
  .usrlist_section .sub_title {
    font-size: 15px;
  }
  .usrlist_section .usrlist {
    margin: 15px 0px 0px;
  }
  .usrlist_section .userblk {
    margin: 15px 0px;
  }
  .usrlist_section .userblk figure h5 {
    font-size: 14px;
  }
  .usrlist_section .userblk figure h6 {
    font-size: 12px;
  }
  .usrlist_section .userblk .block::after {
    content: none;
  }
  .usrlist_section .userblk figure {
    width: 100%;
    float: none;
  }
  .usrlist_section .userblk figure.right {
    padding-left: 80px;
  }
  .usrlist_section .userblk figure.right img {
    left: 0px;
  }
  .usrlist_section .userblk figure::after {
    width: 100%;
  }
  .usrlist_section .userblk figure.right::after {
    left: 0px;
  }
  .edusrModal .txt_box.mobilecde + .codes {
    left: -1px;
    top: 23px;
  }
  .edusrModal .txt_box.mobilecde + .codes .txt_box {
    padding: 7px 10px 8px;
  }
  .dash_section .search_blk .srch_btn {
    width: auto;
  }
  .dash_section .descp_blk {
    margin: 30px 0px 0px;
  }
  .dash_section .parblk {
    padding: 25px 20px;
  }
  .dash_section .parblk .title,
  .dash_section .detlist .cblk h5,
  .dash_section .parblk .total {
    font-size: 14px;
  }
  .dash_section .detlist .cblk h2 {
    font-size: 18px;
  }
  .dash_section .parblk {
    width: 100%;
    margin: 0px 0px 10px 0px;
    float: none;
  }
  article.recdoc_blk .headblk .tip_blk {
    font-size: 12px;
  }
  article.recdoc_blk .headblk .tip_blk {
    margin-bottom: 10px;
  }
  section.adddoc_section .liblist thead .cntname {
    font-size: 16px;
  }
  section.adddoc_section .liblist tbody tr {
    font-size: 14px;
  }
  section.adddoc_section .brdmenu_blk .block {
    display: block;
  }
  section.adddoc_section .brdmenu_blk .block form {
    margin: 10px 0px 0px;
  }
  section.adddoc_section .brdmenu_blk {
    padding: 15px 25px;
  }
  .globectrl span a {
    margin-right: 10px;
  }
  .globectrl {
    padding: 12px 15px;
    text-align: center;
    margin: 30px 0px 0px;
  }
  .globectrl span {
    margin-bottom: 10px;
    display: inline-block;
  }
  section.adddoc_section .liblist .filedrag {
    width: 72%;
  }
  section.adddoc_section .liblist .filedrag h5 {
    font-size: 13px;
  }
  .filestatus {
    bottom: 15px;
    right: 15px;
  }
  .usrlist_section .usrlist .filter_blk {
    width: 100%;
  }
  .usrlist_section .usrlist .search_bl {
    width: 100%;
    margin: 10px 0px 0px;
  }
  .filttxt_box {
    width: 42%;
  }
  article.filact_blk .headblk.userlist .right_blk {
    margin: 10px 0px 0px;
  }
  article.filact_blk .headblk.userlist .right_blk,
  .headblk.userlist .left_blk {
    width: 100%;
  }
  .userlist .left_blk .search_bl {
    margin: 10px 0px 0px;
  }
  .userlist .left_blk .search_bl,
  .userlist .left_blk .filter_blk {
    width: 100%;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 42%;
  }
  section.docview_sec .docs_set {
    top: 30px;
  }
  section.ntfnd_sec .wrapblk h3 {
    font-size: 28px;
  }
  section.ntfnd_sec .wrapblk h5 {
    font-size: 15px;
  }
  section.left_menu .menu_blk {
    overflow-y: auto;
  }
  section.left_menu .nav > li .sub_list {
    left: 0px;
    bottom: unset;
    top: 52px;
  }
  .profile_section {
    padding: 20px 15px 30px;
  }
  .profile_section .header_blk .title,
  .profile_section .info_blk .sub_title,
  .prgroup_section .grp_title {
    font-size: 15px;
  }
  .profile_section .header_blk {
    padding-bottom: 15px;
  }
  .profile_section .info_blk {
    padding: 15px 0px 0px;
  }
  .profile_section .info_blk .block.left {
    padding-right: 0px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    border-right: 0px;
  }
  .profile_section .info_blk .block.right {
    padding-left: 0px;
    padding-top: 15px;
  }
  .profile_section .info_blk .details img {
    width: 40px;
    height: 40px;
  }
  .profile_section .info_blk .details {
    padding-left: 60px;
    min-height: 0px;
    margin: 10px 0px 0px;
  }
  .profile_section .info_blk .details h3 {
    font-size: 16px;
  }
  .profile_section .info_blk .details h5 {
    font-size: 14px;
    line-height: 21px;
  }
  .prgroup_section {
    padding: 20px 15px;
  }
  .prgroup_section .chipset {
    margin: 15px 0px;
  }
  .faq_section .col-md-9 {
    width: 100%;
  }
  .faq_section .col-md-3 {
    width: 100%;
    margin-bottom: 25px;
  }
  .getquoteform {
    max-width: 100%;
  }
  .individual_inspections .btn_sec {
    padding-top: 0%;
  }
  .individual_inspections .btn_sec a.btn_cancel,
  .individual_inspections .btn_sec a.btn_done {
    display: -webkit-inline-box;
  }
  .mediafixed.affix {
    position: relative;
    top: unset;
    right: unset;
    width: auto;
  }
  .subm-bg {
    position: static;
    width: auto;
  }
  .subm-bg .subm-in input {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  section.top_menu .drop_down {
    width: 300px;
  }
  article.filact_blk .right_blk a {
    display: block;
    margin: 10px 0px 0px;
  }
  .dash_section .search_blk .txt_box {
    width: 100% !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .dash_section .search_blk .sel_box {
    border-left: 1px solid #ccc;
    border-top: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .dash_section .search_blk .sel_box:focus {
    border-left: 1px solid #ccc !important;
    border-top: none !important;
  }
  .dash_section .search_blk .srch_btn {
    display: block;
    width: 100%;
    margin: 10px 0px 0px;
  }
  article.recdoc_blk .headblk .tip_blk {
    margin-bottom: 0px;
  }
  .cdash_section .detlist .cblk {
    display: block;
    width: 50%;
    margin-bottom: 15px;
  }
  .cdash_section .detlist .right.rtr {
    padding-right: 15px;
    padding-left: 0px;
  }
  .cdash_section .detlist .right.rtr:after {
    content: none;
    padding-left: 0px;
  }
  .cdash_section .detlist .right.lrt {
    padding-right: 0px;
  }
  .cdash_section .parblk.actsum {
    height: auto;
  }
  .cdash_section .actsum .detlist {
    margin: 20px 0px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 52%;
  }
  .filttxt_box {
    width: 39%;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 39%;
  }
  .profile_section .account_settings .icon_left {
    width: 90%;
    margin-right: 0%;
  }
  .profile_section .account_settings .icon_text {
    width: 99%;
  }
  .profile_section .header_blk .right_blk {
    text-align: left;
    margin: 10px 0px 0px;
  }
}

@media screen and (max-width: 639px) {
  section.doctop_sec .backlist {
    display: block;
    margin: 15px 0px 0px;
  }
  section.doctop_sec {
    padding: 0px 45px 0px 15px;
    height: auto;
  }
  section.doctop_sec .logo {
    position: static;
    display: block;
    margin: 10px auto 15px;
  }
  section.docside_sec .toggle_btn {
    top: 15px;
  }
  section.dets_sec {
    height: auto;
    padding: 15px;
  }
  section.dets_sec .left_blk {
    display: block;
  }
  section.dets_sec .left_blk h4 {
    font-size: 15px;
    text-align: center;
    margin: 5px 0px 0px;
  }
  section.dets_sec .right_blk {
    display: block;
    margin: 25px 0px -5px;
    text-align: center;
  }
  section.dets_sec .right_blk span a {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 375px) {
  section.login_section .login_blk .login_btn {
    width: 100%;
  }
  section.top_menu .title,
  section.top_menu .log_menu .profile > a span.prf {
    display: none;
  }
  section.top_menu .drop_down {
    width: 250px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 280px;
  }
  .filtlabel {
    width: 100%;
  }
  .headblk.userlist .left_blk .filttxt_box {
    width: 100%;
  }
  .filttxt_box {
    width: 100%;
    margin: 10px 0px 0px;
  }
  section.docside_sec {
    width: 97%;
  }
  section.docside_sec .menublk {
    width: 89%;
  }
  section.docside_sec .prop_blk {
    padding: 0px 25px;
  }
  section.docside_sec .linksblk .blck {
    background-position: 25px center;
    padding-left: 55px;
  }
  section.docside_sec .linksblk .blck.favt,
  section.docside_sec .linksblk .blck.vers {
    padding-left: 55px;
  }
  section.docside_sec .cmntblk {
    padding: 25px;
  }
  section.docside_sec {
    right: -87%;
  }
  .pad-wrapper {
    padding: 0 20px 0 20px;
    display: block;
  }
  section.login_section .recupdts {
    margin: 25px 0px 0px;
    padding: 37px 20px 15px 20px !important;
  }
}

@media screen and (max-width: 360px) {
  section.docside_sec {
    right: -86%;
  }
}

@media screen and (max-width: 320px) {
  section.top_menu .log_menu .profile,
  section.top_menu .log_menu .profile img {
    margin-left: 0px;
  }
  section.top_menu .log_menu > li > a {
    padding: 15px 12px;
  }
  section.top_menu .log_menu .notify .msg {
    right: 5px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 240px;
  }
  section.docside_sec {
    right: -85%;
  }
  section.dets_sec .share .popover {
    width: 180px;
  }
}

@media screen and (max-width: 300px) {
  section.top_menu .drop_down {
    width: 230px;
  }
  section.adddoc_section .liblist .filedrag {
    width: 220px;
  }
  section.dets_sec .share .popover {
    width: 170px;
  }
}

/* End */

/* CSS3 Hack */

/* For IE */

select::-ms-expand {
  display: none;
}

/* End */

/* For Safari */

_::-moz-svg-foreign-content,
:root section.login_section,
_::-moz-svg-foreign-content,
:root main {
  height: 930px;
}
_::-moz-svg-foreign-content,
:root section.top_menu {
  width: 90.3%;
}
_::-moz-svg-foreign-content,
:root section.doctop_sec,
_::-moz-svg-foreign-content,
:root section.dets_sec {
  width: 83%;
}
.edusrModal .modal-header:after {
  content: none;
}
_:-ms-fullscreen,
:root .edusrModal .modal-header:after {
  display: none;
}
_::-moz-svg-foreign-content,
:root .edusrModal .modal-header {
  border-bottom: 1px solid #ccc;
}
_:-ms-fullscreen,
:root .edusrModal .modal-header {
  border-bottom: 1px solid #ccc;
}
_::-moz-svg-foreign-content,
:root .edusrModal .filer + .brwbtn {
  display: none;
}
_::-moz-svg-foreign-content,
:root .edusrModal .filer {
  display: block;
}
_::-moz-svg-foreign-content,
:root article.filact_blk .left_blk h5 {
  font-style: none;
}
_::-moz-svg-foreign-content,
:root section.adddoc_section .foldlib {
  width: 80%;
}
_::-moz-svg-foreign-content,
:root section.adddoc_section .leftbar {
  min-height: 600px;
}
_::-moz-svg-foreign-content,
:root section.adddoc_section .brdmenu_blk .attxt_box {
  font-size: 0px;
}
_::-moz-svg-foreign-content,
:root section.adddoc_section .brdmenu_blk .attxt_box:focus {
  font-size: 13px;
}
_::-moz-svg-foreign-content,
:root section.doctop_sec .backlist a {
  height: 40%;
}

@media screen and (max-width: 1600px) {
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 77%;
  }
  _::-moz-svg-foreign-content,
  :root section.doctop_sec,
  _::-moz-svg-foreign-content,
  :root section.dets_sec {
    width: 79.5%;
  }
}

@media screen and (max-width: 1367px) {
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 72%;
  }
  _::-moz-svg-foreign-content,
  :root section.doctop_sec,
  _::-moz-svg-foreign-content,
  :root section.dets_sec {
    width: 76%;
  }
  section.adddoc_section .popover.bottom .arrow {
    left: 68% !important;
  }
}

@media screen and (max-width: 1360px) {
  #containment-wrapper {
    width: 85%;
  }
  section.adddoc_section .popover.bottom .arrow {
    left: 64% !important;
  }
}

@media screen and (max-width: 1280px) {
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 70%;
  }
  _::-moz-svg-foreign-content,
  :root section.doctop_sec,
  _::-moz-svg-foreign-content,
  :root section.dets_sec {
    width: 74.5%;
  }
}

@media screen and (max-width: 1199px) {
  _::-moz-svg-foreign-content,
  :root section.top_menu {
    width: 100%;
  }
  _::-moz-svg-foreign-content,
  :root section.doctop_sec,
  _::-moz-svg-foreign-content,
  :root section.dets_sec {
    width: 100%;
  }
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 69%;
  }
}

@media screen and (max-width: 992px) {
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 67%;
  }
  .iddlogo {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .foldlib {
    width: 100%;
  }
  _::-moz-svg-foreign-content,
  :root section.adddoc_section .leftbar {
    min-height: 0px;
  }
}

@media screen and (max-width: 767px) {
  _::-moz-svg-foreign-content,
  :root section.login_section {
    height: auto;
  }
  section.left_menu .nav > li ul {
    display: block;
    position: relative;
    left: 0px;
    top: 10px;
    box-shadow: none;
  }
  section.left_menu .nav > li #demo {
    position: absolute;
    top: 50px;
  }
  .copyrighttext {
    text-align: center;
  }
}
.view_type_class {
  background: rgb(221, 6, 6) none repeat scroll 0 0;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  float: left;
  font-weight: bolder;
  height: 41px;
  padding: 10px 8px;
  text-align: center;
  width: 21%;
}
.closespan {
  border-radius: 50%;
  color: #fff;
  height: 13px;
  line-height: 7px;
  margin: 0 !important;
  position: relative;
  right: -10px;
  text-align: center;
  top: -9px;
  width: 13px;
}
.closespan .fa-close {
  font-size: 8px;
}
.closespan .fa-check {
  font-size: 8px;
}
.disapprove {
  background: #fd5807 none repeat scroll 0 0;
}
.approve {
  background: #228b22 none repeat scroll 0 0;
}
/* Uploader: Drag & Drop */
.flow-error {
  display: none;
  font-size: 14px;
  font-style: italic;
  float: left;
  margin-top: 20px;
}
.flow-drop {
  padding: 15px;
  font-size: 13px;
  text-align: center;
  color: #666;
  font-weight: bold;
  background-color: #eee;
  border: 2px dashed #aaa;
  border-radius: 10px;
  margin-top: 40px;
  z-index: 9999;
  display: none;
}
.flow-dragover {
  padding: 30px;
  color: #555;
  background-color: #ddd;
  border: 1px solid #999;
}
/* Uploader: Progress bar */
.flow-progress {
  margin: 30px 0 30px 0;
  width: 100%;
  display: none;
  float: left;
}
.progress-container {
  height: 20px;
  background: #9cbd94;
  position: relative;
}
.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #45913a;
  width: 0;
  height: 20px;
}
.progress-text {
  font-size: 11px;
  line-height: 9px;
  padding-left: 10px;
}
.progress-pause {
  padding: 0 0 0 7px;
}
.progress-pause .imgclass {
  width: 20px !important;
}
.progress-resume-link {
  display: none;
}
.is-paused .progress-resume-link {
  display: inline;
}
.is-paused .progress-pause-link {
  display: none;
}
.is-complete .progress-pause {
  display: none;
}
/* Uploader: List of items being uploaded */
.flow-list {
  overflow: auto;
  margin-right: -20px;
  display: none;
}
.uploader-item {
  width: 148px;
  height: 90px;
  background-color: #666;
  position: relative;
  border: 2px solid black;
  float: left;
  margin: 0 6px 6px 0;
}
.uploader-item-thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.uploader-item img.uploader-item-thumbnail {
  opacity: 0;
}
.uploader-item-creating-thumbnail {
  padding: 0 5px;
  font-size: 9px;
  color: white;
}
.uploader-item-title {
  position: absolute;
  font-size: 9px;
  line-height: 11px;
  padding: 3px 50px 3px 5px;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 27px;
}
.uploader-item-status {
  position: absolute;
  bottom: 3px;
  right: 3px;
}
/* Uploader: Hover & Active status */
.uploader-item:hover,
.is-active .uploader-item {
  border-color: #4a873c;
  cursor: pointer;
}
.uploader-item:hover .uploader-item-title,
.is-active .uploader-item .uploader-item-title {
  background-color: rgba(74, 135, 60, 0.8);
}
/* Uploader: Error status */
.is-error .uploader-item:hover,
.is-active.is-error .uploader-item {
  border-color: #900;
}
.is-error .uploader-item:hover .uploader-item-title,
.is-active.is-error .uploader-item .uploader-item-title {
  background-color: rgba(153, 0, 0, 0.6);
}
.is-error .uploader-item-creating-thumbnail {
  display: none;
}

svg circle,
svg rect {
  stroke-width: 4px !important;
}

svg circle[data-pdf-annotate-type="fillcircle"] {
  /* fill: rgba(256, 256, 256, 1); */
  fill: lightblue;
  stroke-width: 2px !important;
  stroke: #000000;
  r: 22px;
}
#comment_filter option[value="C"] {
  background-color: blue;
  color: white;
}

#comment_filter option[value="O"] {
  background-color: green;
  color: white;
}

#comment_filter option[value="P"] {
  background-color: yellow;
  color: black;
}

#comment_filter option[value="R"] {
  background-color: red;
  color: white;
}
textarea {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.largeTextarea {
  width: 500px;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wrapper {
  width: 500px;
  height: 100%;
  background: #fff;
  margin: 10px auto 0;
}

.wrapper .tabs_wrap {
  padding: 0px;
  border-bottom: 1px solid #ebedec;
}

.wrapper .tabs_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wrapper .tabs_wrap ul li {
  width: 200px;
  text-align: center;
  background: #e9ecf1;
  border-right: 1px solid #c1c4c9;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px; /* Updated font size */
  font-weight: bold; /* Added font weight */
}

.wrapper .tabs_wrap ul li:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.wrapper .tabs_wrap ul li:last-child {
  border-right: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.wrapper .tabs_wrap ul li:hover,
.wrapper .tabs_wrap ul li.active {
  background: rgb(55, 192, 119);
  background: linear-gradient(
    90deg,
    rgba(55, 192, 119, 1) 0%,
    rgba(12, 185, 84, 1) 0%,
    rgba(69, 204, 118, 1) 49%,
    rgba(26, 161, 208, 1) 100%,
    rgba(15, 116, 158, 0) 100%,
    rgba(15, 116, 158, 0) 100%,
    rgba(15, 116, 158, 0) 100%
  );
  color: #fff;
}
.textLayer > div {
  position: absolute;
  transform-origin: 0% 0% !important;
}
.folder-outline {
  background: linear-gradient(to right, #2654d3, #2a0368);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 10px;
  display: inline-block;
  font-weight: bolder;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 5px;
}
/*
.canvasWrapper, .canvasWrapper > div {
    position: absolute;
    z-index: 1;
}

.textLayer, .textLayer > div {
    z-index: 3;
}

.annotationLayer, .annotationLayer > div {
    z-index: 2;
}*/

/* End */

/* End */
