html {
  overflow-x: hidden;
}

.stage-indicator {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.stage {
  flex: 1;
  text-align: center;
  padding: 10px;
  margin: 0 5px;
  border-radius: 10px;
  background-color: #e0e0e0;
  /* default: pending */
  color: #333;
  font-weight: bold;
  position: relative;
}

.stage.active {
  background-color: #2196f3;
  /* Blue */
  color: #fff;
}

.stage.completed {
  background-color: #4caf50;
  /* Green */
  color: #fff;
}

.stage::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.stage:last-child::after {
  display: none;
}

.cl-chat-window {
  right: 30px;
  bottom: 35px;
  z-index: 9999;
}

.cl-window {
  width: 450px;
  height: 550px;
}

.header-logo {
  position: absolute;
  margin: 0px auto;
  width: 100%;
  text-align: center;
}

.flash-message-box {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  /* 600ms to fade out */
}

aside {
  display: block;
  position: relative;
  margin: 40px 0;
}

aside h3 {
  font: bold 12px Sans-Serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #369;
  color: #fff;
  padding: 5px 10px;
  margin: 0 0 10px 0;
  line-height: 24px;
}

/* Class name via Modernizr */
.csstransforms aside {
  border-left: 34px solid #369;
  padding-left: 10px;
}

.csstransforms aside h3 {
  /* Abs positioning makes it not take up vert space */
  position: absolute;
  top: 0;
  left: 0;

  /* Border is the new background */
  background: none;

  /* Rotate from top left corner (not default) */
  transform-origin: 0 0;
  transform: rotate(90deg);
}

.icon-center {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
}

.flash-message-box.success {
  background-color: #4caf50;
}

.flash-message-box.info {
  background-color: #2196f3;
}

.flash-message-box.warning {
  background-color: #ff9800;
}

.flash-message-box.error {
  background-color: #f44336;
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.summary-container {
  height: 60px;
}

.three-line-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.six-line-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

/* Remove scrollbar space */
/* Optional: just make scrollbar invisible */
/* ::-webkit-scrollbar {
  width: 0px; 
  background: transparent; 
} */

html body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  /* color: #626262; */
  background-color: #ebeef0;
  font-family: -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Roboto, "Source Sans Pro", Arial, "Droid Sans";
}

.hide-scroller {
  position: absolute;
  left: 10px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.hide-scroller::-webkit-scrollbar {
  display: none;
}

.archive-btn {
  position: absolute;
  background: transparent;
  color: black;
  top: -15px;
  right: 5px;
}

.context-menu-item.icon {
  min-height: 18px;
  background-repeat: no-repeat;
  background-position: 4px 2px;
}

.context-menu-icon.context-menu-icon-translate:before {
  font-family: FontAwesome !important;
  content: "\f1ab";
  /* fa-language */
}

.context-menu-icon.context-menu-icon-logout:before {
  font-family: FontAwesome !important;
  content: "\f08b";
  /* fa-sign-out */
}

/* For right click options menu */

.context-menu-list {
  text-align: left;
  box-shadow: none;
  border: 1px solid #f3f3f3;
  position: absolute;
  display: inline-block;
  min-width: 13em;
  max-width: 30em;
  padding: 0.25em 0;
  margin: 0.3em;
  font-family: inherit;
  font-size: inherit;
  word-wrap: none;
  list-style-type: none;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 0.2em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.context-menu-item {
  position: relative;
  padding: 0.5em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
}

.context-menu-list .context-menu-item.context-menu-hover {
  background-color: black;
  color: #fff;
}

.context-menu-separator {
  padding: 0;
  margin: 0.35em 0;
  border-bottom: 1px solid #e6e6e6;
}

/* New Styles for Task Board */
.fit-text {
  display: block;
  width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.no-drop {
  background: transparent;
}

.task-board {
  /* background: #2c7cbc; */
  display: inline-block;
  padding: 12px;
  border-radius: 3px;
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  min-height: 300px;
}

.status-card {
  width: 100%;
  margin-right: 8px;
  background: #e2e4e6;
  border-radius: 3px;
  /* display: inline-block; */
  vertical-align: top;
}

.status-card:last-child {
  margin-right: 0px;
}

.card-header {
  width: 100%;
  padding: 10px 10px 0px 10px;
  box-sizing: border-box;
  border-radius: 3px;
  display: block;
  font-weight: bold;
}

.card-header-text {
  display: block;
}

ul.sortable {
  padding-bottom: 10px;
}

ul.sortable li:last-child {
  margin-bottom: 0px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0px;
}

.text-row {
  padding: 8px 10px;
  margin: 10px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 3px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  white-space: normal;
  line-height: 20px;
}

.ui-sortable-placeholder {
  visibility: inherit !important;
  background: transparent;
  border: #666 2px dashed;
}

/* End */

.navbadge {
  position: absolute;
  top: -10px;
  right: -10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: yellow;
  border-radius: 10px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #4caf50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}

/* End of Form Container */

.metric {
  padding: 10%;
}

.metric svg {
  max-width: 100%;
}

.metric path {
  stroke-width: 75;
  stroke: #ecf0f1;
  fill: none;
}

.metric text {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.metric.participation path.data-arc {
  stroke: #3498db;
}

.metric.participation text {
  fill: #3498db;
}

.metric.completion path.data-arc {
  stroke: #27ae60;
}

.metric.completion text {
  fill: #27ae60;
}

.metric.blocked path.data-arc {
  stroke: #e74c3c;
}

.metric.blocked text {
  fill: #e74c3c;
}

svg {
  width: 100%;
  height: 100%;
}

.bar {
  fill: #80cbc4;
}

path {
  stroke-width: 1;
  stroke: gray;
}

line {
  stroke: gray;
}

line#limit {
  stroke: #fed966;
  stroke-width: 2;
  stroke-dasharray: 3 6;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.floating-button {
  width: 60px;
  height: 60px;
  background: #0747a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  float: right;
  cursor: pointer;
}

.hover-float-item {
  margin: 8px 0;
  transition: all 0.75s ease;
  display: none;
  justify-content: flex-end;
  align-items: center;
}

.floating-buttons.active>.hover-float-item {
  display: flex;
}

.hover-float-item-desc {
  padding: 8px;
  background: #c8c8c8;
  font-weight: bold;
}

.button-link {
  color: white;
  text-decoration: none;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(../iconfont/MaterialIcons-Regular.woff) format("woff"),
    url(../iconfont/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";
}

#img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
}

#idea-circle {
  background-color: #20a8d8 !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#kaizen-circle {
  background-color: #63c2de !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#hse-circle {
  background-color: #ffc107 !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#issue-circle {
  background-color: #f86c6b !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#PaperWrap {
  background-repeat: repeat;
  margin-left: 0;
  margin-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 100;
  -moz-box-shadow: 1px 1px 8px #bdbdbd;
  -webkit-box-shadow: 1px 1px 8px #bdbdbd;
  box-shadow: 1px 1px 8px #bdbdbd;
  filter: progid:DXImageTransform.Microsoft.Shadow(strength=1, direction=135, color='#bdbdbd');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength=1, Direction=135, Color='#bdbdbd')";
}

#PaperWrap:hover {
  border: 2px solid #bdbdbd;
}

#PaperWrap:hover::after {
  border: 1px solid #bdbdbd;
  opacity: 1;
}

#PaperWrap.realized {
  background-image: url(/themes/abound/img/paper-gray.jpg);
}

#PaperText {
  margin-left: 20px;
  margin-right: 15px;
  margin-bottom: 20px;
}

#PaperText h1 {
  margin-top: 10px;
}

#ShadowBottom {
  height: 8px;
  background-image: url(/themes/abound/img/shadow-bottom.png);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -6px;
  left: 8px;
  width: 443px;
  z-index: 90;
}

#ShadowRight {
  width: 8px;
  background-image: url(/themes/abound/img/shadow-right.png);
  background-repeat: repeat-y;
  position: absolute;
  right: -6px;
  top: 6px;
  height: 99%;
  z-index: 90;
}

#Sponka {
  width: 38px;
  height: 41px;
  background-image: url(/themes/abound/img/sponka.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: -8px;
  z-index: 110;
}

