body {
  font-family: 'Montserrat', sans-serif !important;
  background-color: #fafafa !important;
}

/* font-family: 'Open Sans', sans-serif; */
/* 	font-family: 'Montserrat', sans-serif; */
button {
  cursor: pointer;

}

button:focus {
  outline: none;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* material icon */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(../fonts/MaterialIcons-Regular.woff2) format('woff2'), url(../fonts/MaterialIcons-Regular.woff) format('woff'), url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}


/* Sign in page  added by partha*/

.signin-wraper {
  min-height: 100vh;
  background-color: #F4F5FA;
  padding: 50px 15px;
}

.sign-in-card-block {
  box-shadow: 0px 1px 15px 1px rgba(62, 57, 107, 0.07);
  width: 100%;
  max-width: 500px;
  margin: auto;
  background-color: #fff;
  padding: 25px 16px;
}

.login-tagline {
  font-size: 14px;
  text-align: center;
  margin: 0;
  position: relative;
}

.login-tagline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 1px solid #dadada;
  z-index: 1;
  top: 50%;
}

.login-tagline>span {
  background: #fff;
  padding: 0 10px;
  color: #6B6F82;
  position: relative;
  z-index: 2;
}

.sign-in-form-container .form-group label {
  color: #2b335e;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: initial;
  font-weight: 600;
  display: block;
}

.sign-in-form-container .form-group label small {
  font-size: 90%;
}

.sign-in-form-container .form-group .form-control {
  border: 1px solid #cacfe7;
  color: #3b4781;
  height: 42px;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
}

.sign-in-form-container .form-group .form-control:focus {
  box-shadow: none;
  border-color: #3b4781;
}

.sign-in-form-container .form-group {
  margin-bottom: 15px;
}

.login-btn {
  border: 1px solid #3f9e85 !important;
  background-color: #3f9e85 !important;
  color: #FFFFFF;
  display: block;
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.login-btn:focus {
  outline: none;
}


.checkbox-label {
  position: relative;
}

.checkbox-label>input {
  position: absolute;
  left: 0;
  opacity: 0;
}

.checkbox-label .check-mark {
  width: 17px;
  height: 17px;
  border: 2px solid #000;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 5px;
}

.checkbox-label>input:checked~.check-mark {
  background-color: #000;
}

.checkbox-label>input:checked~.check-mark:after {
  content: "";
  width: 6px;
  height: 14px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transform: rotate(43deg);
  left: 4px;
  top: -1px;

}

.login-alert {
  background-color: #001489;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.sign-in-card-block-header {
  padding-bottom: 35px;
}

.login-alert .close img {
  width: 14px;
}

button:focus {
  outline: none;
}

.sign-in-card-block-footer {
  padding-top: 75px;
  padding-bottom: 25px;
}

.login-tagline span a {
  color: #0c84d1;
}

.red-bg {
  background-color: #FF4961;
}

/* new header style */
.new-header {
  background-color: #232943;
}

.header-inner {
  padding: 10px 0;
}

.logo-link {
  /*width: 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #fff;
  */
}

.logo-link>img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.unstyled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.left-menu {
  flex-grow: 1;
  padding-left: 15px;
}

.main-menu li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;

}

.main-menu li a {
  padding: 0 15px;
  color: #b9cded;
  font-weight: 500;
  font-size: 15px;
}

.main-menu li.menu-close-btn {
  display: none;
}

.main-menu li a:hover,
.main-menu li a.active {
  color: #fff;
  text-decoration: none;
}

.container-fluid {
  max-width: 1400px;
}

.user-image {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  vertical-align: middle;
  margin-left: 10px;
}

.right-side-menu li a .user-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-side-menu li a .current-user-name {
  color: #b9cded;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.right-side-menu li a .current-user-name small {
  margin-right: 5px;
}

.right-side-menu li a {
  position: relative;
  padding: 0 10px;
}

.right-side-menu li:last-child a {
  padding-right: 0;
}

.right-side-menu li {
  display: inline-block;
  vertical-align: middle;

}

.right-side-menu li a.notification-icon:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background-color: #f45b9e;
  position: absolute;
  top: -7px;
  right: calc(50% - 3px);
}

.right-side-menu li.mobile-menu {
  display: none;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
}

.mobile-menu-btn img {
  width: 30px;
}

.menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  display: none;
}

/* dropdown */
.dropdown-parent{
  position: relative;
}
.custom-dropdown-menu {
  background: #fff;
  padding: 15px;
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 9px 15px #f1f0f0;
  min-width: 190px;
  top: 90%;
  z-index: 15;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: none;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}
.dropdown-parent:hover .custom-dropdown-menu {
  display: block;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}