/* styles.css */
.idea-list-group {
  max-height: 600px;
  margin-bottom: 10px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.rounded {
  -moz-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  border: solid 1px #dadada;
  background-color: #e1e1e1;
  padding: 10px;
}

.nav>li:last-child.dropdown {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.width_100_percent {
  width: 100%;
}

.no_radius {
  border-radius: 0 !important;
}

#map {
  height: 420px;
  background-color: #e1e1e1;
}

.btn-kpi {
  font-size: 14px;
  width: 24px;
  height: 24px;
}

.btn-kpi::before {
  content: "\25BC";
  /*"\2796";*/
  color: #ffffff;
  border-radius: 50%;
  float: left;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.btn-kpi.collapsed::before {
  content: "\25B6";
  /*"\2795";*/
  color: #ffffff;
  border-radius: 50%;
  float: left;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.btn-kpi.check::before {
  content: "\2713";
  /* margin: 2px 2px 2px 2px; */
  color: #ffffff;
  border-radius: 50%;
  float: left;
  font-size: 14px;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.btn-kpi.collapsed.check::before {
  content: "\2713";
  /* margin: 2px 2px 2px 2px; */
  color: #ffffff;
  border-radius: 50%;
  float: left;
  font-size: 14px;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.btn-kpi.warning::before {
  content: "\26A0";
  /* margin: 2px 2px 2px 2px; */
  color: #ffffff;
  border-radius: 50%;
  float: left;
  font-size: 14px;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.btn-kpi.collapsed.warning::before {
  content: "\26A0";
  /* margin: 2px 2px 2px 2px; */
  color: #ffffff;
  border-radius: 50%;
  float: left;
  font-size: 14px;
  background-color: #ff1744;
  text-align: center;
  width: 24px;
  height: 24px;
}

.datetimepicker th.switch {
  display: table-cell !important;
}

.sugg_view_close_arrow {
  position: absolute;
  top: -10px;
  right: 10px;
}

[contenteditable][placeholder]:empty:not(:focus):before {
  content: attr(placeholder);
  color: #bababa;
}

[contenteditable][placeholder]:empty:focus::before {
  content: "";
}

input[type="radio"]>.label {
  color: #484848;
}

.rating-container .caption {
  font-size: 12px !important;
  display: block !important;
}

#idea_team_popper,
#idea_project_popper,
#idea_reward_popper {
  max-width: 600px;
}

#users_list {
  max-height: 325px;
  overflow-x: hidden;
  overflow-y: auto;
}

#user_list>.list-group-item {
  padding: 5px;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.custom-file-upload>input[type="file"] {
  display: none;
}

.default_btn {
  background-color: #dfe3e6;
  color: #17394d !important;
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 1px 0 0 #c2ccd1;
  border: none;
  text-align: left;
  outline: none;
}

.default_btn:hover,
.default_btn:active,
.default_btn:focus {
  background-color: #c2ccd1;
  box-shadow: 0 1px 0 0 #b3bec4;
  border: none;
  outline: none;
}

.default_btn i {
  color: #798d99 !important;
  margin-right: 10px;
}

/******************************************************/
.trello_view {
  color: #17394d !important;
  background-color: #ebeef0;
}

.trello_view.white_bk {
  background-color: #fff;
}

.trello_view .editor-field {
  margin-bottom: 24px;
  margin-top: 1px;
}

.trello_view .btn-block {
  margin-top: 7px !important;
  outline: none;
  text-align: left;
}

.trello_view .btn-default {
  background-color: #dfe3e6;
  color: #17394d !important;
  font-size: 1em;
  box-shadow: 0 1px 0 0 #c2ccd1;
  border: none;
  text-align: left;
  box-shadow: 0 1px 0 0 #c2ccd1;
  outline: none;
}

.trello_view .btn-default:hover,
.trello_view .btn-default:active,
.trello_view .btn-default:focus {
  background-color: #c2ccd1;
  box-shadow: 0 1px 0 0 #b3bec4;
  border: none;
  outline: none;
}

.trello_view .subtitleText {
  color: #17394d !important;
}

.trello_view label.big {
  font-size: 1.2em;
}

/*****************************************************/

.sugg_view {
  color: #17394d !important;
  background-color: #ebeef0;
}

.sugg_view .editor-field {
  margin-bottom: 24px;
  margin-top: 1px;
}

.sugg_view .btn-block {
  margin-top: 7px !important;
  outline: none;
  text-align: left;
}

.sugg_view .btn-default {
  background-color: #dfe3e6;
  color: #17394d !important;
  font-size: 0.9em;
  box-shadow: 0 1px 0 0 #c2ccd1;
  border: none;
  text-align: left;
  box-shadow: 0 1px 0 0 #c2ccd1;
  outline: none;
}

.sugg_view .btn-default:hover,
.sugg_view .btn-default:active,
.sugg_view .btn-default:focus {
  background-color: #c2ccd1;
  box-shadow: 0 1px 0 0 #b3bec4;
  border: none;
  outline: none;
}

.sugg_view .subtitleText {
  color: #17394d !important;
}

.two_col_box {
  display: flex;
}

.two_col_box .column {
  align-self: top !important;
}

.two_col_box>.column:first-child {
  padding: 3px 15px 0 15px;
  color: #798d99 !important;
}

.two_col_box>.column:last-child {
  flex-grow: 1 !important;
}

.two_col_box .column.middle {
  align-self: center !important;
}

.two_col_box .column.grow {
  flex-grow: 1 !important;
}

.pop-over {
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  border: 1px solid #999;
  border-radius: 3px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  z-index: 1051;
  left: 5px !important;
}

.pop-over-sm {
  width: 350px;
}

.pop-over-md {
  width: 550px;
}

.pop-over-700 {
  width: 700px;
}

.pop-over-lg {
  width: 850px;
}

.pop-over-lg-ex {
  width: 1200px;
}

.pop-over-header {
  background-color: #fff !important;
  border-color: #dadada !important;
  padding: 10px !important;
}

.pop-over-header-title {
  box-sizing: border-box;
  color: #696969;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
  font-size: medium;
  font-weight: 700;
}

.pop-over-header-close-btn {
  padding: 2px 7px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #c5bfbf;
  cursor: pointer;
}

.select2-container-multi .select2-choices {
  max-height: 100% !important;
  overflow-y: auto;
}

.lost_focus:focus {
  color: #17394d !important;
  height: auto;
  border-radius: 0 !important;
  white-space: pre-wrap;
  background-color: #fff;
  padding: 3px !important;
  text-align: left;
}

.lost_focus:not(:focus) {
  text-align: left;
  color: #17394d !important;
  height: auto;
  white-space: pre-wrap;
  outline: none;
  overflow: hidden;
  padding: 0;
  font-size: 1em;
  border: none !important;
  border-radius: 0 !important;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.lost_focus.large_font {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}

.sugg_col_header {
  padding: 10px;
  margin: -8px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  background: #e1e1e1;
  border: 1px solid #d8d8d8;
}

.sugg_col_text {
  padding: 10px;
  font-size: 1em;
}

.sugg_col_text_pre {
  padding: 10px 2px;
  font-size: 1em;
  font-weight: 600;
  white-space: pre-wrap !important;
}

.survey_carousel {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.survey_confirmation {
  display: none;
  position: fixed;
  left: 25%;
  transform: translate(-25%, 0);
  top: 15%;
  height: 100%;
  text-align: center;
}

.survey_carousel>.carousel-inner {
  height: 100%;
}

.survey_carousel>.carousel-inner>.survey_carousel_item {
  height: 100%;
  overflow-y: auto;
}

.survey_carousel>.carousel-outer {
  height: auto;
}

@media screen and (max-width: 767px) {
  .survey_carousel {
    padding: 15px;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.header {
    font-size: 20px;
    color: #000;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.sub-header {
    font-size: 15px;
    color: #ababab;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.cx_content {
    font-size: 16px;
    color: #000;
    margin: 15px 0px;
  }

  .survey_link_btn {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .survey_carousel {
    padding: 15px;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.header {
    font-size: 22px;
    color: #000;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.sub-header {
    font-size: 17px;
    color: #ababab;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.cx_content {
    font-size: 18px;
    color: #000;
    margin: 15px 0px;
  }

  .survey_link_btn {
    font-size: 17px;
  }
}

@media (min-width: 992px) {
  .survey_carousel {
    padding: 15px;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.header {
    font-size: 25px;
    color: #000;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.sub-header {
    font-size: 18px;
    color: #ababab;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.cx_content {
    font-size: 20px;
    color: #000;
    margin: 15px 0px;
  }

  .survey_link_btn {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .survey_carousel {
    padding: 15px;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.header {
    font-size: 28px;
    color: #000;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.sub-header {
    font-size: 19px;
    color: #ababab;
  }

  .survey_carousel>.carousel-inner>.survey_carousel_item>.cx_content {
    font-size: 21px;
    color: #000;
    margin: 15px 0px;
  }

  .survey_link_btn {
    font-size: 19px;
  }
}

img.bg {
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
}

.btn-group>.btn.survey {
  border-radius: 2px !important;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 1px;
}

#draggable_list {
  cursor: move;
}

.survey_link_btn {
  font-size: 1.2em;
}

.survey_link_btn.link {
  color: #a1a1a1 !important;
  text-decoration: none;
  margin-right: 10px;
}

.survey_link_btn.link:hover,
.survey_link_btn.link:focus,
.survey_link_btn.link:active {
  color: #5a5a5a !important;
  text-decoration: none;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-scrollbar {
  -webkit-appearance: none;
  background: #d43f3a;
  width: 12px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d43f3a;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d43f3a;
  cursor: pointer;
}

.carousel-indicators.top {
  top: 0;
  bottom: auto !important;
}

.carousel-indicators.top .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #484848;
}

.carousel-indicators.top li {
  border: 1px solid #b7b7b7 !important;
}

.ideaTitle {
  color: #3f3f3f;
  /*#7f7f7f;*/
  font-weight: 500;
  font-size: 1.2em;
  text-decoration: none;
}

.trans_btn {
  display: inline-block;
  padding: 4px 12px;
  margin: 0;
  font-size: inherit;
  font-weight: 500 !important;
  color: #484848;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 15px;
  border: none !important;
  background-color: #e6e6e6;
  line-height: 1.5;
}

.trans_btn:hover,
.trans_btn:focus,
.trans_btn:active {
  color: #000;
  border-radius: 15px;
  border: none !important;
  background-color: #c5c5c5;
  outline: none;
}

.break-word {
  word-wrap: break-word;
}

.rollcallbar {
  margin: 0 auto;
  width: 100%;
}

.rollcallbar input[type="checkbox"] {
  position: relative;
  display: inline-block;
  min-height: 70px;
  width: 80%;
  background: #ebebeb;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.rollcallbar input[type="checkbox"]:after {
  content: "";
  font-size: 2em;
  text-align: center;
  line-height: 50px;
  color: #555555;
  position: absolute;
  margin: auto auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.rollcallbar input[type="checkbox"]:before {
  position: absolute;
  margin: auto auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.rollcallbar input[type="checkbox"]:hover:before {
  height: 30px;
  width: 30px;
}

.rollcallbar input[type="checkbox"]:checked:before {
  height: 100%;
  width: 100%;
  background: #22b573;
  border: none;
  border-radius: 0;
}

.rollcallbar input[type="checkbox"]:focus {
  outline: none;
}

.rollcallbar input[type="checkbox"].present:after {
  content: "";
}

.rollcallbar input[type="checkbox"]:checked:after {
  content: "✓";
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
.modal {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.modal-open {
  overflow-y: auto;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  overflow-y: hidden;
  margin: auto;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  background-color: #ebeef0;
}

.modal-content {
  border-radius: 0;
  border: none;
  background-color: #ebeef0;
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: hidden;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 140px;
  height: 100%;
  overflow-y: auto;
}

/*Left*/
.modal.left.fade .modal-dialog {
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

.tab-content>.tab-pane,
.pill-content>.pill-pane {
  display: block;
  height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.tab-content>.active,
.pill-content>.active {
  height: auto;
}

.private-modal-header {
  min-height: 30px;
  padding: 10px;
  border-bottom: 1px solid #cbd6e2;
  display: flex;
  flex-direction: column;
  background-color: #f5f8fa;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Arial";
  font-weight: 500;
}

.private-modal-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  min-height: 30px;
  padding: 10px;
  border-top: 1px solid #cbd6e2;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Arial";
  background-color: #f5f8fa;
  z-index: 2;
}

.visitlogo {
  max-height: 120px !important;
  max-width: 240px !important;
}

.button-vcenter {
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
}

.input {
  cursor: pointer;
}

.btn {
  cursor: pointer;
}

.button {
  cursor: pointer;
}

.zui-table {
  border: none;
  border-right: solid 1px #ddefef;
  border-collapse: separate;
  border-spacing: 0;
}

.zui-table thead th {
  background-color: #a3cbf1;
  border: none;
  color: white;
  padding: 10px;
  white-space: nowrap;
}

.zui-table tbody td {
  border-bottom: solid 1px #ddefef;
  color: #333;
  padding: 10px;
}

.zui-wrapper {
  position: relative;
}

.zui-scroller {
  margin-left: 285px;
  overflow-x: scroll;
  overflow-y: visible;
  padding-bottom: 5px;
  width: auto;
}

.zui-table .zui-sticky-col {
  border-left: solid 1px #ddefef;
  border-right: solid 1px #ddefef;
  left: 0;
  position: absolute;
  top: auto;
  width: 280px;
  padding: 10px;
}

.visitinput {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
  min-height: 60px !important;
  font-size: 14pt;
  font-weight: 400;
}

.select2-default {
  background-color: #f5f8fa;
}

.select2-choices {
  min-height: 60px;
  max-height: 60px;
  overflow-y: auto;
  background-color: #f5f8fa;
}

#article_container {
  border-right: 1px solid #e4e4e4;
}

#bg {
  bottom: 0;
  height: auto;
  left: 0;
  min-height: 100%;
  position: fixed;
  /*top:0;*/
  width: 100%;
}

#content {
  background: #f5f8fa;
  border: 1px solid #e1e1e1;
  float: right;
  margin-left: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  top: 0;
}

#content .media {
  position: initial;
}

#content::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: #f0f0f0;
  width: 12px;
}

#content::-webkit-scrollbar-corner {
  background-color: #e6e6e6;
}

#content::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #bfbfbf;
  border: 4px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
}

#feed_back_panel {
  display: inline-block;
}

#feed_back_panel a {
  border-radius: 3px;
  padding: 6px 12px;
}

#footer {
  background: #554b69;
  background: -moz-linear-gradient(-45deg, #1e5799 0%, #3181be 100%);
  background: -webkit-linear-gradient(-45deg, #1e5799 0%, #3181be 100%);
  background: linear-gradient(135deg, #1e5799 0%, #3181be 100%);
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5799', endColorstr='#3181be', GradientType=1);
  padding: 20px 10px 5px;
}

#footer .nav>li>a {
  color: #fff;
}

#footer .nav>li>a:hover,
#footer .nav>li>a:focus,
#footer .nav>li>a:active {
  background-color: #07357c !important;
  color: #fff !important;
}

#footer>.container {
  padding-left: 15px;
  padding-right: 15px;
}

#login .jumbotron {
  background: rgba(44, 45, 48, 0.65);
  margin: auto 0;
  margin-top: 100px;
  padding: 0 !important;
}

#login .jumbotron ul {
  background: #f8f8f8;
  border-bottom: 0;
}

#login .panel ul>li.active>a,
.jumbotron ul>li.active>a:hover,
.jumbotron ul>li.active>a:focus {
  background-color: #00897b !important;
  border-color: #00897b !important;
  color: #fff;
}

#login>.panel>ul>li>a {
  padding: 10px;
}

#mainContainer {
  background: transparent !important;
}

#opener {
  border-radius: 0;
}

#pre-login {
  background: url(../img/conexstra-green.png) repeat;
  background-position: 50% 50%;
  background-repeat: repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

#quizContainer {
  padding: 10px;
}

#quizContainer>.carousel-control {
  top: 90%;
}

#quizContainer>.carousel-control.left {
  background-image: none !important;
}

#quizContainer>.carousel-control.right {
  background-image: none !important;
}

#slide-panel {
  float: right;
  height: auto;
  position: fixed;
  right: 0;
  top: 54px;
  width: 350px;
  z-index: 10000;
}

#social {
  float: left;
  margin: 5px 0 0 5px;
  margin-left: 0 !important;
}

#social #fb {
  background-position: -23px 0;
}

#social #fb:hover {
  background-position: -23px -23px;
}

#social #plus {
  background-position: -69px 0;
}

#social #plus:hover {
  background-position: -69px -69px;
}

#social #rss {
  background-position: -46px 0;
}

#social #rss:hover {
  background-position: -46px -23px;
}

#social #tw {
  background-position: 0 0;
}

#social #tw:hover {
  background-position: 0 -23px;
}

#social li {
  border-bottom: none !important;
  float: left;
  list-style-type: none !important;
}

#social li a {
  background: url(../img1/social-icons.png);
  float: left;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
  width: 23px;
}

#spinner_indicator {
  background: transparent;
  display: none;
  height: 65px;
  left: 50%;
  position: absolute;
  top: 45%;
  width: 65px;
  z-index: 10001;
}

#subscribe {
  background: #064474;
  color: #fff;
}

._table {
  display: table;
}

.aspect-ratio {
  position: relative;
}

.aspect-ratio-1-1 {
  padding-bottom: 100%;
}

.aspect-ratio-16-9 {
  padding-bottom: 56.25%;
}

.aspect-ratio-4-3 {
  padding-bottom: 75%;
}

.auto-width {
  width: auto !important;
}

.bandCol {
  border-collapse: collapse;
  width: 100%;
}

.bandCol td {
  border: #4e95f4 1px solid;
  padding: 7px;
}

.bandCol tr {
  background: #b8d1f3;
}

.bandCol tr td:nth-child(even) {
  background: #dae5f4;
}

.bandCol tr td:nth-child(odd) {
  background: #b8d1f3;
}

.banner_text {
  -webkit-font-smoothing: antialiased;
  clear: both;
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: 25px;
  text-transform: uppercase;
}

.basicLink a {
  cursor: pointer;
  text-decoration: none;
}

.smallicon {
  font-size: 1.4em;
}

.big {
  font-size: 1.5em;
}

.blackText {
  color: #000;
  font-size: 90%;
}

.border-all {
  border: 1px solid #d8d8d8;
}

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

.border-left {
  border-left: 1px solid #d8d8d8;
}

.border-right {
  border-right: 1px solid #d8d8d8;
}

.border-top {
  border-top: 1px solid #d8d8d8;
}

.border_top {
  border-top: 1px solid #d8d8d8;
}

.brand-btn {
  background-color: #36bbca;
  border: none;
  color: #383838;
}