.dropdown-menu-list li a{
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #807b7b;
}
.dropdown-menu-list li{
  margin-bottom: 10px;
  display: block;
}
.dropdown-menu-list li:last-child{
  margin-bottom: 0;
}
.dropdown-menu-list li a img{
  margin-right: 15px;
}
.dropdown-menu-list li a:hover{
  color: #001489;
}
.profile-name-section{
display: flex;
align-items: center;
margin-bottom: 25px;
}
.profile-name-section figure{
  margin: 0;
  width: 65px;
  height: 65px;
  border-radius: 5px;
}
.profile-name-section figure img{
  width: 100%;
  height: 100%;
}
.profile-name-section span{
  width: calc(100% - 65px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  padding-left: 15px;
}
.custom-dropdown-menu.profile-dropdown {
  left: auto;
  right: 0;
  width: 250px;
}
.custom-dropdown-menu.profile-dropdown li {
  margin-bottom: 15px;
}
.custom-dropdown-menu.profile-dropdown li a{
  font-size: 14px;
  color: #807b7b;
  font-weight: 500;
}
.custom-dropdown-menu.profile-dropdown li a:hover{
  color: #001489;
  text-decoration:none
}
.custom-dropdown-menu.profile-dropdown li:last-child {
  margin-bottom: 0px;
}
.sign-out-btn{
  background: #c8d1e2;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 15px;
  border-radius: 15px;
  color: #012f7a;
}
.upgrade-btn{
  background: transparent;
  border: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 15px;
  border-radius: 15px;
}
.log-out-btn-container{
  padding: 15px 15px;
  border-top: 1px solid #d0d3d6;
  margin-top: 16px;
  margin-left: -15px;
  margin-right: -15px;
}
/* 05_02_2020 */
.main-content-area {
  padding-top: 35px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.white-box-container {
  box-shadow: 0px 1px 15px 1px rgba(62, 57, 107, 0.07);
  width: 100%;
  background-color: #fff;
  padding: 20px;
}

.white-box-heading {
  color: #5a487e;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.add-question-btn {
  background-color: #3f9e85;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 24px;
}

.white-box-content-header {
  border-bottom: 1px solid #dadada;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-table {
  border-collapse: separate;
  border-spacing: 0 15px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #9c9a9a;
}

.custom-table tbody tr {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 0 20px #efefef;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.custom-table td {
  border: none !important;
  padding: 15px 10px;
  vertical-align: middle;
}

.custom-table th {
  border: none !important;
  padding: 5px 10px;
}

.custom-table td.name-cell {
  color: #000;
  font-weight: 600;
  max-width: 150px;
}

.custom-table td.name-cell span {
  display: inline-flex;
  padding: 5px;
  background: #f5f5f8;
  min-width: 27px;
  border: 1px solid #d0d0f9;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 6px;
}

.custom-table td.name-cell a {
  color: #001489;
  text-decoration: none;
}

.status-text {
  font-size: 12px;
  padding: 6px 14px;
  /* background: #666; */
  border-radius: 13px;
  min-width: 85px;
  display: inline-block;
  text-align: center;
}

.status-text.published {
  background-color: #e5ffe5;
  color: #2f864e;
}

.status-text.draft {
  background-color: #fbe4e6;
  color: #b5767c;
  display: inline-flex;
  align-items: center;
  height: 28px;
}

.custom-table td .date {
  color: #000;
  font-weight: 600;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.custom-table td .date:before {
  content: "";
  width: 30px;
  background-image: url(../images/calendar-icon.png);
  position: relative;
  height: 23px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  vertical-align: middle;
  margin-right: 10px;
}

.cell-view-btn {
  background: #e9ebff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  color: #686ca1;
  margin: 2px;
}

.cell-btn i {
  font-size: 15px;
  margin-right: 5px;
}

.cell-edit-btn {
  background: #fcead8;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  color: #e89342;
  margin: 2px;
}

.cell-publish-btn {
  background: #e5ffe5;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  color: #2f864e;
  margin: 2px;
}

.cell-archieve-btn {
  background: #fbe4e6;
  color: #a77c81;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  margin: 2px;
}

.cell-publish-btn i {
  font-size: 15px;
      margin-right: 5px;
}

.custom-table td.action-cell {
  max-width: 160px;
  text-align: right;
}

footer {
  background-color: #f4f4f4;
  padding: 10px 0;
}

.inner-footer p {
  color: #7e829b;
  font-weight: 500;
  font-size: 12px;
}

.step-progress-list li .step-count>b {
  background: #ededed;
  width: 45px;
  height: 45px;
  display: flex;
  border-radius: 100%;
  padding: 5px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.step-progress-list li .step-count {
  display: inline-block;
  border-radius: 100%;
  padding: 4px;
  border: 2px solid transparent;
}

.step-progress-list li {
  position: relative;
  z-index: 2;
}

.step-progress-list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step-progress-list li.total-progress {
  position: absolute;
  height: 2px;
  left: 10px;
  /* right: 10px; */
  top: calc(50% - 1px);
  background: #3f9e85;
  max-width: calc(100% - 20px);
}

.step-progress-list:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 10px;
  right: 10px;
  top: calc(50% - 1px);
  background: #ededed;
}

.step-progress-list li.inprogress .step-count {
  border-color: #3f9e85;
  background-color: #fff;
}

.step-progress-list li.inprogress .step-count>b {
  background-color: #3f9e85;
}

.step-progress-list li.completed .step-count>b {
  background-color: #3f9e85;
}

.step-progress-counter-div {
  padding: 35px 0;
}

.step-title {
  color: #b0b2c0;
  font-weight: 100;
  font-size: 22px;
  margin-bottom: 23px;
}

.step-heading {
  font-size: 30px;
  color: #000;
  margin-bottom: 21px;
}

.question-container .form-group label {
  color: #2b335e;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: initial;
}

.question-container .form-group .form-control {
  border: 1px solid #cacfe7;
  color: #3b4781;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}

.question-container .form-group .form-control:focus {
  box-shadow: none;
  border-color: #3b4781;
}

.half-width {
  max-width: 50%;
}

.white-box-content-footer {
  border-top: 1px solid #dadada;
  padding-top: 25px;
  margin-top: 75px;
}

.next-btn {
  border: 1px solid #3f9e85 !important;
  background-color: #3f9e85 !important;
  color: #FFFFFF;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  min-width: 206px;
  margin: 5px;
}

.next-btn:hover {
  border: 1px solid #31b995 !important;
  background-color: #31b995 !important;
}

.previous-btn {
  border: 1px solid #ededed !important;
  background-color: #ededed !important;
  color: #2e2e2e;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  min-width: 206px;
  margin: 5px;
}

.checkbox-listing li {
  width: 33.33%;
  padding: 5px;
}

.checkbox-listing li label {
  margin: 0;
}

.checkbox-listing {
  margin-left: -5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


/* #card page
================================================== */

.supplier-section {
  padding-top: 30px;
  padding-bottom: 15px;
}

.supplier-section .card {
  padding: 30px 0;
  box-shadow: rgba(204, 204, 204, 0.17) 0px 0px 20px 2px;
   margin-bottom: 20px;
}

.supplier-section .card-text {
  font-size: 16px;
  color: #aaafb1;
  font-weight: 500;
}

/*extra*/

.rel {
  position: relative !important;
}

.notify-signal {
  background: #f75a5f;
}

.notify-signal {
  height: 6px;
  width: 6px;
  position: absolute;
  top: -3px;
  right: -3px;
  background: #18c5a9;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}


.fileUpload {
  position: relative;
  overflow: hidden;
  margin: 10px;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* post-card */
.post-card {
  margin-bottom: 30px;
}

.post-card .post-card-thumbnail,
.post-card .post-card-thumbnail img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.post-card .post-card-header {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 10px;
}

.post-card .post-card-heade-text {
  padding: 0 10px;
}

.post-card .post-card-heade-text p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #515465;
}

.post-card-text {
  padding-top: 15px;
}

.post-card .post-card-heade-text span {
  font-size: 12px;
  font-weight: 400;
}

.post-card .post-card-body {
  padding: 15px;
  background-color: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: rgba(204, 204, 204, 0.59) 0px 0px 3px 1px;
}

.post-card .post-card-body strong {
  color: #ee3131;
  font-size: 12px;
  font-weight: 700;
}

.post-card .post-card-body .comment {
  color: #002f79;
}

.post-card .post-card-body .comment img,
.post-card .post-card-body .share img {
  padding: 0 10px;
}

.post-card .post-card-body .share {
  color: #7e829b;
}

.post-card .post-card-title {
  margin-bottom: 10px;
}

.post-card .post-card-title a {
  color: #1D2228;
}

.post-card .post-card-title a:hover {
  color: #ff6767;
}

.post-card .post-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding-top: 15px;
}

.post-card p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #7e829b;
  font-weight: 500;
}

.post-card .post-card-meta.post-card-head {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-top: 0px;
}

.post-card .post-card-meta span {
  font-size: 13px;
  color: #848486;
}

.post-card-difficulty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-card-difficulty-inner {
  margin-right: 10px;
}

.post-card-difficulty-inner span {
  width: 3px;
  height: 7px;
  background-color: #848486;
  display: inline-block;
}

.post-card .post-card-meta span i {
  margin-right: 10px;
}

.post-card-difficulty-inner span.active {
  background-color: #85B72C;
}

.post-card-difficulty-inner span:nth-child(2) {
  height: 10px;
}

.post-card-difficulty-inner span:nth-child(3) {
  height: 13px;
}

.post-card-duration {
  display: inline-block;
}

.post {
  margin-bottom: 40px;
}

.post .post-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.post .post-thumbnail a {
  display: block;
}

.post .post-thumbnail img {
  width: 100%;
  border-radius: 8px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(1) translateX(0) rotate(0deg);
  -ms-transform: scale(1) translateX(0) rotate(0deg);
  transform: scale(1) translateX(0) rotate(0deg);
}

.post .post-thumbnail:hover img {
  -webkit-transform: scale(1.1) translateX(0) rotate(2deg);
  -ms-transform: scale(1.1) translateX(0) rotate(2deg);
  transform: scale(1.1) translateX(0) rotate(2deg);
}

.post .post-thumbnail .post-meta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  pointer-events: none;
  padding: 20px;
  border-bottom: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.post .post-thumbnail .post-meta span {
  display: block;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 13px;
}

.post .post-thumbnail:hover .post-meta {
  opacity: 1;
  visibility: visible;
}

.post.post-no-thumbnail .post-meta {
  margin: 0;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post.post-no-thumbnail .post-meta span {
  font-size: 13px;
}

.post-categories {
  margin-top: 15px;
}

.post-categories a {
  display: inline-block;
  padding: 3px 12px;
  color: #ff6767;
  background-color: #ffdbdb;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 2px 5px 0;
  font-size: 13px;
}

.post-categories a:hover {
  background-color: #ff6767;
  color: #fff;
}

.post .post-title a {
  color: #1D2228;
}

.post .post-title a:hover {
  color: #ff6767;
}

.post .post-body {
  margin: 10px 0 0;
}

.post .post-body .post-title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 30px;
}

.post .video-player-trigger,
.post-single .video-player-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post .video-player-trigger a,
.post-single .video-player-trigger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-player-trigger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ff6767;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

/* style for home page */
.landing-page-header {
  font-family: 'Open Sans', sans-serif;
  font-family: 'Open Sans', sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.header-top-section {
  display: flex;
  flex-wrap: wrap;

  padding: 10px 0;
}

.header-top-col {
  width: 50%;
  /* padding:0 15px; */
}

.header-social-media-listing {
  display: flex;
}

.header-social-media-listing>li {
  padding: 0 10px;
}

.header-social-media-listing>li:first-child {
  padding-left: 0;
}

.header-menu-list {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

.header-menu-list li {
  padding: 0 10px;
}

.header-menu-list li:last-child {
  padding-right: 0
}

.header-menu-list li a img {
  max-width: 20px;
}

.header-menu-list li a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.landing-page-header a:hover {
  text-decoration: none;
  color: #fff !important  ;
}

.header-bottom-section {
  display: flex;
  display: -webkit-flex;
  padding: 15px 0;
}

.logo-section {
  width: 150px;
}

.logo-section img {
  max-width: 100%;
}

.main-menu-section {
  width: calc(100% - 150px);
}

.landing-main-menu {
  text-align: right;
}

.landing-main-menu li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

.landing-main-menu li:last-child {
  padding: 0;
}

.landing-main-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: block;
}

.landing-main-menu li a.menu-sign-in-btn {
  background-color: #001489;
  padding: 14px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.landing-main-menu li a.menu-sign-up-btn {
  background-color: #3f9e85;
  padding: 14px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.landing-main-menu li a.menu-sign-up-btn:hover {
  background-color: #309077;
}

.landing-main-menu li a.menu-sign-in-btn:hover {
  background-color: #152dbb;
}


.landing-page-header.fixedHeader{
  position: fixed;
    background: #fff;
    box-shadow:0 0 10px #f1f1f1;
    top: -43px;
}
.landing-page-header.fixedHeader a
{
  color:#000;
}
.landing-page-header.fixedHeader a.menu-sign-in-btn,
.landing-page-header.fixedHeader a.menu-sign-up-btn{
  color:#fff;
}
.landing-page-header.fixedHeader{

}

.landing-page-header.fixedHeader .fixed-header-logo{
  display: block;
}
.landing-page-header.fixedHeader .header-logo{
  display: none;
}

/* banner */

.banner-section {
  background-color: #c5c3c3;
  font-family: 'Open Sans', sans-serif;
  padding-top: 230px;
  padding-bottom: 70px;
  background-image: url(../images/banner_1.jpg);
  min-height: 80vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.baner-get-started-btn {
  background-color: #001489;
  padding: 14px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.baner-clear-btn {
  background-color: transparent;
  padding: 10px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  border: 2px solid #fff;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.baner-get-started-btn:hover {
  background-color: #152dbb;
}

.baner-clear-btn:hover {
  background-color: #3f9e85;
  border-color: #3f9e85;
}

.banner-section-heading-container {
  max-width: 750px;
  min-height: 152px;

}

.banner-section-heading {
  /* transition: all 0.5s 4.25s; */
  color: #ffffff;
  font-size: 42px;
}

.banner-article {
  margin-bottom: 110px;
}

.info-block-container {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.info-block-container .info-block {
  width: 25%;
  padding: 15px;
}

.info-block-container .info-heading {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.info-block-container .info-text {
  color: #ffffff;
  margin: 0;
  font-size: 14px;
}

.info-icon {
  padding: 0 0 10px 15px;
}


/* feature section */

.feature-section-nav-container {
  /* border-top: 1px solid #e5e7f2; */
  border-bottom: 1px solid #e5e7f2;
  background: #f7f9fb;
  text-align: center;
  padding: 14px 0;
  margin-bottom: 45px;
  position: sticky;
  top: 80px;
  z-index: 2;
}

.feature-section-nav-text {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 15px;
}

.feature-section-nav-text a {
  transition: 0.25s;
  color: #1f1f1f;

}

.feature-section-nav-text a:hover {
  text-decoration: none;
  color: #2c46ba;
}

.market-place-container {
  font-family: 'Open Sans', sans-serif;
}

.market-place-heading {
  color: #1f1f1f;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 28px;
  position: relative;
}

.market-place-text {
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  color: inherit;
  font-size: 18px;
  margin-bottom: 0;
  color: #828282;
}

.marketplace-feature-listing {
  margin-top: 25px;
  margin-bottom: 30px;
}

.marketplace-feature-listing li {
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
  margin: 0;
  font-weight: normal;
  padding: 0;
  color: #828282;
  font-size: 14px;
}

.marketplace-feature-listing li:before {
  content: "";
  margin-right: 16px;
  color: #2c46ba;
  position: relative;
  background-image: url(../images/tick.png);
  background-repeat: no-repeat;
  background-position: left top;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.join-waitlist-btn {
  background-color: transparent;
  padding: 10px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  border: 2px solid #001489;
  font-size: 15px;
  font-weight: 600;
  color: #001489;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.join-waitlist-btn:hover {
  background-color: #001489;
  color: #fff;
  text-decoration: none;
}

.market-place-article figure {
  border: 1px solid #e5e7f2;
  border-radius: 4px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.045);
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-place-container {
  padding: 50px 0;
}

.market-place-article {
  max-width: 485px;
}

.feature-section {
  background-color: white;
}

.market-place-image img {
  max-width: 100%;
}

.who-we-are-section {
  font-family: 'Open Sans', sans-serif;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../images/solution_bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.who-we-are-heading {
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 400;
}

.who-we-are-sub-heading {
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 18px;
}

.counter-inner .counter {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 75px;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  color: #fff;
}

.counter-inner .counter .counter-unit {
  opacity: 0.6;
}

.counter-heading {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.counter-text {
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}

.testimonial-section {
  padding-top: 100px;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 120px;
  background-color: #fff;
}

.testimonial-heading {
  margin-bottom: 10px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.3;
  font-weight: 400;
  color: #1f1f1f;
  text-align: center;
}

.testimonial-sub-heading {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  color: inherit;
  margin-bottom: 20px;
  text-align: center;
  color: #828282;
}

.slider-image-container {
  position: relative;
  padding: 0 70px;
}

.testimonial-test-container {
  position: relative;
  padding: 0 50px;
}

.testimonial-test-container img {
  width: 100%;
}

.msg-container {
  position: absolute;
  background: #fff;
  -webkit-box-shadow: 0 10px 90px -20px hsla(0, 0%, 15%, 0.25);
  box-shadow: 0 10px 90px -20px hsla(0, 0%, 15%, 0.25);
  padding: 60px;
  left: 0;
  top: 66px;
  max-width: 400px;
  /* bottom:35px;
    display: inline-block;
    width: auto;
    max-width: 45%; */
}

.msg-container .message {
  text-align: left;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: #1f1f1f;
  line-height: 1.3;
}

.msg-container .author {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  width: 100%;
  display: block;
  line-height: 1;
  margin: 0;
}
.designation {
  line-height: 25px;
  display: block;
  width: 100%;
  color: #828282;
  font-size: 14px;
}

.testimonial-slider-container {
  padding-top: 60px;
}

.testimonial-slider .owl-dots span {
  background: #fff !important;
  border-color: #fff !important;
  opacity: 0.5;
  display: block;
  width: 9px;
  height: 9px;
  transition: 0.3s;
  border-radius: 50%;
  margin: 0 8px;
  border: 2px solid transparent;
}

.testimonial-slider .owl-dots .active span {
  opacity: 1;
}

.testimonial-slider .owl-dots {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  text-align: center;
  margin-top: -45px;
  z-index: 10;

}

.testimonial-slider .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}


/* news section */
.new-section-container {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  /* padding-bottom: 100px; */
}

.news-title {
  position: relative;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  padding-bottom: 20px;
  color: #1f1f1f;
  text-align: center;
}

.news-title:after {
  content: "";
  position: absolute;
  border-top: 3px solid;
  height: 1px;
  border-color: #253fe8;
  width: 40px;
  left: calc(50% - 20px);
  bottom: 0;

}

.news-block-row {
  display: flex;
  display: -webkit-flex;
}

.news-block {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  min-height: 190px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.news-block-row .news-block:last-child {
  border: none;
}

.bdr-btm {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-block-container {
  padding: 100px 0;
}




/* footer */
.landing-footer {
  font-family: 'Open Sans', sans-serif;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  z-index: 0;
}

.top-footer {
  background-color: #001389;
  padding: 60px 0;
}

.bottom-footer {
  padding: 25px 0 25px 0;
  background-color: #5a66ab;
}

.copy-right-text {
  margin: 0;
  opacity: 1;
  margin-right: 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
}

.privacy-link-list {
  text-align: right;
}

.privacy-link-list li {
  padding: 0 10px;
  display: inline-block;
  vertical-align: middle;
}

.privacy-link-list li a {
  margin: 0;
  opacity: 1;
  margin-right: 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
}

.privacy-link-list li a:hover {
  text-decoration: none;
  color: #001389;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 20px;
  letter-spacing: 0;
  color: #ffffff;
}

.footer-menu li a {
  line-height: 30px;
  color: #fff;
  font-size: 14px;
}

.footer-menu li a:hover {
  text-decoration: none;
  color: #b2bdff;
}

.footer-link-img {
  width: 50px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.text-widget {
  background: #5a66ab;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: left;
}

.footer-box {
  max-width: 239px;
  margin: 0 0 0 auto;
}

.landing-page-content {
  position: relative;
  z-index: 2;
  margin-bottom: 100vh;
  background-color: #fff;
}
.additional-services-heading{
  line-height: 1.6;
    font-weight: 400;
    max-width: 530px;
    margin: auto;
    margin-bottom: 20px;
    font-size: 17px;
    text-align: center;
    margin-top: 20px;
}
.additional-services-container{
padding: 100px 0;
}
.tab-content-container{
  display: none;
}
.aditional-service-tab-item.active .tab-content-container{
  display: block;
}
.tab-content-container  .market-place-article{
  max-width: 531px;
  margin: 0 0 0 auto;
}
.before-content{
  padding-bottom: 12px;
}
.before-content:after{
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: red; */
  width: 55px;
}
.green-content-bg:after{
  background-color: #3f9e85;
}
.red-content-bg:after{
  background-color: #bd0411;
}
.orange-content-bg:after{
  background-color: #d07644;
}
.mobile-view{
  display: none;
}
.additional-tab-navigation-list{
  display: flex;
  justify-content: center;
  justify-content: center;
    border-bottom: 1px solid #e5e7f2;
    margin-bottom:70px;
    margin-top: 54px;
}
.additional-tab-navigation-list li{

}
.additional-tab-navigation-list li a{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: #666;
  text-decoration: none;
  padding: 0 15px;
  position: relative;
  max-width: 178px;
  display: block;
  text-align: center;
  padding-bottom:20px
}
.additional-tab-navigation-list li a.active:after{
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #001489;
  width: 100%;
}





/* Added by Avoy ***/

.custom-table td.created-cell {
  width: 405px;
}

.cell-approve-btn {
  background: #e5ffe5;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  color: #2f864e;
  margin: 0px 2px;
  height: 28px;
}

.cell-delete-btn {
  background: #ffeaed;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 17px;
  color: #ff6b7f;
  margin: 2px;
  height: 28px;
}

.status-text.view {
  background-color: #e9ebff;
  color: #686ca1;
  padding: 4px 16px;
  font-size: 12px;
}
.status-text.view i{vertical-align: -7px;font-size: 22px;margin-right: 5px;}
.image_c{
  position: relative;
  width: max-content;
  display: inline-block;
  margin-right: 10px;
}
.image_c img{}
.image_c i{
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  /* border: #FFF 3px solid; */
  border-radius: 100%;
  color: #36d870;
}
button.cell-btn:hover{opacity:.8}
.status-text.acepeted {
  background-color: #e5ffe5;
  color: #2f864e;
  padding: 4px 16px;
  font-size: 12px;
}
.status-text.acepeted i{vertical-align: -7px;font-size: 22px;margin-right: 5px;}

.status-text.denied {
  background-color: #ffeaed;
  color: #ff6b7f;
  padding: 4px 16px;
  font-size: 12px;
}
.status-text.denied i{vertical-align: -7px;font-size: 22px;margin-right: 5px;}

.status-text.clarify {
  background-color: #fcead8;
  color: #e89342;
  padding: 4px 16px;
  font-size: 12px;
}
.status-text.clarify i{vertical-align: -7px;font-size: 22px;margin-right: 5px;}

.biz_connection_table .custom-table td.action-cell{text-align: center;    width: 150px;}
.denial_popup{

width: 864px;

border-radius: 5px;

box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);

background-color: #ffffff;

padding:40px 40px 32px 40px;

top: 115px;

left: 50%;

transform: translate(-50%,0%);

position:absolute;

z-index: 2;
}
.denial_popup h3{font-size: 24px;
font-weight: bold;margin-bottom: 16px;}
.denial_popup p{opacity: 0.5;  font-size: 14px;font-weight: normal;
}
.popup{display:none}
.clarify_popup{display:none}
textarea{width:100%; min-height:150px;border: solid 1px #999;border-radius: 5px;}
.denial_popup textarea{ height: 280px;}
.submit_button{
  background-color: #3f9e85;
  border-radius: 22px;
  color: #eee;
  border: 0;
  padding: 7px 32px;
  font-weight: 500;
  cursor:pointer;
  display: inline-flex;
  height: 45px;
  line-height: 2em;
  }
.submit_button:hover{color:#FFF}
.modal_background{display:none;position: absolute;width: 100%;height: 100%;background: rgba(255, 255, 255, 0);z-index: 1;left: 0;top: 0;}
.modal_background.show{display:block}
.connectiontable .custom-table td.action-cell{width: 220px;}
.connectiontable .custom-table td.name_big-cell {width: 470px;}
.applicationtable .custom-table td.name_big-cell {width: 470px;}
.applicationtable .custom-table td.action-cell{    max-width: 186px;}
.pendingapplicationtable .custom-table td.name_big-cell {width: 300px;}
.pendingapplicationtable .custom-table td.action-cell{    max-width: 210px;}
.connection_list_left{
  padding-top: 20px;
}
.connection_list_left .search_div{
  position: relative;
}
.connection_list_left .search_div .form-control{
  padding-right: 40px;
  height: 45px;
  font-size: 14px;
  overflow: hidden;
}
.connection_list_left .search_div button{background: transparent;font-weight: 600;font-size: 12px;border: 0;position: absolute;right: 2px;top: 1px;background: #fafafa;height: 95%;padding: 0px 15px;}
.connection_list_left .search_div button i{
  vertical-align: -5px;
  color: #00297b;
  font-size: 30px;
  font-weight: 500;
}
.connection_list_left ul{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.connection_list_left ul li{}
.connection_list_left ul li a{
  font-size: 14px;
  font-weight: 500;
  color: #968da7;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}
.connection_list_left ul li a span{
  background: #e1e3f8;
  padding: 2px 10px;
  border-radius: 5px;
  color: #000;
}
.connection_list_left ul li a:hover{box-shadow: rgba(204, 204, 204, 0.23) 0px 0px 18px 6px;color: #000;text-decoration: none;}
.connection_list_left ul li a:hover span{
  background: #002f79;
  color: #FFF;
}
.white-box-heading.small_heading{font-size: 13px;color:#515465;max-width: 100%;}
.left_panel{padding:20px 10px}
.like_post {
  background: url(../images/like.svg);
  padding-left: 32px;
  background-size: 20px;
  background-repeat: no-repeat;
  color: #000;
  height: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  opacity: .8;
}
.comment_post{
  background: url(../images/comment1.svg);
  padding-left: 32px;
  background-size: 20px;
  background-repeat: no-repeat;
  color: #000;
  height: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  margin-right: 20px;
  opacity: .8;
  }
.share_post{
  background: url(../images/share.svg);
  padding-left: 32px;
  background-size: 20px;
  background-repeat: no-repeat;
  color: #000;
  height: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  opacity: .8;
  }
.stat_img_holder{
  background: #e5f3fe;
  width: 100px;
  height: 100px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.like_post:hover,
.comment_post:hover,
.share_post:hover{opacity:1; text-decoration:none}
.stat_img_holder.current_s{
  background: #f3f1ff;
}
.stat_img_holder.certified_s{
  background: #fdf8e4;
}
.post_box{
    border: #e6e6e6 1px solid;
    padding: 10px 10px 0px 10px;
    border-radius: 10px;
    background: #FFF;
}
.post_box .post_box_writter{
    position: relative;
    border-bottom: #e6e6e6  1px solid;
}
.post_box .post_box_writter textarea{padding: 14px 0px 0px 70px;border: none;}
.post_box .post_box_writter .post_box_writter_image{
    position: absolute;
    top: 10px;
    left: 10px;
}
.post_box .post_box_writter .post_box_writter_image img{
  height: 50px;
  width: 50px;
}
.post_box .post_box_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.post_box .post_box_bottom .post_box_bottom_buttons{
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.post_box .post_box_bottom .post_box_bottom_buttons .add_location{
  background: transparent url(../images/location_icon.png) no-repeat;
  padding-left: 36px;
  box-shadow: #ccc9 0px 0px 10px 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-position: 12px center;
  border-radius: 20px;
  padding-right: 20px;
  margin: 6px 9px;
  color: #000;
  }
.post_box .post_box_bottom .post_box_bottom_buttons .add_location:hover{text-decoration:none}
.photo_upload {
  padding: 0;
  background: transparent url(../images/upload_photo.png) no-repeat;
  /* width: 22px; */
  margin: 6px 9px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-size: 20px 16px;
  padding-left: 45px;
  box-shadow: #ccc9 0px 0px 10px 2px;
  padding-top: 7px;
  padding-bottom: 7px;
  background-position: 15px center;
  border-radius: 20px;
  padding-right: 25px;
}

.photo_upload input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;

}

.video_upload {
  padding: 0;
  background: transparent url(../images/upload_video.png) no-repeat center center / 100% auto;
  margin: 6px 9px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-size: 18px 18px;
  padding-left: 45px;
  box-shadow: #ccc9 0px 0px 10px 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-position: 15px center;
  border-radius: 20px;
  padding-right: 20px;
}

.video_upload input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.post-card .post-card-thumbnail{margin-bottom:20px}
.post-card .post-card-thumbnail a{display:inline-block; margin-right:15px}
.post_box .post_box_writter textarea:focus{outline:none}
.add-question-btn:hover{opacity:.8}
.status-text.view:hover{text-decoration:none}
.certificate_table .custom-table td.action-cell{    width: 200px;}
.status-text.pending {
    background-color: #fcead8;
    color: #e89342;
    display: inline-flex;
    align-items: center;
    height: 28px;
}

.register-radio-label {
	position: relative;
	width: 100%;
}

.register-radio-label>input {
	position: absolute;
	opacity: 0;
}

.register-radio-label .check-mark {
	display: inline-flex;
	padding: 7px 12px;
	background: #fff;
	color: #001489;
	border: 1px solid #001489;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	justify-content: center;
	cursor: pointer;
	/*padding-right: 25px;
    */
	min-width: 199px;
}

.register-radio-label .check-mark i {
	/* display: none; */
	margin-right: 7px;
	opacity: 0;
	position: absolute;
	top: 7px;
	left: 20px;
}

.register-radio-label>input:checked~.check-mark {
	background-color: #001489;
	color: #fff;
}

.register-radio-label>input:checked~.check-mark i {
	/* display: inline-block; */
	opacity: 1;
}

.register-type-radio-listing li {
	display: inline-block;
	vertical-align: middle;
}

.register-type-radio-listing {
	margin: 15px 0;
}
.two_field{display:flex;justify-content: space-around;margin-bottom: 10px;}
.sign-in-form-container .form-group .two_field .form-control{
    width: 48%;
}
.forbusiness{display:none}
.forgover{display:none}

.forbusiness.show{display:block}
.forgover.show{display:block}
.ordiv{margin-bottom: 20px;}
.ordiv span{
border: #dadada 1px solid;
    border-radius: 100%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 20px;
    font-weight: 600;
}
.choose-btn {
    background: transparent;
    font-size: 16px;
    padding: 0;
    margin-right: 10px;
    color: #3f9e85;
    border: #3f9e85 1px solid;
    padding: 5px 30px;
}
.choose-btn:hover{background: #3f9e85;color: #FFF;}
.profile_sec{
}
.profile_page h3{
    font-size: 16px;
    color: #515465;
    border-bottom: #eceef9 1px solid;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    }
.profile_sec .logo_sec{
    max-width: 200px;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    display: inline-block;
    vertical-align: top;
}
.profile_sec .logo_sec img{
    max-width: 100%;
}
.profile_sec .profile_des{
    display: inline-block;
    width: calc( 100% - 230px);
    padding-top: 8px;
}
.profile_sec .profile_des h1{}
.profile_sec .profile_des h1{
    color: #5a487e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.profile_sec .profile_des h4{
    color: #515465;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 13px;
}
.profile_sec .profile_des h6{
    background-repeat: no-repeat;
    padding-left: 30px;
    color: #7e829b;
    font-size: 14px;
    min-height: 24px;
    display: flex;
    align-items: center;
}
.profile_sec .profile_des h6.address{background-image: url(../images/address.png);}
.profile_sec .profile_des h6.phoneno{background-image: url(../images/phone_no.png);}
.profile_sec .social_shares{
    border-top: #eceef9 1px solid;
    margin-top: 20px;
}
.profile_sec .social_shares ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    /* margin-top: 10px; */
    padding-top: 10px;
    vertical-align: top;
}
.profile_sec .social_shares ul li{}
.profile_sec .social_shares ul li a{background-image: url(../images/web.png);height: 40px;width: 40px;margin: 10px;padding: 10px;background-repeat: no-repeat;align-items: center;justify-content: center;box-shadow: rgba(0, 46, 121, 0.15) 0px 0px 6px 1px;border-radius: 100%;background-position: center;display: block;}
.profile_sec .social_shares ul li a :hover{}
.profile_sec .social_shares ul li a.instagram{background-image: url(../images/instagram_2.png);}
.profile_sec .social_shares ul li a.twitter{background-image: url(../images/twitter_2.png);}
.profile_sec .social_shares ul li a.facebook{background-image: url(../images/facebook_2.png);}
.profile_sec .social_shares ul li a.linkedin{background-image: url(../images/linkedin_2.png);}

.profile_des{}
.profile_des p{
    color: #7e829b;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}
.profile_des label{
    color: #7e829b;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    margin-bottom: 12px;
}
.profile_des .tags{
    margin-bottom: 20px;
}
.profile_des .tags ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.profile_des .tags ul li{
    display: inline-block;
}
.profile_des .tags ul li a{background-image: url(../images/service.png);background-repeat: no-repeat;color: #e89342;background-color: #fdf2e7;padding: 10px 10px 10px 40px;background-position: 10px center;border-radius: 5px;font-size: 13px;font-weight: 500;}
.profile_des .tags ul li a:hover{}

.profile_right{}
.profile_right .right_details_box{
    border-bottom: #eceef9 1px solid;
    margin-bottom: 15px;
}
.right_details_each{
    color: #7e829b;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
}
.right_details_each label{
    color: #7e829b;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
}
.mb20{margin-bottom:20px}
.certification_each{
    display: flex;
    align-items: center;
    color: #7e829b;
    font-size: 15px;
    margin-bottom: 20px;
}
.certification_each span{
    background: #e5ffe5;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 5px;
}
.certification_each font{
    font-weight: 600;
    padding-right: 25px;
}

.certification_each dd{
  padding-left: 25px;
  margin: 0;
  }

.past_performance_each{
    display: flex;
    align-items: center;
    color: #7e829b;
    font-size: 15px;
}
.past_performance_each span{
    background: #ffeaed;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 5px;
}
.past_performance_each font{
    font-weight: 600;
    padding-right: 25px;
}
.past_performance_each dd{
padding-left: 25px;
margin: 0;
}



.maics_each{
    display: flex;
    align-items: center;
    color: #7e829b;
    font-size: 15px;
    margin-bottom: 10px;
}
.maics_each span{
    background: #e9ebff;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 5px;
}
.maics_each font{
    font-weight: 600;
    padding-right: 25px;
}
.maics_each dd{
padding-left: 25px;
margin: 0;
}

.view_addition{
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    justify-content: flex-end;
    margin-bottom: 15px;
	opacity:.6;
}
.view_addition i{}

.view_addition:hover{text-decoration:none;opacity:.8; color:#000}
.justifycenter{justify-content:center}
.filteraa{
    font-size: 14px;
    font-weight: 600;
}
.filteraa .form-group {
    width: 350px;
    float: right;
    text-align: right;
}
.filteraa .form-group label{
    margin-right: 10px;
}

.filteraa .form-group .form-control{width:auto;display: inline-block;height: 34px;font-weight: 600;font-size: 14px;}
.full_search{
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #FFF;
    z-index: 4;
    text-align: center;
}
.full_search .overlay-search{
    font-weight: 700;
    font-size: 52px;
    height: 100px;
    letter-spacing: -1.925px;
    line-height: 100px;
    width: 100%;
    text-align: center;
    color: #656565;
    border: none;
}
.full_search .overlay-search:focus{outline:0}
.full_search .close{margin: 40px 40px 0px 0px;opacity: .8;}
.full_search .close i{
    font-size: 32px;
    color: #000;
}
.full_search .search_button{
    background-color: #3f9e85;
    border-radius: 22px;
    color: #eee;
    border: 0;
    padding: 7px 32px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    height: 50px;
    margin-top: 40px;
    min-width: 190px;
    justify-content: center;
    font-size: 24px;
    box-shadow: rgba(28, 58, 50, 0.73) 0px 0px 2px 1px;
}
.searchAreaLogo{text-align:center;padding-top: 40px;padding-bottom: 40px;}

.full_search .search_button:hover{background:#5ebda4}
.status-text.draft {
    justify-content: center;
}


/*profile dp*/

.ac-row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.ac-image-c{
  display: block;
  width: 160px;
  padding: 10px;
  background: #23294308;
}
.ac-image-c .u-photo{
  display: block;
  height: 130px;
  position: relative;
  /* background-color: #f2f2f2; */
}
.ac-image-c .u-photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #ced4da;
}
.ac-image-c .u-photo .no-photo{
  display: block;
  object-position: bottom center;
  background-color: #232943;
}
.ac-image-c .u-photo .change{
  display: block;
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #8763d6;
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  transition: 400ms;
}
/* .ac-image-c .u-photo .change:hover{
  background-color: #6b66ff;
} */
.ac-image-c .u-photo .change input{
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  cursor: pointer;
  z-index: 2;
}
.ac-image-c .u-photo .change i{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.picture-area{
  display: flex;
}
.picture-area .picture-content{
  width: 33.33%;
}

.pl50{padding-left:50px}
.dnone{display:none}

.facebook-btn{
  background-color: #4267B2;
  color: #fff;
}
.linkedin-btn{
  background-color: #0e76a8;
  color: #fff;
}
.picture-button{
  margin: 10px 0px;
}
/*radio area*/
.radio-content{
  display: flex;
  padding-left: 10px;
}
.radio-content .radio {
  margin: 0.5rem;
}


.radio-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #2b335e;
  max-width: 170px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px !important;
  width: 20px !important;
  background-color: #eee;
  border-radius: 50%;
}

.radio-label:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-label input:checked ~ .checkmark {
  background-color: #232943;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-label input:checked ~ .checkmark:after {
  display: block;
}

.radio-label .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.radio-label{
   margin: 0;
    padding: 0 30px;
}
.address-default-head{
  font-size: 15px;
  color: #5a487ebf;
}
.mt-30{
  margin-top: 30px;
}

/* new style for form field */
.form-field-wraper{
  padding: 10px;
  /* background-color: #f7f7f7; */
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 0;
}
.custom-radio-btn .check-mark{
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 100%;
  position: relative;
    top: -1px;
}
.custom-radio-btn >input:checked~.check-mark:after {
  left: 7px;
  top: 2px;
}
.textarea-widget{
  padding: 8px;
  font-size: 14px;
}
.textarea-widget:focus{
    box-shadow: none;
    border-color: #3b4781;
    outline:none;
}
.upload-file-label{
  position: relative;
  margin: 0;
  min-width: 150px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border: 1px solid #3f9e85 !important;
  background-color: #3f9e85 !important;
  color: #fff !important;
  height: 49px;
  border-radius: 5px;
  cursor:pointer;
}
.upload-file-label:hover{

}
.upload-file-label> input{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.upload-file-label > i{
  font-size: 17px;
  margin-right: 11px;
}
.question-container .form-group  .widget-heading{
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  display: block;
}
.iflexdiv{display:inline-flex; align-items:center}
.jcsb{
    justify-content: space-between;
}

.newsletter-section {
  font-family: 'Open Sans', sans-serif;

  background-image: url(../images/newsletter.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.newsletter_div {
    background-color: rgba(0, 0, 0, 0.68);
    padding-top: 60px;
    padding-bottom: 60px;
}
.newsletterinner_div{
    text-align: center;
}
.newsletter_div h2{
    text-align: center;
    font-weight: 600;
    margin-bottom: 26px;
    color: #FFF;
}
.newsletter_div .form-control{
    max-width: 700px;
    margin: auto;
    box-shadow: #6180b9 0px 4px 0px 1px;
    height: 60px;
    font-size: 18px;
    border-radius: 3px;
    text-align: center;
    font-weight: 900;
    color: #000;
}
.newsletter_div .baner-get-started-btn{
    margin: auto;
    margin-top: 40px;
    width: 300px;
    font-size: 22px;
    height: 70px;
}
.cancel-btn {
    border: 1px solid #828282 !important;
    background-color: #a2a2a2 !important;
    color: #FFFFFF;
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    max-width:180px;
}

.buttondiv{display:flex;justify-content: center;}
.buttondiv .login-btn{
    max-width: 180px;
    margin: 0px 10px;
}
.sign-in-form-container .graylabel .form-group label{    color: #696969;}

.sign-in-form-container span.formlevelspan {
    color: #2b335e;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 500;
    line-height: initial;
    font-weight: 600;
    display: block;
}
.sign-in-form-container .form-group label.checkbox-label{font-weight: 400;}
.sign-in-form-container .form-group .form-control.maxwidth300{max-width:300px;}
.sign-in-form-container .form-group .form-control.maxwidth200{max-width:200px;}
.sign-in-form-container .form-group .form-control.maxwidth600{max-width:600px;}
.sign-in-form-container .form-group .form-control.maxwidth70p{max-width:70%;}
.sign-in-form-container .form-group .form-control.maxwidth50p{max-width:50%;}
.sign-in-form-container .form-group .form-control.maxwidth30p{max-width:30%;}
.signupcomplete{
    padding: 20px;
}
.signupcomplete h1{
    color: #2b335e;
    font-size: 22px;
    text-align: center;
    margin-bottom: 21px;
}
.signupcomplete p{
    font-size: 16px;
    line-height: 28px;
}

.open-tab {
  border: 1px solid #f0f0f0;
  background-color: #f8f8f8;
  display: block;
  padding: 14px 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.open-tab:hover,
.open-tab:focus{
  color: #666;
  text-decoration: none;
}
.landing-mobile-menu-btn{
  display: none;
}
.landing-main-menu li.mobile-close-menu{
  display: none;
}

/*14-02-2020 sajal*/
.label-content{
  color: #2b335e;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: initial;
  font-weight: 600;
  display: block;
}
.label-content-inner {
  font-size: 14px;
  color: #696969;
}
.another_dddress_head{
  font-size: 14px;
}

.clarify_popup label {
    color: #2b335e;
    margin-bottom: 9px;
    font-size: 15px;
    font-weight: 500;
    line-height: initial;
    font-weight: 600;
    display: block;
}
.sign-in-form-container .form-group label font{color: #f00;
    font-size: 17px;
    position: relative;
    top: 0;
    padding-left: 5px;
}

/* comment section start */

.comment-row {
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #e5e5e5;
}

.comment-profile {
  width: 65px;
}

.comment-profile figure {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.comment-profile>figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-profile .user_rply_sname_propic {
  width: 47.19px;
  height: 47.19px;
  background: #4FBEA9;
  overflow: hidden;
  margin: 0 10px 0 0;
  font-size: 18px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-radius: 50%;
}

.comment-wrap {
  width: calc(100% - 65px);
}

.comment-text {
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 8px;
}

.comment-text>h6 a {
  color: #012f7a;
  font-weight: 600;
  text-decoration: none;
}

.comment-text>p {
  font-size: 12px;
  line-height: inherit;
  margin-bottom: 0;
  color: #454750;
  font-weight: 500;
}

.comment-text li span{
  color: red;
  font-weight: 500;
}

.comment-action-list li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}

.comment-action-list li:first-child {
  padding-left: 0;
}

.comment-action-list li h6 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.comment-action-list li h6>span {
  color: #ee3840;
}

.comment-action-list li .comment-reply-btn {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #ee3840;
}

.reply-comment-section .comment-row {
  border: none;
}

.post-comment-btn {
  background-color: #001489;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  padding: 5px 25px;
  border-radius: 5px;
}

.load-more-comments {
  background-color: #001489;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  padding: 5px 25px;
  border-radius: 5px;
  width: 100%;
  max-width: 450px;
}
/* comment section end */

/* shared section */

.shared-section .comment-row {
  border: none;
  padding: 0 0 15px 0;
  align-items: center;
}

.shared-section .comment-row .comment-text {
  padding: 0;
  background-color: transparent;
  border-radius: 8px;
}

.shared-section .comment-row .comment-text>h6 {
  margin: 0;
}

/** Survey js styles start */
.view_form_survey .sv_main .sv_custom_header{background:#FFF !important}

.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_radiogroup span.check{

width: 22px;

height: 22px;

border: 2px solid #000;

display: inline-block;

position: relative;

vertical-align: middle;

margin-right: 5px;

border-radius: 100%;

position: relative;

top: -1px;

left: -5px;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_radiogroup.checked span.check {
    background-color: #000;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_radiogroup.checked span.check:after {
	content: "";
	width: 6px;
	height: 12px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	transform: rotate(43deg);
	left: 6px;
	top: 2px;
}

.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_checkbox  span.check{

width: 20px;

height: 20px;

border: 2px solid #000;

display: inline-block;

position: relative;

vertical-align: middle;

margin-right: 5px;

position: relative;

top: -1px;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_checkbox.checked span.check {
    background-color: #000;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_checkbox.checked span.check:after {
	content: "";
	width: 6px;
	height: 12px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	transform: rotate(43deg);
	left: 5px;
	top: 1px;
}
.view_form_survey .sv_main{  font-family: 'Montserrat', sans-serif;}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="radio"], .sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="checkbox"]{opacity:0;margin: 0 !important;}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q_title{color: #2b335e;font-size: 15px !important;margin-bottom: 15px !important;font-weight: 600 !important;display: block;font-family: 'Montserrat', sans-serif;}
.view_form_survey .sv_main {font-family: 'Montserrat', sans-serif;}
.view_form_survey .sv_main .sv_p_root > .sv_row:nth-child(even) {
    background-color: #FFF !important;
    border: none !important;
}
select{-webkit-appearance: none;
    background: url(../images/down_arrow.png) no-repeat !important;
    background-position: 93% center !important;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_select_wrapper select{
    border: 1px solid #cacfe7;
    color: #3b4781;
    height: 45px;
    padding: 10px !important;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: normal !important;
	font-family: 'Montserrat', sans-serif;
    }
.view_form_survey .sv_main .sv_container .sv_header h3 {
    color: #5a487e;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root fieldset.sv_qcbc{font-family: 'Montserrat', sans-serif;color: #2b335e;font-weight: 500;}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_other input,.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_text_root,.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_dropdown_control,.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q select,.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_q textarea{border: 1px solid #cacfe7;
    color: #3b4781;
    min-height: 45px;
    padding: 10px !important;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: normal !important;font-family: 'Montserrat', sans-serif;}

.view_form_survey .sv_main .sv_body{border-top: 1px solid #dadada !important;}
.view_form_survey .sv_main .sv_container .sv_body .sv_p_root .sv_page_title {
    font-size: 1em;
    margin-top: 0.1em;
    font-weight: normal !important;
    font-size: 30px !important;
    color: #000;
    margin-bottom: 21px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
}

.view_form_survey .sv_main .sv_container .sv_body .sv_progress {

    font-family: 'Montserrat', sans-serif!important;
    font-weight: 600 !important;
}
.view_form_survey .sv_main .sv_container .sv_body .sv_nav {
    padding: 1em 0;
    min-height: 2em;
    justify-content: center;
    display: flex;
}

.view_form_survey .sv_main .sv_container .sv_body .sv_nav .sv_prev_btn {
border: 1px solid #ededed !important;
    background-color: #ededed !important;
    color: #2e2e2e;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    min-width: 206px;
    margin: 5px;
}
.view_form_survey .sv_main input[type="button"], .sv_main button,
.view_form_survey .sv_main .sv_container .sv_body .sv_nav .sv_start_btn, .view_form_survey .sv_main .sv_container .sv_body .sv_nav .sv_next_btn,.view_form_survey .sv_main .sv_container .sv_body .sv_nav .sv_complete_btn {
    border: 1px solid #3f9e85 !important;
    background-color: #3f9e85 !important;
    color: #FFFFFF;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    min-width: 206px;
    margin: 5px;
}
.svd_commercial_container{display:none}
.svd_container .svd_content {
    padding: 10px !important;
}
.svd_container .svd_toolbox .panel-info [role="tabpanel"] {
    padding-left: 0 !important;
}
.sv_main .sv_container .sv_body .sv_p_root > .sv_row{    font-family: 'Montserrat', sans-serif;}
.svd_container.sv_default_css label{    font-size: 13px !important;}
.sv_main .sv_container .sv_header h3 {

    color: #2b335e !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 21px !important;
    font-weight: 500 !important;
}
/** Survey js styles end */

.mat-snack-bar-container{    margin-right: 50px !important;}

/* ==================== search_result 15-04 ======================= */
.search-result-white-box{
  margin-bottom: 20px;
}
.status-text.view.search-viewInfo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.connectiontable.search-connectiontable .custom-table td.name_big-cell {
  color: #000;
  font-weight: 600;
  font-size: 13px;
}

.searchconnection_list_left .form-control:focus {
  color: #495057;
  background-color: #fff;
  outline: 0;
  box-shadow: none;
  border-color: #3b4781;
}
.connection_list_left.searchconnection_list_left {
  max-width: 500px;
  width: 100%;
}
.search-agencies-title{
  display: inline-flex;
  align-items: center;
}
.search-agencies-title h3{
  color: #000;
  font-weight: 600;
  font-size: 13px;
}

/* ==================== search_result 15-04 end ======================= */

/* ==================== 20-04 search page ============================= */
.search-result-selection-area{
  padding-top: 16px;
  border-top: 1px solid #dadada;
  margin-top: 20px;
}
.search-result-selection-area .row{
  margin-right: -6px;
  margin-left: -6px;
}
.search-result-selection-area .col-md-3{
  padding-right: 6px;
  padding-left: 6px;
}
.shoing-result-list{
  display: flex;
  align-items: center;
}
.shoing-result-photo{
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #f3f3f3;
  margin-right: 20px;
}
.shoing-result-photo img{
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 100%;
}
.white-box-content-body h2{
  font-size: 15px;
  color: #b3b6b9;
  font-weight: 300;
  padding-bottom: 10px;
}
.shoing-result-describe{
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0px;
}
.shoing-result-describe-left h3{
  font-size: 18px;
  margin-bottom: 0px;
  color: #3b4781;
}
.shoing-result-describe-left p{
  font-size: 15px;
  color: #000;
  margin-bottom: 0px;
}
.shoing-result-describe-left span{
  font-size: 13px;
  color: #7d8286;
  display: inline-block;
  margin-bottom: 0px;
}

.shoing-result-describe-left span em{
  font-weight: bold;
  font-style: normal;
  color: #5f6368;
}

.shoing-result-describe button{
  border: 0px;
  background: #fff;
  border: 1px solid #000;
  padding: 5px 18px;
  border-radius: 3px;
  font-weight: 500;
  transition: 0.5s;
}
.shoing-result-describe button:hover{
  background: #3b4781;
  border: 1px solid #3b4781;
  color: #fff;
}
.shoing-result-listing:last-child .shoing-result-describe{
  border-bottom: 0px;
}

/* ====================== 22-04 reporting ====================== */
.reporting-date{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reporting-date h3{
  font-size: 16px;
  margin-right: auto;
}
.reporting-date{
  margin-left: 10px;
}
.reporting-datepic-area img{
  width: 100%;
  margin-top: 70px;
}


/* ============= checkbox ================ */
  
/* .span_pseudo, .chiller_cb span:before, .chiller_cb span:after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 0;
  height: 0.2rem;
  position: absolute;
  transform-origin: 0% 0%;
}

.chiller_cb {
  position: relative;
  height: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.chiller_cb input {
  display: none;
}
.chiller_cb input:checked ~ span {
  background: #012f7a;
  border-color: #012f7a;
}

.chiller_cb input:disabled ~ span {
  background: #ececec;
  border-color: #dcdcdc;
}
.chiller_cb input:disabled ~ label {
  color: #dcdcdc;
}
.chiller_cb input:disabled ~ label:hover {
  cursor: default;
}
.chiller_cb label {
  padding-left: 27px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin-bottom:0;
  font-weight: 300;
  vertical-align: middle;
  color: #777777;
  font-size: 14px;
}
.chiller_cb span {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: #f5f5ee;
  border: 1px solid #777777;
  position: absolute;
  left: 0;
  transition: all 0.2s;
  z-index: 1;
  box-sizing: content-box;
}
.chiller_cb span:before {
  transform: rotate(-55deg);
  top: 12px;
  left: 0.37rem;
}
.chiller_cb span:after {
  transform: rotate(35deg);
  bottom: 0.35rem;
  left: 0.2rem;
} */

/* ============= */
.repoting-top-left .form-group{
  margin-bottom: 60px;
}
.repoting-supplier-section{
  padding-top: 5px;
    padding-bottom: 25px;
}
.export-data-btns{
  display: inline-flex;
  flex-wrap: wrap;
}
.export-data-area h3{
  font-size: 15px;
  padding-bottom: 10px;
}
.export-data-area .cell-approve-btn {
  background: #e9ebff;
  font-size: 14px;
  padding: 7px 62px;
  color: #2f864e;
  margin: 0px 20px 15px 0px;
  height: auto;
  text-transform: uppercase;
}
.reporting-date-field label{
  display: block;
}
.reporting-date-field{
  margin-left: 10px;
  margin-bottom: 15px;
}
.repoting-top-left{
  border-right: 1px solid #ced4da;
  padding-right: 30px;
  height: 100%;
}
.repoting-color-area ul li{
  margin-bottom: 0;
  font-weight: 500;
  vertical-align: middle;
  color: #777777;
  font-size: 11px;
  line-height: 13px;
  margin-right: 10px;
}
.repoting-color-area ul{
  list-style: none;
  padding: 0px;
  display: flex;
  margin-bottom: 3px;
}
.repoting-color-area ul li span{
  display: inline-block;
    width: 9px;
    height: 9px;
    /* border: 1px solid #777777; */
    vertical-align: top;
    margin-right: 10px;
    margin-top: 2px;
}
.repoting-color-area ul li:hover{
  color: #000;
}
.repoting-blue{
  /* background-color: #c8e1f5; */
  background-color: #dff0e0;
}
.repoting-green{
  /* background-color: #64f77d; */
  background-color: #f44336;
}
.repoting-red{
  /* background-color: #fd7e90; */
  background-color: #ff9800;
}

/* ================ comming-soon 22 04 start =================== */
.coming-soon-section{
  position: relative;
  overflow: hidden;
}
.coming-soon-section img{
  width: 100%;
  object-fit: cover;
  /* height: 100vh; */
  height: calc(100vh - 98px);
}
.coming-soon-title{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 96%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  overflow: hidden;
}
.coming-soon-section h1{
  color: #fff;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
}
/* ========================== */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.comingsoon-title {
  opacity: 0;
  -webkit-animation: fadeInUp 1.6s ease-in-out 0s forwards;
          animation: fadeInUp 1.6s ease-in-out 0s forwards;
}
/* ================ comming-soon 22 04 end =================== */

/* ================= Not found ========================= */
.not-found-section{
  position: relative;
  overflow: hidden;
}

.not-found-section img{
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

.not-found-section h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  text-transform: capitalize;
  text-align: center;
}

.reporting-header {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid gray;
  margin-bottom: 20px;
  padding-top: 0px !important;
  margin-top: -10px;
}

#print-header {
  display: none;
}

@media print {
  body * {
    visibility: hidden;
  }
  
  #graph-pad {
    display: none;
  }

  #print-section, #print-section * {
    visibility: visible;
  }

  #print-header {
    display: block;
  }
  
  #print-section {
    position: absolute;
    left: 0;
    top: 0;
  }

  #card-print {
    margin-top: 40px;
    border: 1px solid #23294370 !important;
  }

}
.supplier-section .supplier-section{padding-top:0}

.flex-inner-div-prv {
  padding-right: 15px;
}

.flex-parent-div {
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}

.flex-label {
  width: 215px;
}

.flex-short-label {
  width: 150px;
}

.popup-video i {
  top: 30%;
  position: absolute;
  left: 28%;
}

.budylistradio>.form-group {
  margin-bottom: 0;
}

.budylistradio .form-group {
  display: block;
  position: relative;
  width: 92px;
  height: 21px;
  padding: 0;
}

.popoup-toggle {
  width: 80px !important;
}

.budylistradio .form-group input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}

.budylistradio .form-group .swipeChk {
  display: block;
  position: absolute;
  box-shadow: 0 0 0 3px rgba(226, 226, 226, 0.58);
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.budylistradio .form-group input:checked+.swipeChk:before {
  left: 100%;
  margin-left: -21px;
}

.budylistradio .form-group input:not(:checked)+.swipeChk:before {
  margin-left: 4px;
}

.budylistradio .form-group .swipeChk:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 4px;
  left: 3px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1) inset;
  z-index: 1;
  border-radius: 100px;
  transition: 400ms;
}

.budylistradio .form-group input:checked+.swipeChk .on {
  opacity: 1;
}

.budylistradio .form-group input:checked+.swipeChk .off {
  opacity: 0;
}

.budylistradio .form-group .swipeChk .on {
  color: #fff !important;
  background-color: #52b5a1 !important;
  padding: 0 0 0 8px !important;
  opacity: 0;
}

.budylistradio .form-group .swipeChk .on, .budylistradio .form-group .swipeChk .off {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 6px;
  color: #494b4c;
  font-size: 13px;
  line-height: 23px;
  font-weight: 700;
  /* background-color: #bebebe; */
  background-color: #c52419c4;
  padding: 0 0 0 38px;
  text-transform: uppercase;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.popoup-toggle .swipeChk .off {
  padding: 0px 0 0 30px !important;
  color: #fff !important;
}

.flex-right {
  margin-left: auto;
}

.multi-flex-div {
  display: inline-flex;
  margin-left: auto;
  flex-wrap: wrap;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-left-10 i {
  font-size: 15px;
}

.margin-left-10 .btn {
  padding: 0px;
}

.post-card .post-card-thumbnail-links a {
  background-color: #e8efec;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  white-space: pre-wrap;
  word-break: break-all;
}

.post-card .post-card-thumbnail-links a:hover {
  text-decoration: underline !important;
}

.card .card-header .card-icon {
  padding: 25px !important;
  margin-top: -30px !important;
}

.card .card-header .card-icon i {
  font-size: 40px !important;
}

.card .card-header .card-category {
  font-size: 20px !important;
  margin: 4px !important;
}

.card .card-header .card-title {
  font-size: 1.5rem !important;
  margin: 4px !important;
}

.card .card-header .card-video-title {
  font-size: 1.5rem !important;
  margin: 4px !important;
  color: #3c4858 !important;
}

.card .card-footer .stats i {
  font-size: 20px !important;
  margin: 4px !important;
  top: 0 !important;
}

.card .card-footer .stats a {
  font-size: 16px !important;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: .25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

.customer-badge {
  border-radius: 2px;
  padding: .25em .5em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
}

.customer-badge.Request_Send {
  background-color: #eccfff;
  color: #694382;
}

.customer-badge.Request_Received {
  background-color: #c8e6c9;
  color: #256029;
}

.customer-badge.APPROVED {
  background-color: #c8e6c9;
  color: #256029;
}

.customer-badge.PUBLISHED {
  background-color: #c8e6c9;
  color: #256029;
}

.customer-badge.DELETED {
  background-color: #ffcdd2;
  color: #c63737;
}

.customer-badge.CLARIFY {
  background-color: #ffd8b2;
  color: #805b36;
}

.customer-badge.ARCHIVE {
  background-color: #ffd8b2;
  color: #805b36;
}

.customer-badge.CREATED {
  background-color: #b3e5fc;
  color: #23547b;
}

.customer-badge.PENDING {
  background-color: #b3e5fc;
  color: #23547b;
}

.customer-badge.ADMIN {
  background-color: #eccfff;
  color: #694382;
}
.customer-badge.SUBADMIN {
  background-color: #c8e6c9;
  color: #256029;
}
.customer-badge.MANAGER {
  background-color: #ffd8b2;
  color: #805b36;
}
.customer-badge.TEAMMEMBER {
  background-color: #b3e5fc;
  color: #23547b;
}

.customer-badge.ACTIVE {
  background-color: #c8e6c9;
  color: #256029;
}

.customer-badge.AWARDED {
  background-color: #eccfff;
  color: #694382;
}

.customer-badge.CANCELLED {
  background-color: #ffd8b2;
  color: #805b36;
}

.customer-badge.DRAFT {
  background-color: #b3e5fc;
  color: #23547b;
}

.customer-badge.UPCOMMING {
  background-color: #c8e6c9;
  color: #256029;
}

.card-body.table-responsive {
  min-height: 300px;
}

/***** 080321 ******/

.govila_middle_cont_details{
  padding: 25px 20px;
}
.govila_middle_cont_details .mid_cont_heading{
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 22px 0;
}
.cgvilla_row{
  display: flex;
  align-items: center;
  margin: 0 0 15px 0;
  font-size: 15px;
}
.cgvilla_left{
  width: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 15px 0 0;
  font-size: 15px;
}
.mc_icons{
  width: 22px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mc_icons img{
  width: 16px;
}
.cgvilla_right{
  width: 80%;
}
.cgvilla_right .sp_weight{
  font-weight: 600;
}
.tr_time{
  opacity: 0.90;
  margin-left: 10px;
}

.cgvilla__link_row{
  display: flex;
  align-items: center;
  margin: 22px 0 15px 0;
  font-size: 15px;
}
.cgvilla_link_left{
  /* width: 220px; */
  min-width: 220px;
  max-width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 15px 0 0;
  font-size: 15px;
}
.cgvilla__link_right a{
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 4px 10px;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  word-break: break-all;
}
.cgvilla__link_right a img{
  margin: 0 10px 0 0;
  width: 14px;
}
.post_card_inner_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.post_card_inner_header .postc_left_panel{
  width: 40%;
  display: flex;
}
.post_card_inner_header .postc_right_panel{
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
.post_eng_presudo_wrapper{
  width: 190px;
  font-size: 11px;
}
.post_eng_presudo_wrapper img{
  width: 150px;
  margin:0 0 4px 0
}

#myFrame {
  height: 72vh;
  width: 100%;
}

.anchor-card-link {
  display: block;
  text-decoration: underline !important;
}

.trn_atv_width{
  width: 75%;
}

.cur_btn{
  background-color: #3c4782 !important;
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgb(76 175 80 / 14%), 0 3px 1px -2px rgb(76 175 80 / 20%), 0 1px 5px 0 rgb(76 175 80 / 12%);
  border: 1px solid #3c4782 !important;
  color: #FFFFFF;
  display: block;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.curr_tbl{
  background-color: #001389 !important;;
}

.curr_search_div{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.curr_head_support{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.curr_search_div .form-group{
  margin: 0 15px 0 0;
  padding: 0;
}

.player {
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  height: 200px;
  width: 380px;
}

/* css added on 18th may by Priyabrata */

.usr_comment_heading {
  font-weight: 600;
  font-size: 14px;
  line-height: 31px;
  /* identical to box height, or 221% */
  color: #292929;
  margin: 0 0 15px 0;
}

.usr_comment_area {
  /* margin: 0 auto; */
  max-width: 558.83px;
  width: 100%;
}

.usr_profile_details {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 10px 0;
}

.usr_profile_details .user_propic {
  width: 47.19px;
  height: 47.19px;
  background: #4FBEA9;
  overflow: hidden;
  margin: 0 10px 0 0;
  font-size: 18px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-radius: 50%;
}

.user_procont h2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  color: #000000;
  margin: 0 0 3px 0;
}

.user_procont p {
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  color: #A4A4A4;
}

.usr_comment_panel {
  width: 100%;
  position: relative;
  display: none;
  margin-left: 70px;
}

.usr_comment_panel textarea,
.usr_comment_panel textarea:focus {
  border: 1px solid #C4C4C4;
  box-sizing: border-box;
  border-radius: 10px;
  height: 90px;
  min-height: 90px;
  padding: 10px 15px;
  font-size: 12px;
  outline: none;
  box-shadow: none;
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
}

.usr_comment_panel .send_btn_comment {
  width: 196.95px;
  height: 42.21px;
  margin: 0 auto;
  background: #2C2F79;
  border-radius: 10px;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height, or 129% */
  color: #FFFFFF;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

.usr_profile_details .user_procont {
  width: 80%;
}

.rply_cls{
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color:#001389;
  padding-left: 50px;
  cursor: pointer;
}

.cur_vdo_dtls_snd_bnt{
  position: absolute;
  top: 57px;
  left: 503px;
  transform: rotate(328deg);
  cursor: pointer;
}

.snd_icn_cur_vdo_dtls{
  font-size: 14px;
  color:#001389 !important;
}

.flex-container {
  display: flex;
}

.rply_txt_div{
  padding-right: 36px;
}

.rply_div{
  display: inline;
  border-radius: 7px;
  background-color: #001389;
  color: white;
  margin-top: 5px;
}

.rply_div p {
  padding:0 5px 0 5px;
  font-size: 14px;
  line-height: 20px;
  color: white;
  margin: 10px 0;
}

.reply_box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rply_div_active{
  display: block;
}

.connent_section_div{
  padding: 15px;
}

/* css added by Priyabrata */

.cur_vdo_edit_dis{
  pointer-events:none;
}


.usr_comment_area_full_width {
  /* margin: 0 auto; */
  width: 100%;
}

.usr_comment_area_full_width .usr_comment_area_in_unread_comment {
  /* margin: 0 auto; */
  width: 100%;
  height: 46px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 58px;

}

.usr_comment_area_full_width .user_procont p {
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  color: #A4A4A4;
  margin: 0px;
}

.usr_comment_area_full_width .course_video_list_box {
  padding: 23px 36px;
  background-color: #fff;
  position: relative;
  border-bottom-style: solid;
  border-bottom-width: 0.1rem;
  border-color: rgba(201, 76, 76, 0.3);
  cursor: pointer;
}

.usr_comment_area_full_width .course_video_list_box:last-child {
  border: none;
}

.usr_comment_area_full_width ul li span {
  color: red;
  text-decoration: none;
}

.admin_comment_hide{
  display: none;
}

.disable-click {
  pointer-events: none;
  cursor: default;
}

/* new code added on 22/06/21 */


.new_nav_changes .new_suv_nav{
  margin: 0 0 0 30px;
}

.new_nav_changes .new_suv_nav li a{
  padding: 0 15px!important;
}

.comment_icon_admin{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text_change_comment h6{
  color: #001389;
  font-weight: 600;
}


/* end */

.mt-10{
  margin-top: 10px;
}