.brand-btn:hover {
  background-color: #36bbca;
  color: #fff;
}

.brand-color {
  color: #36bbca;
}

.breadcrumb {
  background-color: #fff;
  padding-bottom: 0;
}

.break {
  border-bottom: 1px solid rgba(16, 207, 189, 0.7);
  clear: both;
  float: left;
  height: 1px;
  line-height: 10px;
  margin: 10px 0;
  padding: 5px 0;
  width: 100%;
}

.bs-wizard {
  border-bottom: solid 1px #e0e0e0;
  margin-top: 40px;
  padding: 0 0 10px;
}

.bs-wizard>.bs-wizard-step {
  padding: 0;
  position: relative;
}

.bs-wizard>.bs-wizard-step .bs-wizard-info {
  color: #999;
  font-size: 14px;
}

.bs-wizard>.bs-wizard-step .bs-wizard-stepnum {
  color: #595959;
  font-size: 16px;
  margin-bottom: 5px;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot {
  background: #3a87c2;
  border-radius: 50%;
  display: block;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: absolute;
  top: 45px;
  width: 30px;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot:after {
  background: #1a71b4;
  border-radius: 50px;
  content: " ";
  height: 14px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 14px;
}

.bs-wizard>.bs-wizard-step>.progress {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  box-shadow: none;
  height: 8px;
  margin: 20px 0;
  position: relative;
}

.bs-wizard>.bs-wizard-step>.progress>.progress-bar {
  background: #60a9e0;
  box-shadow: none;
  width: 0;
}

.bs-wizard>.bs-wizard-step.active>.bs-wizard-dot {
  -moz-transform: scale(1.3);
  -moz-transition: all 200ms ease-in;
  -ms-transform: scale(1.3);
  -ms-transition: all 200ms ease-in;
  -webkit-transform: scale(1.3);
  -webkit-transition: all 200ms ease-in;
  background: #4caf50;
  transform: scale(1.3);
  transition: all 200ms ease-in;
  z-index: 2;
}

.bs-wizard>.bs-wizard-step.active>.bs-wizard-dot:after {
  background: #4caf50;
}

.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
  width: 50%;
}

.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
  background: #f69537;
}

.bs-wizard>.bs-wizard-step.complete>.bs-wizard-dot {
  background: #f69537;
}

.bs-wizard>.bs-wizard-step.complete>.bs-wizard-dot:after {
  background: #f69537;
}

.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
  width: 100%;
}

.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
  background: #f69537;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot {
  background-color: #e0e0e0;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot:after {
  opacity: 0;
}

.bs-wizard>.bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}

.bs-wizard>.bs-wizard-step:first-child>.progress {
  left: 50%;
  width: 50%;
}

.bs-wizard>.bs-wizard-step:first-child.active>.progress>.progress-bar {
  width: 0;
}

.bs-wizard>.bs-wizard-step:last-child>.progress {
  width: 50%;
}

.bs-wizard>.bs-wizard-step:last-child.active>.progress>.progress-bar {
  width: 100%;
}

.btn a {
  cursor: pointer;
  text-decoration: none;
}

.btn-animate {
  -moz-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -webkit-transition: all 200ms ease-in;
  transform: scale(1);
  transition: all 200ms ease-in;
}

.btn-animate:hover {
  -moz-transform: scale(1.1);
  -moz-transition: all 200ms ease-in;
  -ms-transform: scale(1.1);
  -ms-transition: all 200ms ease-in;
  -webkit-transform: scale(1.1);
  -webkit-transition: all 200ms ease-in;
  transform: scale(1.1);
  transition: all 200ms ease-in;
  z-index: 2;
}

.btn-file {
  overflow: hidden;
  position: relative;
}

.btn-file input[type="file"] {
  background: #fff;
  cursor: inherit;
  display: block;
  filter: alpha(opacity=0);
  font-size: 100px;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  outline: none;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
}

.captionText {
  font-family: -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Roboto, "Source Sans Pro", sans-serif;
  font-size: 1.1em;
  color: #484848;
}

.captionText.white {
  color: #fff !important;
  background-color: transparent !important;
}

a.captionText {
  -o-text-overflow: ellipsis;
  color: #484848;
  cursor: pointer;
  display: -webkit-box;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto;
  font-weight: 400;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: normal;
}

a.captionText:hover {
  color: #303030;
}

.captionText.head {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1.3em !important;
  font-weight: 600;
}

.captionText.smaller {
  font-size: 1.07em !important;
}

.captionText.textGray {
  color: #7f7f7f;
}

.carousel {
  background-color: rgba(75, 75, 75, 1);
}

.carousel-caption {
  background-color: rgba(75, 75, 75, 0.3);
  bottom: 0 !important;
  left: 0;
  padding: 15px;
  right: 0;
  text-align: center;
  top: 0;
}

.carousel-caption h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.carousel-caption p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.carousel-caption-inner {
  bottom: 0 !important;
  left: 0;
  padding: 15px;
  position: absolute;
  right: 0;
  text-align: center;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  -webkit-transition: background-color 400ms;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: inline-block;
  font-size: 22px;
  height: 70px;
  left: 0;
  line-height: 70px;
  margin-left: 0;
  margin-top: -35px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: background-color 400ms;
  width: 35px;
  z-index: 5;
}

.carousel-control .glyphicon-chevron-left:hover,
.carousel-control .icon-prev:hover {
  background-color: #07357c;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  -webkit-transition: background-color 400ms;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: inline-block;
  font-size: 22px;
  height: 70px;
  line-height: 70px;
  margin-right: 0;
  margin-top: -35px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transition: background-color 400ms;
  width: 35px;
  z-index: 5;
}

.carousel-control .glyphicon-chevron-right:hover,
.carousel-control .icon-next:hover {
  background-color: #07357c;
}

.carousel-control.left {
  background-image: none !important;
}

.carousel-control.right {
  background-image: none !important;
}

.carousel-indicators {
  bottom: -5px;
}

.carousel-inner img {
  margin: auto;
}

.carousel-inner>.item {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 630px;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
  display: block;
  height: auto;
  max-height: 500px;
  max-width: 100%;
  min-height: 500px;
}

.carousel-inner>.item_auto {
  height: auto;
}

.radio-inline {
  vertical-align: top;
}

.checkbox .cr,
.radio .cr {
  border: 1px solid #a9a9a9;
  border-radius: 0.25em;
  display: inline-block;
  float: left;
  height: 1.3em;
  margin-right: 0.5em;
  position: relative;
  width: 1.3em;
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon,
.radio label input[type="radio"]+.cr>.cr-icon {
  opacity: 0;
  transform: scale(3) rotateZ(-20deg);
  transition: all 0.3s ease-in;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon,
.radio label input[type="radio"]:checked+.cr>.cr-icon {
  opacity: 1;
  transform: scale(1) rotateZ(0deg);
}

.checkbox label input[type="checkbox"]:disabled+.cr,
.radio label input[type="radio"]:disabled+.cr {
  opacity: 0.5;
}

.chevronActive {
  background-color: #ff5ba1;
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1em;
  font-weight: 500;
  line-height: 24px;
}

.chevronIconActive {
  color: #ff5ba1;
  font-size: 24px;
}

.chevronIconNormal {
  color: #299ad7;
  font-size: 24px;
}

.chevronNormal {
  background-color: #299ad7;
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1em;
  font-weight: 500;
  line-height: 24px;
}

.circleBase {
  behavior: url(PIE.htc);
  border-radius: 50%;
}

.clock {
  color: #fff;
  font-family: Orbitron;
  font-size: 28px;
  font-weight: 400;
  padding: 10px;
  vertical-align: middle;
}

.clocklg {
  color: #fff;
  font-family: Orbitron;
  font-size: 18px;
  font-weight: 400;
  vertical-align: middle;
}

.close {
  color: #000;
  filter: alpha(opacity=20);
  float: right;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.2;
  text-shadow: 0 1px 0 #fff;
}

.contentText {
  font-size: 1em;
}

.contentText.textGray {
  color: #ababab;
}

.contentblock {
  padding: 10px 20px;
}

.contentblocktop {
  padding: 60px 20px 10px;
}

.correct {
  background-color: #5cb85c !important;
}

.custom_dropdown {
  background-color: rgba(38, 121, 185, 0.3);
  color: #000 !important;
  margin: 1px;
  padding: 2px 3px !important;
  position: absolute !important;
  right: 15px;
  top: 0;
}

.custom_dropdown .glyphicon {
  color: #fff !important;
  font-size: 1em;
}

.custom_dropdown:hover,
.custom_dropdown:focus,
.custom_dropdown:active {
  background-color: rgba(38, 121, 185, 0.9);
}

.dashbg {
  background: #a8e3d7;
}

.dashlabel {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Roboto, Arial;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.dashtile {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.471;
  text-decoration: none;
  white-space: nowrap;
}

.dashtilered {
  color: red;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.471;
  text-decoration: none;
  white-space: nowrap;
}

.dotted {
  position: relative;
}

.dotted:after {
  border-left: 2px dotted #ababab;
  bottom: 0;
  content: "";
  left: 38%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.drop {
  border: 2px dotted #bdc3c7;
  min-height: 140px;
}

.drop .placeholder {
  -moz-box-shadow: 0 0 10px #888;
  -webkit-box-shadow: 0 0 10px #888;
  background-color: #fff;
  border: 1px solid green;
  box-shadow: 0 0 10px #888;
  min-height: 100px;
}

.drop .tile {
  height: 100px;
}

.drop_down_menu>li>a {
  float: left !important;
  line-height: 1;
}

.dropdown .fa {
  font-size: 2.2rem;
}

.dropdown-menu.max-height {
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}

.dropdown-menu.multi-column {
  min-width: 360px;
}

.dropdown-menu.multi-column .dropdown-menu {
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  margin: 0 !important;
  position: static !important;
}

.dropdown-menu.multi-column .dropdown-menu>li>a:active {
  background-color: transparent !important;
  color: #484848;
}

.dropdown-menu.multi-column .dropdown-menu>li>a:hover,
.dropdown-menu.multi-column .dropdown-menu>li>a:focus {
  background-color: transparent !important;
  border: 1px dotted #999;
  color: #484848;
}

.dropdown-menu>.active>a {
  background-color: transparent !important;
  color: #484848;
}

.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
  background-color: transparent !important;
  border: 1px dotted #999;
  color: #484848;
}

.dropdown-menu>li>a div {
  padding: 5px;
}

.edit {
  padding: 10px 0;
}

.editor-field {
  margin-bottom: 10px;
  vertical-align: middle;
}

.editor-label {
  /* color: #a2a2a2; */
  font-weight: 500;
  padding: 5px 0;
}

.error {
  color: #d5393b !important;
  text-transform: fullsize-kana;
}

.errorMessage {
  color: #ce3537;
  font-size: 0.9em;
  padding-top: 3px;
}

.errorSummary {
  background-color: #fca;
  color: #000;
  padding-bottom: 10px;
  padding-top: 10px;
}

.errorSummary li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\e088";
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 0 10px;
}

.errorSummary p {
  margin: 0 15px;
  padding: 5px;
}

.errorSummary ul {
  margin: 5px;
  padding: 5px;
}

.errorSummary ul li {
  display: block;
  line-height: 20px;
  list-style-type: none;
}

.error_msg {
  color: #d5393b;
  font-size: 0.9em;
  text-transform: lowercase;
}

.fb_iframe_widget span {
  vertical-align: inherit !important;
}

.featureinfo {
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro";
  font-size: 1.5em;
  text-decoration: none;
}

.feed_album {
  background-image: url(../img1/feed_album.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: table;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 150px !important;
  padding: 10px !important;
}

.feed_album h4 {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.feed_comment {
  margin-top: 10px;
}

.feed_comment p {
  font-weight: 500;
  padding: 10px 0;
}

.feed_content {
  min-height: 150px !important;
  padding: 10px !important;
}

.feed_content div {
  border: 1px solid #676767;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 10px !important;
  width: 100%;
}

.feed_content img {
  margin-bottom: 5px;
  margin-top: 10px;
}

.feed_quiz {
  background-image: url(../img1/feed_quiz.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: table;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 150px !important;
  padding: 10px !important;
}

.feed_quiz h4 {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.feed_video {
  background-image: url(../img1/feed_video.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: table;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 150px !important;
  padding: 10px !important;
}

.feed_video h4 {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.fit-img {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 90%;
  max-width: 80%;
  position: absolute;
  right: 0;
  top: 0;
}

.fit-img-bottom {
  top: auto;
}

.fit-img-tight {
  max-height: 100%;
  max-width: 100%;
}

.floating-box {
  border: none;
  float: left;
  height: auto;
  margin: 10px;
  width: 80px;
}

.floating-small-box {
  border: none;
  float: left;
  height: 48px;
  margin: 10px;
  width: 48px;
}

.footer-block {
  margin: 20px 0;
}

.form-control {
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
}

.form-control:focus,
.form-control:active {
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 87, 34, 0.075) !important;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  box-shadow: inset 0 1px 1px rgba(255, 87, 34, 0.075) !important;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.full-width {
  min-width: 125px;
  width: 100% !important;
}

.fullWidth {
  width: 100%;
}

.general_section {
  padding: 30px 0;
}

.whiteTextTiny {
  color: #ffffff;
  font-size: 0.9em;
}

.gray {
  background: #e1e1e1;
}

.gray-box {
  background: #e1e1e1;
  padding: 5px;
}

.grayedText {
  color: #ababab;
  font-size: 1em;
}

.grayedTextMicro {
  color: #ababab;
  font-size: 0.75em;
}

.grayedTextTiny {
  color: #ababab;
  font-size: 0.9em;
}

.grayedTitleText {
  color: #ababab;
  font-size: 1em;
  font-weight: 700;
}

.headerLargestText {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 3em;
  font-weight: 500;
}

.headerLargerText {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 2.3em;
  font-weight: 500;
}

.headerLargeText {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1.8em;
  font-weight: 500;
}

.headerLargeText.textGray {
  color: #ababab;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-weight: 500;
}

.headerSemiLargeText {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1.6em;
  font-weight: 500;
}

.headerSemiLargeText.textGray {
  color: #ababab;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-weight: 500;
}

.headerText {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1.4em;
  font-weight: 500;
}

.headerText a {
  -o-text-overflow: ellipsis;
  color: #404040;
  cursor: pointer;
  display: -webkit-box;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-weight: 500;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: normal;
}

.headerText.textGray {
  color: #ababab;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
}

.highcharts-container {
  min-width: 100%;
  width: auto !important;
}

.hspacer {
  border-bottom: 0;
  clear: both;
  float: left;
  height: 1px;
  line-height: 1px;
  margin: 5px 0;
  padding: 0;
  width: 100%;
}

.image-box {
  border: none;
  float: left;
  height: auto;
  margin: 10px;
  width: 90px;
}

.img-center {
  bottom: 0;
  left: 0;
  margin: 0 auto !important;
  right: 0;
  top: 0;
  padding: 2px;
}

.img-frame {
  margin: 2px auto;
}

.img-thumbnail-circle {
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: auto;
  line-height: 1.42857143;
  max-width: 100%;
  padding: 2px;
  transition: all 0.2s ease-in-out;
}

.img_detail {
  display: block;
  height: auto;
  max-height: 500px;
  max-width: 100%;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  width: 100%;
}

.input-group-addon {
  color: #07357c;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.intro-block {
  background: url(images/conexstra-green.png) repeat;
  color: #fff;
  padding: 100px 15px 60px;
}

.invisible {
  opacity: 0;
}

.kexplora-buffer {
  background: #444;
}

.kexplora-buffer:hover,
.kexplora-buffer:active {
  background: #ff5722;
}

.kexplora-facebook {
  background: #3b5997;
}

.kexplora-facebook:hover,
.kexplora-facebook:active {
  background: #2d4372;
}

.kexplora-googleplus {
  background: #d64937;
}

.kexplora-googleplus:hover,
.kexplora-googleplus:active {
  background: #b53525;
}

.kexplora-link {
  -moz-background-clip: padding-box;
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  margin-right: 2px;
  padding: 4px 8px 6px;
}

.kexplora-link:hover,
.kexplora-link:active {
  color: #fff;
}

.kexplora-pinterest {
  background: #bd081c;
}

.kexplora-pinterest:hover,
.kexplora-pinterest:active {
  background: #bd081c;
}

.kexplora-social {
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  margin: 20px 0 25px;
}

.kexplora-twitter {
  background: #00aced;
}

.kexplora-twitter:hover,
.kexplora-twitter:active {
  background: #0084b4;
}

.label-warning {
  background-color: #07357c;
  font-size: 13px;
}

.magic_col {
  height: 70vh;
  min-height: 180px;
  overflow: scroll auto;
  overflow-x: scroll;
  overflow-y: scroll;
}

.row-horizon_col_med {
  height: 57vh;
  min-height: 180px;
  overflow: scroll auto;
  overflow-x: scroll;
  overflow-y: scroll;
}

.margin-1 {
  margin: -1px !important;
}

.margin_0 {
  margin: 0 !important;
}

.margin_1 {
  margin: 1px !important;
}

.margin_10 {
  margin: 10px !important;
}

.margin_2 {
  margin: 2px !important;
}

.margin_20 {
  margin: 20px !important;
}

.margin_3 {
  margin: 3px !important;
}

.margin_5 {
  margin: 5px !important;
}

.margin_5_negative {
  margin: -5px !important;
}

.margin_b_0 {
  margin-bottom: 0 !important;
}

.margin_b_3 {
  margin-bottom: 3 !important;
}

.margin_b_5 {
  margin-bottom: 5px !important;
}

.margin_b_7 {
  margin-bottom: 7px !important;
}

.margin_b_10 {
  margin-bottom: 10px !important;
}

.margin_b_15 {
  margin-bottom: 15px !important;
}

.margin_b_20 {
  margin-bottom: 20px !important;
}

.margin_b_24 {
  margin-bottom: 24px !important;
}

.margin_l_5 {
  margin-left: 5px !important;
}

.margin_l_10 {
  margin-left: 10px !important;
}

.margin_l_15 {
  margin-left: 15px !important;
}

.margin_l_20 {
  margin-left: 20px !important;
}

.margin_l_25 {
  margin-left: 25px !important;
}

.margin_l_30 {
  margin-left: 30px !important;
}

.margin_l_35 {
  margin-left: 35px !important;
}

.margin_lr_20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.margin_lr_25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.margin_lr_5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.margin_minus_15 {
  margin: 0 -15px !important;
}

.margin_minus_30 {
  margin: 0 -30px !important;
}

.margin_r_5_negative {
  margin-right: -5px !important;
}

.margin_r_5 {
  margin-right: 5px !important;
}

.margin_r_10 {
  margin-right: 10px !important;
}

.margin_r_15 {
  margin-right: 15px !important;
}

.margin_r_20 {
  margin-right: 20px !important;
}

.margin_t_0 {
  margin-top: 0 !important;
}

.margin_t_0 {
  margin-top: 0 !important;
}

.margin_t_10 {
  margin-top: 10px !important;
}

.margin_t_15 {
  margin-top: 15px !important;
}

.margin_t_20 {
  margin-top: 20px !important;
}

.margin_t_5 {
  margin-top: 5px !important;
}

.margin_tb_10 {
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

.margin_tb_2 {
  margin-bottom: 2px !important;
  margin-top: 2px !important;
}

.margin_tbw_20 {
  width: 98%;
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}

.margin_tb_20 {
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}

.margin_tb_25 {
  margin-bottom: 25px !important;
  margin-top: 25px !important;
}

.margin_tb_5 {
  margin-bottom: 5px !important;
  margin-top: 5px !important;
}

.marketing {
  background-color: #fff;
}

.media .media-thumb {
  border: #ccc 1px solid;
  padding: 3px;
  position: relative;
}

.media .media-thumb:after {
  border: solid transparent;
  border-color: rgba(204, 204, 204, 0);
  border-left-color: #ccc;
  border-width: 7px;
  content: " ";
  height: 0;
  left: 100%;
  margin-top: -10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0;
}

.media-object {
  height: auto !important;
  min-height: 70px !important;
  min-width: 70px !important;
  width: 100%;
}

.media-object-extra-large {
  max-height: 300px;
  max-width: 300px;
  min-height: 300px;
  min-width: 300px;
}

.media-object-large {
  max-height: 200px;
  max-width: 200px;
  min-height: 200px;
  min-width: 200px;
}

.media-object-medium {
  max-height: 100px;
  max-width: 100px;
  min-height: 100px;
  min-width: 100px;
}

.media-object-small {
  height: auto !important;
  min-height: 40px !important;
  min-width: 40px !important;
  width: 100%;
}

.mediumText {
  font-size: 0.9em !important;
}

.mediumText.head {
  font-size: 0.9em !important;
  font-weight: 400;
}

.mediumText.textGray {
  color: #ababab;
}

.medium_img {
  height: 70px !important;
  width: 70px !important;
}

.drop_img {
  width: 70px;
  height: 70px;
  max-width: 70px;
  min-width: 70px;
  max-height: 70px;
  min-height: 70px;
}

.menu {
  height: 25px;
  width: 25px;
}

.menu img {
  height: 25px;
  width: 25px;
}

.menuDiv {
  display: table;
}

.menuDiv div {
  display: table-row;
  font-size: 10px;
  font-weight: 400;
  line-height: 3;
  vertical-align: middle;
}

.menuDiv img {
  display: table-row;
  height: 32px;
  vertical-align: central;
  width: 32px;
}

.multiMenu {
  background: #fff;
  margin: 0;
  min-height: 100px;
  padding: 15px;
  white-space: normal;
  width: auto;
}

.multiMenuChild {
  -webkit-border-radius: 2px;
  border: 1px solid #fff;
  border-radius: 2px;
  display: inline-block;
  height: 80px;
  text-align: center;
  vertical-align: top;
  width: 100px;
}

.multiMenuChild a.anchor {
  color: #404040;
  display: inline-block;
  font-size: 13px;
  margin: 8px 2px;
  outline: none;
  text-align: center;
  text-decoration: none;
}

.multiMenuChild:hover,
.multiMenuChild:focus {
  border: 1px dotted #999;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
  background-color: #07357c !important;
  border-color: #33447a !important;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  background-color: #3986c2;
  border: 1px solid #3986c2 !important;
  border-bottom-color: transparent;
  color: #fff;
  cursor: default;
}

.nav-tabs>li>a {
  text-transform: uppercase;
}

.navbar-brand {
  padding: 0;
}

li.menu-list-button:hover {
  border-color: cyan;
  background-color: cyan;
}

.navbar-brand>div {
  display: table-cell;
  vertical-align: middle;
}

.navbar-custom {
  margin-left: 60px;
  background: #0747a6;
  /*    background:-moz-linear-gradient(left,#554B69 0%,#554B69 100%);
        background:-webkit-gradient(left top,right top,color-stop(0%,#554B69),color-stop(100%,#554B69));
        background:-webkit-linear-gradient(left,#554B69 0%,#554B69 100%);
        background:-o-linear-gradient(left,#554B69 0%,#554B69 100%);
        background:-ms-linear-gradient(left,#554B69 0%,#554B69 100%);
        background:linear-gradient(to right,#554B69 0%,#554B69 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#554B69',endColorstr='#554B69',GradientType=1)*/
}

.navbar-header a,
.navbar-nav>li>a {
  color: #f5f5f5 !important;
  margin-bottom: -1px;
}

.navbar-header a:hover,
.navbar-header a:focus,
.navbar-header a:active {
  color: #fff !important;
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li>a:active {
  background-color: #07357c !important;
  color: #fff !important;
}

.navbar-toggle .icon-bar {
  background-color: #f5f5f5;
}

.navbar-website {
  background-color: transparent;
}

.no_border {
  border: 0 !important;
}

.normalText {
  font-size: 1em;
}

.normalText a {
  color: #404040;
  cursor: pointer;
  text-decoration: none;
}

.ideaInfoText {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.6;
}

.nsTitle {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.471;
  text-decoration: none;
  white-space: nowrap;
}

.one_line {
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  font-weight: 500;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: normal;
  width: auto;
}

.padding_0 {
  padding: 0 !important;
}

.buttonItem>li : hover {

  border-color: cyan;
  background-color: cyan;
}



.padding_1 {
  padding: 1px !important;
}

.padding_10 {
  padding: 10px !important;
}

.padding_15 {
  padding: 15px !important;
}

.padding_2 {
  padding: 2px !important;
}

.padding_20 {
  padding: 20px !important;
}

.padding_25 {
  padding: 25px !important;
}

.padding_3 {
  padding: 3px !important;
}

.padding_5 {
  padding: 5px !important;
}

.padding_7 {
  padding: 7px !important;
}

.padding_b_0 {
  padding-bottom: 0 !important;
}

.padding_b_10 {
  padding-bottom: 10px !important;
}

.padding_b_20 {
  padding-bottom: 20px !important;
}

.padding_b_5 {
  padding-bottom: 5px !important;
}

.padding_l_0 {
  padding-left: 0 !important;
}

padding_l_2 {
  padding-left: 2px !important;
}

.padding_l_3 {
  padding-left: 3px !important;
}

.padding_l_5 {
  padding-left: 5px !important;
}

.padding_l_10 {
  padding-left: 10px !important;
}

.padding_l_20 {
  padding-left: 20px !important;
}

.padding_l_25 {
  padding-left: 25px !important;
}

.padding_l_30 {
  padding-left: 30px !important;
}

.padding_l_35 {
  padding-left: 35px !important;
}

.padding_l_40 {
  padding-left: 40px !important;
}

.padding_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.padding_lr_10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.padding_lr_10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.padding_lr_20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.padding_lr_3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.padding_lr_5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.padding_r_10 {
  padding-right: 10px !important;
}

.padding_r_20 {
  padding-right: 20px !important;
}

.padding_r_25 {
  padding-right: 25px !important;
}

.padding_r_30 {
  padding-right: 30px !important;
}

.padding_r_35 {
  padding-right: 35px !important;
}

.padding_r_3 {
  padding-right: 3px !important;
}

.padding_r_5 {
  padding-right: 5px !important;
}

.padding_t_10 {
  padding-top: 10px !important;
}

.padding_t_20 {
  padding-top: 20px !important;
}

.padding_t_5 {
  padding-top: 5px !important;
}

.padding_tb_10 {
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}

.padding_tb_2 {
  padding-bottom: 2px !important;
  padding-top: 2px !important;
}

.padding_tb_20 {
  padding-bottom: 20px !important;
  padding-top: 20px !important;
}

.padding_tb_25 {
  padding-bottom: 25px !important;
  padding-top: 25px !important;
}

.padding_tb_5 {
  padding-bottom: 5px !important;
  padding-top: 5px !important;
}

.pagemiddle {
  margin-top: 10%;
}

.pager {
  margin: 20px 10px !important;
}

.panel .fill {
  align-items: center;
  display: flex;
  justify-content: center;
  max-height: 185px;
  overflow: hidden;
  position: relative;
}

.panel .fill>img {
  background-color: #686868;
  flex-shrink: 1;
  height: 100%;
  min-height: 185px;
  min-width: 100%;
}

.panel object {
  width: 100%;
}

.panel-no-border {
  border: 0px;
  background-color: transparent;
  box-shadow: none;
}

.panel-custom {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.panel-custom.danger {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #d43f3a;
}

.panel-custom.info {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #46b8da;
}

.panel-custom.primary {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #2679b9;
}

.panel-custom.success {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #4cae4c;
}

#PaperWrap {
  background-repeat: repeat;
  margin-left: 0;
  margin-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 100;
  -moz-box-shadow: 1px 1px 8px #bdbdbd;
  -webkit-box-shadow: 1px 1px 8px #bdbdbd;
  box-shadow: 1px 1px 8px #bdbdbd;
  filter: progid:DXImageTransform.Microsoft.Shadow(strength=1, direction=135, color='#bdbdbd');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength=1, Direction=135, Color='#bdbdbd')";
}

.panel-default {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.list-group {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.panel-default:hover,
.panel-default:focus {
  border: 1px solid #e1e1e1;
}

.panel-default>.panel-body>img {
  min-height: 250px;
  width: 100%;
}

.panel-default>.panel-heading {
  background-color: #ddd;
  border-color: #b7b7b7;
  color: #333;
}

.panel-gray-body {
  background-color: #ebeef0;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  overflow-y: auto;
}

.panel-gray-body::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: transparent;
  width: 12px;
}

.panel-gray-body::-webkit-scrollbar-corner {
  background-color: transparent;
}

.panel-gray-body::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #bfbfbf;
  border: 4px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
}

.panel-primary {
  border-color: #07357c;
}

.panel-primary>.panel-heading {
  background-color: #07357c;
  border-color: #07357c;
  border-radius: 0 !important;
  color: #fff;
}

.panel-shadow {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.09);
  border: 1px solid #e1e1e1;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.09);
  box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.09), 4px 12px 7px 4px rgba(0, 0, 0, 0.17);
}

.panel.gray {
  background-color: #e8e8e8;
}

.popover {
  right: auto !important;
}

.pre-line {
  white-space: pre-line;
}

.print-table {
  background: #fff;
}

.profile_img_lg {
  height: 140px !important;
  width: 140px !important;
}

.profile_img {
  height: 80px !important;
  width: 80px !important;
}

.profile_medium_img {
  height: 60px !important;
  width: 60px !important;
}

.profile_normal_img {
  height: 40px !important;
  width: 40px !important;
}

.profile_small_img {
  height: 32px !important;
  width: 32px !important;
}

.profile_very_small_img {
  height: 20px !important;
  width: 20px !important;
}

.progress {
  background: rgba(245, 245, 245, 1);
  border: 1px solid rgba(199, 199, 199, 1);
  border-radius: 0;
  height: 13px;
}

.progress-bar {
  font-size: 10px;
  line-height: 12px;
}

.progress-bar.big {
  font-size: 75%;
}

.progress.big {
  height: 30px !important;
  margin: 0 !important;
}

.progress.big span {
  color: #ababab;
  font-size: 13px;
  left: 7%;
  line-height: 30px;
  position: absolute;
}

.row-horizon::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: transparent;
  width: 12px;
}

.progress.mini {
  height: 7px;
  border-radius: 7px;
}

.progress.mini>.progress-bar {
  font-size: 7px;
  line-height: 7px;
}

.row-horizon::-webkit-scrollbar-corner {
  background-color: transparent;
}

.row-horizon::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #bfbfbf;
  border: 4px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: absolute;
  right: 0;
  top: 0;
}

.scoretilefive {
  background-color: #00b050;
  /* #009c2f; */
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scoretilefour {
  background-color: #92d050;
  /* #72c940; */
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scoretilethree {
  background-color: #ffff00;
  /* #bbe44b; */
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scoretiletwo {
  background-color: #ffd966;
  /*#eaf553;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scoretileone {
  background-color: #ffc000;
  /*#ff772c;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scoretilezero {
  background-color: #ff0000;
  /*#ff0018;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}


.scorefivestilethree {
  background-color: #92d050;
  /* #bbe44b; */
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scorefivestiletwo {
  background-color: #ffd966;
  /*#eaf553;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scorefivestileone {
  background-color: #ffc000;
  /*#ff772c;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.scorefivestilezero {
  background-color: #ff0000;
  /*#ff0018;*/
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", Arial;
}

.section {
  padding: 100px 0;
}

.select2-drop {
  isolation: isolate;
  z-index: 10000 !important;
  background-color: #f5f8fa;
}

.shortTitle {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.sidebar-nav li a>.fa {
  display: table-cell;
  font-size: 20px;
  height: 36px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}

.sidebar-nav li a span {
  margin-left: 10px;
}

.silver {
  background: #e6e6e6;
}

.slideLeft {
  display: none;
}

.slideRight {
  display: none;
}

.tiny,
tiny {
  font-size: 80%;
}

.small,
small {
  font-size: 90%;
}

.small_img_24 {
  height: 24px !important;
  width: 24px !important;
}

.small_img {
  height: 32px !important;
  width: 32px !important;
}

.small_img_40 {
  height: 40px !important;
  width: 40px !important;
}

.small_img_50 {
  height: 50px !important;
  width: 50px !important;
}

.small_img_60 {
  height: 60px !important;
  width: 60px !important;
}

.subHeaderText {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue";
  font-size: 1.2em;
  font-weight: 400;
}

.subHeaderText.textGray {
  color: #9e9e9e;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", "Helvetica Neue", sans-serif, -apple-system, system-ui, "Segoe UI", Roboto, Arial, "Droid Sans";
}

.sub_banner_margin_text {
  -webkit-font-smoothing: antialiased;
  clear: both;
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: 23px;
}

.sub_banner_text {
  -webkit-font-smoothing: antialiased;
  clear: both;
  font-weight: 500;
  margin: 5px 0;
}

.sub_header_section {
  /*    padding:70px 0 10px*/
}

.sub_section {
  /*    padding:50px 0 0*/
}

.subtitleText {
  color: #484848;
  font-family: -apple-system, system-ui, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
}

.subtitleText.white {
  color: #fff !important;
  background-color: transparent !important;
}

a.subtitleText {
  -o-text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #484848;
  cursor: auto;
  display: -webkit-box;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: normal;
}

a.subtitleText:hover {
  color: #303030;
}

.subtitleText.textGray {
  color: #ababab;
}

.suggestion_panel {
  padding: 10px;
}

.tabBlock {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #57574f;
  border: solid 0 #ffa54f;
  border-radius: 5px;
  max-width: 200px;
  overflow: hidden;
  width: 100%;
}

.table {
  margin-bottom: 0 !important;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.table-responsive.fixed {
  max-height: 370px;
  overflow-y: auto;
}

.table.print-table>tbody>tr>td {
  vertical-align: top;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  vertical-align: middle;
}

.table>tbody>tr>td.button-column {
  display: table-cell;
}

.table>tbody>tr>td.button-column a {
  display: table-cell;
  padding: 2px;
}

.tableText {
  -webkit-font-smoothing: antialiased;
  font-size: 0.95em;
}

.tableText a {
  -o-text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 2;
  color: #404040;
  cursor: pointer;
  display: -webkit-box;
  font-weight: 500;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: normal;
}

.tableText a:hover {
  color: #303030;
}

.tableText.textGray {
  color: #ababab;
}

.table_suggestion>tbody>tr>td,
.table_suggestion>tbody>tr>th,
.table_suggestion>tfoot>tr>td,
.table_suggestion>tfoot>tr>th,
.table_suggestion>thead>tr>td,
.table_suggestion>thead>tr>th {
  min-width: 300px;
  vertical-align: top !important;
  white-space: normal !important;
  width: 25%;
}

.table-borderless td,
.table-borderless th {
  border: 0;
}

.three-lines-only {
  -o-text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  height: 60px;
  letter-spacing: 0;
  line-height: 18px;
  max-height: 60px;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: normal;
}

.three_line {
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: normal;
  width: auto;
}

.thumbnail .over {
  background-color: #060606;
  bottom: 0;
  display: none;
  left: 0;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  opacity: 0.85;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 1000;
}

.tiny_img {
  height: 24px !important;
  width: 24px !important;
}

.transparent {
  background-color: transparent !important;
}

.two-lines-only {
  -o-text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  height: 38px;
  letter-spacing: 0;
  line-height: 18px;
  max-height: 38px;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: normal;
}

.two_line {
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  letter-spacing: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: normal;
  width: auto;
}

.type1 {
  background: #31b0d5;
  border: 3px solid #31b0d5;
  height: 100px;
  width: 100px;
}

.type2 {
  background: #31b0d5;
  border: 3px solid #31b0d5;
  height: 50px;
  width: 50px;
}

.type3 {
  background: #31b0d5;
  border: 30px solid #31b0d5;
  height: 500px;
  width: 500px;
}

.ui-autocomplete-loading {
  background: #fff url(/kexplora/themes/abound/img/ui-anim_basic_16x16.gif) right center no-repeat;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-widget-content {
  background: transparent !important;
  border: 0 !important;
}

.visible {
  opacity: 1;
}

.white {
  background-color: #fff !important;
}

.whiteText {
  color: #fff !important;
}

.widget {
  background: #eeece8;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 1.6em;
  padding: 1.6em;
}

.wrong {
  background-color: #d44332 !important;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
}

body>.container {
  padding: 60px 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #7f7f7f;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Source Sans Pro", sans-serif;
  font-weight: 600 !important;
}

hr {
  margin-bottom: 20px;
  margin-top: 20px;
}

img reset {
  width: auto;
}

input[name="Suggestion[title]"] {
  max-width: 100%;
}

input[type="email"]:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #2196f3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

input[type="password"]:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #2196f3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

input[type="text"]:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #2196f3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

label {
  /*    font-weight:500*/
}

p {
  font-size: 1.2em;
}

section {
  margin: 0 -15px;
  padding: 70px 0;
}

textarea:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #2196f3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

@media (max-width: 768px) {
  #bg {
    width: 150%;
  }

  .border_left {
    border-top: 1px solid #ccc;
    margin-top: 8px;
    padding-top: 8px;
  }

  .border_right {
    border-bottom: 1px solid #ccc;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .error-message {
    background: #ccc;
    border-left: none;
    border-top: #930 10px solid;
    margin-top: 70px;
    padding: 10px 20px;
    position: relative;
  }

  .error-message:after {
    border: solid transparent;
    border-bottom-color: #930;
    border-color: rgba(153, 51, 0, 0);
    border-width: 30px;
    content: " ";
    height: 0;
    margin-top: -30px;
    pointer-events: none;
    position: absolute;
    right: 100%;
    right: 7%;
    top: -30px;
    width: 0;
  }

  .leftbar {
    position: absolute;
    z-index: 9000;
  }

  .leftbar.expand {
    left: 0 !important;
  }

  .leftbar.leftbar-close {
    left: -260px;
  }

  .main-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .responsive-leftbar {
    display: block;
    top: -50px;
  }

  .thumbnail h5 {
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
  }

  .thumbnail img {
    height: 100px;
  }

  body {
    font-size: 13px;
  }
}

@media (min-width: 767px) {
  .border_left {
    border-left: 1px dashed #ccc;
  }

  .border_right {
    border-right: 1px dashed #ccc;
  }

  .navbar_toggle {
    display: block !important;
  }

  .row-fluid .controls-row [class*="span"]+[class*="span"] {
    margin-left: 0;
  }
}

/**********************************SWITCH BUTTON/TOGGLE BUTTON*********************************************/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #2196f3;
  content: "ON";
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
  content: "OFF";
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/********************************** CSS ENLARGE IMAGE *********************************************/
/*Eliminates padding, centers the thumbnail */
/* Styles the thumbnail */
.dark_shadow {
  box-shadow: 0px 3px 10px 0.5px rgba(0, 0, 0, 0.45) !important;
}

a.lightbox img {
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
  position: fixed;
  top: -100%;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
  padding: 7%;
  z-index: 10002;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
}

.lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
  top: 0px;
}

/********************************** CSS ENLARGE IMAGE *********************************************/
.grid-container {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.grid-container-200 {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.grid-container-300 {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-container-400 {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.grid-item {
  text-align: center;
  margin: 0px 5px;
}

/********************************** CSS ENLARGE IMAGE *********************************************/
.img_100 {
  width: 100px !important;
  height: 100px !important;
}

/********************************** HORIZONTAL SCROLL VIEW *********************************************/
.scrolling-wrapper {
  overflow-x: scroll auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.scrolling-wrapper .card {
  display: inline-block;
}

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.scrolling-wrapper-flexbox.wrap {
  flex-wrap: wrap;
}

.scrolling-wrapper-flexbox::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: transparent;
  width: 12px;
}

.scrolling-wrapper-flexbox::-webkit-scrollbar-corner {
  background-color: transparent;
}

.scrolling-wrapper-flexbox::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #bfbfbf;
  border: 6px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: absolute;
  right: 0;
  top: 0;
}

.scrolling-wrapper-flexbox .card {
  flex: 0 0 auto;
  margin-right: 10px;
  padding: 7px;
}

.card {
  border: 1px solid #d2d2d2;
  width: 250px;
  background: transparent;
}

.scrolling-wrapper,
.scrolling-wrapper-flexbox {
  width: 100%;
}

/********************************** MATERIAL ICONS *********************************************/
.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";
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-20 {
  font-size: 20px;
}

.material-icons.md-22 {
  font-size: 22px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/********************************** MATERIAL ICONS *********************************************/

.row_container {
  display: table;
  width: 100%;
  height: auto;
}

.row_container.auto {
  width: auto;
}

.row_col {
  display: table-cell;
  vertical-align: middle;
}

.row_col.full {
  width: 100%;
  height: auto;
}

.row_col.auto {
  width: auto;
  height: auto;
}

.boxed {
  border: 1px solid #d8d8d8;
}

.select2-dropdown .select2-results__option[aria-selected="true"] {
  display: none;
}

.select2-hidden-accessible {
  display: none;
}

.gc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .75rem;
  width: 100%;
}

.gc-card>hr {
  margin-right: 0;
  margin-left: 0
}

.gc-card>.list-group {
  border-top: inherit;
  border-bottom: inherit
}

.gc-card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.75rem - 1px);
  border-top-right-radius: calc(0.75rem - 1px)
}

.gc-card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.75rem - 1px);
  border-bottom-left-radius: calc(0.75rem - 1px)
}

.gc-card>.gc-card-header+.list-group,
.gc-card>.list-group+.gc-card-footer {
  border-top: 0
}

.gc-card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem
}

.gc-card-title {
  margin-bottom: .5rem
}

.gc-card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0
}

.gc-card-text:last-child {
  margin-bottom: 0
}

.gc-card-link:hover {
  text-decoration: none
}

.gc-card-link+.gc-card-link {
  margin-left: 1.25rem
}

.gc-card-header {
  padding: .5rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.gc-card-header:first-child {
  border-radius: calc(0.75rem - 1px) calc(0.75rem - 1px) 0 0
}

.gc-card-footer {
  padding: .5rem 1.25rem;
  background-color: rgba(0, 0, 0, .03);
  border-top: 1px solid rgba(0, 0, 0, .125)
}

.gc-card-footer:last-child {
  border-radius: 0 0 calc(0.75rem - 1px) calc(0.75rem - 1px)
}

.gc-card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.5rem;
  margin-left: -0.625rem;
  border-bottom: 0
}

.gc-card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem
}

.gc-card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.75rem - 1px)
}

.gc-card-img,
.gc-card-img-top,
.gc-card-img-bottom {
  flex-shrink: 0;
  width: 100%
}

.gc-card-img,
.gc-card-img-top {
  border-top-left-radius: calc(0.75rem - 1px);
  border-top-right-radius: calc(0.75rem - 1px)
}

.gc-card-img,
.gc-card-img-bottom {
  border-bottom-right-radius: calc(0.75rem - 1px);
  border-bottom-left-radius: calc(0.75rem - 1px)
}

.gc-card-deck .gc-card {
  margin-bottom: 15px
}

@media(min-width: 576px) {
  .gc-card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px
  }

  .gc-card-deck .gc-card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px
  }
}

.gc-card-group>.gc-card {
  margin-bottom: 15px
}

@media(min-width: 576px) {
  .gc-card-group {
    display: flex;
    flex-flow: row wrap
  }

  .gc-card-group>.gc-card {
    flex: 1 0 0%;
    margin-bottom: 0
  }

  .gc-card-group>.gc-card+.gc-card {
    margin-left: 0;
    border-left: 0
  }

  .gc-card-group>.gc-card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
  }

  .gc-card-group>.gc-card:not(:last-child) .gc-card-img-top,
  .gc-card-group>.gc-card:not(:last-child) .gc-card-header {
    border-top-right-radius: 0
  }

  .gc-card-group>.gc-card:not(:last-child) .gc-card-img-bottom,
  .gc-card-group>.gc-card:not(:last-child) .gc-card-footer {
    border-bottom-right-radius: 0
  }

  .gc-card-group>.gc-card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
  }

  .gc-card-group>.gc-card:not(:first-child) .gc-card-img-top,
  .gc-card-group>.gc-card:not(:first-child) .gc-card-header {
    border-top-left-radius: 0
  }

  .gc-card-group>.gc-card:not(:first-child) .gc-card-img-bottom,
  .gc-card-group>.gc-card:not(:first-child) .gc-card-footer {
    border-bottom-left-radius: 0
  }
}

.gc-card-columns .gc-card {
  margin-bottom: .5rem
}

@media(min-width: 576px) {
  .gc-card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1
  }

  .gc-card-columns .gc-card {
    display: inline-block;
    width: 100%
  }
}