@charset "UTF-8";
.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.cal-month-view .cal-cell-row {
  display: flex;
}
.cal-month-view .cal-cell {
  float: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cal-month-view .cal-cell .cal-event {
  pointer-events: all !important;
}
.cal-month-view .cal-day-cell {
  min-height: 100px;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  float: left;
}
.cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  display: flex;
  flex-wrap: wrap;
}
.cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.cal-month-view .cal-open-day-events {
  padding: 15px;
}
.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.cal-month-view .cal-draggable {
  cursor: move;
}
.cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.cal-month-view .cal-event-title {
  cursor: pointer;
}
.cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}

.cal-month-view {
  background-color: #fff;
}
.cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: initial;
  border-left-color: #e1e1e1;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-week-view * {
  box-sizing: border-box;
}
.cal-week-view .cal-day-headers {
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers {
  padding-left: initial;
  padding-right: 70px;
}
.cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: initial;
  border-right: 1px solid;
}
.cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left: initial;
  border-right: solid 1px;
}
.cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
  direction: ltr;
}
.cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.cal-week-view .cal-current-time-marker {
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 2;
}
.cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
  margin-left: initial;
  margin-right: 70px;
}
.cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: initial;
  border-bottom-left-radius: initial;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: initial;
  border-bottom-right-radius: initial;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.cal-week-view .cal-all-day-events .cal-time-label-column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: initial;
  left: 0;
}
.cal-week-view .cal-event,
.cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  display: flex;
}
.cal-week-view .cal-time-events .cal-day-columns {
  display: flex;
  flex-grow: 1;
}
.cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.cal-week-view .cal-time-events .cal-events-container {
  position: relative;
}
.cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.cal-week-view .cal-hour-segment {
  position: relative;
}
.cal-week-view .cal-hour-segment::after {
  content: " ";
}
.cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.cal-week-view .cal-draggable {
  cursor: move;
}
.cal-week-view mwl-calendar-week-view-hour-segment,
.cal-week-view .cal-hour-segment {
  display: block;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.cal-week-view {
  background-color: #fff;
  border-top: solid 1px #e1e1e1;
}
.cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
  border-top: 0;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: initial;
  border-left: solid 1px #e1e1e1 !important;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.cal-week-view .cal-current-time-marker {
  background-color: #ea4334;
}

.cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-day-view mwl-calendar-week-view-header {
  display: none;
}
.cal-day-view .cal-events-container {
  margin-left: 70px;
}
[dir=rtl] .cal-day-view .cal-events-container {
  margin-left: initial;
  margin-right: 70px;
}
.cal-day-view .cal-day-column {
  border-left: 0;
}
.cal-day-view .cal-current-time-marker {
  margin-left: 70px;
  width: calc(100% - 70px);
}
[dir=rtl] .cal-day-view .cal-current-time-marker {
  margin-left: initial;
  margin-right: 70px;
}

.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}

.cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}

.cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}

.cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}

.cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}

.cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}

.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}

.cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}

table.table tr th {
    text-wrap: nowrap;
    padding: 10px 10px;
}

#lgo_body {
    background-attachment: fixed !important;
    display: inline-table;
    width: 100%;
    height: 100%;
    position: initial;
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.main-wrapper {
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


html {
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: 0.875rem;
	color: #666;
	background-color: #ffffff;
	overflow-x: hidden;
	height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}
h1,
.h1 {
	font-size: 2.25rem;
}
h2,
.h2 {
	font-size: 1.875rem;
}
h3,
.h3 {
	font-size: 1.5rem;
}
h4,
.h4 {
	font-size: 1.125rem;
}
h5,
.h5 {
	font-size: 0.875rem;
}
h6,
.h6 {
	font-size: 0.75rem;
}
a:hover,
a:active,
a:focus {
	text-decoration: none;
	color: #009ce7;
	outline: none;
}

.dash_bx_areaa.usrss__lis .col-md-4 .btn-group {
    display: block;
}
.dash_bx_areaa.usrss__lis .col-md-4 .btn-group .btn-primary:hover, .btn-primary:focus {
    border: none;
}
.dash_bx_areaa.usrss__lis .col-md-4 .btn-group .btn-primary:hover, .btn-primary:focus, .btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {border:none !important;}

.dash_bx_areaa.usrss__lis .col-md-4 .btn-group .btn.btn-outline-secondary {background:#3d4a62; color:#fff; padding: 7px 15px;}
.dash_bx_areaa.usrss__lis .col-md-4 h3 {
    margin: 0;
    font-weight: 600;
    line-height: 38px;
    color: #000;
}


.form-control {
    border-radius: 0px;
    box-shadow: none;
    border-color: rgba(65, 79, 104, 0.24);
    font-size: 14px;
    height: 50px;
}
.form-control:focus {
	border-color: #404e67;
	box-shadow: none;
	outline: 0 none;
}
a {
	color: #009ce7;
}
input,
button,
a {
	transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
}
input,
button {
	outline: none;
}
input[type="file"] {
	height: auto;
	padding:5px 0rem;
}
input[type=text],
input[type=password] {
	appearance: none;
}
textarea.form-control {
	resize: vertical;
}
.heit_100{height:100px !important;}
.navbar-nav > li {
	float: left;
}
.form-group {
	margin-bottom: 10px;
}
.display-block {
	display: block;
}
.btn.rounded {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.btn.focus,
.btn:focus {
	box-shadow: inherit !important;
}
.list-group-item {
	border: 1px solid #eaeaea;
}

.sarhi1 {
    position: absolute;
    right: 5px;
    top: 24px;
    color: #ccc;
}

.securty_p {
    margin-top: 10px;
    margin-bottom: 10px;
}
.securty_p span.sec_pn {
    font-weight: 500;
    font-size: 17px;
}
/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 1;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  text-align: center;

  /*
    Let the content set the size of the tooltips
    but this will also keep them from being obnoxious
    */
  min-width:300px;
  line-height:20px;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: rgb(65 65 65 / 86%);
  color: #fff;
  z-index: 1000; /* absurdity 2 */
  font-size: 12px;
    font-weight: 400;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: rgb(65 65 65 / 86%);
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: rgb(65 65 65 / 86%);
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, -0.2em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #00000063;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: rgb(65 65 65 / 86%);
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}


.country.phlist.w_30 {
    float: left;
    background: #fff;
    border-radius: 4px;
    line-height: 42px;
}
.w_30 {
    width: 30%;
}
.user_phlist.w_69 {
    float: left;
    margin-left: 1%;
}
.w_69 {
    width: 69%;
}

.imagePreview_1 {
	width: 100%;
    height: 140px;
    background-position: center center;
    background: #d2d5db url('profile.8760be43676e69a4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    border-radius: 5px;
	border: #d2d5db solid 1px;
}

 #example button {
    width: 100%;
    background: transparent;
    color:#a5a5a5;
    font-size:14px;
    height:50px;
    border:#d2d5db solid 1px;
    text-align:left;
}
#example {
    min-width: auto !important;
	position:relative;
}
#example i {
    position: absolute;
    right: 10px;
    top: 14px;
    color: #bdbdbd;
}
.hs-menu-inner {
    max-height: 140px !important;
}
.hs-searchbox {
    padding: 0 3px;
}
.hs-searchbox input {
    font-size: 14px;
	margin-bottom:3px;
	margin-top:-3px;
	height:33px;
}
.hs-menu-inner a.dropdown-item {
    padding: 0 10px;
    height: 33px;
    line-height: 33px;
    border-bottom: #e8e8e8 solid 1px;
    border-radius: 0;
}
.user_phlist.w_69 input {
    border-radius: .25rem;
}
#example .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .4em solid;
    border-right: .4em solid transparent;
    border-bottom: 0;
    right: 8px;
    top: 22px;
    position: absolute;
    border-left: .4em solid transparent;
}

#example .dropdown-menu {
    margin-top: -1px;
}
#example .dropdown-item.active {
    background-color: #000000;
}
#example .dropdown-item.active:hover{color:#ffc907;}


.imgslct{position: absolute; top: 0; left:0; width: 100%; height: 100%; font-size: 0;  cursor: pointer;}
label.btnoverp {
    width: 100%;
    height: 100%;
    line-height: 16px;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    color: #13264b;
    text-align: center;
	z-index: 1024;
}
label.btnoverp span {
    background: #00000042;
    color: #fff;
    padding: 5px 4px 0 6px;
    position: absolute;
    bottom: 7px;
    right: 16px;
    border-radius: 4px;
}
label.btnoverp span i {
    font-size: 15px;
    position: relative;
    top: 1px;
}
.vw_btn {
    background: #000;
    color: #fff;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.bgr_gr{background:#f5f6f8; padding:25px; border-radius:0px; display:inline-block; width:100%; margin-top:0px;}
.bgr_gr ul{list-style:none; margin:0; padding:0;}
.bgr_gr ul li{width:25%; float:left; padding-left: 0px;}
.bgr_gr ul li:nth-child(2n+2) {padding-left:40px;}
.bgr_gr ul li:nth-child(3n+3) {padding-left:30px;}
.bgr_gr ul li:nth-child(4n+4) {padding-left: 40px;}
.bgr_gr ul li h1{margin:5px 0 4px 0; font-size:20px; color:#191919;     border-bottom: #3a3a3a solid 1px;
    display: inline-block;}
.bgr_gr ul li h1 span{color:#c9af74;}
.bgr_gr ul li p {margin:0; font-size:14px; color:#78788e;}
.prfl {
    font-size: 14px;
    margin: 0px 0 6px 0;
    font-weight: 500;
}

.tablistbx {
    background: #fff;
    border: #f1f1f1 solid 1px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px #f5f5f5;
    display: inline-block;
    margin: 20px;
}
.imgbx {
    width: 150px;
    float: left;
    overflow: hidden;
    height: 150px;
    padding-top: 15px;
    border-radius: 5px;
    padding: 25px 0px 0px 20px;
}
.imgbx img {
    width: 100%;
    object-fit: cover;
}
#tabcontnt {
    float: left;
    width:85%;
    padding-left: 30px;
}
#tabcontnt h1 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: #191919;
    font-weight: 400;
}
#tabcontnt h1 a {
    color: #191919;
}
#tabcontnt p {
    font-size: 14px;
    margin: 0 0 0 0;
    color: #78788e;
    margin-bottom: 15px;
}

#unctnt{margin-bottom: 17px;}
#unctnt p {
    font-size:13px;
    margin:0 0 0 0;
	color:#a3a3a3;
	margin-bottom:0px;
}
#unctnt h3 {
        font-size: 14px;
    margin: 5px 0 0 0;
    color: #191919;
    font-weight: 500;
}
.sub_m {
    background: #272d36;
    border: none;
    padding: 9px 30px;
    margin-right: 5px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 4px;
}
.package_p .tablistbx {
    margin-bottom:20px !important;
}
.package_p #tabcontnt {
    padding-left: 20px;
    width: 100%;
}

/* Notification */
.nitft {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 25px;
    display: block;
    font-size: 14px;
    font-weight: 400;
}
#ac_conlist {background: #fff; padding: 20px; border: #cccccc8c solid 1px; margin-bottom: 20px; position:relative;}

#ac_conlist i.fa.fa-trash {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #c8cbd2;
    padding: 6px 8px;
    border-radius: 30px;
    cursor: pointer;
    color: #13264b;
}
#ac_conlist i.fa.fa-trash:hover {
    background: #ff3131;
    color: #fff;
}

#ac_conlist sub {background: #f2eff8; padding: 25px; float: left; margin-right: 20px;
    border-radius: 100px;}
#ac_conlist sub i {
    font-size: 20px;
}
#ac_conlist h1 {font-size:17px; color:#000; font-weight:400; margin:0 0 2px 0;}
#ac_conlist span {font-size:12px; color:#13264b;}
#ac_conlist p {font-size:14px; display:flex; line-height:22px; margin-top:3px; margin-bottom:0;}
/* Close Notification */

span.ruimg {
    float: left;
    width: 30px;
    overflow: hidden;
    height: 30px;
    margin-right: 15px;
    border-radius: 30px;
}
span.ruimg img {
    width: 30px;
}
img.img_thnk {
    width:30px;
    padding: 5px;
    border: #ededed solid 1px;
}

.red{color:#f00 !important;}
.checkbox input[type="checkbox"], .radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
.checkbox, .radio {
    margin-bottom: 12px;
}
.checkbox label, .radio label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    line-height: 25px;
    color: #717171;
    font-size: 13px;
}
.checkbox label::before, .checkbox label::after {
    content: " ";
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    cursor: pointer;
    border-radius: 3px;
    top: 0;
    background-color: transparent;
    border: 1px solid #b9b9b9;
    transition: opacity 0.3s linear;
}

.form_pay_ls {
    background: #fbfbfb;
    padding: 25px;
    border: #efefef solid 1px;
}
.form_pay_ls label {
    display: block;
    margin-bottom: .5rem;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
.blkcol_cn {
color: #272d36;
    border: #404e67 solid 1px;
    background: #fff;
    height: 48px;
    padding: 0 25px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 0;
    cursor: pointer;
    display: inline-block;
    transition: 0.5s;
}
.blkcol_cn:hover {
    background: #404e67;
    border: #404e67 solid 1px;
    color: #fff;
}
.avleval {font-weight: 500;}
.avleval1 {text-align:right;}
.avleval1 a {
    font-weight: 400;
    background: #404e67;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

._og_btn {
    border: 1px solid #404e67;
    color: #272d36;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
}
._og_btn:hover {
    color: #fff !important;
    background-color: #404e67;
}

table.my_al_ls tr th {
    white-space: pre;
}
table.my_al_ls tr td {
    white-space: pre;
}
.vwi_d td {
border: #5b5b5b solid 1px;
    padding: 7px 10px;
    color: #fff;
    font-size: 12px;
}
table.vwi_d {
    width: 100%;
}

.vwi_d1 td {
border: #e6e6e6 solid 1px;
    padding:7px 10px;
    color: #555;
    font-size: 14px;
	    width: 50%;
}
.vwi_d1 td strong {
    font-weight: 500;
}

.sixess strong {
    font-weight: 500;
}
table.vwi_d1 {
    width: 100%;
}
text.highcharts-title {
color: #fff !important;
    fill: #fff !important;
}
g.highcharts-legend {
    display: none;
}
text.highcharts-credits {
    display: none;
}
g.highcharts-axis.highcharts-yaxis {
    display: none;
}

.usr_ls {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    padding:20px 0 0;
    text-transform: uppercase;
}

ul.nav.nav-tabs.tbs_all {border: none; margin-bottom:20px; margin-top:30px;}

.nav-tabs.tbs_all .nav-item {margin-bottom:0; margin-right:10px; width:32%;}
.nav-tabs.tbs_all .nav-item:last-child {
    margin-right: 0;
}

.nav-tabs.tbs_all .nav-link {border:none; background:#f5f6f8; border-radius:5px; color:#171B33; font-weight:500; padding:11px 20px;}

.nav-tabs.tbs_all .nav-link.active {border-radius: 5px;	border: none;}

.tbs_all .nav-link.active {background: #171B33 !important;border-radius: 5px;}

.nav-tabs.tbs_all .nav-link:hover {background:#171B33; color:#fff; transition:all ease 0.5s 0s; padding: 11px 0px 11px 42px !important;}

.nav-tabs.tbs_all .nav-link.ad_with {
    border: none;
    border-radius: 5px;
    color: #171B33;
    font-weight: 500;
    padding: 11px 0px 11px 42px;
    width: -webkit-fill-available;
    background: #f5f6f8 url('circle-ring.e3201bb97a278ddf.svg') no-repeat left top 11px !important;
    background-size: 18% 49% !important;
    position: relative;
}
.nav-tabs.tbs_all .nav-link.active.ad_with {
    border-radius: 5px;
    border: none;
    color: #fff !important;
    background: #404e67 url('radio-on.4dd567b0415ce710.svg') no-repeat left top 11px !important;
    background-size: 18% 49% !important;
    position: relative;
}
.nav-tabs.tbs_all .nav-link.active.ad_with.auto_w {
    border-radius: 5px;
    border: none;
    color: #fff !important;
    background:#272d36 !important;
    position: relative;
    text-align: center;
}
.nav-tabs.tbs_all .nav-link.ad_with.auto_w {
    border: none;
    border-radius: 5px;
    color: #171B33;
    font-weight: 500;
    padding:11px 15px 11px 15px;
    width: -webkit-fill-available;
    background: #f5f6f8 !important;
    position: relative;
    text-align: center;
}

.nav-tabs.tbs_all .nav-link.ad_with.auto_w:hover {
    background: #171B33;
    color: #333;
    padding:11px 15px 11px 15px !important;
}
li.nav-item.auto_w1 {
    width: auto !important;
}
ul.nav.nav-tabs.tbs_all.mb_csrol.mt-0.rit_f {
    float: right;
	    margin-bottom: 0;
}
.lg_form_f1 .modal-header {
    color: #fff;
	border-bottom:1px solid #717171;
}
.lg_form_f1 .modal-header button.close {
    color: #fff;
}

._n8_coupan {
    background: #fdfdfd;
    border: #efefef solid 1px;
    padding: 10px 20px 20px;
    margin-top: 0;
    box-shadow: 5px 5px 0px #e7e7e7;
}
#cashbackSummary {}
#cashbackSummary h3 {
    margin: 0px 0 15px 0px;
    font-size: 20px;
    color: #444444;
}
#cashbackSummary ._n0 {
    margin: 10px auto;
    opacity: .8;
    font-size: 14px;
}

input.form-control.formf2 {
    border-radius: 3px;
}
select.acc_currency {
    display: block;
    width: 100%;
    height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.nav-tabs.tbs_all .nav-link.ad_with:hover {
    background: #171B33;
    color: #333;
    transition: all ease 0.5s 0s;
    padding: 11px 0px 11px 42px !important;
}

a.un_d {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    text-decoration: underline;
}

.pt-1 {
    padding-top: .25rem!important;
}

.theme-purple .checkbox input[type="checkbox"]:checked+label::after {
    border: 1px solid #1e529c;
    background: #fff;
}
.checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

.checkbox label::after {
    background: url('tick.a50ee337b81defed.png') no-repeat;
    top: 5px;
    left: 4px;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    color: #555;
    border: 0;
}

.ui-datepicker {
  display: none;
  width: 20rem;
  background: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}
.ui-datepicker-header {
  text-align: center;
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.ui-datepicker-header a span {
  display: none;
}
.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-header a.ui-datepicker-prev::after {
  font-family: "Material Icons";
  content: "\e314";
  font-size: 1.5rem;
  color: #444444;
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
}
.ui-datepicker-header a.ui-datepicker-next::after {
  font-family: "Material Icons";
  content: "\e315";
  font-size: 1.5rem;
  color: #444444;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
  padding: 1rem;
}
.ui-datepicker-calendar thead {
  color: #090909;
}
.ui-datepicker-calendar a {
  color: #444444;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
}
.ui-datepicker-calendar a:hover {
  border: 1px solid #cccccc;
}
.ui-datepicker-calendar .ui-state-highlight {
      border-color: #404e67;
    color: #404e67;
}
.ui-datepicker-calendar .ui-state-active {
  background: #333e52;
  color: #ffffff;
}



.form-control::-webkit-input-placeholder {color:#a8a8a8; font-size:14px;}



    /* .imagePreview {
        width: 100%;
        height: 142px;
        background-position: center center;
        background:url(../img/no-images.jpg);
        background-color: #fff;
        background-size: cover;
        background-repeat: no-repeat;
        display: inline-block;
        box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
    } */


label.btnoverp {
    position: absolute;
    left: 0;
	    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    cursor: pointer;
    font-size: 0;
}

    .btn-primary {
        /* display: block; */
        border-radius: 0px;
       /*  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.2); */
/*         margin-top: -5px; */
    }

    .imgUp {
        margin-bottom: 15px;
		position:relative;
    }

    .del {
        position: absolute;
        top: 0px;
        right: 15px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        background-color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
    }

    .imgAdd {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #1e529c;
        color: #fff;
        box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
        text-align: center;
        line-height: 35px;
        margin-top: 0px;
        cursor: pointer;
        font-size: 35px;
    }

	.imgAdd_tf {
        width: 143px;
    height: 143px;
    color: #9f9f9f;
    border: #d6d6d6 dashed 1px;
    text-align: center;
    line-height: 30px;
    margin-top: 0px;
    cursor: pointer;
    font-size: 14px;
    margin: 0 15px;
}
.imgAdd_tf p {
    font-size: 29px !important;
    font-weight: 100 !important;
    margin: 40px 0 -4px 0;
}

.blkcol {
    background: #333333;
    color: #fff;
    padding: 11px 30px;
    font-size: 13px;
    border: 0;
    margin-top: 0;
    cursor: pointer;
    display: inline-block;
    transition: 0.5s;
}


	.mb-50{margin-bottom:40px !important;}

	.mb-50 h6 {
    font-size: 17px;
    margin: 0px 0 5px 0;
}

.imgAdd {
    width:70px;
    height: 35px;
    border-radius: 3%;
    background-color: #272d36;
    color: #fff;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 35px;
    margin-top: 0px;
    cursor: pointer;
    position: absolute;
    top: 33px;
    font-size: 22px;
    left: 14px;
}
    .imgAdd2 {
    width: 85px;
    height: 30px;
    border-radius: 3%;
    background-color: #1e529c;
    color: #fff;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 30px;
    margin-top: 0px;
    cursor: pointer;
    position: absolute;
    font-size: 35px;
    top: 32px;
    left: 15px;
}
.tmt-60 {margin-top: 60px;}
.tmt-50 {margin-top: 50px;}
.formfl.mgn {
    padding: 10px;
    height: 110px;
}
.jointheclub {text-align: left;}
.jointheclub h1{color:#626262; font-size:22px; font-weight:500; margin-bottom:12px;}
  .jointheclub p{color:#333; font-size:13px; font-weight:600; margin-bottom:30px;}
  .jointheclub h4 {color: #444444; font-size: 16px;  font-weight: 500;}
  .jointheclub h4 span {position: relative; padding-right: 10px;  background: #fff;}
  .jointheclub h4:before {content:""; border-top:#f4f4f4 solid 2px; position:absolute; right:15px;
    width:88%; margin-top:9px;}

  .tx_u{text-align:left}
  .tx_u p{color:#626262; font-size:14px; font-weight:500; margin-bottom:5px;}
  .tx_u p span {float:right; font-size:11px; color:#b0b0b0; font-weight:300; letter-spacing:0.5px;}



 #msform {
  text-align: center;
  position: relative;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  padding: 20px 30px;
  box-sizing: border-box;
  width:100%;
  position: relative;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform .action-button {
  width: 100px;
  background: #404e67;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #272d36;
}

.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

#progressbar {
      margin-bottom: 0px;
    padding-bottom: 15px;
    overflow: hidden;
    border-bottom: #e4e4e4 solid 2px;
    counter-reset: step;
	padding: 0;
}

#progressbar li {
  list-style-type: none;
  color: #616161;
  text-transform: uppercase;
  font-size: 15px;
  width:50%;
  float: left;
  position: relative;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 36px;
  line-height:30px;
  border: #ccc solid 3px;
  display: block;
  font-size: 15px;
  color: #333;
  background: white;
  border-radius: 30px;
  margin: 0 auto 5px auto;
}

#progressbar li:first-child:after {
  content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #404e67;
  color: white;
} #msform {
  text-align: center;
  position: relative;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  padding: 20px 0px;
  box-sizing: border-box;
  width:100%;
  position: relative;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform .action-button {
  width: 100px;
  background: #404e67;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #272d36;
}

.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

#progressbar {
      margin-bottom: 0px;
    padding-bottom: 15px;
    overflow: hidden;
    border-bottom: #e4e4e4 solid 2px;
    counter-reset: step;
	padding: 0;
}

#progressbar li {
  list-style-type: none;
  color: #616161;
  text-transform: uppercase;
  font-size: 15px;
  width:33.3333%;
  float: left;
  position: relative;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 36px;
  line-height:30px;
  border: #ccc solid 3px;
  display: block;
  font-size: 15px;
  color: #333;
  background: white;
  border-radius: 30px;
  margin: 0 auto 5px auto;
}

#progressbar li:first-child:after {
  content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #404e67;
  color: white;
}

.dsh_set{font-size:24px; margin:7px 28px;}
.dsh_set a i {font-size:20px; color:#333; margin-right:5px; position:relative; top:-2px;}
.greac {color: #333e52; text-decoration: underline; font-weight: 400;}
.sb2-12 {position:relative; overflow:hidden; padding:15px 0px 20px; text-align:center;}
.sb2-12 ul {padding: 0px; margin:0; list-style:none;}
.sb2-12 ul li:nth-child(1) {width:100%; margin-bottom:15px;}
.sb2-12 ul li:nth-child(2) {width:100%; padding:0px 7px;}
.sb2-12 ul li h5 {margin-bottom:0px; margin-top:0px; font-size:15px; color:#fff; font-weight: 500;}
.sb2-12 ul li h5 span{display:block; font-size:12px; color:#fff; padding-top:3px; font-weight: 400;}
.sb2-12 ul li img {width:60px; border-radius:50%; border:3px solid #fff; box-shadow:0px 1px 10px 1px rgba(0, 0, 0, 0.15);}

/*-----------------
	2. Table
-----------------------*/

.ad-hom-box {
    background:#272d36;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.05);
}
.ad-hom-box span {
    text-align: center;
}
.ad-hom-col-com {
    height: 96px;
    width: 85px;
    display: inline-block;
    float: left;
}

.ad-hom-col-com i {
    color: #fff;
    font-size: 35px;
    text-align: center;
    padding-top: 32px;
}

.ad-hom-col-1 {
    background: #167ee6;
    text-align: center;
}
.ad-hom-col-2 {
    background: #4caf50;
	text-align: center;
}
.ad-hom-col-3 {
    background: #4c5caf;
	text-align: center;
}
.ad-hom-col-4 {
    background: #da0c4d;
	text-align: center;
}
.ad-hom-col-5 {
    background: #fba200;
	text-align: center;
}

.ad-hom-col-6 {
    background: #6b5120;
	text-align: center;
}

.ad-hom-col-7 {
    background: #dd0f94;
	text-align: center;
}

.ad-hom-col-8 {
    background: #5b5b5b;
	text-align: center;
}

.ad-hom-col-9 {
    background: #ff5c5c;
    text-align: center;
}

.ad-hom-view-com {
    padding:15px 0px 5px 20px;
}
.ad-hom-box p {
color: #dadada;
    margin: 0 0 5px;
}
.ad-hom-box h3 {
    font-size: 24px;
	    color: #fff;
}


#map {
	display: block;
	width: 100%;
	height: 500px;
}

.table {
	color: #000;
	border: 1px solid #f0f0f0;
}
.table.table-white {
	background-color: #fff;
}
.table > tbody > tr > td {
	font-weight: 300;
	vertical-align: middle;
}
.table-striped > tbody > tr:nth-of-type(2n + 1) {
	background-color:#fff;
}
table.table td .avatar {
	margin: 0 5px 0 0;
}
table.table td h2 {
	display: inline-block;
	font-size: inherit;
	font-weight: 400;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
table.table td h2 a {
	color: #757575;
}
table.table td h2 a:hover {
	color: #404e67;
}
table.table td h2 span {
	color: #9e9e9e;
	display: block;
	font-size: 12px;
	margin-top: 3px;
}
table.table.gfg td {
    padding-bottom: 15px;
}

table.gfg .fbstrong {
    font-size: 18px;
    font-weight: 500;
}

.lisname {
    display: flow-root;
}
.lisname h3 {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    margin: 0 0 5px 0;
    padding: 0px 0 0 0;
}
.lisname p {
    font-size: 14px;
    color: #ababab;
    margin: 0;
}

.user_n {
    float: left;
    width: 65px;
    height: 65px;
    border: #d2d2d2 solid 2px;
    border-radius: 50px;
    text-align: center;
    line-height: 65px;
    font-size: 22px;
    font-weight: 500;
    color: #d2d2d2;
    margin-top: 0px;
}
.usr_cn {
    margin-left: 0;
    margin-top:10px;
    margin-bottom:30px;
    padding-bottom: 5px;
    border-bottom: #c3dbee solid 1px;
}
.usr_cn h1 {
    margin: 0px 0 10px 0;
    font-size: 21px;
    color: #2b2b2b;
}
.usr_cn p {
    margin: 0;
    font-size: 14px;
    color: #78788e;
}
textarea#remark {
    height: 100px;
    padding-top: 5px;
}
.submit_btn_b {
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    min-width: auto;
    cursor: pointer;
    padding: 10px 15px;
    border: #fff solid 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: transparent;
}
.submit_btn_b:hover{background:#fff; color:#333;}



.bnr_araeas:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, #2a3a4b , #2a3a4b30);
}
.bnr_araeas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bnr_araeas {
    width: 100%;
    height: 214px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 50px;
    position: relative;
}
.bnr_araeas span.ov_txt {
    position: absolute;
    color: #fff;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
    width: 100%;
    padding-left: 60px;
}



.dash_bx_areaa {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
	min-height:295px;
}
.dash_bx_areaa h5 {
    color: #004088;
    font-size: 20px;
    margin: 0 0 15px;
    padding: 0;
}
.dash_bx_areaa p {
    font-size: 15px;
    color: #656565;
    line-height: 20px;
    margin-bottom: 25px;
	    max-width: 240px;
}

.dash_bx_areaa a.btn_yl {
    background: #ffcf5b;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 4px;
    color: #353535;
    font-size: 13px;
    font-weight: 400;
	    position: absolute;
    bottom: 30px;
}

.dash_bx_areaa img.btm_mgss {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 42%;
}

.liststingsss ul li:last-child{margin-bottom:0;}
.liststingsss ul li {
    color: #656565;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
}
.liststingsss ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.liststingsss {
    max-height: 195px;
    overflow: auto;
}

.Succes {
    width: 50%;
    text-align: center;
    margin: 0 auto;
}
.arwo {
    background: #93c54b;
    width: 75px;
    height: 75px;
    display: inline-block;
    text-align: center;
    border-radius: 90px;
}
.arwo svg {
    padding: 3px;
    width: 50px;
    position: relative;
    top: 13px;
    font-weight: 600;
}
.Succes h1 {
    font-size: 26px;
    margin: 25px 0 15px 0;
}
.Succes span a {
    background: #272d36;
    padding: 7px 15px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
}
.trans_hist {
    text-align: left;
    margin-bottom: 0px;
    display: inline-block;
    width: 100%;
    margin-top: 5px;
}
.trans_hist h5 {
    float: left;
    width: 50%;
    margin-bottom: 0;
    position: relative;
    top: 4px;
}
.trans_hist p {
    float: right;
    width: 50%;
    text-align: right;
    margin: 0;
}
.trans_hist span.w_ad_thank {
    display: inline-block;
    font-size: 17px;
    width: auto;
}
.trans_hist h5 span.last_sps_c {
    position: relative;
    left: 5px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    top: 5px;
    text-align: left;
}
.hrs_yu .table-responsive tr th {
    font-size: 14px;
}
.hrs_yu .table-responsive {
    text-align: left;
}
.hrs_yu .table-responsive b {
    font-size: 15px;
    font-weight: 500;
}


#chk_ls1 {
    padding: 15px 20px 20px;
}
#chk_ls1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#chk_ls1 ul li {
    width: 50%;
    font-size: 17px;
    float: left;
    font-weight: 500;
    color: #ffc907;
    margin-bottom: 15px;
}
#chk_ls1 ul li span {
}
.clost {
    color: #dadada;
    font-style: italic;
    font-size: 14px;
    font-weight: 300;
}
.strp {
    color: #6772e5;
    font-weight: 600 !important;
    font-size: 16px;
}
/*-----------------
	3. Helper Class
-----------------------*/

.m-r-5 {
	margin-right: 5px !important;
}
.m-r-10 {
	margin-right: 10px !important;
}
.m-l-5 {
	margin-left: 5px !important;
}
.m-t-0 {
	margin-top: 0 !important;
}
.m-t-10 {
	margin-top: 10px !important;
}
.m-t-20 {
	margin-top: 20px !important;
}
.m-t-30 {
	margin-top: 30px !important;
}
.m-t-50 {
	margin-top: 50px !important;
}
.m-b-10 {
	margin-bottom: 10px !important;
}
.m-b-20 {
	margin-bottom: 20px !important;
}
.m-b-30 {
	margin-bottom: 30px !important;
}
.w-40 {
	width: 40px;
}
#w-40 {
	width: 40px;
}
.block {
	display: block !important;
}

.tital_d h2 {
    font-size: 24px;
}
.tital_d {
    position: relative;
    top: 11px;
    left: 30px;
}

.text-ellipsis {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.text-muted-light {
	color: #aaa;
}
.card-box {
	background-color: #fff;
	border-radius: 4px;
	margin-bottom: 30px;
	padding: 20px;
	position: relative;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.card-title {
	color: #333;
	font-size: 16px;
	margin-bottom: 20px;
}
.page-title {
	color: #565656;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}
.page-sub-title {
	color: #565656;
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 20px;
}
.cal-icon:after {
	background: transparent url('calander.bd715ce3a1cd4993.png') no-repeat scroll 0 0;
	bottom: 0;
	content: "";
	display: block;
	height: 19px;
	margin: auto;
	position: absolute;
	right: 15px;
	top: 0;
	width: 17px;
}
.cal-icon {
	position: relative;
	width: 100%;
}
.time-icon:after {
	background: transparent url('clock.8af1b464a4ef1535.png') no-repeat scroll 0 0;
	bottom: 0;
	content: "";
	display: block;
	height: 19px;
	margin: auto;
	position: absolute;
	right: 15px;
	top: 0;
	width: 19px;
}
.time-icon {
	position: relative;
	width: 100%;
}
.badge-success-border {
	border: 1px solid #55ce63;
	color: #55ce63;
	background-color: #fff;
	display: inline-block;
	min-width: 80px;
}
.badge-danger-border {
	border: 1px solid #f62d51;
	color: #f62d51;
	background-color: #fff;
	display: inline-block;
	min-width: 80px;
}
.badge-warning-border {
	border: 1px solid #ffbc34;
	color: #ffbc34;
	background-color: #fff;
	display: inline-block;
	min-width: 80px;
}
.badge-info-border {
	border: 1px solid #404e67;
	color: #404e67;
	background-color: #fff;
	display: inline-block;
	min-width: 80px;
}
.modal-footer.text-left {
	text-align: left;
}
.modal-footer.text-center {
	text-align: center;
}
.font-18 {
	font-size: 18px;
}
.border-right {
	border-right: 1px solid #e7e7e7;
}
.blur {
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
}
.btn {
	font-size: 0.875rem;
}


.f-16{font-size:16px;}
.mr-15{margin-right:15px;}
.mr-10{margin-right:10px;}
.mr-7{margin-right:10px;}
.text-grea {color: #404e67;}
.text-green{color:#00ce7c;}
.text-red{color:#f00;}
.img-25 {width:25px;}

.bgr_stse1 {background: #fff; padding-top:20px;}
.bgr_stse{padding:25px; box-shadow: 0px 0px 10px #d6d6d6; border-radius: 4px; background: #fff;}

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

.ftr_btm {
/*     background: #dff0ff;
    padding: 22px 25px 15px;
    width: 80%;
    position: relative;
    right: -20%;
    bottom: 0;
    border-top: #c3dbee solid 1px;
    color: #484848;
    font-size: 18px; */

	border-top: #c3dbee solid 1px;
	padding: 22px 25px 15px;
	    left: 0;
    margin-left: 270px;
    position: relative;
    transition: all 0.4s ease;
    background: #dff0ff;
}


.file {visibility:hidden; position:absolute;}
.b_tns{padding:0.8rem 1.5rem; border-radius:0px 5px 5px 0px !important; background-color: #333e52; border-color: #333e52; outline: none !important; color: #fff !important; cursor: pointer;}
.input-group-addon {height:50px; line-height:50px;}
.brws_b{background:none !important; height:49px;}

.animted {width:35%; display:inline-block;}
.animted input[type=text] {
  width:30px; box-sizing: border-box; font-size: 16px; cursor:pointer; margin-top:7px; margin-left:7px;
 background:#fff url('search.2bef3d92b81bf43a.svg'); background-size:15px 15px;
    background-position: 12px 10px; background-repeat: no-repeat; padding:5px 30px 5px 40px;
  transition: width 0.4s ease-in-out; border:none;
}

.animted input[type=text]:focus {width:100%; background:#e4e4e4 url('search.2bef3d92b81bf43a.svg'); background-size:15px 15px; background-position: 12px 10px; background-repeat: no-repeat; border-radius:30px;}

.animted1 input[type=text] {font-size:15px; cursor:pointer; border:#ccc solid 1px; background:#fff url('search_i_bs.be99d68ac0e9ea5a.png'); background-position:10px 10px; background-repeat:no-repeat; padding:3px 30px 3px 35px;
    border-radius:50px; width:auto; margin-bottom:10px;
}

display-flex, .steps ul, .title-number, .actions ul, .actions ul li a {
    display: flex;
    display: -webkit-flex;
}
list-type-ulli, .steps ul, .actions ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

fieldset {
  border: none;
  margin: 0px;
  padding: 0px; }

fieldset.current {
  padding-left:0px;
  padding-right:0px; }

h3#signup-form-h-0 {
    display: none;
}
h3#signup-form-h-1 {
    display: none;
}

.steps {
  padding-bottom: 20px; }
  .steps ul {
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    position: relative; }
    .steps ul:after {
      position: absolute;
	  content: "";
		height: 8px;
		width: 90%;
		left: 50%;
		transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		background: #3c4e76;
		z-index: 9;
		bottom: 18px;
	}
    .steps ul li {position: relative;  z-index: 99; }
      .steps ul li a {
        text-decoration: none;
        color: #fff; }
    .steps ul .current .title-number {
      font-size: 16px;
      color: #fff;
      background-image: -ms-linear-gradient(0deg, #a1c4fd 0%, #884d80 0%, #2b5876 0%, #4e4376 100%); }

.title span {
  text-align: center; }

.title-text {
      display: block;
    font-size: 14px;
    padding-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.title-number {
  font-size: 13px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 3px solid #fff;
  background: #ebebeb;
  color: #999999;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  margin: 0 auto;
  box-shadow: 0px 5px 9.5px 0.5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 9.5px 0.5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 5px 9.5px 0.5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 5px 9.5px 0.5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 5px 9.5px 0.5px rgba(0, 0, 0, 0.2); }

.actions {
  position: relative;
  bottom: 0px;
  right: 0;
  width: 100%; }

  .actions ul {
    width: 100%;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center; }
    .actions ul .disabled {
      display: none; }
    .actions ul li {
      margin: 0 5px; }
      .actions ul li a {
        width: 120px;
        height: 40px;
        color: #fff;
        background-color: #222;
        background-image: -ms-linear-gradient(0deg, #a1c4fd 0%, #884d80 0%, #2b5876 0%, #4e4376 100%);
        align-items: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -o-align-items: center;
        -ms-align-items: center;
        justify-content: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -o-justify-content: center;
        -ms-justify-content: center;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        text-decoration: none; }
        .actions ul li a:hover {
          background-color: #090909; }

.form-group {
  padding-bottom: 5px;
  position: relative; text-align: left;}

@media screen and (max-width: 480px) {
  .container {
    width: calc(100% - 0px);
    max-width: 100%; }

  .content {
    width: 100%; }

  fieldset.current {
    padding-left:0px;
    padding-right: 0px; }

  .actions ul li a {
    width: 100px; }
}
@media screen and (max-width: 400px) {
  .steps ul:after {
    width: 270px; }

  .title-text {padding: 0 0px; }
	}


/*-----------------
	4. Bootstrap Classes
-----------------------*/

.btn-white {
	background-color: #fff;
	border: 1px solid #ccc;
	color: #333;
}
.rounded,
.circle {
	border-radius: 500px;
}
.bg-primary,
.badge-primary {
	background-color: #404e67 !important;
}
.bg-success,
.badge-success {
	background-color: #55ce63 !important;
}
.bg-info,
.badge-info {
	background-color: #404e67 !important;
}
.bg-warning,
.badge-warning {
	background-color: #ffbc34 !important;
}
.bg-danger,
.badge-danger {
	background-color: #f62d51 !important;
}
.bg-white {
	background-color: #fff;
}
.text-primary,
.dropdown-menu > li > a.text-primary {
	color: #404e67 !important;
}
.text-success,
.dropdown-menu > li > a.text-success {
	color: #55ce63;
}
.text-danger,
.dropdown-menu > li > a.text-danger {
	color: #f62d51;
}
.text-info,
.dropdown-menu > li > a.text-info {
	color: #404e67;
}
.text-warning,
.dropdown-menu > li > a.text-warning {
	color: #ffbc34;
}
.text-purple,
.dropdown-menu > li > a.text-purple {
	color: #7460ee;
}
.btn-primary {
	border-color: transparent;
	background-color: #404e67;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
	background-color: #404e67;
	border: 1px solid #404e67;
	color: #fff;
}
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
	background-color: #404e67;
	border: 1px solid #404e67;
}
.btn-primary.active:not(:disabled):not(.disabled),
.btn-primary:active:not(:disabled):not(.disabled),
.show > .btn-primary.dropdown-toggle {
	background-color: #404e67;
	border-color: #404e67;
	color: #fff;
}
.btn-outline-primary {
	border-color: #404e67;
	color: #404e67;
}
.btn-outline-primary:hover {
	background-color: #404e67;
	border-color: #404e67;
	color: #fff;
}
.btn-outline-primary.active:not(:disabled):not(.disabled),
.btn-outline-primary:active:not(:disabled):not(.disabled),
.show > .btn-outline-primary.dropdown-toggle {
	background-color: #404e67;
	border-color: #404e67;
	color: #fff;
}
.btn-success {
	background-color: #55ce63;
	border: 1px solid #55ce63
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active,
.btn-success:active,
.open > .dropdown-toggle.btn-success {
	background: #4ab657;
	border: 1px solid #4ab657
}
.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success.focus:active,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover {
	background: #4ab657;
	border: 1px solid #4ab657
}
.btn-info {
	background-color: #404e67;
	border: 1px solid #404e67
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active,
.btn-info:active,
.open > .dropdown-toggle.btn-info {
	background-color: #028ee1;
	border: 1px solid #028ee1
}
.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info.focus:active,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info.focus,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info:hover {
	background-color: #028ee1;
	border: 1px solid #028ee1
}
.btn-warning {
	background: #ffbc34;
	border: 1px solid #ffbc34
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active,
.btn-warning:active,
.open > .dropdown-toggle.btn-warning {
	background: #e9ab2e;
	border: 1px solid #e9ab2e
}
.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning.focus:active,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning.focus,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover {
	background: #e9ab2e;
	border: 1px solid #e9ab2e
}
.btn-danger {
	background: #f62d51;
	border: 1px solid #f62d51
}
.btn-danger:hover,
.btn-danger:focus {
	background-color: #e6294b;
	border: 1px solid #e6294b
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	background-color: #404e67;
	border-color: #404e67;
}
.pagination > li > a,
.pagination > li > span {
	color: #404e67;
	padding: .5rem .75rem !important;
}
.page-item.active .page-link {
	background-color: #404e67;
	border-color: #404e67;
}
.dropdown-menu {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	transform-origin: left top 0;
	box-shadow: inherit;
	background-color: #fff;
}
.navbar-nav .open .dropdown-menu {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-group-xs > .btn,
.btn-xs {
	min-height: 22px;
	min-width: 22px;
}
.dropdown-menu {
	font-size: 13px;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	box-shadow: none;
}
.btn-link {
	color: #333;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
	background-color: rgba(0, 0, 0, 0.2);
}
.card {
    margin-bottom: 30px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 15%);
    border: #ebebeb solid 1px;
}
.card-title {
	margin-bottom: 1.125rem;
}
.dropdown-action .dropdown-toggle:after {
	display: none;
}
.badge.badge-pill {
	border-radius: 10rem;
}
.badge-primary {
	color: #fff;
}
.btn.btn-rounded {
	border-radius: 5px;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	background-color: #eee;
	border-color: transparent;
}
.nav-tabs .nav-link {
	border-radius: 0;
}
.table.dataTable {
	border-collapse: collapse !important;
}
textarea.form-control {
	height: auto;
}
.progress-example .progress {
	margin-bottom: 1.5rem;
}
.progress-xs {
	height: 4px;
}
.progress-sm {
	height: 15px;
}
.progress.progress-sm {
	height: 6px;
}
.progress.progress-md {
	height: 8px;
}
.progress.progress-lg {
	height: 18px;
}
.form-control.form-control-sm {
	padding: 0.25rem 0.5rem;
}
.card .card-header {
    background-color: rgb(243 243 243);
    border: 0 none;
    font-size: 16px;
    line-height: 30px;
    padding: 15px;
    border-bottom: #dfdfdf solid 1px;
}
.card .card-header .card-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
	padding: 5px 0;
	    text-transform: uppercase;
}
.table h5 {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 0;
	vertical-align: middle;
}
.table h5 + p {
	color: #9e9e9e;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 0;
}
.page-link:focus {
    box-shadow: unset;
}

/*-----------------
	5. Header
-----------------------*/

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    color: #595959;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}
.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    /* border-top: 1px solid #dee2e6; */
    font-size: 13px;
}

.header {
	background-color: #fff;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	padding:8px 0;
	z-index: 1039;
	height: auto;
	border-bottom:#0689d7 solid 2px;
}
.header .header-left {
	float: left;
	height: auto;
	padding: 0 20px;
	position: relative;
	text-align: center;
	width: 270px;
	z-index: 1;
	background: #fff;
}
.logo {
    align-items: center;
    display: flex;
    height: auto;
    font-size: 22px;
    color: #fff !important;
    justify-content: left;
}

.logo span {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-left: 10px;
}
.header .navbar-nav .badge {
	position: absolute;
	right: 7px;
	top: 4px;
}
.header .dropdown-menu > li > a {
	position: relative;
}
.header .dropdown-toggle:after {
	display: none;
}
.header .has-arrow .dropdown-toggle:after {
	display: none;
}
.page-title-box {
	border-radius: 0;
	height: 50px;
	margin-bottom: 0;
	padding: 14px 20px;
}
.page-title-box h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}
.user-menu {
	margin: 0;
	position: relative;
	z-index: 99;
}
.user-menu.nav > li > a {
	color: #212121;
	font-size: 16px;
	line-height: 50px;
	padding: 0 15px;
	height: 50px;
}
.user-menu.nav > li > a:hover,
.user-menu.nav > li > a:focus {
	/* background-color: rgba(0, 0, 0, 0.02); */
}
.user-img {
	display: inline-block;
	position: relative;
}
.header .user-img img {
	width:45px;
	height: 45px;
	border-radius: 50%;
}
.user-img .status {
	border: 2px solid #fff;
	bottom: 0;
	height: 13px;
	position: absolute;
	right: 0;
	width: 13px;
}
.user-menu .user-img .status {
	bottom: 20px;
}
.user-menu .dropdown-menu {
    max-width: 136px;
    right: 15px;
    width: 100%;
    left: initial !important;
    top: 22px !important;
}
.user-menu .bg-primary {
	background-color: #404e67 !important;
}
.status {
	background-color: #ccc;
	border-radius: 50%;
	display: inline-block;
	height: 10px;
	width: 10px;
}
.status.online {
	background-color: #55ce63;
}
.status.offline {
	background-color: #f62d51;
}
.status.away {
	background-color: #faa937;
}

.user-menu .usereees {
    display: flex;
	    position: relative;
    top: 6px;
}
.user-menu .usereees .lft_cntsss {
    margin-right: 15px;
}
.user-menu .usereees .lft_cntsss p span {
    font-weight: 300;
}

.user-menu .usereees .lft_cntsss p {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: #000;
    height: 30px;
}

.user-menu .usereees .lft_cntsss span.date_areass {
    font-size: 14px;
    color: #2c76c9;
}
.user-menu .usereees .rit_usersss img {
    position: relative;
    top: 14px;
	object-fit: cover;
}
span.hedddinggs {
    font-size: 20px;
    color: #185fb1;
    font-weight: 500;
    position: relative;
    top: 30px;
}

.CustomePagination .ngx-pagination .current span.ng-star-inserted span {
    color: #fff !important;
}

.ngx-pagination li span span {
    color: #fff !important;
}
/*-----------------
	6. Sidebar
-----------------------*/
.table-responsive {
    display: inline-block;
    width: 100%;
    overflow-x: auto;
}
.sidebar {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    top: 111px;
    width: 270px;
    z-index: 91;
    bottom: 0;
    margin-top: 0px;
    position: fixed;
    background-color: #004088;
    left: 0;
    transition: all 0.2s ease-in-out;
    padding: 10px 20px 40px;
    overflow: auto;
}
.sidebar.opened {
	transition: all 0.4s ease;
}
.sidebar-inner {
	height: 100%;
	transition: all 0.2s ease-in-out 0s;
}
.sidebar-menu ul {
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.sidebar-menu li a {
	color: #fff;
	display: block;
	font-size: 13px;
	height: auto;
	padding: 5px 0px 8px 43px
}
.sidebar-menu li a:hover {
	color: #fff;
}
.sidebar-menu li.active a {
	color: #fff;
    background: #2064af;
}
.menu-title {
	color: #333;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 20px;
}
.menu-title > i {
	float: right;
	line-height: 40px;
}
.sidebar-menu li.menu-title a {
	color: #404e67;
	display: inline-block;
	float: right;
	padding: 0;
}
.sidebar-menu li.menu-title a.btn {
	color: #fff;
	display: block;
	float: none;
	font-size: 15px;
	line-height: inherit;
	margin-bottom: 15px;
}
.sidebar-menu ul ul a.active {
	color: #404e67;
	text-decoration: underline;
}
.mobile-user-menu {
	color: #fff;
	display: none;
	font-size: 24px;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
	width: 50px;
	z-index: 10;
}
.mobile-user-menu > a {
	color: #fff;
	padding: 0;
}
.mobile-user-menu > a:hover {
	color: #fff;
}
.mobile-user-menu > .dropdown-menu > a {
    line-height: 23px;
}
.profile-rightbar {
	display: none !important;
	color: #404e67;
	font-size: 26px;
	margin-left: 15px;
}
.fixed-sidebar-right {
	position: fixed;
	top: 60px;
	right: 0;
	width: 300px;
	margin-right: -300px;
	bottom: 0;
	z-index: 101;
	transition: all 0.4s ease;
}
.mobile_btn {
	display: none;
}
.sidebar .sidebar-menu > ul > li > a span {
	transition: all 0.2s ease-in-out 0s;
	display: inline-block;
	margin-left: 7px;
	white-space: nowrap;
	text-transform: capitalize;
}
.sidebar .sidebar-menu > ul > li > a span.badge {
	color: #fff;
	margin-left: auto;
}
.sidebar-menu ul ul a {
	display: block;
	font-size: 12px;
	padding: 9px 10px 9px 50px;
	position: relative;
}
.sidebar-menu ul ul {
	background-color: #4a5872;
	display: none;
}
.sidebar-menu ul ul ul a {
	padding-left: 70px;
}
.sidebar-menu ul ul ul ul a {
	padding-left: 90px;
}
.sidebar-menu > ul > li {
	position: relative;
}
.sidebar-menu .menu-arrow {
	transition: transform .15s;
	position: absolute;
	right: 15px;
	display: inline-block;
	font-family: 'FontAwesome';
	text-rendering: auto;
	line-height: 40px;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
	line-height: 18px;
	top: 15px;
}
.sidebar-menu .menu-arrow:before {
	content: "\f105";
}
.sidebar-menu li a.subdrop .menu-arrow {
	transform: rotate(90deg);
}
.sidebar-menu ul ul a .menu-arrow {
	top: 10px;
}
.sidebar-menu a {
	transition: unset;
	-moz-transition: unset;
	-o-transition: unset;
	-ms-transition: unset;
	-webkit-transition: unset;
}
.sidebar-menu > ul > li > a {
	padding: 9px 10px;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    border-bottom: #1a5393 solid 1px;
}
.sidebar-menu ul li a i {
	align-items: center;
	display: inline-flex;
	font-size: 18px;
	min-height: 24px;
	line-height: 18px;
	width: 20px;
	transition: all 0.2s ease-in-out 0s;
	margin-left: 5px;
    margin-top: 2px;
	    position: absolute;
    right: 0;
}
.sidebar-menu ul li.menu-title a i {
	font-size: 16px;
	margin-right: 0;
	text-align: right;
	width: auto;
}

div#submenu>a:before {
    content: '';
    border-radius: 20px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8aa7c8;
    left:12px;
    margin-top: 8px;
	display: none;
}
ul.nav.user-menu.float-right .dropdown-menu.show {
    top: 30px !important;
}

.tab-inn {
    padding:15px;
/* 	overflow: auto;
    height: 395px; */
}
.list-act-hom ul {
    padding: 0px;
    padding-top: 5px;
	margin:0;
}
.list-act-hom ul li {
    position: relative;
    overflow: hidden;
    padding: 7px;
    background: #f9f9f9ad;
    margin-bottom: 15px;
}
.list-act-hom ul li:last-child{margin-bottom:0;}
.list-act-hom ul li img {
    width: 120px;
    height: 80px;
    margin-right: 10px;
    float: left;
}
.list-act-hom ul li i {
    width: 35px;
    height: 35px;
    background: #333e52;
    border-radius: 50%;
    text-align: center;
    padding: 9px 10px;
    margin-left: -68px;
    position: absolute;
    z-index: 99;
    color: #fff;
    font-size: 18px;
}
.list-act-hom ul li h4 {
        margin-top: 0px;
    font-weight:500;
    color: #263238;
    margin-bottom: 0;
    font-size: 16px;
    padding-bottom: 2px;
}
.list-act-hom ul li h4 a{color:#263238;}
.list-act-hom ul li h4 span {
    color: #929292;
	    font-weight: normal;
    font-size: 13px;
}
.list-act-hom ul li p {
        padding-top: 0;
    color: #666;
    padding-bottom: 1px;
    margin: 0 0 2px 0;
    line-height: 16px;
    font-size: 13px;
}
/* .list-act-hom-con::after {
    content: '';
    background: #e8edf2;
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 19px;
} */
.ctass ul li {
    margin:0;
    padding: 0;
	font-size:14px;
}
.ctass ul li span{font-size:13px;}
.ctass ul li sub {
    background: #91c610;
    color: #fff;
    padding: 4px 1px 3px 10px;
    font-size: 11px;
    border-radius: 5px;
    bottom: 0em;
    line-height: 17px;
    text-align: center;
    vertical-align: text-bottom;
}

.actv{background: #91c610;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    bottom: 0em;
    line-height: 17px;
    font-size: 11px !important;
    text-align: center;
    vertical-align: text-bottom;
}
.mt_5{margin-top:5px !important;}
.pending{
	background: #ff9b01;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    bottom: 0em;
    line-height: 17px;
    font-size: 11px !important;
    text-align: center;
    vertical-align: text-bottom;
}
.viwbutn {
    font-size: 13px;
    float: right;
    position: relative;
    top: 4px;
    line-height: 24px;
}
.viwbutn a {
    color: #404e67;
    border: #ccc solid 1px;
    padding: 6px 8px;
    border-radius: 3px;
    margin-right: 10px;
}
.viwbutn a:hover {
    background: #404e67;
    color: #fff;
    border: #404e67 solid 1px;
}
/* .viwbutn:hover{background:#272d36;} */

.ctass ul {
    margin: 0;
    padding: 0;
}
.ctass {
}


.list-act-hom1 ul {
    padding: 0px;
    padding-top: 5px;
}
.list-act-hom1 ul li {
    position: relative;
    overflow: hidden;
    padding-left:0px;
}
.list-act-hom1 ul li i {
    width: 35px;
    height: 35px;
    background: #167ee6;
    border-radius: 50%;
    text-align: center;
    padding: 9px 10px;
    margin-left: -68px;
    position: absolute;
    z-index: 99;
    color: #fff;
    font-size: 18px;
}
.list-act-hom1 ul li h4 {
        margin-top: 4px;
    font-weight:500;
    color: #263238;
    margin-bottom: 0;
    font-size: 16px;
    padding-bottom: 2px;
}
.list-act-hom1 ul li h4 span {
    color: #929292;
	    font-weight: normal;
    font-size: 13px;
}
.list-act-hom1 ul li p {
    padding-top: 2.2px;
    color: #666;
    padding-bottom: 2.2px;
}

.img_ful{width:100%;}

/*-----------------
	7. Content
-----------------------*/

.page-wrapper {
	left: 0;
	margin-left: 270px;
	padding-top: 111px;
	position: relative;
	transition: all 0.4s ease;
	background: #dff0ff;
}
.page-wrapper > .content {
	padding: 30px 30px 50px;
}

/*-----------------
	8. Login
-----------------------*/

#lgo_body{background-attachment:fixed !important; display:inline-table; width:100%; height:100%; position:initial;}

.al_lgo_araeaea {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #01447a;
    margin-bottom: 30px;
    line-height: 31px;
}

.al_lgo_araeaea img {
    margin-right: 7px;
}

.account-center .lgo_araea_als {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.account-center .login-portals {
        background: #006ab4;
    padding: 20px;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 auto;
    max-width: 560px;
}


.form-group.form-focus.both_area.rgss {
    text-align: center;
}
.form-group.form-focus.both_area.rgss span.rto_sgn {
    float: inherit;
}

.brd {
    font-size: 38px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 3px 3px 0px #00000066;
}
.account-box .form-group a {
    color:#006ab4;
    padding-top: 5px;
    text-decoration: underline;
}
.account-box .form-group a:hover{color:#006ab4;}

.forgotform .lg_form_f {}
.forgotform .lg_form_f h4 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 22px;
}
.forgotform .lg_form_f p {
    text-align: center;
    margin-bottom:25px;
    font-size: 14px;
}

.forgotform .lg_form_f p span {
    display: block;
}

.account-page {
	display: table-row;
	height: 100%;
	padding: 40px 0;
}
.account-title {
	font-size: 32px;
	font-weight: normal;
	margin: 0 0 40px;
	text-align: center;
}
.account-wrapper {
	display: table;
	table-layout: fixed;
	height: 100%;
	padding: 0px;
	width: 100%;
}
.account-center {
	display: table-cell;
	vertical-align: middle;
}
.account-box {
    margin: 0 auto;
    max-width: 560px;
    border-radius: 4px;
    border: #ffffff4a solid 1px;
    background: #fff;
    padding: 15px 40px 50px;
    box-shadow: 0 10px 20px #00000045;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 100%;
}
.merg_bx {padding:25px 0 0;}
.merg_bx label {
    font-weight: 500;
}
.account-logo {
    text-align: center;
    /* border-radius: 80px;
    padding: 0px 10px 10px; */
	background: #404e66;
    height: 100%;
	padding: 138px 38px 138px 38px;
	border-radius: 10px 0px 0 10px;
}
.account-logo h1{color:#fff !important}
.account-box .form-group {
	margin-bottom:15px;
}
.account-box .form-group:last-child {
    margin: 0;
}
.form-group.form-focus.both_area {
    margin-top:20px;
    padding: 0;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}
.form-group.form-focus.both_area span.rto_sgn {
    float: right;
}

.account-center .bttms {
    text-align: center;
    padding: 40px 0 30px;
    color: #333;
    font-weight: 500;
}
.account-box a {
	color: #333;
	font-size: 14px;
}
.account-box a:hover {
	color: #404e67;
}
.account-box .form-control {
    border:1px solid #e7e7e7;
    box-shadow: inherit;
    font-size: 14px;
    height: 40px;
    border-radius: 0px;
    border-radius: 5px;
}
.account-box textarea.form-control {
	height: 130px;
}
.account-box label {
    color: #323232;
    font-size: 16px;
    font-weight:400;
    margin-bottom: 6px;
}
.form-group.checkbox label {
    margin-bottom: 10px;
}
.account-logo img {
	/* max-height: 40px; */
	width: auto;

}

.account-box .account-btn {
    border-radius: 5px;
    font-size: 20px;
    margin-top: 5px;
    padding: 15px 35px;
    background: #ffcf5b;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    color:#2b2b2b;
    width: 100%;
    font-weight: 500;
}
.aro_sz{font-size:18px;  position:relative; top:1px;}


/* ------------- Programs ----------- */

 .post.card_bxx {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px #88abd366;
}
.post.card_bxx h4 {
    font-size: 20px;
    color: #004088;
    margin-bottom: 15px;
}
.post.card_bxx p {
    font-size: 15px;
    color: #565555;
    line-height: 20px;
    margin-bottom: 25px;
}

.post.card_bxx .und_bx_areaaa {
    background: #edf2f6;
}
.post.card_bxx .und_bx_areaaa .inp_area_bx {
    padding:25px 30px;
    border-bottom: #cbdae5 solid 1px;
}
.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group {
    padding: 0;
}
.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label {
    color: #000;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.8px;
}
.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label.lbl {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button {
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    margin-right: 10px;
}

.post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button {
    border: none;
    padding: 10px 25px 10px 25px;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #353535;
}
.post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button img {
    margin-left: 5px;
}
.green_bg {background: #a5e577;}
.yellow_bg {background: #ffcf5b;}
.skyee_bg {background: #badbf9;}

.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group input.form-control{border-radius:5px; height: 47px;}
.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group select.form-control{border-radius:5px; height: 47px;}

/* ------------- End Programs ----------- */


/*-----------------
	9. Dashboard
-----------------------*/
.dash-widget.red_bgr {background:#f5365c;}
.dash-widget.red_bgr h3{color:#fff;}
.dash-widget.blu_bgr {background:#007bff;}
.dash-widget.blu_bgr h3{color:#fff;}
.dash-widget.grea_bgr {background:#2dce89;}
.dash-widget.grea_bgr h3{color:#fff;}

.dash-widget {
	background-color: #efefef;
    border-radius: 4px;
    margin-bottom: 30px;
    padding:20px 20px;
    position: relative;
    box-shadow: 0 2px 6px #33333338;
}
.dash-widget img{margin-top:20px;}
.dash-widget-bg1 {
	width: 65px;
    float: left;
    color: #fff;
    display: block;
    font-size: 50px;
    text-align: center;
    line-height: 58px;
    /* background: #333e52; */
    border-radius: 50%;
    font-size: 40px;
    height: 65px;
}
span.dash-widget-bg1 i {font-size: 30px;}
span.dash-widget-bg2 i {font-size: 30px;}
span.dash-widget-bg3 i {font-size: 30px;}

.dash-widget-bg2 {
	width: 65px;
	float: left;
	color: #fff;
	display: block;
	font-size: 50px;
	text-align: center;
	line-height:58px;
	/* background: #55ce63; */
	border-radius: 50%;
	font-size: 40px;
	height: 65px;
}
.dash-widget-bg3 {
	width: 65px;
	float: left;
	color: #fff;
	display: block;
	font-size: 50px;
	text-align: center;
	line-height: 58px;
	/* background: #7a92a3; */
	border-radius: 50%;
	font-size: 40px;
	height: 65px;
}
.dash-widget-bg4 {
	width: 65px;
	float: left;
	color: #fff;
	display: block;
	font-size: 50px;
	text-align: center;
	line-height: 65px;
	background: #ffbc35;
	border-radius: 50%;
	font-size: 40px;
	height: 65px;
}
.card-table.card-table-top .card-body {
	height: 175px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.chart-title {
	margin-bottom: 25px;
}
.chart-title h4 {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
	color: #333;
}
.chart-title span {
	color: #404e67;
}
.card-title > a.btn {
	color: #fff;
}
ul.chat-user-total li {
	display: inline-block;
	color: #999;
}
ul.chat-user-total li i.current-users {
	color: #404e67;
	padding-right: 5px;
}
ul.chat-user-total li i.old-users {
	color: #eaeaea;
	padding-right: 5px;
}
.new-patient-table {
	display: table;
}
.new-patient-table td, .new-patient-table th {
    vertical-align: middle;
}
.new-patient-table tr td img {
	margin-right: 5px;
}
.btn-primary-one {
	border: 1px solid #ffbc35;
	border-radius: 25px;
	width: 100px;
	background: transparent;
	color: #000;
}
.btn-primary-two {
	border: 1px solid #404e67;
	border-radius: 25px;
	width: 100px;
	background: transparent;
	color: #000;
}
.btn-primary-three {
	border: 1px solid #55ce63;
	border-radius: 25px;
	width: 100px;
	background: transparent;
	color: #000;
}
.btn-primary-four {
	border: 1px solid #ffbc35;
	border-radius: 25px;
	width: 100px;
	background: transparent;
	color: #000;
}
.bar-chart {
	position: relative;
	width: 100%;
	margin-top: 15px;
}
.bar-chart > .legend {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	margin-bottom: -45px;
	border-top: 1px solid #000;
}
.bar-chart > .legend > .item {
	position: relative;
	display: inline-block;
	float: left;
	width: 25%;
}
.bar-chart > .legend > .item:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 1px;
	height: 8px;
	background-color: #000;
	margin-top: -8px;
}
.bar-chart > .legend > .item.text-right:before {
	right: 0;
	left: auto;
}
.bar-chart > .legend > .item h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-top: 5px;
}
.bar-chart > .chart {
	position: relative;
	width: 100%;
}
.bar-chart > .chart > .item {
	position: relative;
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	color: #fff;
	text-transform: uppercase;
}
.bar-chart > .chart > .item > .bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffbc35;
	z-index: 5;
}
.bar-chart > .chart > .item > .bar > .percent {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	line-height: 40px;
	padding-right: 12px;
	z-index: 15;
}
.bar-chart > .chart > .item > .bar > .item-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #404e67;
	z-index: 10;
}
.bar-chart > .chart > .item > .bar > .item-progress > .title {
	display: block;
	position: absolute;
	height: 40px;
	line-height: 40px;
	padding-left: 12px;
	letter-spacing: 2px;
	z-index: 15;
}
.hospital-barchart h4 {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
	color: #333;
}
.custom-table tr {
	background-color: #fff;
	/* box-shadow: 0 0 3px #e5e5e5; */
}
.table.custom-table > tbody > tr > td,
.table.custom-table > tbody > tr > th,
.table.custom-table > tfoot > tr > td,
.table.custom-table > tfoot > tr > th,
.table.custom-table > thead > tr > td,
.table.custom-table > thead > tr > th {
	padding: 10px 8px;
	vertical-align: middle;
}
.dash-widget-info > h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.dash-widget-info span i {
	width: 16px;
	background: #fff;
	border-radius: 50%;
	color: #666666;
	font-size: 9px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	margin-left: 5px;
	position: relative;
    top: -1px;
}
.dash-widget-info > span.widget-title1 {
	background: #1b1b1b59;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
}
.dash-widget-info > span.widget-title2 {
	background: #5353534a;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 13px;
}
.dash-widget-info > span.widget-title3 {
	background: #4040403d;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 13px;
}
.dash-widget-info > span.widget-title4 {
	background: #ffbc35;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 13px;
}
.member-panel .contact-list > li:last-child {
	border-bottom: 0;
}
.member-panel .card-body {
	overflow-y: auto;
	height: 275px;
	-webkit-overflow-scrolling: touch;
	padding: 0;
}
.contact-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.contact-list > li {
	border-bottom: 1px solid #eaeaea;
	border-radius: inherit;
	padding: 10px;
	background-color:#fff;
}
.contact-cont {
	position: relative;
}
.contact-info {
	padding: 0 30px 0 50px;
}
.contact-date {
	color: #888;
	font-size: 12px;
}
.take-btn {
    min-width: 80px;
}

/*-----------------
	10. Activity
-----------------------*/

.activity-box {
	position: relative;
}
.activity-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.activity .activity-list > li .activity-user {
	height: 32px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 12px;
	left: 8px;
	width: 32px;
}
.activity .activity-list > li .activity-content {
	background-color: #fff;
	margin: 0 0 0 40px;
	padding: 0;
	position: relative;
}
.activity-list > li {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	position: relative;
	border: 1px solid #e7e7e7;
}
.activity-list > li:last-child .activity-content {
	margin-bottom: 0;
}
.activity-user .avatar {
	height: 32px;
	line-height: 32px;
	margin: 0;
	width: 32px;
}
.activity-list > li .activity-user {
	background: #fff;
	height: 32px;
	left: -7px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 3px;
	width: 32px;
}
.activity-list > li .activity-content {
	background-color: #fff;
	margin: 0 0 20px 40px;
	padding: 0;
	position: relative;
}
.activity-list > li .activity-content .timeline-content {
	color: #9e9e9e;
}
.activity-list > li .activity-content .timeline-content a.name {
	color: #000;
}
.activity-list > li .time {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 1.35;
}
.activity .timeline-content > a {
	color: #404e67;
}
.activity-delete {
	background-color: #ffe5e6;
	border: 1px solid #fe0000;
	color: #fe0000;
	display: none;
	font-size: 20px;
	height: 20px;
	line-height: 18px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 20px;
}
.activity-delete:hover {
	background-color: #fe0000;
	color: #fff;
}
.activity-list > li:hover .activity-delete {
	display: inline-block;
}

/*-----------------
	11. Select2
-----------------------*/

.select2-container .select2-selection--single {
/* 	border: 1px solid #414f686b;
	height: 40px;
	border-radius: 0; */
	border-left:none;
	border-top:none;
	border-right:none;
	border-radius:0px;
    box-shadow: none;
    padding:0.469rem 0rem;
    border-color: rgba(65, 79, 104, 0.24);
    font-size: 14px;
    height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 58px;
	right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color:#979797 transparent transparent;
    border-style:solid;
    border-width:5px 5px 0;
    height:0;
    left:50%;
    margin-left:-5px;
    margin-top:-2px;
    position:absolute;
    top:50%;
    width:0;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #979797;
	border-width: 0 5px 5px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding-right: 30px;
	padding-left:0px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #adadad;
	font-size: 14px;
	font-weight: normal;
	line-height: 50px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #404e67;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid #eaeaea;
	border-radius: 0;
}
.select2-container--default .select2-selection--multiple {
	border: 1px solid #eaeaea;
	border-radius: 0;
}
.select2-container .select2-selection--multiple {
	min-height: 40px;
}

/*-----------------
	12. Nav tabs
-----------------------*/

.nav-tabs > li > a {
	margin-right: 0;
	color: #888;
	border-radius: 0;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
	border-color: transparent;
	color: #333;
}
.nav-tabs.nav-justified > li > a {
	border-radius: 0;
	margin-bottom: 0;
}
.nav-tabs.nav-justified.nav-tabs-solid > li > a {
	border-color: transparent;
}
.nav-tabs.nav-tabs-solid > li > a {
	color: #333;
}
.nav-tabs.nav-tabs-solid > li > a.active,
.nav-tabs.nav-tabs-solid > li > a.active:hover,
.nav-tabs.nav-tabs-solid > li > a.active:focus {
	background-color: #404e67;
	border-color: #404e67;
	color: #fff;
}
.nav-tabs.nav-tabs-solid.nav-tabs-rounded {
	border-radius: 50px;
}
.nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a {
	border-radius: 50px;
}
.nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active,
.nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:hover,
.nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:focus {
	border-radius: 50px;
}
.nav-tabs-justified > li > a {
	border-radius: 0;
	margin-bottom: 0;
}
.nav-tabs-justified > li > a:hover,
.nav-tabs-justified > li > a:focus {
	border-bottom-color: #ddd;
}
.nav-tabs-justified.nav-tabs-solid > li > a {
	border-color: transparent;
}

/*-----------------
	13. Holidays
-----------------------*/

.custom-table tr.holiday-completed {
	color: #aaa;
}
.modal-header.bg-danger .modal-title {
	color: #fff;
}
.dropdown.action-label {
	display: inline-block;
}
.action-label > a {
	display: inline-block;
	min-width: 103px;
}
.action-label .btn-sm {
	padding: 5px;
}

/*-----------------
	14. Edit Profile
-----------------------*/

.profile-img-wrap {
	height: 120px;
	position: absolute;
	width: 120px;
	background: #fff;
	overflow: hidden;
}
.profile-basic {
	margin-left: 140px;
}
.profile-img-wrap img {
	width: 120px;
	height: 120px;
}
.fileupload.btn {
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(33, 33, 33, 0.5);
	border-radius: 0;
	padding: 3px 10px;
	border: none;
}
.fileupload input.upload {
	cursor: pointer;
	filter: alpha(opacity=0);
	font-size: 20px;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: -3px;
	top: -3px;
	padding: 5px;
}
.btn-text {
	color: #fff;
}

/*-----------------
	15. Chat
-----------------------*/

.chat-main-row {
	bottom: 0;
	left: 0;
	overflow: auto;
	padding-bottom: inherit;
	padding-top: inherit;
	position: absolute;
	right: 0;
	top: 0;
}
.chat-main-wrapper {
	display: table;
	height: 100%;
	table-layout: fixed;
	width: 100%;
}
.message-view {
	display: table-cell;
	height: 100%;
	float: none;
	padding: 0;
	position: static;
	vertical-align: top;
	width: 75%;
}
.chat-window {
	display: table;
	height: 100%;
	table-layout: fixed;
	width: 100%;
	background-color: #f5f5f5;
}
.fixed-header {
	background-color: #fff;
	border-bottom: 1px solid #eaeaea;
	padding: 10px 15px;
}
.fixed-header .navbar {
	border: 0 none;
	margin: 0;
	min-height: auto;
	padding: 0;
}
.fixed-header .user-info a {
	color: #76838f;
	text-transform: uppercase;
}
.typing-text {
	color: #404e67;
	font-size: 12px;
	text-transform: lowercase;
}
.last-seen {
	color: #a3afb7;
	display: block;
	font-size: 12px;
}
.custom-menu.nav > li > a {
	color: #404e67;
	font-size: 26px;
	margin-left: 15px;
	padding: 0;
}
.custom-menu.navbar-nav > li > a:hover,
.custom-menu.navbar-nav > li > a:focus {
	background-color: transparent;
}
.custom-menu .dropdown-menu {
	left: auto;
	right: 0;
}
.search-box .input-group {
	background-color: #e6e6e6;
	border: 1px solid #ddd;
	border-radius: 50px;
}
.search-box .input-group .form-control {
	background: transparent;
	border: none;
}
.search-box .btn {
	background-color: transparent;
}
.chat-contents {
	display: table-row;
	height: 100%;
}
.chat-content-wrap {
	height: 100%;
	position: relative;
	width: 100%;
}
.chat-wrap-inner {
	bottom: 0;
	left: 0;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 0;
}
.chats {
	padding: 30px 15px;
}
.chat-body {
	display: block;
	margin: 10px 0 0;
	overflow: hidden;
}
.chat-body:first-child {
	margin-top: 0
}
.chat-right .chat-content {
	position: relative;
	display: block;
	float: right;
	padding: 8px 15px;
	margin: 0;
	clear: both;
	background-color: #e6e6e6;
	border-radius: 20px 2px 2px 20px;
	max-width: 60%;
}
.chat-right .chat-body {
	padding-left: 48px;
	padding-right: 10px;
}
.chat-bubble {
	display: block;
	width: 100%;
	float: left;
	margin-bottom: 10px;
}
.chat.chat-right .chat-bubble:last-child .chat-content {
	border-bottom-right-radius: 20px;
}
.chat.chat-right .chat-bubble:first-child .chat-content {
	border-top-right-radius: 20px;
}
.chat-content > p {
	margin-bottom: 0;
	word-wrap: break-word;
}
.chat-time {
	color: rgba(0, 0, 0, 0.5);
	display: block;
	font-size: 12px;
}
.chat-right .chat-time {
	text-align: right;
}
.chat-line {
	border-bottom: 1px solid #eaeaea;
	height: 12px;
	margin: 7px 0 20px;
	position: relative;
	text-align: center;
}
.chat-date {
	background-color: #f5f5f5;
	color: #000;
	font-size: 12px;
	padding: 0 11px;
}
.chat-avatar {
	float: right;
}
.chat-avatar .avatar {
	line-height: 30px;
	height: 30px;
	width: 30px;
}
.chat-left .chat-avatar {
	float: left;
}
.chat-left .chat-body {
	margin-right: 0;
	margin-left: 30px;
	padding-right: 20px;
}
.chat-left .chat-content {
	background-color: #fff;
	border: 1px solid #eaeaea;
	color: #888;
	float: left;
	position: relative;
	padding: 8px 15px;
	border-radius: 2px 20px 20px 2px;
	max-width: 60%;
}
.avatar {
	background-color: #aaa;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	height: 38px;
	line-height: 38px;
	margin: 0 10px 0 0;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	width: 38px;
	position: relative;
	white-space: nowrap;
}
.avatar:hover {
	color: #fff;
}
.avatar > img {
	width: 100%;
	display: block;
}
.chat.chat-left .chat-bubble:first-child .chat-content {
	border-top-left-radius: 20px;
	margin-top: 0;
}
.chat.chat-left .chat-bubble:last-child .chat-content {
	border-bottom-left-radius: 20px;
}
.chat-left .chat-time {
	color: #a3afb7
}
.attach-list {
	color: #adb7be;
	padding: 5px 0 0;
	line-height: 24px;
	margin: 0;
	list-style: none;
}
.attach-list i {
	margin-right: 3px;
	font-size: 16px;
}
.attach-list a {
	word-wrap: break-word;
}
.attach-img {
	margin-bottom: 20px;
}
.attach-img > img {
	border: 1px solid #eaeaea;
	max-width: 100%;
}
.attach-img-download {
	margin-bottom: 5px;
}
.chat-user {
	color: #333;
	font-size: 13px;
}
.chat-footer {
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	padding: 15px;
}
.message-bar {
	display: table;
	height: 44px;
	position: relative;
	width: 100%;
}
.message-bar .message-inner {
	display: table-row;
	height: 100%;
	padding: 0 8px;
	width: 100%;
}
.message-bar .link {
	color: #777;
	display: table-cell;
	font-size: 20px;
	padding: 0 10px;
	position: relative;
	vertical-align: middle;
	width: 30px;
}
.message-bar .message-area {
	display: table-cell;
}
.message-area .input-group .form-control {
	background-color: #fff;
	border: 1px solid #eaeaea;
	box-shadow: none;
	color: #555;
	display: block;
	font-size: 14px;
	height: 44px;
	margin: 0;
	padding: 6px 12px;
	resize: none;
}
.message-area .input-group .form-control:focus {
	height: 150px;
	transition: all 0.5s ease 0s;
}
.message-area .btn {
	height: 44px;
	width: 50px;
}
.profile-right {
	display: table-cell;
	height: 100%;
	float: none;
	padding: 0;
	position: static;
	vertical-align: top;
}
.display-table {
	display: table;
	table-layout: fixed;
	border-spacing: 0;
	width: 100%;
	height: 100%;
}
.table-row {
	display: table-row;
	height: 100%;
}
.table-body {
	position: relative;
	height: 100%;
	width: 100%;
}
.table-content {
	bottom: 0;
	left: 0;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 0;
}
.profile-right-inner {
	border-left: 1px solid #eaeaea;
	background-color: #fff;
}
.chat-profile-img {
	padding: 30px;
	position: relative;
	text-align: center;
}
.edit-profile-img {
	height: 120px;
	margin: 0 auto;
	position: relative;
	width: 120px;
	cursor: pointer;
}
.change-img {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	color: #fff;
	display: none;
	height: 100%;
	left: 0;
	line-height: 120px;
	position: absolute;
	top: 0;
	width: 100%;
}
.edit-profile-img:hover .change-img {
	display: block;
}
.edit-profile-img img {
	height: auto;
	margin: 0;
	width: 120px;
	border-radius: 50%;
}
.user-name {
	color: #333;
}
.edit-btn {
	border-radius: 40px;
	height: 36px;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 36px;
}
.chat-profile-info {
	padding: 15px;
}
.user-det-list {
	list-style: none;
	padding: 0;
}
.user-det-list > li {
	padding: 6px 15px;
}
.user-det-list .text-muted {
	color: #888;
}
.transfer-files .tab-content {
	padding-top: 0;
}
.files-list {
	list-style: none;
	padding-left: 0;
}
.files-list > li {
	border-bottom: 1px solid #eaeaea;
	border-radius: inherit;
	margin: 2px 0 0;
	padding: 10px;
}
.files-cont {
	position: relative;
}
.file-type {
	height: 48px;
	position: absolute;
	width: 48px;
}
.files-icon i {
	color: #76838f;
	font-size: 20px;
}
.files-info {
	padding: 0 30px 0 50px;
}
.file-name a {
	color: #333;
}
.files-action {
	display: none;
	height: 30px;
	list-style: none;
	padding-left: 0;
	position: absolute;
	right: 0;
	text-align: right;
	top: 10px;
	width: 30px;
}
.files-list > li:hover .files-action {
	display: block;
}
.file-date {
	color: #888;
	font-size: 12px;
}
.file-author a {
	color: #404e67;
	font-size: 12px;
	text-decoration: underline;
}
.files-action .dropdown-menu {
	left: auto;
	right: 0;
}
.chat-img-attach {
	border-radius: 4px;
	margin-bottom: 12px;
	margin-left: 12px;
	position: relative;
	float: right;
}
.chat-img-attach img {
	border-radius: 4px;
	display: inline-block;
	height: auto;
	max-width: 100%;
}
.chat-placeholder {
	background: rgba(69, 81, 97, 0.6);
	border-radius: 4px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-end;
	left: 0;
	padding: 13px;
	position: absolute;
	top: 0;
	width: 100%;
}
.chat-img-name {
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}
.chat-file-desc {
	font-size: 11px;
}
.chat-right .chat-content.img-content {
	background-color: transparent;
	color: #76838f;
	padding: 0;
	text-align: right;
}
.chat-right .img-content .chat-time {
	color: #a3afb7;
}
.chat-left .chat-img-attach {
	float: left;
}
.chat-left .chat-img-attach {
	float: left;
	margin-left: 0;
	margin-right: 12px;
}
.chat-avatar-sm {
	width: 24px;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	float: left;
}
.chat-avatar-sm img {
	width: 24px;
}
.chat-avatar-sm.user-img .status {
	bottom: 4px;
	right: -3px;
}
.files-share-list {
	border: 1px solid #eaeaea;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 15px;
}
.files-share-list {
	background-color: #f9f9f9;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 15px;
}
.chat-user-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.chat-user-list > li {
	border-bottom: 1px solid #eaeaea;
	border-radius: inherit;
	margin: 5px 0 0;
	padding: 10px;
	background-color: #fff;
}
.designation {
	color: #9e9e9e;
	font-size: 12px;
}
.online-date {
	color: #9e9e9e;
	font-size: 12px;
}
.drop-zone {
	width: 100%;
	height: 205px;
	border: 2px dashed #adb7be;
	text-align: center;
	padding: 25px 0 0;
	margin-bottom: 20px;
}
.drop-zone .drop-zone-caption {
	font-weight: 600;
}
.upload-list {
	padding: 0;
	list-style: none;
	margin: 0;
}
.upload-list .file-list {
	background-color: #fff;
	border-top: 1px solid #d8e2e7;
	padding: 10px;
}
.upload-list .file-list:first-child {
	border-top: none
}
.upload-list .upload-wrap {
	position: relative;
	padding: 0 20px 0 0;
	margin: 0 0 5px
}
.upload-list .file-name,
.upload-list .file-size {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
}
.upload-list .file-name {
	padding-right: 15px;
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis
}
.upload-list .file-size {
	color: #888;
}
.upload-list .file-close {
	border: none;
	background: none;
	color: #ccc;
	position: absolute;
	right: 0;
	top: 2px;
}
.upload-list .file-close:hover {
	color: #f62d51
}
.upload-list .upload-process {
	font-size: 10px;
	color: #888;
}
.upload-list .progress {
	margin-bottom: 5px;
	background-color: #e1e1e1;
	height: 5px;
}
.upload-list .file-name i {
	color: #fda75c;
	margin: 0 5px 0 0;
	vertical-align: middle;
}
.upload-drop-zone {
	height: 200px;
	border-width: 2px;
	margin-bottom: 20px;
	color: #ccc;
	border-style: dashed;
	border-color: #adb7be;
	line-height: 200px;
	text-align: center;
	background-color: #fff;
}
.upload-drop-zone.drop {
	color: #222;
	border-color: #222;
}
.upload-text {
	font-size: 24px;
	margin-left: 10px;
}
.file-attached {
	color: #333;
	font-size: 13px;
}
.file-attached i {
	font-size: 16px;
}

/*-----------------
	16. Focus Label
-----------------------*/

.form-focus {
	/* height: 50px; */
	position: relative;
}
.form-group.form-focus.focused label {
    font-weight: 500;
}
.form-focus .focus-label {
	font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, 22px, 0) scale(1);
    transform-origin: left top;
    transition: 240ms;
    left: 0px;
    top: 0px;
    z-index: 1;
    color: #6e6e6e;
}
.form-focus.focused .focus-label {
	opacity: 1;
	font-weight: 300;
	top: -18px;
	font-size: 12px;
	z-index: 1;
}
.form-focus .form-control {
    height: 50px;
    border-radius: 8px;
    padding: 0px 0px 0px 15px;
}
.form-focus .form-control:focus {
    border: 1px solid #006ab4;
}
.form-focus .form-control::-webkit-input-placeholder {
	-webkit-transition: 240ms;
	transition: 240ms;
}
.form-focus .form-control:focus::-webkit-input-placeholder {
	-webkit-transition: none;
	transition: none;
}
.form-focus.focused .form-control::-webkit-input-placeholder {
	color: #bbb;
}
.profile-basic .cal-icon {
	width: 100%;
}
.form-focus .select2-container .select2-selection--single {
	border: 1px solid #ccc;
	height: 50px;
    border-radius: 0;
    padding: 0;
}
.form-focus .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 50px;
	right: 7px;
}
.form-focus .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #ccc transparent transparent;
	border-style: solid;
	border-width: 6px 6px 0;
	height: 0;
	left: 50%;
	margin-left: -10px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}
.form-focus .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #ccc;
	border-width: 0 6px 6px;
}
.form-focus .select2-container .select2-selection--single .select2-selection__rendered {
	padding-right: 30px;
	padding-left: 12px;
	padding-top: 3px;
}
.form-focus .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #676767;
	font-size: 14px;
	font-weight: normal;
	line-height: 38px;
}
.form-focus .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #fc6075;
}
.file-size {
	color: #888;
}

/*-----------------
	17. Leave
-----------------------*/

.filter-row .btn {
	border-radius: 0;
	min-height: 50px;
	padding: 12px;
	text-transform: uppercase;
}
.form-focus.select-focus .focus-label {
	opacity: 1;
	font-weight: 300;
	top: -20px;
	font-size: 12px;
	z-index: 1;
}
.action-label .label {
	display: inline-block;
	min-width: 85px;
	padding: 0.5em 0.6em;
}
.action-label i {
	margin-right: 3px;
}
.action-label .dropdown-menu > li > a {
	padding: 3px 10px;
}

/*-----------------
	18. Employee
-----------------------*/

.action-icon {
	color: #777;
	font-size: 18px;
	padding: 0 10px;
	display: inline-block;
}
.table .dropdown-menu {
	font-size: 12px;
}
.profile-widget {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	padding: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.profile-widget .user-name > a {
	color: #333;
}
.dropdown.profile-action {
	position: absolute;
	right: 5px;
	text-align: right;
	top: 10px;
}
.profile-action .dropdown-toggle:after {
	display: none;
}
.profile-img {
	cursor: pointer;
	height: 80px;
	margin: 0 auto;
	position: relative;
	width: 80px;
}
.profile-img .avatar {
	font-size: 24px;
	height: 80px;
	line-height: 80px;
	margin: 0;
	width: 80px;
}
.mobile-no > a {
	color: #777;
	display: inline-block;
}
.staff-mail > a {
	color: #777;
	display: inline-block;
	margin-top: 5px;
}
.staff-action-btns {
	margin-top: 10px;
}
.staff-id {
	margin-top: 5px;
}
.view-icons {
	float: right;
	margin-right: 10px;
}
.view-icons .btn {
	color: #888;
	font-size: 18px;
	margin-right: 5px;
	padding: 4px;
}
.view-icons .btn.active {
	color: #333;
}

/*-----------------
	19. Events
-----------------------*/

.calendar {
	float: left;
	margin-bottom: 0;
}
.fc-view {
	margin-top: 30px;
}
a.fc-event:not([href]) {
    color: #fff;
}
.none-border .modal-footer {
	border-top: none;
}
.fc-toolbar h2 {
	font-size: 18px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	line-height: 30px;
	text-transform: uppercase;
}
.fc-day-grid-event .fc-time {
	font-family: 'Roboto', sans-serif;
}
.fc-day {
	background: #fff;
}
.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active,
.fc-toolbar button:focus,
.fc-toolbar button:hover,
.fc-toolbar .ui-state-hover {
	z-index: 0;
}
.fc th.fc-widget-header {
	background: #eeeeee;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 0;
	text-transform: uppercase;
}
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
	border-color: #f3f3f3;
}
.fc-button {
	background: #f1f1f1;
	border: none;
	color: #797979;
	text-transform: capitalize;
	box-shadow: none !important;
	border-radius: 3px !important;
	margin: 0 3px !important;
	padding: 6px 12px !important;
	height: auto !important;
}
.fc-text-arrow {
	font-family: inherit;
	font-size: 16px;
}
.fc-state-hover {
	background: #f3f3f3;
}
.fc-state-highlight {
	background: #f0f0f0;
}
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
	background-color: #404e67;
	color: #fff;
	text-shadow: none;
}
.fc-cell-overlay {
	background: #f0f0f0;
}
.fc-unthemed .fc-today {
	background: #fff;
}
.fc-event {
	border-radius: 2px;
	border: none;
	cursor: move;
	font-size: 13px;
	margin: 1px 7px;
	padding: 5px;
	text-align: center;
}
.fc-basic-view td.fc-week-number span {
	padding-right: 8px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}
.fc-basic-view td.fc-day-number {
	padding-right: 8px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

/*-----------------
	20. Profile
-----------------------*/

.card-box.profile-header {
	margin: 0;
}
.profile-details {
	text-align: center;
}
.personal-info li .title {
	color: #515365;
	float: left;
	font-weight: 500;
	margin-right: 30px;
	width: 30%;
}
.personal-info li .text {
	color: #888da8;
	display: block;
	overflow: hidden;
}
.personal-info li {
	margin-bottom: 10px;
}
.personal-info {
	list-style: none;
	margin-bottom: 0;
	padding: 0;
}
.personal-info .text > a {
	color: #404e67;
}
.profile-view .profile-img-wrap {
	height: 150px;
	width: 150px;
}
.profile-view .profile-img {
	width: 150px;
	height: 150px;
}
.profile-view .profile-img .avatar {
	font-size: 24px;
	height: 150px;
	line-height: 150px;
	margin: 0;
	width: 150px;
}
.profile-view .profile-basic {
	margin-left: 170px;
}
.staff-msg {
	margin-top: 30px;
}
.experience-box {
	position: relative;
}
.experience-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.experience-list:before {
	background: #ddd;
	bottom: 0;
	content: "";
	left: 8px;
	position: absolute;
	top: 8px;
	width: 2px;
}
.experience-list > li {
	position: relative;
}
.experience-list > li:last-child .experience-content {
	margin-bottom: 0;
}
.experience-user .avatar {
	height: 32px;
	line-height: 32px;
	margin: 0;
	width: 32px;
}
.experience-list > li .experience-user {
	background: #fff;
	height: 10px;
	left: 4px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 4px;
	width: 10px;
}
.experience-list > li .experience-content {
	background-color: #fff;
	margin: 0 0 20px 40px;
	padding: 0;
	position: relative;
}
.experience-list > li .experience-content .timeline-content {
	color: #9e9e9e;
}
.experience-list > li .experience-content .timeline-content a.name {
	color: #616161;
	font-weight: bold;
}
.experience-list > li .time {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 1.35;
}
.before-circle {
	background-color: #ddd;
	border-radius: 50%;
	height: 10px;
	width: 10px;
}
.skills > span {
	border: 1px solid #ccc;
	border-radius: 500px;
	display: block;
	margin-bottom: 10px;
	padding: 6px 12px;
	text-align: center;
}
.profile-info-left {
	border-right: 2px dashed #ccc;
}
.profile-tabs .nav-tabs {
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

/*-----------------
	21. Notifications
-----------------------*/

.notifications {
	padding: 0;
}
.notifications .drop-scroll {
	height: 290px;
	width: 400px;
}
.notifications.msg-noti .drop-scroll {
	width: 310px;
}
.notifications .notification-heading {
	margin: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.45;
	color: #616161;
}
.notifications .notification-time {
	font-size: 12px;
	line-height: 1.35;
	color: #bdbdbd;
}
.notification-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.notifications ul.notification-list > li {
	margin-top: 0;
	border-bottom: 1px solid #f5f5f5;
}
.notifications ul.notification-list > li:last-child {
	border-bottom: none;
}
.notifications ul.notification-list > li a {
	display: block;
	padding: 12px;
	border-radius: 2px;
}
.notifications ul.notification-list > li a:hover {
	background-color: #fafafa;
}
.drop-scroll {
	overflow-y: scroll;
	position: relative;
}
.topnav-dropdown-header {
	border-bottom: 1px solid #eee;
	text-align: center;
}
.topnav-dropdown-header,
.topnav-dropdown-footer {
	font-size: 18px;
    line-height: 32px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 5px;
    background: #f5f5f5;
}
.topnav-dropdown-header p {
    margin: 0 0 5px 0;
}
.topnav-dropdown-footer a {
	display: block;
	text-align: center;
	color: #333;
}
.user-menu.nav > li > a .badge {
	color: #fff;
	font-size: 60%;
	font-weight: 700;
	position: absolute;
	right: 3px;
	top: 6px;
}
.user-menu.nav > li > a > i {
	font-size: 16px;
	line-height: 55px;
}
.noti-details {
	color: #989c9e;
	margin: 0;
}
.noti-time {
	margin: 0;
}
.noti-title {
	color: #333;
}

/*-----------------
	22. Roles & Permissions
-----------------------*/

.roles-menu {
	margin-top: 20px;
}
.roles-menu > ul {
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.roles-menu > ul > li {
	display: block;
	position: relative;
}
.roles-menu > ul > li > a {
	border-left: 3px solid transparent;
	color: #333;
	display: block;
	padding: 10px 15px;
	position: relative;
}
.roles-menu > ul > li.active > a {
	border-color: #404e67;
	color: #404e67;
}
.roles-menu > ul > li > a:hover {
	border-color: #404e67;
	background-color: #eee;
}
.material-switch > input[type="checkbox"] {
	display: none;
}
.material-switch > label {
	cursor: pointer;
	height: 0px;
	position: relative;
	width: 40px;
}
.material-switch > label:before {
	background: rgb(0, 0, 0);
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	content: '';
	height: 16px;
	margin-top: -8px;
	position: absolute;
	opacity: 0.3;
	transition: all 0.4s ease-in-out;
	width: 40px;
}
.material-switch > label:after {
	background: rgb(255, 255, 255);
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	content: '';
	height: 24px;
	left: -4px;
	margin-top: -8px;
	position: absolute;
	top: -4px;
	transition: all 0.3s ease-in-out;
	width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label:before {
	background: inherit;
	opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label:after {
	background: inherit;
	left: 20px;
}
.role-action {
	display: none;
	float: right;
	position: absolute;
	right: 8px;
	top: 8px;
}
.roles-menu > ul > li:hover .role-action {
	display: block;
}
.slide-nav .sidebar {
	margin-left: 0;
}
.action-circle {
	background: transparent;
	border: 1px solid #ccc;
	border-radius: 100%;
	height: 20px;
	width: 20px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	transition: all 300ms ease;
}
.action-circle .material-icons {
	color: #ccc;
	font-size: 18px;
	vertical-align: -3px;
}
.action-circle.completed {
	background: #35BA67;
	border: 1px solid #2fa65c;
}
.action-circle.completed .material-icons {
	color: #fff;
}
.action-circle.large {
	height: 24px;
	width: 24px;
}
.action-circle.large .material-icons {
	font-size: 16px;
	vertical-align: -4px;
}
.sidebar-overlay {
	display: none;
	position: fixed;
	z-index: 9;
	height: 100%;
	left: 0;
	top: 60px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow: hidden;
}
.menu-opened .sidebar-overlay {
	display: block;
}
.sidebar-menu.opened {
	opacity: 1;
	transform: translateX(0px);
	margin-left: 0;
}
html.menu-opened {
	overflow: hidden;
}
html.menu-opened body {
	overflow: hidden;
}
.chat-profile-view.opened {
	margin-right: 0;
}
.menu-opened .message-view.chat-view {
	width: 100%;
}

/*-----------------
	23. Chat Right Sidebar
-----------------------*/

.fixed-header .custom-menu {
	margin: 1px 0 0;
}
.topnav-dropdown-footer {
	border-top: 1px solid #eee;
}
.notification-box {
	bottom: 0;
	margin-right: -300px;
	position: fixed;
	right: 0;
	top: 50px;
	transition: all 0.4s ease 0s;
	width: 300px;
	z-index: 101;
	border-left: 1px solid #ddd;
}
.open-msg-box .notification-box {
	margin-right: 0;
}
.msg-sidebar {
	background-color: #fff;
}
.list-box {
	list-style: none;
	padding-left: 0;
}
.list-item.new-message {
	background-color: rgba(0, 0, 0, 0.2);
}
.list-item {
	border-bottom: 1px solid #eaeaea;
	padding: 10px;
	position: relative;
}
.list-left {
	height: 48px;
	position: absolute;
	width: 48px;
}
.files-icon {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: inline-block;
	height: 38px;
	line-height: 38px;
	text-align: center;
	width: 38px;
}
.files-icon i {
	color: #777;
	font-size: 20px;
}
.list-body {
	padding: 0 0 0 50px;
}
.message-author {
	color: #333;
	float: left;
	font-weight: bold;
	width: 175px;
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.message-time {
	color: #888;
	float: right;
	font-size: 11px;
}
.message-content {
	color: #333;
	font-size: 13px;
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*-----------------
	24. Invoice
-----------------------*/

.invoice-details,
.invoice-payment-details > li span {
	float: right;
	text-align: right;
}
.attach-files > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.attach-files li {
	display: inline-block;
	margin-right: 10px;
	position: relative;
}
.attach-files li img {
	width: 50px;
}
.file-remove {
	color: #f00;
	position: absolute;
	right: -6px;
	top: -7px;
}
.attach-files li:last-child {
	margin-right: 0;
}
.inv-logo {
	height: auto;
	margin-bottom: 20px;
	max-height: 100px;
	width: auto;
}
.form-amt {
	border: 1px solid #fff;
}

/*-----------------
	25. Doctors
-----------------------*/

.doctor-img {
	cursor: pointer;
	height: 80px;
	margin: 0 auto 15px;
	position: relative;
	width: 80px;
}
.doctor-img .avatar {
	font-size: 24px;
	height: 80px;
	line-height: 80px;
	margin: 0;
	width: 80px;
}
.doc-prof {
	color: #777;
	font-size: 12px;
	margin-bottom: 10px;
}
.doctor-name {
	margin: 0;
}
.doctor-name a {
	color: #333;
}
.see-all {
	margin-top: 30px;
	text-align: center;
}
.see-all .see-all-btn {
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	color: #777;
	display: inline-block;
	padding: 10px 20px;
}

/*-----------------
	26. Add Doctor
-----------------------*/

.profile-upload {
	display: flex;
}
.upload-img {
	margin-right: 10px;
}
.upload-img img {
	border-radius: 4px;
	height: 40px;
	width: 40px;
}
.upload-input {
	width: 100%;
}
.gen-label {
	display: block;
	margin-bottom: 18px;
}
.submit-btn {
border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    min-width: auto;
    padding: 8px 30px;
    text-transform: uppercase;
}
.delete-modal .modal-body .btn {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	width: 90px;
	color: #333;
}
.delete-modal .modal-body .btn.btn-danger {
	color: #fff;
}
.delete-modal .modal-body > h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 15px 0 0;
}
.custom-badge {
	border-radius: 4px;
	display: inline-block;
	font-size: 12px;
	min-width: 65px;
	padding: 1px 10px;
	text-align: center;
}
.status-red,
a.status-red {
	background-color: #ffe5e6;
	border: 1px solid #fe0000;
	color: #fe0000;
}
.status-green,
a.status-green {
	background-color: #e5faf3;
	border: 1px solid #00ce7c;
	color: #00ce7c;
}
.status-orange,
a.status-orange {
	background-color: #fef5e4;
	border: 1px solid #ff9b01;
	color: #ff9b01;
}
.status-blue,
a.status-blue {
	background-color: #e5f3fe;
	border: 1px solid #008cff;
	color: #008cff;
}
.status-purple,
a.status-purple {
	background-color: #f3e7fd;
	border: 1px solid #8f13fd;
	color: #8f13fd;
}
.status-pink,
a.status-pink {
	background-color: #ffe5f6;
	border: 1px solid #ff01a2;
	color: #ff01a2;
}
.status-grey,
a.status-grey {
	background-color: #ddd;
	border: 1px solid #818181;
	color: #818181;
}
.btn-grey {
	background-color: #b2b2b2;
	border: 1px solid #b2b2b2;
}
.modal-backdrop {
	background-color: #fff;
}
.modal-backdrop.show {
	opacity: 0.9;
}
.invoices-view {
	width: 70%;
	float: right;
}

/*-----------------
	27. Payslip
-----------------------*/

.payslip-title {
	margin-bottom: 20px;
	text-align: center;
	text-decoration: underline;
	text-transform: uppercase;
}

/*-----------------
	28. Attendance
-----------------------*/

.half-day {
	width: 15px;
}

/*-----------------
	29. Inbox
-----------------------*/

.table-inbox input[type="radio"],
.table-inbox input[type="checkbox"] {
	cursor: pointer;
}
.mail-list {
	list-style: none;
	padding: 0;
}
.mail-list > li > a {
	color: #333;
	display: block;
	padding: 10px;
}
.mail-list > li.active > a {
	color: #404e67;
	font-weight: bold;
}
.unread .name,
.unread .subject,
.unread .mail-date {
	color: #000;
	font-weight: 600;
}
.table-inbox .fa-star {
	color: #ffd200;
}
.table-inbox .starred.fa-star {
	color: #ffd200;
}
.table.table-inbox > tbody > tr > td,
.table.table-inbox > tbody > tr > th,
.table.table-inbox > tfoot > tr > td,
.table.table-inbox > tfoot > tr > th,
.table.table-inbox > thead > tr > td,
.table.table-inbox > thead > tr > th {
	border-bottom: 1px solid #f2f2f2;
	border-top: 0;
}
.table-inbox {
	font-size: 14px;
	margin-bottom: 0;
}
.note-editor.note-frame {
	border: 1px solid #ccc;
	box-shadow: inherit;
}
.note-editor.note-frame .note-statusbar {
	background-color: #fff;
}
.note-editor.note-frame.fullscreen {
	top: 60px;
}
.mail-title {
	font-weight: bold;
	text-transform: uppercase;
}
.form-control.search-message {
	border-radius: 4px;
	margin-left: 5px;
	width: 180px;
	padding: 0.375rem 0.75rem;
	min-height: 35px;
	margin-bottom: 5px;
}
.table-inbox tr {
	cursor: pointer;
}
table.table-inbox tbody tr.checked {
	background-color: #ffffcc;
}
.mail-label {
	margin-right: 5px;
}

/*-----------------
	30. Mail View
-----------------------*/

.attachments {
	list-style: none;
	margin: 0;
	padding: 0;
}
.attachments li {
	border: 1px solid #eee;
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
	width: 200px;
}
.attach-file {
	color: #777;
	font-size: 70px;
	padding: 10px;
	text-align: center;
	min-height: 153px;
}
.attach-file > i {
	line-height: 133px;
}
.attach-info {
	background-color: #f4f4f4;
	padding: 10px;
}
.attach-filename {
	color: #777;
	font-weight: bold;
}
.attach-filesize {
	color: #999;
	font-size: 12px;
}
.attach-file img {
	height: auto;
	max-width: 100%;
}
.mailview-header {
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.mailview-footer {
	border-top: 1px solid #ddd;
	margin-top: 20px;
	padding-top: 15px;
}
.mailview-footer .btn-white {
	min-width: 102px;
}
.sender-img {
	float: left;
	margin-right: 10px;
	width: 40px;
}
.sender-name {
	display: block;
}
.receiver-name {
	color: #777;
}
.right-action {
	text-align: right;
}
.mail-view-title {
	font-weight: 500;
	font-size: 24px;
	margin: 0;
}
.mail-view-action {
	float: right;
}
.mail-sent-time {
	float: right;
}

/*-----------------
	31. Blog
-----------------------*/

.blog {
	position: relative;
	margin: 0 0 50px;
	background-color: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 4px;
	padding: 20px;
}
.blog-image {
	overflow: hidden;
}
.blog-image,
.blog-image > a,
.blog-image img {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.blog-image img {
	transform: scaleY(1);
	transition: all 0.5s ease-in-out 0s;
}
.blog-image a:hover img {
	transform: scale(1.1);
}
.blog-image {
	margin-bottom: 30px;
}
.blog-content {
	position: relative;
}
.blog-title {
	color: #000;
	font-weight: normal;
	margin: 0 0 20px;
}
.blog-content p {
	color: #282628;
	font-size: 14px;
	line-height: 25px;
	margin: 0 0 25px;
}
.read-more {
	color: #282628;
	display: inline-block;
	font-size: 14px;
	margin-bottom: 20px;
}
.read-more:hover {
	color: #404e67;
	margin-left: 10px;
	transition: all 0.2s linear 0s;
}
.read-more i {
	color: #404e67;
	font-size: 18px;
	margin-right: 3px;
}
.blog-info {
	border: 1px solid #eaeaea;
	color: #909090;
	font-size: 12px;
	margin-bottom: 0;
	padding: 12px 20px;
}
.blog-info a {
	color: #909090;
	margin-right: 5px;
}
.blog-info a:last-child {
	margin-right: 0;
}
.blog-info a:hover {
	color: #404e67;
	;
}
.blog-info i {
	color: #404e67;
	font-size: 18px;
	margin-right: 5px;
}
.post-left {
	float: left;
}
.post-right {
	float: right;
}
.post-left ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.post-left ul li {
	float: left;
	margin-right: 20px;
}
.post-left ul li:last-child {
	margin-right: 0;
}
.video {
	position: relative;
	padding-bottom: 56%;
	height: 0;
	overflow: hidden;
}
.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.widget {
	margin-bottom: 30px;
	background-color: #fff;
	padding: 20px;
	border: 1px solid #e7e7e7;
}
.widget h5 {
	color: #656565;
	font-size: 21px;
	font-weight: normal;
	margin: 0 0 20px;
}
.search-form .form-control {
	border: 1px solid #eaeaea;
	border-radius: 0;
	border-right: 0;
	box-shadow: inherit;
	height: 40px;
	color: #ababab;
}
.search-form .btn-primary {
	background-color: transparent;
	border-color: #eaeaea;
	border-left: none;
	color: #404e67;
	height: 40px;
	border-radius: 0;
}
.latest-posts {
	margin: 0;
	padding: 0;
}
.latest-posts li {
	display: table;
	width: 100%;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.latest-posts li:last-child {
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}
.post-thumb {
	width: 80px;
	float: left;
	overflow: hidden;
}
.post-thumb a img {
	transform: scale(1);
	transition: all 0.3s ease-in-out 0s;
}
.post-thumb a:hover img {
	transform: scale(1.2);
}
.post-info {
	margin-left: 95px;
}
.post-info h4 {
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	margin: 0 0 10px;
}
.post-info h4 a {
	color: #333;
}
.post-info p {
	color: #909090;
	font-size: 12px;
	margin: 0;
}
.post-info p i {
	color: #404e67;
	font-size: 16px;
	margin-right: 4px;
}
.categories {
	list-style: none;
	margin: 0;
	padding: 0;
}
.categories li {
	padding: 12px 0;
	border-bottom: 1px solid #eaeaea;
}
.categories li:last-child {
	padding-bottom: 0px;
	border-bottom: none;
}
.categories li a {
	color: #656565;
	font-size: 14px;
}
.categories li a:hover {
	color: #404e67;
	margin-left: 10px;
	transition: all 0.2s linear 0s;
}
.categories > li > a > i {
	color: #404e67;
	font-size: 18px;
	margin-right: 10px;
}
.tags {
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
}
.tags li {
	float: left;
}
.tag {
	background-color: #eee;
	border-radius: 3px 0 0 3px;
	color: #999;
	display: inline-block;
	height: 26px;
	line-height: 26px;
	padding: 0 20px 0 23px;
	position: relative;
	margin: 0 10px 10px 0;
	text-decoration: none;
	transition: color 0.2s;
	font-size: 12px;
}
.tag:before {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
	content: '';
	height: 6px;
	left: 10px;
	position: absolute;
	width: 6px;
	top: 10px;
}
.tag:after {
	background-color: #fff;
	border-bottom: 13px solid transparent;
	border-left: 10px solid #eee;
	border-top: 13px solid transparent;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
}
.tag:hover {
	background-color: #404e67;
	color: #fff;
}
.tag:hover:after {
	border-left-color: #404e67;
}
.comment-by {
	display: block;
	font-size: 14px;
	line-height: 21px;
	margin: 0 0 10px;
}
.comments-list .comment-block p {
	font-size: 13px;
	line-height: 20px;
	margin: 0;
	text-align: justify;
}
blockquote p {
	font-style: italic;
	font-weight: 400;
}
.grid-blog .blog-title {
	font-size: 16px;
	margin: 0 0 10px;
}
.grid-blog .blog-title a {
	color: #333;
}
.grid-blog .blog-content p {
	font-size: 13px;
	margin: 0 0 15px;
	color: #909090;
}
.grid-blog .blog-info {
	border: 0;
	border-top: 1px solid #eaeaea;
	margin-bottom: 0;
	padding: 12px 0;
}
.grid-blog .blog-image {
	margin-bottom: 20px;
}
.grid-blog .read-more {
	font-size: 13px;
	margin-bottom: 15px;
}
.product-thumbnail {
	position: relative;
	margin-bottom: 0;
	margin-top: 10px;
}
.product-remove {
	position: absolute;
	top: -10px;
	right: -6px;
	color: #f06060;
	cursor: pointer;
}
.bootstrap-tagsinput {
	width: 100%;
	height: 40px;
	box-shadow: inherit;
	border-radius: 0;
	line-height: 30px;
}
.bootstrap-tagsinput .badge [data-role="remove"]:hover {
	box-shadow: inherit;
	color: #f00;
}

/*-----------------
	32. Blog View
-----------------------*/

.blog-view .blog-title {
	font-size: 32px;
}
.blog-view .blog-info {
	border: 0 none;
	margin-bottom: 20px;
	padding: 0;
}
.social-share {
	float: left;
	list-style: none;
	margin: 5px 0 0;
	padding: 0;
}
.social-share > li {
	display: inline-block;
	float: left;
	margin-left: 10px;
	text-align: center;
}
.social-share > li:first-child {
	margin-left: 0;
}
.social-share > li > a {
	border: 1px solid #dfdfdf;
	color: #404e67;
	display: inline-block;
	font-size: 22px;
	height: 40px;
	line-height: 40px;
	width: 40px;
}
.social-share > li > a:hover {
	background-color: #404e67;
	color: #fff;
	border-color: #404e67;
}
.widget h3 {
	color: #656565;
	font-size: 21px;
	margin: 0 0 20px;
}
.blog-reply > a {
	color: #404e67;
	font-size: 12px;
	font-weight: 500;
}
.blog-date {
	color: #999;
	font-size: 12px;
}
.comments-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.comments-list li {
	clear: both;
	padding: 10px 0 0 88px;
}
.comments-list li .comment {
	margin-bottom: 30px;
}
.comments-list li .comment-author {
	margin-left: -88px;
	position: absolute;
}
.comments-list li img.avatar {
	height: 58px;
	width: 58px;
	border-radius: 58px;
}
.blog-author-name {
	color: #404e67;
	font-size: 18px;
}
.text-red {
	color: #f00;
}
.new-comment label {
	font-size: 14px;
	font-weight: 500;
}
.new-comment input.form-control {
	border: 1px solid #e5e5e5;
	border-radius: 0;
	box-shadow: inherit;
	height: 40px;
}
.new-comment textarea.form-control {
	border: 1px solid #e5e5e5;
	border-radius: 0;
	box-shadow: inherit;
}
.new-comment .form-group {
	margin-bottom: 20px;
}
.comment-submit .btn {
	background-color: #404e67;
	border-color: #404e67;
	border-radius: 0;
	font-size: 18px;
	padding: 8px 26px;
	color: #fff;
}
.about-author-img {
	background-color: #fff;
	height: 120px;
	overflow: hidden;
	position: absolute;
	width: 120px;
}
.author-details {
	margin-left: 145px;
}
.about-author {
	min-height: 120px;
}
.author-details .blog-author-name {
	display: inline-block;
	margin-bottom: 10px;
}
.blog-navigation {
	text-align: right;
}

/*-----------------
	33. UI Kit
-----------------------*/

.pagination-box .pagination {
	margin-top: 0;
}
.tab-content {
	padding-top: 20px;
}

/*-----------------
	34. Error
-----------------------*/

.error-box {
	background-color: #fff;
	border-radius: 5px;
	line-height: 1;
	margin: 0 auto;
	max-width: 475px;
	padding: 50px 30px 55px;
	text-align: center;
	width: 100%;
}
.error-heading {
	font-size: 3.5em;
	font-weight: bold;
}
.error-title {
	color: #2c2c2c;
	font-size: 22px;
	font-weight: normal;
	margin: 0 0 1.5rem;
}
.error-wrapper {
	background-color: #fff;
	margin: 0;
	color: #4F5155;
	-moz-box-align: center;
	-moz-box-pack: center;
	align-items: center;
	display: flex;
	justify-content: center;
	height: 100%;
}
.error-box h1 {
	font-size: 150px;
}
.error-box p {
	margin-bottom: 30px;
}
.error-box .btn {
	text-transform: uppercase;
}

/*-----------------
	35. Lock Screen
-----------------------*/

.lock-user {
	margin-bottom: 20px;
}
.lock-user img {
	margin-bottom: 15px;
	width: 100px;
}

/*-----------------
	36. Voice call
-----------------------*/

.voice-call-avatar {
	flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 2;
}
.voice-call-avatar .call-avatar {
	margin: 15px;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 3px;
	background-color: #fff;
}
.call-duration {
	display: inline-block;
	font-size: 30px;
	margin-top: 4px;
	position: absolute;
	left: 0;
}
.voice-call-avatar .call-timing-count {
	padding: 5px;
}
.voice-call-avatar .username {
	font-size: 18px;
	text-transform: uppercase;
}
.call-icons {
	text-align: center;
	position: relative;
}
.call-icons .call-items {
	border-radius: 5px;
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.call-icons .call-items .call-item {
	display: inline-block;
	text-align: center;
	margin-right: 5px;
}
.call-icons .call-items .call-item:last-child {
	margin-right: 0;
}
.call-icons .call-items .call-item a {
	color: #777;
	border: 1px solid #ddd;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	display: inline-block;
	font-size: 20px;
}
.call-icons .call-items .call-item a i {
	width: 18px;
	height: 18px;
}
.user-video {
	bottom: 0;
	left: 0;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}
.user-video img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
.user-video video {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
.my-video {
	position: absolute;
	z-index: 99;
	bottom: 20px;
	right: 20px;
}
.my-video ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.my-video ul li {
	float: left;
	width: 120px;
	margin-right: 10px;
}
.my-video ul li img {
	border: 3px solid #fff;
	border-radius: 6px;
}
.end-call {
	position: absolute;
	top: 7px;
	right: 0;
}
.end-call a {
	color: #fff;
	border-radius: 50px;
	display: inline-block;
	background-color: #f06060;
	padding: 8px 25px;
	text-transform: uppercase;
}
.call-users {
	position: absolute;
	z-index: 99;
	bottom: 20px;
	right: 20px;
}
.call-users ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.call-users ul li {
	float: left;
	width: 80px;
	margin-left: 10px;
}
.call-users ul li img {
	border-radius: 6px;
	padding: 2px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.call-mute {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	display: inline-block;
	text-align: center;
	line-height: 80px;
	border-radius: 6px;
	font-size: 30px;
	color: #fff;
	display: none;
	top: 0;
	border: 3px solid transparent;
}
.call-users ul li a:hover .call-mute {
	display: block;
}
.call-details {
	margin: 10px 0 0px;
	display: flex;
}
.call-info {
	margin-left: 10px;
	width: 100%;
}
.call-user-details,
.call-timing {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.call-description {
	white-space: nowrap;
	vertical-align: bottom;
}
.call-timing {
	color: #a0a0a2;
	display: flex;
	font-size: 14px;
	margin-top: 1px;
	overflow: hidden;
	white-space: pre;
}

/*-----------------
	37. Video Call
-----------------------*/

.content-full {
	height: 100%;
	position: relative;
	width: 100%;
}
.video-window .fixed-header {
	padding: 0;
	border: 0;
}
.video-window .fixed-header .nav > li > a {
	padding: 19px 15px;
}

/*-----------------
	38. Incoming Call
-----------------------*/

.incoming-btns {
	margin-top: 20px;
}
.modal.custom-modal {
	background-color: #f5f5f5;
}
.custom-modal .modal-content {
	border: 0;
	background-color: transparent;
}
.custom-modal .profile-widget {
	margin-bottom: 0;
}

/*-----------------
	39. Notification settings
-----------------------*/

.notification-list .list-group-item {
	padding: 15px;
}

/*-----------------
	40. Chat Sidebar
-----------------------*/

.chat-sidebar {
	background-color: #fff;
	border-left: 1px solid #eaeaea;
	width: 300px;
}
.chat-sidebar .chat-contents {
	background-color: #fff;
}
.chat-sidebar .chat-left .chat-content {
	border: 0;
	padding: 0;
	border-radius: 0 !important;
	background-color: transparent;
	max-width: 100%;
}
.chat-sidebar .chat-left .chat-body {
	margin-left: 50px;
	padding-right: 0;
}
.chat-sidebar .chat-date {
	background-color: #fff;
}
.chat-sidebar .chats {
	padding: 15px 15px 30px;
}
.chat-sidebar .avatar {
	width: 30px;
	height: 30px;
	line-height: 30px;
}
.chat-sidebar .chat.chat-left {
	margin-bottom: 20px;
}
.chat-sidebar .chat.chat-left:last-child {
	margin-bottom: 0;
}
.chat-sidebar .chat-left .chat-time {
	color: #888;
	display: inline-block;
	font-size: 11px;
}
.chat-sidebar .chat-content > p {
	font-size: 13px;
	margin-bottom: 0;
}
.chat-sidebar.opened {
	margin-right: 0;
}


/* input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
} */

/*-----------------
	41. Gallery
-----------------------*/

.lg-backdrop {
	z-index: 1041;
}
#lightgallery .img-thumbnail {
	box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
}


	 .account-box1 {
    background-color:#000000a3;
    margin: 0 auto;
    padding: 0px;
    box-shadow: 10px 10px 0px #ffffff24;
    width: 700px;
    border-radius: 4px;
    border: #ffffff4a solid 1px;
}
.account-box1 .account-btn {
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
    padding: 10px 35px;
    background: #ffcf5b;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.lg_form_f.reset_ppsd h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.lg_form_f.reset_ppsd h4 {
    text-align: left;
    color: #fff;
    font-size: 24px;
}
.lg_form_f.reset_ppsd p {
    text-align: left;
    margin-bottom: 5px;
    font-size: 18px;
    color: #fff;
}

/*-----------------
	42. Responsive
-----------------------*/

@media (width:1024px){
.Succes {width:80%;}
.nav-tabs.tbs_all .nav-link.ad_with {padding:11px 0px 11px 40px;font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.ad_with:hover {padding:11px 0px 11px 40px !important; font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.active.ad_with{background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-item {width: 31%;}
.table {white-space: nowrap;}
.user_n {
    float: left;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
}
.usr_cn h1 {
    font-size: 18px;
}

.usr_cn {
    float: left;
    margin-left: 15px;
    margin-top: 0px;
    margin-bottom: 20px;
    width: 70%;
}
	.nav-tabs.tbs_all .nav-link.ad_with.auto_w {padding:4px 6px;}
	.nav-tabs.tbs_all .nav-link.ad_with.auto_w:hover {padding:4px 6px !important;}
	.usr_ls {padding:7px 0 0;}

.ftr_btm {
    background: #fff;
    padding: 25px;
    width: 75%;
    position: relative;
    right: -24%;
    bottom: 0;
}

}

@media only screen and (min-width: 991px) {
	#toggle_btn {
		color: #333;
		float: left;
		font-size: 20px;
		line-height: 50px;
		padding: 0 10px;
	}
	#toggle_btn i {
    font-size: 27px;
    position: relative;
    top: 2px;
}
	.mini-sidebar .header-left .logo span {
		display: none;
	}
	.mini-sidebar .header .header-left {
		padding: 0 5px;
		width: 60px;
	}
	.mini-sidebar .sidebar {
		width: 60px;
	}
	.mini-sidebar.expand-menu .sidebar {
		width: 270px;
	}
	.mini-sidebar .menu-title {
		visibility: hidden;
		white-space: nowrap;
	}
	.mini-sidebar.expand-menu .menu-title {
		visibility: visible;
	}
	.modal-open .mini-sidebar .sidebar {
		z-index: 1051;
	}
	.mini-sidebar .sidebar .sidebar-menu ul > li > a span {
		display: none;
		transition: all 0.2s ease-in-out;
		opacity: 0;
	}
	.mini-sidebar.expand-menu .sidebar .sidebar-menu ul > li > a span {
		display: inline;
		opacity: 1;
	}
	.mini-sidebar .page-wrapper {
		margin-left: 60px;
	}
}
@media only screen and (min-width: 768px) {
	.modal-md {
		width: 500px;
	}
	.nav-tabs.nav-justified.nav-tabs-top {
		border-bottom: 1px solid #ddd;
	}
	.nav-tabs.nav-justified.nav-tabs-top > li > a,
	.nav-tabs.nav-justified.nav-tabs-top > li > a:hover,
	.nav-tabs.nav-justified.nav-tabs-top > li > a:focus {
		border-width: 2px 0 0 0;
	}
	.nav-tabs.nav-tabs-top > li {
		margin-bottom: 0;
	}
	.nav-tabs.nav-tabs-top > li > a,
	.nav-tabs.nav-tabs-top > li > a:hover,
	.nav-tabs.nav-tabs-top > li > a:focus {
		border-width: 2px 0 0 0;
	}
	.nav-tabs.nav-tabs-top > li + li > a {
		margin-left: 1px;
	}
	.nav-tabs.nav-tabs-top > li > a.active,
	.nav-tabs.nav-tabs-top > li > a.active:hover,
	.nav-tabs.nav-tabs-top > li > a.active:focus {
		border-top-color: #404e67;
	}
	.nav-tabs.nav-tabs-bottom > li {
		margin-bottom: -1px;
	}
	.nav-tabs.nav-tabs-bottom > li > a.active,
	.nav-tabs.nav-tabs-bottom > li > a.active:hover,
	.nav-tabs.nav-tabs-bottom > li > a.active:focus {
		border-bottom-width: 2px;
		border-color: transparent;
		border-bottom-color: #404e67;
		background-color: transparent;
		transition: none 0s ease 0s;
		-moz-transition: none 0s ease 0s;
		-o-transition: none 0s ease 0s;
		-ms-transition: none 0s ease 0s;
		-webkit-transition: none 0s ease 0s;
	}
	.nav-tabs.nav-tabs-bottom > li {
		margin-bottom: -1px;
	}
	.nav-tabs.nav-tabs-bottom > li > a.active,
	.nav-tabs.nav-tabs-bottom > li > a.active:hover,
	.nav-tabs.nav-tabs-bottom > li > a.active:focus {
		border-bottom-width: 2px;
		border-color: transparent;
		border-bottom-color: #404e67;
		background-color: transparent;
		transition: none 0s ease 0s;
		-moz-transition: none 0s ease 0s;
		-o-transition: none 0s ease 0s;
		-ms-transition: none 0s ease 0s;
		-webkit-transition: none 0s ease 0s;
	}
	.nav-tabs.nav-tabs-solid {
		background-color: #fafafa;
		border: 0;
	}
	.nav-tabs.nav-tabs-solid > li {
		margin-bottom: 0;
	}
	.nav-tabs.nav-tabs-solid > li > a {
		border-color: transparent;
	}
	.nav-tabs.nav-tabs-solid > li > a:hover,
	.nav-tabs.nav-tabs-solid > li > a:focus {
		background-color: #f5f5f5;
	}
	.nav-tabs.nav-tabs-solid > .open:not(.active) > a {
		background-color: #f5f5f5;
		border-color: transparent;
	}
	.nav-tabs-justified.nav-tabs-top {
		border-bottom: 1px solid #ddd;
	}
	.nav-tabs-justified.nav-tabs-top > li > a,
	.nav-tabs-justified.nav-tabs-top > li > a:hover,
	.nav-tabs-justified.nav-tabs-top > li > a:focus {
		border-width: 2px 0 0 0;
	}
}
@media only screen and (max-width: 1199.98px) {
	.invoices-view {
		width: 90%;
		float: right;
	}
}
@media only screen and (max-width: 991.98px) {
	.profile-rightbar {
		display: inline-block !important;
	}
	.chat-profile-view {
		display: none;
		transition: all 0.4s ease;
		right: 0;
		transform: translateX(0px);
		z-index: 1041;
		width: 300px;
		position: fixed;
		margin-right: -300px;
		display: table-cell;
		top: 0;
		padding-bottom: 60px;
		margin-top: 50px;
	}
	.message-view.chat-view {
		width: 100%;
	}
	.slide-nav .page-wrapper {
		left: 225px;
		margin-left: 0;
	}
	.chat-main-row {
		left: 0;
	}
	.header .header-left {
		position: absolute;
		width: 100%;
		        float: inherit;
        padding-bottom: 15px;
	}
	.mobile_btn {
		display: block;
	}
	.page-title-box {
		display: none;
	}
	.sidebar {
		margin-left: -225px;
		width: 225px;
	}
	.page-wrapper {
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.slide-nav .sidebar {
		margin-left: 0;
	}
	a.mobile_btn {
		    color: #0072bc;
    font-size: 35px;
    height: 50px;
    left: 0px;
    line-height: 50px;
    padding: 0 20px;
    position: absolute;
    top: 28px;
    width: 60px;
    z-index: 10;
	}
	.slide-nav .page-wrapper {
		left: 225px;
		margin-left: 0;
	}
	.invoices-view {
		width: 100%;
		float: none;
	}
	#toggle_btn {
		display: none;
	}
	.sidebar {
		transition: all 0.4s ease;
	}
	.page-wrapper {
		transition: all 0.4s ease;
	}
}

@media only screen and (width: 768px) {
a.logo.show_no {display:inline-flex !important;}
		.Succes {width:80%;}
	.nav-tabs.tbs_all .nav-item {width: 31%;}


	.table {white-space: nowrap;}

	.ftr_btm {
    background: #fff;
    padding: 25px;
    width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
}
.user_n {
    float: left;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
}
.usr_cn h1 {
    font-size: 18px;
}

.usr_cn {
    float: left;
    margin-left: 15px;
    margin-top: 0px;
    margin-bottom: 20px;
    width: 70%;
}
	.nav-tabs.tbs_all .nav-link.ad_with.auto_w {padding:6px 8px;}
	.nav-tabs.tbs_all .nav-link.ad_with.auto_w:hover {padding:6px 8px !important;}
	.usr_ls {padding:7px 0 0;}

	.desk_top{display:block !important;}
	.mini-sidebar .show_no {display: block;}
	.img_ful {width:35%;}
	.user-menu.nav > li > a { color: #ffffff;}
	.account-box {width: 700px;}
	.account-logo {padding: 60px 25px 60px 25px;}
	.merg_bx {padding: 45px 25px 20px 0px;}
	.account-box1 .merg_bx {padding: 45px 25px 20px 25px;}
}


.desk_top{display:none;}
.mb_top{display:block;}
.mini-sidebar .sb2-12 {display: none;}
.show_ck{display:none;}

.mini-sidebar .show_ck{display:block;}
.mini-sidebar .show_no{display:none;}
.mini-sidebar .show_ck img {width: 42%;  position: relative; top:6px;}

a.vd_all {
    background: #404e67;
    padding: 3px 10px;
    color: #fff;
    font-weight: 500;
    font-size: 11px;
    border-radius: 3px;
}



@media only screen and (max-width: 767.98px) {
	.dash_bx_areaa a.btn_yl {position: relative; bottom: 0px;}
	.dash_bx_areaa img.btm_mgss {width: 30%;}
	.bnr_araeas span.ov_txt {font-size: 19px; align-items: center; justify-content: center; padding-left: 0;}


/* 	.CustomePagination .ngx-pagination li {padding: 5px 0px !important;} */
	.ngx-pagination {padding: 0 !important;}

	.pxP.mb_view_sp {padding: 0 !important;}
    .dash_bx_areaa.usrss__lis.mb_view_mngs {padding: 15px 0; margin: 0;}
	.dash_bx_areaa.usrss__lis .col-md-4 .btn-group {display: inline-block;}
	.mini-sidebar .show_no {display: block;}
	.mb_top{display:none;}
	.desk_top{display:block;}
	.mb_none{display:none;}
	.offset-6 {margin-left: 0;}
	.m-b-20 {margin-bottom: 0px !important;}
	.btn_mb{padding:3px 5px !important; font-size:12px !important; display: initial;
    white-space: nowrap; width: 100%; overflow: hidden; text-overflow: ellipsis;}
	.account-logo {padding:25px 20px 25px 20px; border-radius:10px 10px 0 0px;}
	.merg_bx {padding: 20px;}
	.mb_none{display:none;}
	.list-act-hom ul li img {margin-bottom: 10px;}
	.title-number{margin: 5px 10px 0px 35px !important;}
	.table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th {white-space: nowrap;}
	.table > tbody > tr > td {white-space:pre-wrap !important;}
	.offset-7{display:contents;}
	.ftr_btm {width:100%; text-align: center; left: 0;}
	.img_ful {width: 60%;}
	.mb_tc {text-align: center !important;}
	.table thead th {white-space: nowrap;}

	.list-act-hom ul li h4 {
    display: block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 	.steps ul .current .title-number {position: relative; left: -45px;}
	.title-number {position: relative; right: -30px;} */

	#progressbar li {font-size: 13px !important;}
	#progressbar {padding: 0px 0 5px 0 !important;}
	#msform fieldset {padding:20px 20px !important;}

	.bgr_stse {padding:20px 25px 25px 25px;}
	.profile-info-left {
		border-right: none;
		border-bottom: 2px dashed #ccc;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.navbar-nav .open .dropdown-menu {
		float: left;
		position: absolute;
	}
	.notifications {
		right: -48px;
	}
	.notifications:before,
	.notifications:after {
		right: 60px;
	}
	.modal-body.card-box {
		background-color: #fff;
		border: none;
		border-radius: inherit;
		box-shadow: unset;
		margin-bottom: 0;
		padding: 15px;
	}
	.roles-menu {
		margin-bottom: 20px;
	}
	.left-action {
		text-align: center;
		margin-bottom: 15px;
	}
	.right-action {
		text-align: center;
	}
	.top-action-left .float-left {
		float: none !important;
	}
	.top-action-left .btn-group {
		margin-bottom: 15px;
	}
	.top-action-right {
		text-align: center;
	}
	.top-action-right a.btn.btn-white {
		margin-bottom: 15px;
	}
	.mail-sent-time {
		float: left;
		margin-top: 10px;
		width: 100%;
	}
	.nav-tabs.nav-justified {
		border-bottom: 1px solid #ddd;
	}
	.nav-tabs.nav-justified > li > a.active,
	.nav-tabs.nav-justified > li > a.active:hover,
	.nav-tabs.nav-justified > li > a.active:focus {
		border-color: transparent transparent transparent #404e67;
		border-left-width: 2px;
	}
	.nav-tabs {
		border-bottom: 0;
		position: relative;
		background-color: #fff;
		padding: 5px 0;
		border: 1px solid #ddd;
		border-radius: 3px;
	}
	.nav-tabs .nav-item {
		margin-bottom: 0;
	}
	.nav-tabs > li > a {
		border-width: 2px;
		border-left-color: transparent;
	}
	.nav-tabs .nav-link {
		border-width: 2px;
	}
	.nav-tabs > li > a:hover,
	.nav-tabs > li > a:focus {
		background-color: #fafafa;
	}
	.nav-tabs .nav-item.show .nav-link,
	.nav-tabs .nav-link.active,
	.nav-tabs > li > a.active,
	.nav-tabs > li > a.active:hover,
	.nav-tabs > li > a.active:focus {
		background-color: #f5f5f5;
		border-color: transparent transparent transparent #404e67;
		border-left-width: 2px;
	}
	.nav-tabs > li.open:not(.active) > a,
	.nav-tabs > li.open:not(.active) > a:hover,
	.nav-tabs > li.open:not(.active) > a:focus {
		background-color: #fafafa;
	}
	.nav-tabs.nav-tabs-solid {
		padding: 5px;
	}
	.nav-tabs.nav-tabs-solid.nav-tabs-rounded {
		border-radius: 5px;
	}
	.nav-tabs.nav-tabs-solid > li > a {
		border-left-width: 0!important;
	}
	.nav-tabs-justified {
		border-bottom: 1px solid #ddd;
	}
	.nav-tabs-justified > li > a.active,
	.nav-tabs-justified > li > a.active:hover,
	.nav-tabs-justified > li > a.active:focus {
		border-width: 0 0 0 2px;
		border-left-color: #404e67;
	}
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.17em;
	}
	h4 {
		font-size: 1.12em;
	}
	h5 {
		font-size: .83em;
	}
	h6 {
		font-size: .75em;
	}
	.page-title {
		font-size: 1.2em;
		padding-top: 2px;
		display: block;
    white-space: nowrap; width: 100%; overflow: hidden; text-overflow: ellipsis;
	}
	.card-title {
		font-size: 1.12em;
	}
	.blog-view .blog-title {
		font-size: 24px;
	}
	.widget h3 {
		font-size: 18px;
	}
	.my-video ul li {
		width: 80px;
	}
	.voice-call-avatar .call-avatar {
		width: 120px;
		height: 120px;
	}
	.table-responsive {
		display: block;
		width: 100%;
		overflow-x: auto;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.header .has-arrow .dropdown-toggle > span:nth-child(2) {
		display: none;
	}
	.header .has-arrow .dropdown-toggle:after {
		display: none;
	}
	.btn-white {
		margin: 0px;
	}
}

    @media (min-width:411px) and (max-width:420px){
		span.hedddinggs {left: 87px !important;}
	}


@media only screen and (max-width: 575.98px) {
	.dash_bx_areaa {padding: 15px; min-height: auto;}

	a.logo.show_no img {width: 42%; position: relative; top: 5px; left: -30px;}
	span.hedddinggs {font-size: 7px; top: 38px; left: 63px; z-index: 2;}

    .user-menu .usereees {top:-10px;  max-width: 160px;}
	.header .user-img img {width: 35px; height: 35px;}
	.user-menu .usereees .lft_cntsss p {font-size: 12px; height: 24px; position: relative; top: 5px;}
	.user-menu .usereees .lft_cntsss p span {white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 30%; position: absolute; margin: 0px 0 0px 5px;}
	.user-menu .usereees .lft_cntsss span.date_areass {font-size: 10px;}
	a.mobile_btn{top:5px;}
	.dropdown.mobile-user-menu.float-right {display: none;}
	.header{padding-top:0; display: contents;}
	.bnr_araeas{margin-bottom:20px;}
	.dash_bx_areaa {margin-bottom: 20px;}
	.main-wrapper .page-wrapper{padding-top:40px;}
	ul.nav.user-menu.float-right .dropdown-menu.show {top:0px !important;}

	.post.card_bxx {padding: 15px;}
	.post.card_bxx .und_bx_areaaa .inp_area_bx {padding: 15px 15px;}
	.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label.lbl{height:auto;}
	label.manageApplicationFormFiledHeight {min-height: 20px !important;}
	.rd_area_sltss .radio {padding-left: 0; margin-top: 10px !important; width: 100%;}
    .post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button {padding: 10px 7px 10px 7px; width: 46%; margin-top: 10px;}
	 .post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button.btn-primary{color:#fff !important;}
	 .post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label.lbl {display: block;}
	 .post.card_bxx button.btn.btn-secondary {position: absolute; top: 0; right: 15px; background: #004088; color: #fff; font-size: 50px; font-weight: 200;  padding: 0; height: 30px;
    line-height: 30px;}

	.ftr_btm{font-size:14px; margin: 0;}

	.contact-cat {
		padding-right: 70px;
	}
	.user-menu {
		display: block;
	}
	.mobile-user-menu {
		display: block;
	}
	.search-box {
		display: none;
	}
	.filter-row {
		margin-bottom: 15px;
	}
	.page-wrapper > .content {
		padding: 15px;
	}
	.profile-view .profile-basic {
		margin-left: 0;
	}
	.profile-img-wrap {
		position: relative;
		margin: 0 auto;
	}
	.profile-view .profile-img-wrap {
		margin: 0 auto 10px;
		height: 100px;
		width: 100px;
	}
	.profile-view .profile-img {
		height: 100px;
		width: 100px;
	}
	.profile-view .profile-img .avatar {
		font-size: 24px;
		height: 100px;
		line-height: 100px;
		margin: 0;
		width: 100px;
	}
	.profile-info-left {
		text-align: center;
	}
	.profile-basic {
		margin-left: 0;
		margin-top: 15px;
	}
	.page-title {
		font-size: 18px;
	}
	.fc-toolbar .fc-right {
		display: inline-block;
		float: none;
		margin: 10px auto 0;
		width: 200px;
		clear: both;
	}
	.fc-toolbar .fc-left {
		float: none;
		margin: 0 auto;
		width: 200px;
	}
	.upload-text {
		font-size: 18px;
	}
	.call-duration {
		display: block;
		margin-top: 0;
		margin-bottom: 10px;
		position: inherit;
	}
	.end-call {
		margin-top: 10px;
		position: inherit;
	}
	.chat-right .chat-content {
		max-width: 90%;
	}
	.chat-right .chat-body {
		padding-left: 0;
		padding-right: 0;
	}
	.chat-left .chat-content {
		max-width: 90%;
	}
	.chat-left .chat-body {
		padding-left: 0;
		padding-right: 0;
	}
	.chat-avatar .avatar {
		height: 20px;
		line-height: 20px;
		width: 20px;
	}
	.account-box {
		width: 100%;
		margin-bottom: 20px;
	}
	.content {
		padding: 0 0px;
	}
	.custom-menu.navbar-nav > li > a {
		margin-left: 10px;
	}
	.error-box h1 {
		font-size: 50px;
	}
	.submit-btn {
		min-width: 150px;
	}
	.ui-kit-wrapper button {
		margin-bottom: 5px;
	}
	.pagination > li > a,
	.pagination > li > span {
		padding: .5rem !important;
	}
}
@media only screen and (max-width: 479px) {
	.compose-btn button {
		padding: 0.365rem 0.5rem;
	}
	.attachments li {
		float: none;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 10px;
	}
}
	 .post.card_bxx button.btn.btn-secondary {position: absolute; top: 0; right: 15px; background: #004088; color: #fff; font-size: 50px; font-weight: 200;  padding: 0; height: 30px;
    line-height: 30px;}

@media (min-width: 481px) and (max-width: 767px) {
	span.hedddinggs {font-size: 8px; top: 38px; z-index: 2; left: 153px;}

	.sidebar {top:60px; padding:10px 20px 30px;}
	a.logo.show_no img {width: 42%; position: relative; top: 5px; left: 0;}
    .user-menu .usereees {top: -10px; max-width: 190px;}
	.header .user-img img {width: 35px; height: 35px;}
		.user-menu .usereees .lft_cntsss p {font-size: 12px; height: 24px; position: relative; top: 5px;}
	.user-menu .usereees .lft_cntsss p span {white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 30%; position: absolute; margin: 0px 0 0px 5px;}
	.user-menu .usereees .lft_cntsss span.date_areass {font-size: 10px;}
	a.mobile_btn{top:5px;}
	.dropdown.mobile-user-menu.float-right {display: none;}
	.header{padding-top:0;}
	.bnr_araeas{margin-bottom:20px;}
	.dash_bx_areaa {margin-bottom: 20px;}
	.main-wrapper .page-wrapper{padding-top:64px;}
	ul.nav.user-menu.float-right .dropdown-menu.show {top:5px !important;}


	.post.card_bxx {padding: 15px;}
	.post.card_bxx .und_bx_areaaa .inp_area_bx {padding: 15px 15px;}
	.post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label.lbl{height:auto;}
	label.manageApplicationFormFiledHeight {min-height: 20px !important;}
	.rd_area_sltss .radio {padding-left: 0; margin-top: 10px !important; width: 100%;}
    .post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button {padding: 10px 7px 10px 7px; width: 46%; margin-top: 10px;}
	 .post.card_bxx .und_bx_areaaa .inp_area_bx button.bnt_button.btn-primary{color:#fff !important;}
	 .post.card_bxx .und_bx_areaaa .inp_area_bx .form-group label.lbl {display: block;}



section.assignment-wrapper .container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
a.logo.show_no {display:inline-flex !important;}
.account-box1 {width: auto;}
.lg_form_f.reset_ppsd h1 {margin-bottom: 20px;}
.lg_form_f.reset_ppsd h4 {font-size: 20px;}
.lg_form_f.reset_ppsd p {font-size: 15px;}


.Succes {width: 100%;}
ul.nav.nav-tabs.tbs_all {display:flex; width:100%; overflow-x:scroll; overflow-y:hidden; white-space:nowrap; padding:0; flex-wrap:inherit;}
.nav-tabs.tbs_all .nav-item {width: 33%;}
.nav-tabs.tbs_all .nav-link.ad_with {padding: 11px 0px 11px 28px;font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.ad_with:hover {padding: 11px 0px 11px 28px !important; font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.active.ad_with{background-size: 28% 45% !important;}
.blkcol_cn {padding: 0 20px;}

.nav-tabs.tbs_all .nav-link.ad_with.auto_w {padding:6px 8px;}
.nav-tabs.tbs_all .nav-link.ad_with.auto_w:hover {padding:6px 8px !important;}
.usr_ls {padding:12px 0 0;}
.nav-tabs.tbs_all .nav-link.active.ad_with{background-size: 28% 45% !important;}
}

@media (min-width: 320px) and (max-width: 480px) {
.sidebar {top:60px; padding:5px 5px 30px;}


	section.assignment-wrapper .container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
a.logo.show_no {display:inline-flex !important;}
.account-box1 {width: auto;}
.lg_form_f.reset_ppsd h1 {margin-bottom: 20px;}
.lg_form_f.reset_ppsd h4 {font-size: 20px;}
.lg_form_f.reset_ppsd p {font-size: 15px;}

.Succes {width: 100%;}
ul.nav.nav-tabs.tbs_all {display:flex; width:100%; overflow-x:scroll; overflow-y:hidden; white-space:nowrap; padding:0; flex-wrap:inherit;}
.nav-tabs.tbs_all .nav-item {width: 33%;}
.nav-tabs.tbs_all .nav-link.ad_with {padding: 11px 0px 11px 28px;font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.ad_with:hover {padding: 11px 0px 11px 28px !important; font-size: 12px; background-size: 28% 45% !important;}
.nav-tabs.tbs_all .nav-link.active.ad_with{background-size: 28% 45% !important;}
.blkcol_cn {padding: 0 20px;}


.nav-tabs.tbs_all .nav-link.ad_with.auto_w {padding:6px 8px;}
.nav-tabs.tbs_all .nav-link.ad_with.auto_w:hover {padding:6px 8px !important;}
.usr_ls {padding:5px 0 0;}
}



span.owl-nav-label {
    color: transparent !important;
    background: none !important;
}



article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    margin: 0;
}
a {
    background: transparent;
}
a:focus {
    outline: thin dotted;
}
a:active,
a:hover {
    outline: 0;
}
h1 {
    margin: 0.67em 0;
    font-size: 2em;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
hr {
    height: 0;
    box-sizing: content-box;
}
mark {
    color: #000;
    background: #ff0;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: "\201C""\201D""\2018""\2019";
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
fieldset {
    padding: 0.35em 0.625em 0.75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}
legend {
    padding: 0;
    border: 0;
}
button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: 100%;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    box-sizing: border-box;
}
input[type="search"] {
    box-sizing: content-box;
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@media print {
    * {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 2cm 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    select {
        background: #fff !important;
    }
    .navbar {
        display: none;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }
    .label {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
    background-color: #fff;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a {
    color: #428bca;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #2a6496;
    text-decoration: underline;
}
a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
img {
    vertical-align: middle;
}
.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail {
    display: inline-block;
    height: auto;
    max-width: 100%;
    padding: 4px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
.img-circle {
    border-radius: 50%;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #999;
}
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
    font-size: 65%;
}
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
    font-size: 75%;
}
h1,
.h1 {
    font-size: 36px;
}
h2,
.h2 {
    font-size: 30px;
}
h3,
.h3 {
    font-size: 24px;
}
h4,
.h4 {
    font-size: 18px;
}
h5,
.h5 {
    font-size: 14px;
}
h6,
.h6 {
    font-size: 12px;
}
p {
    margin: 0 0 10px;
}
.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}
small,
.small {
    font-size: 85%;
}
cite {
    font-style: normal;
}
.text-muted {
    color: #999;
}
.text-primary {
    color: #428bca;
}
.text-primary:hover {
    color: #3071a9;
}
.text-warning {
    color: #8a6d3b;
}
.text-warning:hover {
    color: #66512c;
}
.text-danger {
    color: #a94442;
}
.text-danger:hover {
    color: #843534;
}
.text-success {
    color: #3c763d;
}
.text-success:hover {
    color: #2b542c;
}
.text-info {
    color: #31708f;
}
.text-info:hover {
    color: #245269;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}
ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
.list-inline > li:first-child {
    padding-left: 0;
}
dl {
    margin-top: 0;
    margin-bottom: 20px;
}
dt,
dd {
    line-height: 1.428571429;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 0;
}
@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 180px;
    }
    .dl-horizontal dd:before,
    .dl-horizontal dd:after {
        display: table;
        content: " ";
    }
    .dl-horizontal dd:after {
        clear: both;
    }
    .dl-horizontal dd:before,
    .dl-horizontal dd:after {
        display: table;
        content: " ";
    }
    .dl-horizontal dd:after {
        clear: both;
    }
}
abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #999;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee;
}
blockquote p {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25;
}
blockquote p:last-child {
    margin-bottom: 0;
}
blockquote small,
blockquote .small {
    display: block;
    line-height: 1.428571429;
    color: #999;
}
blockquote small:before,
blockquote .small:before {
    content: "\2014 \00A0";
}
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
    text-align: right;
}
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
    content: "";
}
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
    content: "\00A0 \2014";
}
blockquote:before,
blockquote:after {
    content: "";
}
address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
}
code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    white-space: nowrap;
    background-color: #f9f2f4;
    border-radius: 4px;
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}
pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}
.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container:before,
.container:after {
    display: table;
    content: " ";
}
.container:after {
    clear: both;
}
.container:before,
.container:after {
    display: table;
    content: " ";
}
.container:after {
    clear: both;
}
@media (min-width: 768px) {
    .container {
       max-width: 800px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width:1050px;
    }
}
@media (min-width: 1200px) {
    .container {
                max-width: 98%;
        width: 100%;
        margin: 0 auto;
    }
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row:before,
.row:after {
    display: table;
    content: " ";
}
.row:after {
    clear: both;
}
.row:before,
.row:after {
    display: table;
    content: " ";
}
.row:after {
    clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666666666666%;
}
.col-xs-10 {
    width: 83.33333333333334%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666666666666%;
}
.col-xs-7 {
    width: 58.333333333333336%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666666666667%;
}
.col-xs-4 {
    width: 33.33333333333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.666666666666664%;
}
.col-xs-1 {
    width: 8.333333333333332%;
}
.col-xs-pull-12 {
    right: 100%;
}
.col-xs-pull-11 {
    right: 91.66666666666666%;
}
.col-xs-pull-10 {
    right: 83.33333333333334%;
}
.col-xs-pull-9 {
    right: 75%;
}
.col-xs-pull-8 {
    right: 66.66666666666666%;
}
.col-xs-pull-7 {
    right: 58.333333333333336%;
}
.col-xs-pull-6 {
    right: 50%;
}
.col-xs-pull-5 {
    right: 41.66666666666667%;
}
.col-xs-pull-4 {
    right: 33.33333333333333%;
}
.col-xs-pull-3 {
    right: 25%;
}
.col-xs-pull-2 {
    right: 16.666666666666664%;
}
.col-xs-pull-1 {
    right: 8.333333333333332%;
}
.col-xs-pull-0 {
    right: 0;
}
.col-xs-push-12 {
    left: 100%;
}
.col-xs-push-11 {
    left: 91.66666666666666%;
}
.col-xs-push-10 {
    left: 83.33333333333334%;
}
.col-xs-push-9 {
    left: 75%;
}
.col-xs-push-8 {
    left: 66.66666666666666%;
}
.col-xs-push-7 {
    left: 58.333333333333336%;
}
.col-xs-push-6 {
    left: 50%;
}
.col-xs-push-5 {
    left: 41.66666666666667%;
}
.col-xs-push-4 {
    left: 33.33333333333333%;
}
.col-xs-push-3 {
    left: 25%;
}
.col-xs-push-2 {
    left: 16.666666666666664%;
}
.col-xs-push-1 {
    left: 8.333333333333332%;
}
.col-xs-push-0 {
    left: 0;
}
.col-xs-offset-12 {
    margin-left: 100%;
}
.col-xs-offset-11 {
    margin-left: 91.66666666666666%;
}
.col-xs-offset-10 {
    margin-left: 83.33333333333334%;
}
.col-xs-offset-9 {
    margin-left: 75%;
}
.col-xs-offset-8 {
    margin-left: 66.66666666666666%;
}
.col-xs-offset-7 {
    margin-left: 58.333333333333336%;
}
.col-xs-offset-6 {
    margin-left: 50%;
}
.col-xs-offset-5 {
    margin-left: 41.66666666666667%;
}
.col-xs-offset-4 {
    margin-left: 33.33333333333333%;
}
.col-xs-offset-3 {
    margin-left: 25%;
}
.col-xs-offset-2 {
    margin-left: 16.666666666666664%;
}
.col-xs-offset-1 {
    margin-left: 8.333333333333332%;
}
.col-xs-offset-0 {
    margin-left: 0;
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666666666666%;
    }
    .col-sm-10 {
        width: 83.33333333333334%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666666666666%;
    }
    .col-sm-7 {
        width: 58.333333333333336%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666666666667%;
    }
    .col-sm-4 {
        width: 33.33333333333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.666666666666664%;
    }
    .col-sm-1 {
        width: 8.333333333333332%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666666666666%;
    }
    .col-sm-pull-10 {
        right: 83.33333333333334%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666666666666%;
    }
    .col-sm-pull-7 {
        right: 58.333333333333336%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666666666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.666666666666664%;
    }
    .col-sm-pull-1 {
        right: 8.333333333333332%;
    }
    .col-sm-pull-0 {
        right: 0;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666666666666%;
    }
    .col-sm-push-10 {
        left: 83.33333333333334%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666666666666%;
    }
    .col-sm-push-7 {
        left: 58.333333333333336%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666666666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.666666666666664%;
    }
    .col-sm-push-1 {
        left: 8.333333333333332%;
    }
    .col-sm-push-0 {
        left: 0;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-sm-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-sm-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-sm-offset-0 {
        margin-left: 0;
    }
}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666666666666%;
    }
    .col-md-10 {
        width: 83.33333333333334%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666666666666%;
    }
    .col-md-7 {
        width: 58.333333333333336%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666666666667%;
    }
    .col-md-4 {
        width: 33.33333333333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.666666666666664%;
    }
    .col-md-1 {
        width: 8.333333333333332%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666666666666%;
    }
    .col-md-pull-10 {
        right: 83.33333333333334%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666666666666%;
    }
    .col-md-pull-7 {
        right: 58.333333333333336%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666666666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.666666666666664%;
    }
    .col-md-pull-1 {
        right: 8.333333333333332%;
    }
    .col-md-pull-0 {
        right: 0;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666666666666%;
    }
    .col-md-push-10 {
        left: 83.33333333333334%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666666666666%;
    }
    .col-md-push-7 {
        left: 58.333333333333336%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666666666667%;
    }
    .col-md-push-4 {
        left: 33.33333333333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.666666666666664%;
    }
    .col-md-push-1 {
        left: 8.333333333333332%;
    }
    .col-md-push-0 {
        left: 0;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-md-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-md-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-md-offset-0 {
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666666666666%;
    }
    .col-lg-10 {
        width: 83.33333333333334%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666666666666%;
    }
    .col-lg-7 {
        width: 58.333333333333336%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666666666667%;
    }
    .col-lg-4 {
        width: 33.33333333333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.666666666666664%;
    }
    .col-lg-1 {
        width: 8.333333333333332%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666666666666%;
    }
    .col-lg-pull-10 {
        right: 83.33333333333334%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666666666666%;
    }
    .col-lg-pull-7 {
        right: 58.333333333333336%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666666666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.666666666666664%;
    }
    .col-lg-pull-1 {
        right: 8.333333333333332%;
    }
    .col-lg-pull-0 {
        right: 0;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666666666666%;
    }
    .col-lg-push-10 {
        left: 83.33333333333334%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666666666666%;
    }
    .col-lg-push-7 {
        left: 58.333333333333336%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666666666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.666666666666664%;
    }
    .col-lg-push-1 {
        left: 8.333333333333332%;
    }
    .col-lg-push-0 {
        left: 0;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-lg-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-lg-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-lg-offset-0 {
        margin-left: 0;
    }
}
table {
    max-width: 100%;
    background-color: transparent;
}
th {
    text-align: left;
}
.table {
    width: 100%;
    margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #ddd;
}
.table .table {
    background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}
.table-bordered {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}
table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
    display: table-cell;
    float: none;
}
.table > thead > tr > .active,
.table > tbody > tr > .active,
.table > tfoot > tr > .active,
.table > thead > .active > td,
.table > tbody > .active > td,
.table > tfoot > .active > td,
.table > thead > .active > th,
.table > tbody > .active > th,
.table > tfoot > .active > th {
    background-color: #f5f5f5;
}
.table-hover > tbody > tr > .active:hover,
.table-hover > tbody > .active:hover > td,
.table-hover > tbody > .active:hover > th {
    background-color: #e8e8e8;
}
.table > thead > tr > .success,
.table > tbody > tr > .success,
.table > tfoot > tr > .success,
.table > thead > .success > td,
.table > tbody > .success > td,
.table > tfoot > .success > td,
.table > thead > .success > th,
.table > tbody > .success > th,
.table > tfoot > .success > th {
    background-color: #dff0d8;
}
.table-hover > tbody > tr > .success:hover,
.table-hover > tbody > .success:hover > td,
.table-hover > tbody > .success:hover > th {
    background-color: #d0e9c6;
}
.table > thead > tr > .danger,
.table > tbody > tr > .danger,
.table > tfoot > tr > .danger,
.table > thead > .danger > td,
.table > tbody > .danger > td,
.table > tfoot > .danger > td,
.table > thead > .danger > th,
.table > tbody > .danger > th,
.table > tfoot > .danger > th {
    background-color: #f2dede;
}
.table-hover > tbody > tr > .danger:hover,
.table-hover > tbody > .danger:hover > td,
.table-hover > tbody > .danger:hover > th {
    background-color: #ebcccc;
}
.table > thead > tr > .warning,
.table > tbody > tr > .warning,
.table > tfoot > tr > .warning,
.table > thead > .warning > td,
.table > tbody > .warning > td,
.table > tfoot > .warning > td,
.table > thead > .warning > th,
.table > tbody > .warning > th,
.table > tfoot > .warning > th {
    background-color: #fcf8e3;
}
.table-hover > tbody > tr > .warning:hover,
.table-hover > tbody > .warning:hover > td,
.table-hover > tbody > .warning:hover > th {
    background-color: #faf2cc;
}
@media (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-x: scroll;
        overflow-y: hidden;
        border: 1px solid #ddd;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="search"] {
    box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px;
    line-height: normal;
}
input[type="file"] {
    display: block;
}
select[multiple],
select[size] {
    height: auto;
}
select optgroup {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    height: auto;
}
output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder {
    color: #999;
}
.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #999;
}
.form-control::-webkit-input-placeholder {
    color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
}
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 15px;
}
.radio,
.checkbox {
    display: block;
    min-height: 20px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
}
.radio label,
.checkbox label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    float: left;
    margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
select.input-sm {
    height: 30px;
    line-height: 30px;
}
textarea.input-sm {
    height: auto;
}
.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
select.input-lg {
    height: 46px;
    line-height: 46px;
}
textarea.input-lg {
    height: auto;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #8a6d3b;
}
.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}
.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3c763d;
}
.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}
.form-control-static {
    margin-bottom: 0;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .form-inline .form-control {
        display: inline-block;
    }
    .form-inline select.form-control {
        width: auto;
    }
    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}
.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    display: table;
    content: " ";
}
.form-horizontal .form-group:after {
    clear: both;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    display: table;
    content: " ";
}
.form-horizontal .form-group:after {
    clear: both;
}
.form-horizontal .form-control-static {
    padding-top: 7px;
}
@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
    }
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.btn:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.btn:hover,
.btn:focus {
    color: #333;
    text-decoration: none;
}
.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc;
}
.btn-default .badge {
    color: #fff;
    background-color: #fff;
}
.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd;
}
.btn-primary .badge {
    color: #428bca;
    background-color: #fff;
}
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ed9c28;
    border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #d2322d;
    border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #47a447;
    border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success .badge {
    color: #5cb85c;
    background-color: #fff;
}
.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}
.btn-link {
    font-weight: normal;
    color: #428bca;
    cursor: pointer;
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #999;
    text-decoration: none;
}
.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-block {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}
.btn-block + .btn-block {
    margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}
.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
/* @font-face {
    font-family: "Glyphicons Halflings";
    src: url("../fonts/glyphicons-halflings-regular.eot");
    src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"),
        url("../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format("svg");
} */
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
}
.glyphicon:empty {
    width: 1em;
}
.glyphicon-asterisk:before {
    content: "\2a";
}
.glyphicon-plus:before {
    content: "\2b";
}
.glyphicon-euro:before {
    content: "\20ac";
}
.glyphicon-minus:before {
    content: "\2212";
}
.glyphicon-cloud:before {
    content: "\2601";
}
.glyphicon-envelope:before {
    content: "\2709";
}
.glyphicon-pencil:before {
    content: "\270f";
}
.glyphicon-glass:before {
    content: "\e001";
}
.glyphicon-music:before {
    content: "\e002";
}
.glyphicon-search:before {
    content: "\e003";
}
.glyphicon-heart:before {
    content: "\e005";
}
.glyphicon-star:before {
    content: "\e006";
}
.glyphicon-star-empty:before {
    content: "\e007";
}
.glyphicon-user:before {
    content: "\e008";
}
.glyphicon-film:before {
    content: "\e009";
}
.glyphicon-th-large:before {
    content: "\e010";
}
.glyphicon-th:before {
    content: "\e011";
}
.glyphicon-th-list:before {
    content: "\e012";
}
.glyphicon-ok:before {
    content: "\e013";
}
.glyphicon-remove:before {
    content: "\e014";
}
.glyphicon-zoom-in:before {
    content: "\e015";
}
.glyphicon-zoom-out:before {
    content: "\e016";
}
.glyphicon-off:before {
    content: "\e017";
}
.glyphicon-signal:before {
    content: "\e018";
}
.glyphicon-cog:before {
    content: "\e019";
}
.glyphicon-trash:before {
    content: "\e020";
}
.glyphicon-home:before {
    content: "\e021";
}
.glyphicon-file:before {
    content: "\e022";
}
.glyphicon-time:before {
    content: "\e023";
}
.glyphicon-road:before {
    content: "\e024";
}
.glyphicon-download-alt:before {
    content: "\e025";
}
.glyphicon-download:before {
    content: "\e026";
}
.glyphicon-upload:before {
    content: "\e027";
}
.glyphicon-inbox:before {
    content: "\e028";
}
.glyphicon-play-circle:before {
    content: "\e029";
}
.glyphicon-repeat:before {
    content: "\e030";
}
.glyphicon-refresh:before {
    content: "\e031";
}
.glyphicon-list-alt:before {
    content: "\e032";
}
.glyphicon-lock:before {
    content: "\e033";
}
.glyphicon-flag:before {
    content: "\e034";
}
.glyphicon-headphones:before {
    content: "\e035";
}
.glyphicon-volume-off:before {
    content: "\e036";
}
.glyphicon-volume-down:before {
    content: "\e037";
}
.glyphicon-volume-up:before {
    content: "\e038";
}
.glyphicon-qrcode:before {
    content: "\e039";
}
.glyphicon-barcode:before {
    content: "\e040";
}
.glyphicon-tag:before {
    content: "\e041";
}
.glyphicon-tags:before {
    content: "\e042";
}
.glyphicon-book:before {
    content: "\e043";
}
.glyphicon-bookmark:before {
    content: "\e044";
}
.glyphicon-print:before {
    content: "\e045";
}
.glyphicon-camera:before {
    content: "\e046";
}
.glyphicon-font:before {
    content: "\e047";
}
.glyphicon-bold:before {
    content: "\e048";
}
.glyphicon-italic:before {
    content: "\e049";
}
.glyphicon-text-height:before {
    content: "\e050";
}
.glyphicon-text-width:before {
    content: "\e051";
}
.glyphicon-align-left:before {
    content: "\e052";
}
.glyphicon-align-center:before {
    content: "\e053";
}
.glyphicon-align-right:before {
    content: "\e054";
}
.glyphicon-align-justify:before {
    content: "\e055";
}
.glyphicon-list:before {
    content: "\e056";
}
.glyphicon-indent-left:before {
    content: "\e057";
}
.glyphicon-indent-right:before {
    content: "\e058";
}
.glyphicon-facetime-video:before {
    content: "\e059";
}
.glyphicon-picture:before {
    content: "\e060";
}
.glyphicon-map-marker:before {
    content: "\e062";
}
.glyphicon-adjust:before {
    content: "\e063";
}
.glyphicon-tint:before {
    content: "\e064";
}
.glyphicon-edit:before {
    content: "\e065";
}
.glyphicon-share:before {
    content: "\e066";
}
.glyphicon-check:before {
    content: "\e067";
}
.glyphicon-move:before {
    content: "\e068";
}
.glyphicon-step-backward:before {
    content: "\e069";
}
.glyphicon-fast-backward:before {
    content: "\e070";
}
.glyphicon-backward:before {
    content: "\e071";
}
.glyphicon-play:before {
    content: "\e072";
}
.glyphicon-pause:before {
    content: "\e073";
}
.glyphicon-stop:before {
    content: "\e074";
}
.glyphicon-forward:before {
    content: "\e075";
}
.glyphicon-fast-forward:before {
    content: "\e076";
}
.glyphicon-step-forward:before {
    content: "\e077";
}
.glyphicon-eject:before {
    content: "\e078";
}
.glyphicon-chevron-left:before {
    content: "\e079";
}
.glyphicon-chevron-right:before {
    content: "\e080";
}
.glyphicon-plus-sign:before {
    content: "\e081";
}
.glyphicon-minus-sign:before {
    content: "\e082";
}
.glyphicon-remove-sign:before {
    content: "\e083";
}
.glyphicon-ok-sign:before {
    content: "\e084";
}
.glyphicon-question-sign:before {
    content: "\e085";
}
.glyphicon-info-sign:before {
    content: "\e086";
}
.glyphicon-screenshot:before {
    content: "\e087";
}
.glyphicon-remove-circle:before {
    content: "\e088";
}
.glyphicon-ok-circle:before {
    content: "\e089";
}
.glyphicon-ban-circle:before {
    content: "\e090";
}
.glyphicon-arrow-left:before {
    content: "\e091";
}
.glyphicon-arrow-right:before {
    content: "\e092";
}
.glyphicon-arrow-up:before {
    content: "\e093";
}
.glyphicon-arrow-down:before {
    content: "\e094";
}
.glyphicon-share-alt:before {
    content: "\e095";
}
.glyphicon-resize-full:before {
    content: "\e096";
}
.glyphicon-resize-small:before {
    content: "\e097";
}
.glyphicon-exclamation-sign:before {
    content: "\e101";
}
.glyphicon-gift:before {
    content: "\e102";
}
.glyphicon-leaf:before {
    content: "\e103";
}
.glyphicon-fire:before {
    content: "\e104";
}
.glyphicon-eye-open:before {
    content: "\e105";
}
.glyphicon-eye-close:before {
    content: "\e106";
}
.glyphicon-warning-sign:before {
    content: "\e107";
}
.glyphicon-plane:before {
    content: "\e108";
}
.glyphicon-calendar:before {
    content: "\e109";
}
.glyphicon-random:before {
    content: "\e110";
}
.glyphicon-comment:before {
    content: "\e111";
}
.glyphicon-magnet:before {
    content: "\e112";
}
.glyphicon-chevron-up:before {
    content: "\e113";
}
.glyphicon-chevron-down:before {
    content: "\e114";
}
.glyphicon-retweet:before {
    content: "\e115";
}
.glyphicon-shopping-cart:before {
    content: "\e116";
}
.glyphicon-folder-close:before {
    content: "\e117";
}
.glyphicon-folder-open:before {
    content: "\e118";
}
.glyphicon-resize-vertical:before {
    content: "\e119";
}
.glyphicon-resize-horizontal:before {
    content: "\e120";
}
.glyphicon-hdd:before {
    content: "\e121";
}
.glyphicon-bullhorn:before {
    content: "\e122";
}
.glyphicon-bell:before {
    content: "\e123";
}
.glyphicon-certificate:before {
    content: "\e124";
}
.glyphicon-thumbs-up:before {
    content: "\e125";
}
.glyphicon-thumbs-down:before {
    content: "\e126";
}
.glyphicon-hand-right:before {
    content: "\e127";
}
.glyphicon-hand-left:before {
    content: "\e128";
}
.glyphicon-hand-up:before {
    content: "\e129";
}
.glyphicon-hand-down:before {
    content: "\e130";
}
.glyphicon-circle-arrow-right:before {
    content: "\e131";
}
.glyphicon-circle-arrow-left:before {
    content: "\e132";
}
.glyphicon-circle-arrow-up:before {
    content: "\e133";
}
.glyphicon-circle-arrow-down:before {
    content: "\e134";
}
.glyphicon-globe:before {
    content: "\e135";
}
.glyphicon-wrench:before {
    content: "\e136";
}
.glyphicon-tasks:before {
    content: "\e137";
}
.glyphicon-filter:before {
    content: "\e138";
}
.glyphicon-briefcase:before {
    content: "\e139";
}
.glyphicon-fullscreen:before {
    content: "\e140";
}
.glyphicon-dashboard:before {
    content: "\e141";
}
.glyphicon-paperclip:before {
    content: "\e142";
}
.glyphicon-heart-empty:before {
    content: "\e143";
}
.glyphicon-link:before {
    content: "\e144";
}
.glyphicon-phone:before {
    content: "\e145";
}
.glyphicon-pushpin:before {
    content: "\e146";
}
.glyphicon-usd:before {
    content: "\e148";
}
.glyphicon-gbp:before {
    content: "\e149";
}
.glyphicon-sort:before {
    content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
    content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
}
.glyphicon-sort-by-order:before {
    content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
    content: "\e154";
}
.glyphicon-sort-by-attributes:before {
    content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
}
.glyphicon-unchecked:before {
    content: "\e157";
}
.glyphicon-expand:before {
    content: "\e158";
}
.glyphicon-collapse-down:before {
    content: "\e159";
}
.glyphicon-collapse-up:before {
    content: "\e160";
}
.glyphicon-log-in:before {
    content: "\e161";
}
.glyphicon-flash:before {
    content: "\e162";
}
.glyphicon-log-out:before {
    content: "\e163";
}
.glyphicon-new-window:before {
    content: "\e164";
}
.glyphicon-record:before {
    content: "\e165";
}
.glyphicon-save:before {
    content: "\e166";
}
.glyphicon-open:before {
    content: "\e167";
}
.glyphicon-saved:before {
    content: "\e168";
}
.glyphicon-import:before {
    content: "\e169";
}
.glyphicon-export:before {
    content: "\e170";
}
.glyphicon-send:before {
    content: "\e171";
}
.glyphicon-floppy-disk:before {
    content: "\e172";
}
.glyphicon-floppy-saved:before {
    content: "\e173";
}
.glyphicon-floppy-remove:before {
    content: "\e174";
}
.glyphicon-floppy-save:before {
    content: "\e175";
}
.glyphicon-floppy-open:before {
    content: "\e176";
}
.glyphicon-credit-card:before {
    content: "\e177";
}
.glyphicon-transfer:before {
    content: "\e178";
}
.glyphicon-cutlery:before {
    content: "\e179";
}
.glyphicon-header:before {
    content: "\e180";
}
.glyphicon-compressed:before {
    content: "\e181";
}
.glyphicon-earphone:before {
    content: "\e182";
}
.glyphicon-phone-alt:before {
    content: "\e183";
}
.glyphicon-tower:before {
    content: "\e184";
}
.glyphicon-stats:before {
    content: "\e185";
}
.glyphicon-sd-video:before {
    content: "\e186";
}
.glyphicon-hd-video:before {
    content: "\e187";
}
.glyphicon-subtitles:before {
    content: "\e188";
}
.glyphicon-sound-stereo:before {
    content: "\e189";
}
.glyphicon-sound-dolby:before {
    content: "\e190";
}
.glyphicon-sound-5-1:before {
    content: "\e191";
}
.glyphicon-sound-6-1:before {
    content: "\e192";
}
.glyphicon-sound-7-1:before {
    content: "\e193";
}
.glyphicon-copyright-mark:before {
    content: "\e194";
}
.glyphicon-registration-mark:before {
    content: "\e195";
}
.glyphicon-cloud-download:before {
    content: "\e197";
}
.glyphicon-cloud-upload:before {
    content: "\e198";
}
.glyphicon-tree-conifer:before {
    content: "\e199";
}
.glyphicon-tree-deciduous:before {
    content: "\e200";
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.dropdown {
    position: relative;
}
.dropdown-toggle:focus {
    outline: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}
.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: transparent;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.open > .dropdown-menu {
    display: block;
}
.open > a {
    outline: 0;
}
.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #999;
}
.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}
.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}
@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
}
.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
    z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
    outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}
.btn-toolbar:before,
.btn-toolbar:after {
    display: table;
    content: " ";
}
.btn-toolbar:after {
    clear: both;
}
.btn-toolbar:before,
.btn-toolbar:after {
    display: table;
    content: " ";
}
.btn-toolbar:after {
    clear: both;
}
.btn-toolbar .btn-group {
    float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
    margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}
.btn-group > .btn:first-child {
    margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.btn-group > .btn-group {
    float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none;
}
.btn .caret {
    margin-left: 0;
}
.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}
.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
    display: table;
    content: " ";
}
.btn-group-vertical > .btn-group:after {
    clear: both;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
    display: table;
    content: " ";
}
.btn-group-vertical > .btn-group:after {
    clear: both;
}
.btn-group-vertical > .btn-group > .btn {
    float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.btn-group-justified {
    display: table;
    width: 100%;
    border-collapse: separate;
    table-layout: fixed;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    width: 1%;
}
.btn-group-justified > .btn-group .btn {
    width: 100%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
    display: none;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group[class*="col-"] {
    float: none;
    padding-right: 0;
    padding-left: 0;
}
.input-group .form-control {
    width: 100%;
    margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
    height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
    height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
    border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.input-group-addon:last-child {
    border-left: 0;
}
.input-group-btn {
    position: relative;
    white-space: nowrap;
}
.input-group-btn:first-child > .btn {
    margin-right: -1px;
}
.input-group-btn:last-child > .btn {
    margin-left: -1px;
}
.input-group-btn > .btn {
    position: relative;
}
.input-group-btn > .btn + .btn {
    margin-left: -4px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
    z-index: 2;
}
.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav:before,
.nav:after {
    display: table;
    content: " ";
}
.nav:after {
    clear: both;
}
.nav:before,
.nav:after {
    display: table;
    content: " ";
}
.nav:after {
    clear: both;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eee;
}
.nav > li.disabled > a {
    color: #999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #999;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eee;
    border-color: #428bca;
}
.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.nav > li > a > img {
    max-width: none;
}
.nav-tabs {
    border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}
.nav-tabs.nav-justified > li {
    float: none;
}
.nav-tabs.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    }
}
.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}
.nav-pills > li {
    float: left;
}
.nav-pills > li > a {
    border-radius: 4px;
}
.nav-pills > li + li {
    margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #428bca;
}
.nav-stacked > li {
    float: none;
}
.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}
.nav-justified {
    width: 100%;
}
.nav-justified > li {
    float: none;
}
.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}
@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }
    .nav-justified > li > a {
        margin-bottom: 0;
    }
}
.nav-tabs-justified {
    border-bottom: 0;
}
.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #ddd;
}
@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.navbar {
    position: relative;
    min-height:100px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.navbar:before,
.navbar:after {
    display: table;
    content: " ";
}
.navbar:after {
    clear: both;
}
.navbar:before,
.navbar:after {
    display: table;
    content: " ";
}
.navbar:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar {
        border-radius: 4px;
    }
}
.navbar-header:before,
.navbar-header:after {
    display: table;
    content: " ";
}
.navbar-header:after {
    clear: both;
}
.navbar-header:before,
.navbar-header:after {
    display: table;
    content: " ";
}
.navbar-header:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar-header {
        float: left;
		width:7.3333%;
    }
}
.navbar-collapse {
    max-height: 340px;
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before,
.navbar-collapse:after {
    display: table;
    content: " ";
}
.navbar-collapse:after {
    clear: both;
}
.navbar-collapse:before,
.navbar-collapse:after {
    display: table;
    content: " ";
}
.navbar-collapse:after {
    clear: both;
}
.navbar-collapse.in {
    overflow-y: auto;
}
@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }
    .navbar-collapse.collapse {
        display: block;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}
.container > .navbar-header,
.container > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}
.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}
@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}
@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}
.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}
.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}
.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}
@media (min-width: 768px) {
    .navbar > .container .navbar-brand {
        margin-left: -15px;
    }
}
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 25px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #0F7C3C !important;
    background-image: none;
    border: 1px solid #0F7C3C;
    border-radius: 4px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}
.navbar-nav {
    margin: 7.5px -15px;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}
@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }
    .navbar-nav .open ,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
		width: 100%;
    }
    .navbar-nav > li {
        float: left;
    }
    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar-nav.navbar-right:last-child {
        margin-right: -15px;
    }
}
@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
    }
}
.navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .form-control {
        display: inline-block;
    }
    .navbar-form select.form-control {
        width: auto;
    }
    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}
@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        box-shadow: none;
    }
    .navbar-form.navbar-right:last-child {
        margin-right: -15px;
    }
}
.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}
.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px;
}
.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px;
}
.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
    .navbar-text.navbar-right:last-child {
        margin-right: 0;
    }
}
.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
    color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}
.navbar-default .navbar-text {
    color: #777;
}
.navbar-default .navbar-nav > li > a {
    color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #ccc;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7;
}
@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }
    .navbar-default .navbar-nav .open ,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}
.navbar-default .navbar-link {
    color: #777;
}
.navbar-default .navbar-link:hover {
    color: #333;
}
.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}
.navbar-inverse .navbar-brand {
    color: #999;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-text {
    color: #999;
}
.navbar-inverse .navbar-nav > li > a {
    color: #999;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent;
}
.navbar-inverse .navbar-toggle {
    border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #080808;
}
@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999;
    }
    .navbar-inverse .navbar-nav .open ,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}
.navbar-inverse .navbar-link {
    color: #999;
}
.navbar-inverse .navbar-link:hover {
    color: #fff;
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.breadcrumb > .active {
    color: #999;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.428571429;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    background-color: #eee;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #428bca;
    border-color: #428bca;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #999;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}
.pager:before,
.pager:after {
    display: table;
    content: " ";
}
.pager:after {
    clear: both;
}
.pager:before,
.pager:after {
    display: table;
    content: " ";
}
.pager:after {
    clear: both;
}
.pager li {
    display: inline;
}
.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #eee;
}
.pager .next > a,
.pager .next > span {
    float: right;
}
.pager .previous > a,
.pager .previous > span {
    float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #999;
    cursor: not-allowed;
    background-color: #fff;
}
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}
.label[href]:hover,
.label[href]:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.label:empty {
    display: none;
}
.btn .label {
    position: relative;
    top: -1px;
}
.label-default {
    background-color: #999;
}
.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #808080;
}
.label-primary {
    background-color: #428bca;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #3071a9;
}
.label-success {
    background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44;
}
.label-info {
    background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #31b0d5;
}
.label-warning {
    background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ec971f;
}
.label-danger {
    background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #c9302c;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #999;
    border-radius: 10px;
}
.badge:empty {
    display: none;
}
.btn .badge {
    position: relative;
    top: -1px;
}
a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #428bca;
    background-color: #fff;
}
.nav-pills > li > a > .badge {
    margin-left: 3px;
}
.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 200;
    line-height: 2.1428571435;
    color: inherit;
    background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
    line-height: 1;
    color: inherit;
}
.jumbotron p {
    line-height: 1.4;
}
.container .jumbotron {
    border-radius: 6px;
}
.jumbotron .container {
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .container .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }
    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px;
    }
}
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
    display: block;
    height: auto;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #428bca;
}
.thumbnail .caption {
    padding: 9px;
    color: #333;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert-dismissable {
    padding-right: 35px;
}
.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}
.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}
@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width 0.6s ease;
}
.progress-striped .progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.progress.active .progress-bar {
    animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
    background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
    background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
    background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
    background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}
.media,
.media .media {
    margin-top: 15px;
}
.media:first-child {
    margin-top: 0;
}
.media-object {
    display: block;
}
.media-heading {
    margin: 0 0 5px;
}
.media > .pull-left {
    margin-right: 10px;
}
.media > .pull-right {
    margin-left: 10px;
}
.media-list {
    padding-left: 0;
    list-style: none;
}
.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}
.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
    float: right;
}
.list-group-item > .badge + .badge {
    margin-right: 5px;
}
a.list-group-item {
    color: #555;
}
a.list-group-item .list-group-item-heading {
    color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
    text-decoration: none;
    background-color: #f5f5f5;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
}
a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
    color: inherit;
}
a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
    color: #e1edf7;
}
.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}
.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
    padding: 15px;
}
.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}
.panel-body:after {
    clear: both;
}
.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}
.panel-body:after {
    clear: both;
}
.panel > .list-group {
    margin-bottom: 0;
}
.panel > .list-group .list-group-item {
    border-width: 1px 0;
}
.panel > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.panel > .list-group .list-group-item:last-child {
    border-bottom: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table {
    margin-bottom: 0;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
    border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child th,
.panel > .table > tbody:first-child td {
    border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
}
.panel > .table-bordered > thead > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > thead > tr:last-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
}
.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}
.panel-title > a {
    color: inherit;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel-group .panel {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 4px;
}
.panel-group .panel + .panel {
    margin-top: 5px;
}
.panel-group .panel-heading {
    border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
    border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd;
}
.panel-default {
    border-color: #ddd;
}
.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #ddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #ddd;
}
.panel-primary {
    border-color: #428bca;
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
}
.panel-primary > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #428bca;
}
.panel-primary > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #428bca;
}
.panel-success {
    border-color: #d6e9c6;
}
.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #d6e9c6;
}
.panel-success > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #d6e9c6;
}
.panel-warning {
    border-color: #faebcc;
}
.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #faebcc;
}
.panel-warning > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #faebcc;
}
.panel-danger {
    border-color: #ebccd1;
}
.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #ebccd1;
}
.panel-danger > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #ebccd1;
}
.panel-info {
    border-color: #bce8f1;
}
.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #bce8f1;
}
.panel-info > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #bce8f1;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
    padding: 24px;
    border-radius: 6px;
}
.well-sm {
    padding: 9px;
    border-radius: 3px;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: auto;
    overflow-y: scroll;
}
.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    transform: translate(0, 0);
}
.modal-dialog {
    position: relative;
    z-index: 1050;
    width: auto;
    margin: 10px;
}
.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    outline: 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    min-height: 16.428571429px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.428571429;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal-footer {
    padding: 19px 20px 20px;
    margin-top: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}
.modal-footer:after {
    clear: both;
}
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}
.modal-footer:after {
    clear: both;
}
.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
@media screen and (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}
.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible;
}
.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}
.tooltip.right {
    padding: 0 5px;
    margin-left: 3px;
}
.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}
.tooltip.left {
    padding: 0 5px;
    margin-left: -3px;
}
.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-top-color: #000;
    border-width: 5px 5px 0;
}
.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-top-color: #000;
    border-width: 5px 5px 0;
}
.tooltip.top-right .tooltip-arrow {
    right: 5px;
    bottom: 0;
    border-top-color: #000;
    border-width: 5px 5px 0;
}
.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-right-color: #000;
    border-width: 5px 5px 5px 0;
}
.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-left-color: #000;
    border-width: 5px 0 5px 5px;
}
.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-bottom-color: #000;
    border-width: 0 5px 5px;
}
.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-bottom-color: #000;
    border-width: 0 5px 5px;
}
.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-bottom-color: #000;
    border-width: 0 5px 5px;
}
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-clip: padding-box;
}
.popover.top {
    margin-top: -10px;
}
.popover.right {
    margin-left: 10px;
}
.popover.bottom {
    margin-top: 10px;
}
.popover.left {
    margin-left: -10px;
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.popover-content {
    padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover .arrow {
    border-width: 11px;
}
.popover .arrow:after {
    border-width: 10px;
    content: "";
}
.popover.top .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    border-bottom-width: 0;
}
.popover.top .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    border-top-color: #fff;
    border-bottom-width: 0;
    content: " ";
}
.popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}
.popover.right .arrow:after {
    bottom: -10px;
    left: 1px;
    border-right-color: #fff;
    border-left-width: 0;
    content: " ";
}
.popover.bottom .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    border-top-width: 0;
}
.popover.bottom .arrow:after {
    top: 1px;
    margin-left: -10px;
    border-bottom-color: #fff;
    border-top-width: 0;
    content: " ";
}
.popover.left .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25);
    border-right-width: 0;
}
.popover.left .arrow:after {
    right: 1px;
    bottom: -10px;
    border-left-color: #fff;
    border-right-width: 0;
    content: " ";
}
.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner > .item {
    position: relative;
    display: none;
    transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    height: auto;
    max-width: 100%;
    line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}
.carousel-inner > .active {
    left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .next {
    left: 100%;
}
.carousel-inner > .prev {
    left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}
.carousel-inner > .active.left {
    left: -100%;
}
.carousel-inner > .active.right {
    left: 100%;
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);
}
.carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif;
}
.carousel-control .icon-prev:before {
    content: "\2039";
}
.carousel-control .icon-next:before {
    content: "\203a";
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
    text-shadow: none;
}
@media screen and (min-width: 768px) {
    .carousel-control .glyphicons-chevron-left,
    .carousel-control .glyphicons-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
        font-size: 30px;
    }
    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
}
.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}
.clearfix:after {
    clear: both;
}
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
.affix {
    position: fixed;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-xs.visible-sm {
        display: block !important;
    }
    table.visible-xs.visible-sm {
        display: table;
    }
    tr.visible-xs.visible-sm {
        display: table-row !important;
    }
    th.visible-xs.visible-sm,
    td.visible-xs.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-xs.visible-md {
        display: block !important;
    }
    table.visible-xs.visible-md {
        display: table;
    }
    tr.visible-xs.visible-md {
        display: table-row !important;
    }
    th.visible-xs.visible-md,
    td.visible-xs.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-xs.visible-lg {
        display: block !important;
    }
    table.visible-xs.visible-lg {
        display: table;
    }
    tr.visible-xs.visible-lg {
        display: table-row !important;
    }
    th.visible-xs.visible-lg,
    td.visible-xs.visible-lg {
        display: table-cell !important;
    }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-sm.visible-xs {
        display: block !important;
    }
    table.visible-sm.visible-xs {
        display: table;
    }
    tr.visible-sm.visible-xs {
        display: table-row !important;
    }
    th.visible-sm.visible-xs,
    td.visible-sm.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-sm.visible-md {
        display: block !important;
    }
    table.visible-sm.visible-md {
        display: table;
    }
    tr.visible-sm.visible-md {
        display: table-row !important;
    }
    th.visible-sm.visible-md,
    td.visible-sm.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-sm.visible-lg {
        display: block !important;
    }
    table.visible-sm.visible-lg {
        display: table;
    }
    tr.visible-sm.visible-lg {
        display: table-row !important;
    }
    th.visible-sm.visible-lg,
    td.visible-sm.visible-lg {
        display: table-cell !important;
    }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-md.visible-xs {
        display: block !important;
    }
    table.visible-md.visible-xs {
        display: table;
    }
    tr.visible-md.visible-xs {
        display: table-row !important;
    }
    th.visible-md.visible-xs,
    td.visible-md.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-md.visible-sm {
        display: block !important;
    }
    table.visible-md.visible-sm {
        display: table;
    }
    tr.visible-md.visible-sm {
        display: table-row !important;
    }
    th.visible-md.visible-sm,
    td.visible-md.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-md.visible-lg {
        display: block !important;
    }
    table.visible-md.visible-lg {
        display: table;
    }
    tr.visible-md.visible-lg {
        display: table-row !important;
    }
    th.visible-md.visible-lg,
    td.visible-md.visible-lg {
        display: table-cell !important;
    }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-lg.visible-xs {
        display: block !important;
    }
    table.visible-lg.visible-xs {
        display: table;
    }
    tr.visible-lg.visible-xs {
        display: table-row !important;
    }
    th.visible-lg.visible-xs,
    td.visible-lg.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-lg.visible-sm {
        display: block !important;
    }
    table.visible-lg.visible-sm {
        display: table;
    }
    tr.visible-lg.visible-sm {
        display: table-row !important;
    }
    th.visible-lg.visible-sm,
    td.visible-lg.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-lg.visible-md {
        display: block !important;
    }
    table.visible-lg.visible-md {
        display: table;
    }
    tr.visible-lg.visible-md {
        display: table-row !important;
    }
    th.visible-lg.visible-md,
    td.visible-lg.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
    table.visible-lg {
        display: table;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}
.hidden-xs {
    display: block !important;
}
table.hidden-xs {
    display: table;
}
tr.hidden-xs {
    display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-xs,
    tr.hidden-xs,
    th.hidden-xs,
    td.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-xs.hidden-sm,
    tr.hidden-xs.hidden-sm,
    th.hidden-xs.hidden-sm,
    td.hidden-xs.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-xs.hidden-md,
    tr.hidden-xs.hidden-md,
    th.hidden-xs.hidden-md,
    td.hidden-xs.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-xs.hidden-lg,
    tr.hidden-xs.hidden-lg,
    th.hidden-xs.hidden-lg,
    td.hidden-xs.hidden-lg {
        display: none !important;
    }
}
.hidden-sm {
    display: block !important;
}
table.hidden-sm {
    display: table;
}
tr.hidden-sm {
    display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-sm.hidden-xs,
    tr.hidden-sm.hidden-xs,
    th.hidden-sm.hidden-xs,
    td.hidden-sm.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm,
    tr.hidden-sm,
    th.hidden-sm,
    td.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-sm.hidden-md,
    tr.hidden-sm.hidden-md,
    th.hidden-sm.hidden-md,
    td.hidden-sm.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-sm.hidden-lg,
    tr.hidden-sm.hidden-lg,
    th.hidden-sm.hidden-lg,
    td.hidden-sm.hidden-lg {
        display: none !important;
    }
}
.hidden-md {
    display: block !important;
}
table.hidden-md {
    display: table;
}
tr.hidden-md {
    display: table-row !important;
}
th.hidden-md,
td.hidden-md {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-md.hidden-xs,
    tr.hidden-md.hidden-xs,
    th.hidden-md.hidden-xs,
    td.hidden-md.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-md.hidden-sm,
    tr.hidden-md.hidden-sm,
    th.hidden-md.hidden-sm,
    td.hidden-md.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md,
    tr.hidden-md,
    th.hidden-md,
    td.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-md.hidden-lg,
    tr.hidden-md.hidden-lg,
    th.hidden-md.hidden-lg,
    td.hidden-md.hidden-lg {
        display: none !important;
    }
}
.hidden-lg {
    display: block !important;
}
table.hidden-lg {
    display: table;
}
tr.hidden-lg {
    display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-lg.hidden-xs,
    tr.hidden-lg.hidden-xs,
    th.hidden-lg.hidden-xs,
    td.hidden-lg.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-lg.hidden-sm,
    tr.hidden-lg.hidden-sm,
    th.hidden-lg.hidden-sm,
    td.hidden-lg.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg.hidden-md,
    tr.hidden-lg.hidden-md,
    th.hidden-lg.hidden-md,
    td.hidden-lg.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg,
    tr.hidden-lg,
    th.hidden-lg,
    td.hidden-lg {
        display: none !important;
    }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
    .hidden-print,
    tr.hidden-print,
    th.hidden-print,
    td.hidden-print {
        display: none !important;
    }
}

@font-face{font-family:'FontAwesome';src:url('fontawesome-webfont3e6e.2b13baa7dd4f54c9.eot?v=4.7.0');src:url('fontawesome-webfontd41d.2b13baa7dd4f54c9.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fontawesome-webfont3e6e.5d218d924b857815.html?v=4.7.0')
format('woff2'),url('fontawesome-webfont3e6e.cf011583fb81df9f.woff?v=4.7.0') format('woff'),url('fontawesome-webfont3e6e.8a7cb27d142e3e19.ttf?v=4.7.0') format('truetype'),url('fontawesome-webfont3e6e.b91c78f31c3adc41.svg?v=4.7.0#fontawesomeregular')
format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1
FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em
.25em .15em;border:solid .08em
#eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes
fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1)";transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root
.fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,
0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
/* Responsive Design */
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/web/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('/assets/web/fonts/Montserrat-Regular.woff') format('woff'),
        url('/assets/web/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/web/fonts/Montserrat-Bold.woff2') format('woff2'),
        url('/assets/web/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/web/fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('/assets/web/fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/web/fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('/assets/web/fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/web/fonts/Montserrat-Medium.woff2') format('woff2'),
        url('/assets/web/fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    background: #fff;
    font-family: 'Montserrat';
    color: #333;
    line-height: 22px;
	letter-spacing:0.2px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Montserrat';
    color: #333;
}
h1 {
    font-size: 36px;
    color: #fff;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 16px;
    color: #787878;
    font-weight: 500;
    line-height: 24px;
}
h4 {
    font-size: 16px;
}
a {
    color: #c52d2f;
    transition: color 300ms, background-color 300ms;
}
a:hover,
a:focus {
    color: #d43133;
	text-decoration:underline !important;
}

.gallry_pg .progmss_bg a:focus .nsw_mgs {
    border: 2px solid red !important;
}



button.menuhide.navbar-toggle:focus {
    outline: 2px solid #ff0015 !important;
}
#header .lgo_areaas .search input.search-form:focus {
    outline: 2px solid #ff0015 !important;
}
.tabs_araess .explr span a:focus {
    outline: 2px solid #ff0015 !important;
}
.form-control:focus {
    outline: 2px solid #ff0015 !important;
}

.navbar-inverse .navbar-nav > li > a:focus {outline: 2px solid #ff0015 !important; padding-left: 2px !important; padding-right: 2px !important;}
a:focus {outline: 2px solid #ff0015 !important; }

button:focus {outline: 2px solid #ff0015 !important;}

.owl-theme .owl-dots .owl-dot:focus {
    outline: 2px solid #ff0015 !important;
}

.lft_area_main .lft_araea_tabss .tabs-left>li a:focus {
    background: transparent;
    border: 2px solid #ff0015 !important;
}
body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li a:focus{border: 2px solid #ff0015 !important;}

.botm_nxt_areas.prog_pg a.prog_bnts:focus{border: 2px solid #ff0015 !important;}
body.theme-color .botm_nxt_areas.prog_pg a.prog_bnts{background:#000 !important; color:#fff !important;}
body.theme-color .botm_nxt_areas.prog_pg a.prog_bnts:focus{border: 2px solid #ff0015 !important;}

body.theme-color .tabsss_abt .tab-link:hover .link_supports_al {
    color: #fff !important;
}

button.btn.btn-default:focus {
    outline: 2px solid #ff0015 !important;
}

#accordion button.link_supports_al:focus {
    outline:2px solid #000 !important;
    margin-bottom: 13px;
}
#accordion button.link_supports_al:focus .heading {
    margin:0; padding-bottom:12px;
}
#accordion button.link_supports_al:focus .heading.active {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}


.top_areaas .lgo_bothss .linkss_mnu ul li input.search-form:focus {
    outline: 2px solid #ff0015 !important;
}
.both_als a:focus {
    outline: 2px solid #ff0015 !important;
}
#faculty_profile .progmss_bg .nes_cnt_bx span a:focus {
    outline: 2px solid #ff0015 !important;
}

#pro_gramess .progmss_bg a.al_text_lknk_area:focus {
    outline: 2px solid #ff0015 !important;
}

.both_als a:focus span.ovl_area {
    outline: 2px solid #ff0015 !important;
	    background: #0054a3;
}
.both_als .both_imgs a:focus span.ovl_area {
 outline: 2px solid #ff0015 !important;
	    background: #0054a3;
}

.gl_bax_area .mg_araea span.lnkss_ar a:focus {
    outline: 2px solid #ff0015 !important;
}
.clents button.pause-button:focus {
    outline: 2px solid #ff0015 !important;
}

.la_updates .up_d_bxss a:focus .latestUpdateDesignArea span.dates{outline: 2px solid #ff0015 !important;}
.tabs_araess .tabs:focus li.tab-link{outline: 2px solid #ff0015 !important;}

footer.ftr_bgb .abut_links ul li a:focus{outline: 2px solid #ff0015 !important; padding:1px !important;}
.ftr_bgb .socialss ul li a:focus{outline: 2px solid #ff0015 !important; padding:1px !important;}

.container1 .invalid-feedback {margin-top: -10px;}

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}
.cal-month-view .cal-open-day-events a.cal-event-action.ng-star-inserted {
    color: #fff;
}


.btn-primary {
    padding: 8px 20px;
    background: #c52d2f;
    color: #fff;
    border-radius: 4px;
    border: none;
    margin-top: 10px;
}
.btn-primary:hover,
.btn-primary:focus {
    background: #c52d2f;
    outline: none;
    box-shadow: none;
}
.btn-transparent {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}
.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.5);
}
a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}
.dropdown-menu {
    margin-top: -1px;
    min-width: 180px;
}
.center h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}
.media > .pull-left {
    margin-right: 20px;
}
.media > .pull-right {
    margin-left: 20px;
}
.section {
    padding:60px 0;
	font-family: 'Montserrat';
}
.center {
    text-align: center;
    padding-bottom: 55px;
}
.scaleIn {
    animation-name: scaleIn;
}
.lead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.transparent-bg {
    background-color: transparent !important;
    margin-bottom: 0;
}
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.top_areaas .lgo_areaas a {
    color: #4d0000;
}

.top_areaas .lgo_bothss .linkss_mnu ul li a {
    color: #4d0000;
}



body.theme-color nav.navbar {background: #000; color:#fed32e;}
body.theme-color img {filter: grayscale(1) !important;}
body.theme-color .pro_gm_bgr {filter: grayscale(1) !important;}
body.theme-color .others_pgs {filter: grayscale(1) !important;}
body.theme-color .gl_both_lat {background-image: linear-gradient(to right, #d1d1d1, #444444);}
body.theme-color .gl_both_lat:before {filter: grayscale(1) !important;}
body.theme-color .gl_both_lat:after {background: #b9b9b9d6;}

body.theme-color .gl_bax_area .gl_botm_cnt {background: #000000; color: #fed32e;}
body.theme-color .gl_bax_area .gl_botm_cnt span.lnk_ss a img{filter: brightness(0) invert(1);}


body.theme-color footer.ftr_bgb {background: #000; color:#fed32e;}
body.theme-color .top_areaas .lgo_bothss .linkss_mnu ul li img{filter: brightness(0) invert(0);}
body.theme-color .top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search{color:#000;}
body.theme-color .copy_rights .cpy{color:#000;}
body.theme-color .top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt{background: #000; color:#fed32e;}
body.theme-color .top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt img {filter: brightness(1) invert(1) !important;}
body.theme-color .lgo_areaas span.hal_cntss_lgo{color:#000;}
body.theme-color #pro_gramess .progmss_bg span.cnt_tx {background: #000000ba;}
body.theme-color #news_gramess .progmss_bg:hover .nes_cnt_bx {background:#000; color:#fed32e;}
body.theme-color #news_gramess .progmss_bg:hover .nes_cnt_bx h5 {color:#fed32e;}
body.theme-color #news_gramess .progmss_bg .nes_cnt_bx h5{color:#000;}
body.theme-color #news_gramess .progmss_bg:hover .nes_cnt_bx span a {background: #fff; color: #000;}
body.theme-color #news_gramess .progmss_bg .nes_cnt_bx span a {background: #000; color: #fed32e; font-weight:600;}
body.theme-color #news_gramess .progmss_bg .nes_cnt_bx span a:hover {background: #fed32e; color: #000; font-weight:600;}
body.theme-color #news_gramess .owl-nav .owl-prev:hover {background: #000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
body.theme-color #news_gramess .owl-nav .owl-next:hover {background: #000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}

body.theme-color .navbar-inverse .navbar-nav > .active > a, body.theme-color .navbar-inverse .navbar-nav > .active > a:hover, body.theme-color .navbar-inverse .navbar-nav > .active > a:focus, body.theme-color .navbar-inverse .navbar-nav > .open > a, body.theme-color .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {color:#fff;}
body.theme-color .navbar-inverse .navbar-nav > li > a:hover {background-color: transparent; color: #fff;}


body.theme-color #faculty_profile .progmss_bg:hover .nes_cnt_bx {background:#000; color:#fed32e;}
body.theme-color nav.navbar ul.nav.navbar-nav li a {color: #fed32e;}
body.theme-color nav.navbar ul.nav.navbar-nav li a:hover {color: #fff;}
body.theme-color #faculty_profile .progmss_bg:hover .nes_cnt_bx h5 {color:#fed32e;}
body.theme-color #faculty_profile .progmss_bg:hover .nes_cnt_bx p {color:#fed32e;}
body.theme-color #faculty_profile .progmss_bg .nes_cnt_bx h5{color:#000;}
body.theme-color #faculty_profile .progmss_bg:hover .nes_cnt_bx span a {background: #fff; color: #000;}
body.theme-color #faculty_profile .progmss_bg .nes_cnt_bx span a {background: #000; color: #fed32e;}
body.theme-color #faculty_profile .progmss_bg .nes_cnt_bx span a:hover {background: #fed32e; color: #000;}

body.theme-color #faculty_profile .owl-nav .owl-prev:hover {background: #000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
body.theme-color #faculty_profile .owl-nav .owl-next:hover {background: #000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}

body.theme-color .la_updates .up_d_bxss span.dates {background: #000; color:#fed32e;}
body.theme-color .la_updates .up_d_bxss h5{color:#000}
body.theme-color .tabs_araess .tab-link {border: #000000 solid 1px; color: #000; background: transparent; font-weight: 600;}

body.theme-color .tabs_araess .tab-link.active {border: #000000 solid 1px; background: #000000; color: #fed32e;}

body.theme-color .gl_both_lat .awardslist .awrd_lists ul li:hover {background: #000; color:#fed32e;}

body.theme-color .gl_both_lat .awardslist .awrd_lists ul li:hover h5{color:#fed32e;}
body.theme-color .gl_both_lat .awardslist .awrd_lists ul li:hover div {color:#fed32e;}
body.theme-color .gl_both_lat .awardslist .awrd_lists ul li:hover div p{color:#fed32e;}
body.theme-color .gl_both_lat .awardslist .awrd_lists ul li:hover p{color:#fed32e;}
body.theme-color .gl_both_lat .awardslist span a img {filter: brightness(0) invert(0);}
body.theme-color .contnt_araea h3{color:#000;}
body.theme-color #accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton {background: #000000; color:#fed32e;}
body.theme-color #accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton:hover {color:#fff;}
body.theme-color #accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton:hover img{filter: brightness(0) invert(1) !important;}


body.theme-color .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara h5 {color: #fed32e;}
body.theme-color .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara p {color: #fed32e;}
body.theme-color #scroll{background:#000; color:#fed32e;}
body.theme-color #scroll span{color:#fed32e;}
body.theme-color #scroll:hover{background:#fed32e; color:#000;}
body.theme-color #scroll:hover span{color:#000;}
body.theme-color .tabsss_abt .tab-link.active {border: #000000 solid 1px; background: #000000; color:#fed32e;}
body.theme-color .tabsss_abt .tab-link:hover {border: #000000 solid 1px; background: #000000; color:#fed32e;}
body.theme-color .tabsss_abt .tab-link.active button.link_supports_al {color: #fed32e !important;}

body.theme-color .brad_camp .breadscm{color:#000;}
body.theme-color .abt_bothss:before{background:#333;}
body.theme-color .abt_bothss .abt_bt_area .lft_cnt_atara ul li img{filter: brightness(0) invert(0);}
body.theme-color .abt_bothss .abt_bt_area .lft_cnt_atara a{background:#000;  color:#fed32e;}
body.theme-color .abt_bothss .abt_bt_area .lft_cnt_atara a:hover {color: #fff;}

body.theme-color .HMA_program h4{color:#000;}
body.theme-color #accordion .heading.active {background: #000;  color:#fed32e;}
body.theme-color #accordion .heading {color: #000000; border: 1px solid #cfcfcf; background: #ffffff;}

body.theme-color #accordion .heading::before{filter: brightness(0) invert(0);}
body.theme-color #accordion .active.heading::before{filter: brightness(0) invert(1);}

body.theme-color #accordion .contents {border: #d3d3d3 solid 1px;}

body.theme-color .anauss_area .araea_lists .bx_araea span{color:#000;}
body.theme-color .program_araea.abt_bothss .abt_bt_area:hover {background: #000000;}
body.theme-color .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a {background: #fed32e; color: #000;}
body.theme-color .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a img{filter: brightness(0) invert(0);}
body.theme-color .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a:hover img{filter: brightness(0) invert(0) !important;}


body.theme-color .faculty_pg .progmss_bg:hover .nes_cnt_bx {background:#000; color:#fed32e;}
body.theme-color .faculty_pg .progmss_bg:hover .nes_cnt_bx h5 {color:#fed32e;}
body.theme-color .faculty_pg .progmss_bg:hover .nes_cnt_bx p {color:#fed32e;}
body.theme-color .faculty_pg .progmss_bg .nes_cnt_bx h5{color:#000;}
body.theme-color .faculty_pg .progmss_bg:hover .nes_cnt_bx span a {background: #fed32e; color: #000;}
body.theme-color .faculty_pg .progmss_bg:hover .nes_cnt_bx span a img{filter: brightness(0) invert(0) !important;}
body.theme-color .faculty_pg .progmss_bg .nes_cnt_bx span a {background: #000;  color:#fed32e;}

body.theme-color .news_ennts_list .und_liststs {background: #efefef; border: #efefef solid 1px;}
body.theme-color .news_ennts_list .und_liststs .ent_list span{color:#000;}
body.theme-color .news_ennts_list .und_liststs .ent_list a{background:#000;  color:#fed32e;}
body.theme-color .news_ennts_list .und_liststs .ent_list a:hover{color:#fff;}

body.theme-color .HMA_program.blogs .recent_n h3{background:#000; color:#fed32e;}
body.theme-color .gallry_pg .facuty_tbss button.btn.btn-default.filter-button {color: #000000; background: #fff; border: #e1e1e1 solid 1px;}
body.theme-color .gallry_pg .facuty_tbss button.btn.btn-default.filter-button:hover {color: #fed32e; background: #000; border: #000 solid 1px;}
body.theme-color .gallry_pg .facuty_tbss .tabssd_ac button.btn.btn-default.filter-button.active {background: #000 !important; color:#fed32e !important;}

body.theme-color .ngx-pagination li {border: #b3b3b3 solid 1px; margin-right: 5px; color: #000;}
body.theme-color .ngx-pagination li.current {background: #000; border: #000 solid 1px;  color:#fed32e;}
body.theme-color .ngx-pagination li.current span {color: #fed32e !important;}
body.theme-color .ngx-pagination li a:hover {background:#000; color: #fed32e !important;}
body.theme-color .ngx-pagination li a:hover span{background:#000; color: #fed32e !important;}
body.theme-color .ngx-pagination li.pagination-next:hover a {background:#000; color: #fed32e !important;}
body.theme-color .ngx-pagination li.pagination-previous:hover a {background:#000; color: #fed32e !important;}

body.theme-color .paginetion a {border: none; padding: 2px 8px; display: inline-block; color: #646464; font-weight: 500;}
body.theme-color .ngx-pagination li.current span {color: #fff; font-weight: 400;}

body.theme-color .cnt_form_areaa {background: #000000; color:#fed32e;}
body.theme-color .cnt_form_areaa .form-group input.form-control {background: transparent; border: #fff solid 1px;}
body.theme-color #naviconsHide .owl-theme .owl-dots .owl-dot.active span {background: #000000; color:#fed32e;}

body.theme-color .top_areaas .lgo_bothss .linkss_mnu ul li input.search-form:hover {border: #000000 solid 1px; color:#000;}
body.theme-color #header .lgo_areaas .search input.search-form{color:#000;}
body.theme-color #naviconsHide .owl-theme .owl-dots .owl-dot.active span {background: #000000; color:#fed32e;}

body.theme-color .gl_bax_area .gl_botm_cnt span.lnk_ss a img{filter: brightness(0) invert(0);}

#accordion .contents.vl_cntr {text-align: center; padding: 20px;}
#accordion .contents.vl_cntr p {margin-top: 15px;}
#accordion .contents.vl_cntr img {width: 100%; max-width: 281px;}
body.theme-color footer.ftr_bgb h5 {color: #fed32e;}
body.theme-color .ftr_bgb .socialss ul li{color: #fed32e;}


body.theme-color .lft_area_main{background:#000 !important;}
body.theme-color .lft_area_main .lft_araea_tabss h4 {color: #fed32e;}
body.theme-color .lft_area_main .lft_araea_tabss .tabs-left {border-bottom: none; border-right: none;}
body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li a {border: 1px solid #fed32e; color: #fed32e;}


body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li.active>a, body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li.active>a:hover, body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li.active>a:focus {border: 2px solid #ff0015; background: #fed32e; color: #000 !important;}
body.theme-color .lft_area_main .lft_araea_tabss .nav-tabs>li>a:hover {background: #fed32e; color: #000 !important;}
body.theme-color .lft_area_main .lft_araea_tabss .tabs-left>li.active>a::after{background: url('arrow_r_w1_blk.524a006b757dc308.png') no-repeat;}

body.theme-color .botm_nxt_areas.prog_pg button.prog_bnts.blue_bg {background: #000; color: #fed32e;}
body.theme-color .botm_nxt_areas.prog_pg button.prog_bnts.blue_bg:hover{color:#fff;}
body.theme-color .item.ng-star-inserted a.newslink {background: #000 !important; color: #fed32e !important;}
body.theme-color .item.ng-star-inserted a.newslink:hover {color: #fff !important;}
body.theme-color .contnt_araea.program_dtls .tab-content .tbds_act_araeas h2{color:#000 !important;}
body.theme-color .news_announcements h2{color:#000 !important;}

body.theme-color .account-center .login-portals{background: #000 !important; color: #fed32e !important;}
body.theme-color .al_lgo_araeaea{color: #000 !important;}
body.theme-color .account-box .form-group a{color: #000 !important;}

body.theme-color .profile_usersss {background: #000000;}
body.theme-color .user_prf_als p {color: #000000;}
body.theme-color .user_prf_als .usr_list_prt h6 span {background: #000000; color: #fed32e;}
body.theme-color .HMA_program.blogs .socialsss a {background: #000000;}

body.theme-color #news_gramess .owl-nav .owl-prev{background: #000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
body.theme-color #news_gramess .owl-nav .owl-next{background: #000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}
body.theme-color #faculty_profile .owl-nav .owl-prev {background: #000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
body.theme-color #faculty_profile .owl-nav .owl-next {background: #000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}

body.theme-color .both_als .first_mg span.ovl_area{background:#000000 !important; color: #fed32e !important;}
body.theme-color .both_als .both_imgs .frt_ons span.ovl_area{background:#000000 !important; color: #fed32e !important;}
body.theme-color .ftr_bgb .socialss ul li img {filter: brightness(0) invert(1) !important;}

body.theme-color .ftr_bgb .socialss ul li a {display: inline-block; background: #000; color:#fff;}

body.theme-color .lgo_areaas a {color: #000 !important; display: inline-block; background: transparent;}

body.theme-color .tabs_araess h3 {color: #000000;}
body.theme-color .gl_both_lat .awardslist h3 {color: #000000;}
body.theme-color .pro_gm_bgr .cntss_areaa h3 {color: #000000;}
body.theme-color .pro_gm_bgr:before {background: #dbdbdbd6;}
body.theme-color .tabs_araess .explr span a {color: #000000 !important;}
body.theme-color .tabs_araess .explr span a img{filter: brightness(0) invert(0) !important;}
body.theme-color .gl_both_lat .awardslist span a img{filter: brightness(0) invert(0) !important;}


body.theme-color .gl_both_lat .awardslist p {color: #000000 !important;}
body.theme-color .gl_both_lat .awardslist span a {color: #000000 !important;}
body.theme-color .pro_gm_bgr .cntss_areaa p {color: #000000; font-weight: 500;}


body.theme-color .others_pgs:before {background: #ffffffa1;}
body.theme-color .others_pgs .als_cnts{color:#000;}
body.theme-color .brad_camp .breadscm a {color: #474747;}
body.theme-color .brad_camp .breadscm span {color: #474747;}

body.theme-color #lgo_body {filter: grayscale(1) !important;}

body.theme-color .gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea{background:#000;}
body.theme-color .gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea span {color: #fed32e;}

/* body.theme-color #lgo_body{filter: grayscale(1) !important;} */


.gl_both_lat .awardslist .explr img{filter: brightness(0) invert(1);}
li.ng-star-inserted:hover a.usr_name_dy {
    text-decoration: underline;
}
li.ng-star-inserted a.usr_name_dy {
    padding-right: 10px;
}
.linkss_mnu li.ng-star-inserted a {
    color: #000;
}
/* Login */
#lgo_body {
	background: url('bgr.34d67fb74f8ca7bf.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed !important;
    display: inline-table;
    width: 100%;
    height: 100%;
    position: initial;
}
.account-wrapper {
    display: table;
    table-layout: fixed;
    height: 100%;
    padding: 0px;
    width: 100%;
}
.account-center .lgo_araea_als {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}
.account-center .login-portals {
    background: #006ab4;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-transform: inherit;
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 auto;
    max-width: 560px;
}
.account-box {
    margin: 0 auto;
    max-width: 560px;
    border-radius: 4px;
    border: #ffffff4a solid 1px;
    background: #fff;
    padding: 15px 40px 50px;
    box-shadow: 0 10px 20px #00000045;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 100%;
}
.merg_bx {
    padding: 25px 0 0;
}
.al_lgo_araeaea {
    text-align: center;
        font-size: 24px;
    font-weight: 700;
    color: #01447a;
    margin-bottom: 30px;
    line-height: 31px;
}
.al_lgo_araeaea img {
    margin-right: 7px;
}
.account-box .form-group {
    margin-bottom: 15px;
}
.account-box label {
    color: #323232;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-focus .form-control {
    height: 50px;
    border-radius: 8px;
    padding: 0px 0px 0px 15px;
}
.account-box .account-btn {
    border-radius: 5px;
    font-size: 20px;
    margin-top: 15px;
    padding: 18px 35px;
    background: #ffcf5b;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    color: #2b2b2b;
    width: 100%;
    font-weight:700;
}
.form-group.form-focus.both_area {
    margin-top: 20px;
    padding: 0;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}
.account-box .form-group a {
    color: #006ab4;
    padding-top: 5px;
    text-decoration: underline;
	    font-weight: 600;
}
.form-group.form-focus.both_area span.rto_sgn {
    float: right;
}
.account-center .bttms {
    text-align: center;
    padding: 40px 0 30px;
    color: #333;
    font-weight: 700;
}
.form-group.form-focus.both_area.rgss {
    text-align: center;
}
.form-group.form-focus.both_area.rgss span.rto_sgn {
    float: inherit;
}
/* End Login */



.top_areaas {
    background: #fff;
    padding: 10px 0;
}
.sticky .top_areaas {
    background: #fff;
}

.top_areaas .lgo_bothss {
    display: inline-block;
    width: 100%;
}
.top_areaas .lgo_bothss .linkss_mnu {
    float: right;
}
.top_areaas .lgo_bothss .linkss_mnu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.top_areaas .lgo_bothss .linkss_mnu ul li {
    float: left;
    margin-right: 18px;
	line-height:35px;
}
.top_areaas .lgo_bothss .linkss_mnu ul li .chcp_font_size button i:before {
    display: none;
}/*chnage*/
.chcp_font_size button i {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.top_areaas .lgo_bothss .linkss_mnu ul li:last-child {
    margin-right: 0 !important;
}
.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt {
    background: #fed32e;
    padding: 8px 8px;
    color: #212121;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
	margin-left:5px;
	position: relative;
    top:0px;
}
.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt:hover {
    background: #005aaf;
    color: #fff;
}
.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt:hover img{filter: brightness(0) invert(1);}
.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt img {
    margin-right: 3px;
}

.top_areaas .sub_mnu_listss {
    width: 100%;
    text-align: right;
    padding-top: 5px;
}
.top_areaas .sub_mnu_listss a {
    color: #374752;
    font-size: 12px;
    font-weight: 500;
    margin-right: 15px;
	    font-family: 'Montserrat';
}
.top_areaas .sub_mnu_listss a:hover{text-decoration:underline;}
.top_areaas .sub_mnu_listss a:last-child {
    margin: 0;
}
.top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search {
    color: #005aaf;
    font-size: 20px;
    -webkit-text-stroke: 0px #f6f6f6;
}
.top_areaas .lgo_bothss .linkss_mnu ul li .search {
    position: relative;
}
.top_areaas .lgo_bothss .linkss_mnu ul li input.search-form {
    position: absolute;
    padding: 4px 0px;
    top: -4px;
    color: #005aaf;
    width: 30px;
	font-size: 0;
    margin: 0 -5px 0px;
 transition: all 0ms;
}

.top_areaas .lgo_bothss .linkss_mnu ul li input.search-form:focus {
    border: none;
    outline: none;
}

.top_areaas .lgo_bothss .linkss_mnu ul li input.search-form:hover {
    width: 180px;
    background: #fff;
    border: #005aaf solid 1px;
    right:5px;
	font-size:13px;
    padding: 4px 10px;
}

.top_areaas .lgo_bothss .linkss_mnu ul li input::placeholder {color:#005aaf; opacity:1;}
.top_areaas .lgo_bothss .linkss_mnu ul li input:-ms-input-placeholder {color:#005aaf;}
.top_areaas .lgo_bothss .linkss_mnu ul li input::-ms-input-placeholder {color:#005aaf;}


.chcp_font_size button {
  border: none;
  background-color:transparent;
  text-shadow: none;
  box-shadow: none;
  padding:0px 5px;
  margin:0px;
  border-radius:0;
}
.chcp_font_size button:hover {
    border-bottom: #005aaf solid 1px;

}
.chcp_font_size button:hover {
    background: transparent;
}

.chcp_font_size button:hover{
  color: #005aaf;
}
.btn-decrease {
  font-size:12px;
}
.btn-orig {
  font-size:14px;
}
.btn-increase {
  font-size:12px;
}

.lgo_areaas span.hal_cntss_lgo {
    font-size: 20px;
    font-weight: 600;
    color: #005aaf;
    position: relative;
    top: 7px;
}

.managess_areea_arrow .placement-btns{}
.managess_areea_arrow .placement-btns .owl-nav{}

.clientss .owl-item .slide.item.ng-star-inserted img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.clientss .owl-item .slide.item.ng-star-inserted {
    height: 65px;
    overflow: hidden;
}
.clientss .owl-item .slide.item.ng-star-inserted a:focus img {
    border: 2px solid #ff0015 !important;
}

.clientss .owl-carousel {
    position: relative;
}
.clientss .owl-carousel .owl-nav.ng-star-inserted {
    position: absolute;
    top: 13px;
    margin: 0;
    width: 100%;
}

.managess_areea_arrow .placement-btns {
    position: absolute;
	z-index: 99;
	    top: 50%;
}

.managess_areea_arrow .placement-btns .owl-nav {
    position: absolute;
}

.managess_areea_arrow .placement-btns .owl-nav .owl-prev{
    position: absolute;
    left: 0;
    margin: 0;
    background: transparent;
    color: #000;
    font-size: 0;
	background: url('left_ar_w_tick.683300bd91e7a7df.png') no-repeat;
	width: 20px;
    height: 34px;
	cursor: pointer;
	top: 55%;
}
.managess_areea_arrow .placement-btns .owl-nav .owl-prev span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 23px;
    height: 35px;
    border-radius: 0px;
    display: block;
}
.managess_areea_arrow .placement-btns .owl-nav .owl-prev span.owl-nav-label:focus{outline: 2px solid #ff0015 !important;}


.clents .managess_areea_arrow .owl-next{
   position: absolute;
    right: 0;
    margin: 0;
    background: transparent;
    color: #000;
    font-size: 0;
	background: url('right_ar_w_tick.45546e3f227f2097.png') no-repeat;
	width: 20px;
    height: 34px;
	cursor:pointer;
	top: 50%;
}
.clents .managess_areea_arrow .owl-next span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 23px;
    height: 35px;
    border-radius: 0px;
    display: block;
}
.clents .managess_areea_arrow .owl-next span.owl-nav-label:focus{outline: 2px solid #ff0015 !important;}

.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-prev {
    position: absolute;
    left: 0;
    margin: 0;
    background: transparent;
    color: #000;
    font-size: 0;
	background: url('left_ar_w_tick.683300bd91e7a7df.png') no-repeat;
	width: 20px;
    height: 34px;
}
.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-next {
    position: absolute;
    right: 0;
    margin: 0;
    background: transparent;
    color: #000;
    font-size: 0;
	background: url('right_ar_w_tick.45546e3f227f2097.png') no-repeat;
	width: 20px;
    height: 34px;
}
.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-next span.owl-nav-label.placementArrow{
    position: absolute;
    left: -7px;
    top: -2px;
}
.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-next span.owl-nav-label.placementArrow:focus{outline: 2px solid #ff0015 !important;}

.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-prev span.owl-nav-label.placementArrow {
    position: absolute;
    left: -7px;
    top: -2px;
}

.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-prev span.owl-nav-label.placementArrow:focus{outline: 2px solid #ff0015 !important;}

.clents.new_partss_areaa owl-carousel-o.clientss .owl-next span.owl-nav-label{
    position: absolute;
    left: -7px;
    top: -2px;
}
.clents.new_partss_areaa owl-carousel-o.clientss .owl-next span.owl-nav-label:focus{outline: 2px solid #ff0015 !important;}

.clents.new_partss_areaa owl-carousel-o.clientss .owl-prev span.owl-nav-label {
    position: absolute;
    left: -7px;
    top: -2px;
}
.clents.new_partss_areaa owl-carousel-o.clientss .owl-prev span.owl-nav-label:focus{outline: 2px solid #ff0015 !important;}



.managess_areea_arrow .government-btns {
    position: absolute;
	z-index: 99;
	top: 15%;
}
.managess_areea_arrow .government-btns .owl-nav .owl-prev{
    position: absolute;
    left: 0;
    margin: 0;
    background: transparent;
    color: #000;
    font-size: 0;
	background: url('left_ar_w_tick.683300bd91e7a7df.png') no-repeat;
	width: 20px;
    height: 34px;
	cursor: pointer;
	top: 55%;
}
.managess_areea_arrow .government-btns .owl-nav .owl-prev span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 23px;
    height: 35px;
    border-radius: 0px;
    display: block;
}
.managess_areea_arrow .government-btns .owl-nav .owl-prev span.owl-nav-label:focus{outline: 2px solid #ff0015 !important;}
.clents.new_partss_areaa .managess_areea_arrow .owl-next {
    top: 15%;
}




.faculty_profile .faculties-btns {
    position: absolute;
    right: 0;
    top: 0;
}



/* Programes */

.hm_program{background: url('undr_bgr.09c41cbf02edede3.png') no-repeat; background-size: 100% 100%;}
.hm_programes_und{background: url('programes.e3ba3aa1cb95fedc.png') no-repeat; background-size: 100% 100%;}
.ab_bg_ner{background: url('abt_us.5500b1388658c2d7.png') no-repeat; background-size: 100% 100%;}
.admis_bg_ner{background: url('admissions_bg.3d91a7cff0f6bfbf.png') no-repeat; background-size: 100% 100%;}
.progrms_bg_ner{background: url('programs_bg.85e62eea354dd44d.png') no-repeat; background-size: 100% 100%;}
.campus_bg_ner{background: url('campus_life_bg.22f7adc6a9edae54.png') no-repeat; background-size: 100% 100%;}
.faculty_bg_ner{background: url('faculty_details_bg.4a7ff00bccc85864.png') no-repeat; background-size: 100% 100%;}
.newsev_bg_ner{background: url('news_and_events_pg.d4856b59003e4a03.png') no-repeat; background-size: 100% 100%;}
.newsandev_bg_ner{background: url('blog_bg.1ad44a8f6e3eccae.png') no-repeat; background-size: 100% 100%;}
.award_bg_ner{background: url('award_bg.9585c45dfafab0be.png') no-repeat; background-size: 100% 100%;}
.term_and_bg_ner{background: url('term_and_condition_bg.160a8adf8d4d23bd.png') no-repeat; background-size: 100% 100%;}
.corporate_bg_ner{background: url('corporate-relations.17241b273d41720e.png') no-repeat; background-size: 100% 100%;}
.disclaimer_bg_ner{background: url('disclaimer_bg.37bfad48e5e84a75.png') no-repeat; background-size: 100% 100%;}
.faq_bg_ner{background: url('faq_bg.d4c291ea0401e9fd.png') no-repeat; background-size: 100% 100%;}
.privacy_bg_ner{background: url('privacy_policy_bg.5bfbafa1fed6cbf9.png') no-repeat; background-size: 100% 100%;}
.gallery_bg_ner{background: url('gallery_bg.43e460893aece5c5.png') no-repeat; background-size: 100% 100%;}
.placements_bg_ner{background: url('placements_bg.55e226fc781b34be.png') no-repeat; background-size: 100% 100%;}
.program_details_bg_ner{background: url('program_details_bg.d8a1f0378f5a0db9.png') no-repeat; background-size: 100% 100%;}
.login_bgr{background: url('bgr.34d67fb74f8ca7bf.jpg') no-repeat; background-size: 100% 100%;}



.both_or_bgs {
    background-size: cover;
}

.pro_gm_bgr {
    width: 100%;
    height: 530px;
    background-size: cover;
    background-position: bottom;
	position:relative;
	padding:0 50px;
	top:-200px;
	margin-bottom:-130px;
	z-index:1;
	/* filter: brightness(0.45); */
}
 .pro_gm_bgr:before {
    content: '';
    position: absolute;
	left:0;
    width: 100%;
    height: 100%;
    background:#f3f3f3de;
}

.pro_gm_bgr .cntss_areaa {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0px;
	margin-bottom: 40px;
}
.pro_gm_bgr .cntss_areaa h3 {
    color: #000000;
    font-size: 34px;
    margin: 0;
    padding-top:60px;
    font-weight: 600;
    padding-bottom: 20px;
}
.pro_gm_bgr .cntss_areaa p {
    color: #000000;
    font-size:18px;
	line-height:25px;
    margin: 0;
    font-weight:500;
    padding-bottom: 20px;
}
.pro_gm_bgr .cntss_areaa p span{display:block;}

#pro_gramess .progmss_bg {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

#pro_gramess .progmss_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#pro_gramess .progmss_bg span.cnt_tx span {
    display: block;
}

#pro_gramess .progmss_bg a.al_text_lknk_area{
	position: absolute;
    bottom: 0;
    background: #0054a3;
    width: 100%;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
}
#pro_gramess .progmss_bg a.al_text_lknk_area:hover {
    color: #f9c74e;
}



#pro_gramess .owl-dots {
    position: absolute;
    right: 0;
    top: -40px;
}
#pro_gramess .owl-dots button.owl-dot span {
    margin: 5px 5px;
    width: 12px;
    height: 12px;
    background: #c3d5d9;
}
#pro_gramess .owl-dots button.owl-dot.active span {
    margin: 5px 5px;
    width: 12px;
    height: 12px;
    background: #378fd6;
}


.all_hedingss {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    line-height: 35px;
}
#news_gramess .progmss_bg {
    display: inline-block;
    width: 100%;
}
#news_gramess .progmss_bg .nsw_mgs {
    width: 100%;
    height: 315px;
}
#news_gramess .progmss_bg .nsw_mgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#news_gramess .progmss_bg .nes_cnt_bx {
    background: #fff;
    padding:20px;
    width: 94%;
    margin: 0 auto;
    position: relative;
    top: -70px;
	min-height:200px;
	box-shadow: 0px 3px 10px #dfdfdf;
}
#news_gramess .progmss_bg .nes_cnt_bx h5 {
    margin: 0 0 10px;
    font-weight: 600;
    color: #005baf;
	font-size:14px;
    line-height: 17px;
}
#news_gramess .progmss_bg .nes_cnt_bx p {
    margin: 0 0 15px;
    font-weight: 500;
    color: #333333;
	font-size:12px;
    line-height: 17px;
}
#hindi #news_gramess .progmss_bg .nes_cnt_bx p {
    margin: 0 0 15px;
    font-weight: 500;
    color: #333333;
	font-size:12px;
    line-height: 19px;
}
#news_gramess .progmss_bg .nes_cnt_bx span {
    position: absolute;
    bottom: 15px;
}
#news_gramess .progmss_bg .nes_cnt_bx span a {
    background: #d9dfe6;
    padding: 6px 15px;
    display: inline-block;
    font-size: 11px;
    color:#000000;
	font-weight: 600;
}



.managess_areea_arrow{position:relative;}
.managess_areea_arrow .slider-btns {
    position: absolute;
    top: 0;
    right: 0;
}

#news_gramess .progmss_bg:hover .nes_cnt_bx p {color: #fff;}
#news_gramess .progmss_bg:hover .nes_cnt_bx h5 {color: #fff;}
#news_gramess .progmss_bg:hover .nes_cnt_bx {background: #005baf;}
#news_gramess .progmss_bg:hover .nes_cnt_bx span a {background: #ffffff; color: #005baf;}

.managess_areea_arrow .slider-btns .owl-nav {display: flex; position: absolute; right: 0; margin:0; top:0px;}


.managess_areea_arrow .slider-btns .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #005aaf url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}
.managess_areea_arrow .slider-btns .owl-nav button.owl-prev:hover {
	background: #000 url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}

.managess_areea_arrow .slider-btns .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #0054a3 url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}
.managess_areea_arrow .slider-btns .owl-nav button.owl-next:hover {
		background: #000 url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}

.managess_areea_arrow .slider-btns .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    opacity: 1;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 0;
    background: #0054a3 url('ar_left.de66868edd9b5097.png') no-repeat center !important;
    background-position: center;
	margin-right: 8px;
}
.managess_areea_arrow .slider-btns .owl-nav .owl-prev span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
	display:block;
}
.managess_areea_arrow .slider-btns .owl-nav .owl-next span.owl-nav-label:focus {
    outline: 2px solid #ff0015 !important;
}
.managess_areea_arrow .slider-btns .owl-nav .owl-prev span.owl-nav-label:focus {
    outline: 2px solid #ff0015 !important;
}

.managess_areea_arrow .slider-btns .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    opacity: 1;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 0;
    background: #0054a3 url('ar_right.e7208a996697b198.png') no-repeat center !important;
    background-position: center;
}
.managess_areea_arrow .slider-btns .owl-nav .owl-next span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
	display:block;
}

.managess_areea_arrow .slider-btns .owl-nav .owl-prev:hover{background:#000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
.managess_areea_arrow .slider-btns .owl-nav .owl-next:hover{background:#000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}



.managess_areea_arrow .faculty-btns{position:absolute; top:0; right:0;}

.managess_areea_arrow .faculty-btns .owl-nav {display: flex; position: absolute; right: 0; margin:0; top:0px;}

.managess_areea_arrow .faculty-btns .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    opacity: 1;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 0;
    background: #0054a3 url('ar_left.de66868edd9b5097.png') no-repeat center !important;
    background-position: center;
	margin-right:8px;
}
.managess_areea_arrow .faculty-btns .owl-nav .owl-prev:hover {background: #000000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}

.managess_areea_arrow .faculty-btns .owl-nav .owl-prev span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
	display:block;
}
.managess_areea_arrow .faculty-btns .owl-nav .owl-prev span.owl-nav-label:focus {
    outline: 2px solid #ff0015 !important;
}

.managess_areea_arrow .faculty-btns .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #005aaf;
    opacity: 1;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 0;
    background: #005aaf url('ar_right.e7208a996697b198.png') no-repeat center !important;
    background-position: center;
}
.managess_areea_arrow .faculty-btns .owl-nav .owl-next:hover {background: #000000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}
.managess_areea_arrow .faculty-btns .owl-nav .owl-next span.owl-nav-label {
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
	display:block;
}
.managess_areea_arrow .faculty-btns .owl-nav .owl-next span.owl-nav-label:focus {
    outline: 2px solid #ff0015 !important;
}

.managess_areea_arrow .faculty-btns .owl-nav .owl-prev:hover{background:#000 url('ar_left.de66868edd9b5097.png') no-repeat center !important;}
.managess_areea_arrow .faculty-btns .owl-nav .owl-next:hover{background:#000 url('ar_right.e7208a996697b198.png') no-repeat center !important;}

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


#naviconsHide .owl-theme .owl-dots .owl-dot.active span{
	margin: 5px 5px;
    width: 12px;
    height: 12px;
    background: #378fd6;
}
#naviconsHide .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 5px;
    background:#000;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/* End Programes */


.modal#video_pop {
    background: #000000d6;
    padding: 5% 0 0 0;
	    opacity: 1;
}
#video_pop .modal-body {
    padding: 0;
    border: none;
}
#video_pop .modal-body iframe {
    border: none;
    width: 100%;
    height: 100%;
}
#video_pop .modal-content {
    padding: 0;
    margin: 0;
    background: black;
	    border: #fff solid 3px;
}
#video_pop .modal-content button.close {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 9;
    width: 30px;
    height: 30px;
    background: #fff;
    opacity: 1;
    border-radius: 40px;
    cursor: pointer;
    line-height: 30px;
}
#video_pop .modal-content button.close:focus {
    border: none;
    outline: none;
}
#video_pop .modal-dialog {
    max-width: 950px;
    margin: 0px auto;
    width: 100%;
	position:relative;
	    margin-top: 9%;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
	min-height:515px;
    padding: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ------------- Faculty Profile HMA --------------- */

#faculty_profile .progmss_bg {
    display: inline-block;
    width: 100%;
	margin-bottom:0px;
}
#faculty_profile .progmss_bg .nsw_mgs {
    width: 100%;
    height: 185px;
	background: #e9e9e9;
}
#faculty_profile .progmss_bg .nsw_mgs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#faculty_profile .progmss_bg .nes_cnt_bx {
    background: #fff;
    padding:20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
	    font-family: 'Montserrat';
    top:0px;
	min-height:165px;
	box-shadow: 0px 3px 10px #dfdfdf;
}

#faculty_profile .progmss_bg .nes_cnt_bx h5 {
    margin: 0 0 10px;
    font-weight: 600;
    color: #005baf;
	font-size:14px;
    line-height: 17px;
}
#faculty_profile .progmss_bg .nes_cnt_bx p {
    margin: 0 0 15px;
    font-weight: 500;
    color: #333333;
	font-size:12px;
    line-height: 17px;
}
#faculty_profile .progmss_bg .nes_cnt_bx span {
    position: absolute;
    bottom: 15px;
}
#faculty_profile .progmss_bg .nes_cnt_bx span a {
    background:#0054a3;
    padding: 6px 15px;
    display: inline-block;
    font-size: 11px;
    color: #fff;
}

#faculty_profile .progmss_bg:hover .nes_cnt_bx p {
    color: #fff;
}
#faculty_profile .progmss_bg:hover .nes_cnt_bx h5 {
    color: #fff;
}
#faculty_profile .progmss_bg:hover .nes_cnt_bx {
    background: #005baf;
}

#faculty_profile .progmss_bg:hover .nes_cnt_bx span a{background:#ffffff; color:#005baf; font-weight:600;}


#faculty_profile .owl-nav {
    display: flex;
    position: absolute;
    right: 0;
	margin:0;
    top: -67px;
}


#faculty_profile .owl-nav button.owl-prev.disabled {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #005aaf;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #005aaf url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav button.owl-prev.disabled:hover {
	background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #005aaf;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #005aaf url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav button.owl-prev:hover {
	background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat;
    background-position: center;
}

#faculty_profile .owl-nav.disabled button.owl-next.disabled {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #005aaf;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #005aaf url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav.disabled button.owl-next.disabled:hover {
		background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #005aaf;
    opacity: 1;
    cursor: pointer;
	font-size:0;
	background: #005aaf url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}
#faculty_profile .owl-nav button.owl-next:hover {
		background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat;
    background-position: center;
}
.both_als {
    display: inline-block;
    width: 100%;
}
.both_als .first_mg {
    float: left;
    max-width: 240px;
    width: 100%;
    overflow: hidden;
    height: 350px;
	position:relative;
}
.both_als .first_mg span.ovl_area {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #595959;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}
.both_als .first_mg span.ovl_area:hover{background:#0054a3; color:#fff; font-weight:600;}

.both_als .both_imgs .frt_ons span.ovl_area:hover{background:#0054a3; color:#fff; font-weight:600;}

.both_als .first_mg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.both_als .both_imgs {
    float: left;
    max-width: 269px;
    overflow: hidden;
    width: 100%;
}

.both_als .both_imgs .frt_ons {
    width: 100%;
    height: 174px;
    overflow: hidden;
	position:relative;
}
.both_als .both_imgs .frt_ons span.ovl_area {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #595959;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}
.one_both_space{margin-bottom:2px;}
.one_both_space1{margin-right:2px;}
.both_als .both_imgs .frt_ons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------- End Faculty Profile HMA --------------- */


/* ---------------- Latest Update -------------- */
.all_hedingss.latst {
    margin-bottom: 55px;
}
.la_updates {background: #f3f3f3;}

.la_updates .up_d_bxss {
    display: inline-block;
    width: 100%;
    padding: 0 35px 0 20px;
	position:relative;
}
.la_updates .up_d_bxss span.dates {
    background: #005aaf;
    display: inline-block;
    padding: 3px 15px;
    font-size: 13px;
    color: #fff;
    margin-bottom:25px;
}
.la_updates .up_d_bxss span.dates:hover {
    text-decoration: underline;
}
.la_updates .up_d_bxss .latestUpdateDesignArea:hover {
    text-decoration: underline;
}

.rt_bordr{border-right:#c4dff2 solid 1px; content:''; position:absolute; top:0; right:-10px; height:180px;}

.la_updates .up_d_bxss h5 {
    font-size: 14px;
    color: #005baf;
    line-height: 19px;
       font-weight: 600;
    font-family: 'Montserrat';
    margin-top: 0;
}

.la_updates .up_d_bxss p {
    font-size: 13px;
    color: #333333;
    line-height: 18px;
    font-weight: 500;
	margin-bottom: 30px;
	font-family: 'Montserrat';
}
#hindi .la_updates .up_d_bxss p {
    font-size: 13px;
    color: #333333;
    line-height: 23px;
    font-weight: 500;
	margin-bottom: 30px;
	font-family: 'Montserrat';
}

.la_updates .up_d_bxss .up_mg_areaa {
    width: 100%;
    height: 208px;
    overflow: hidden;
}
.la_updates .up_d_bxss .up_mg_areaa img{width:100%; height:100%; object-fit:contain;}
/* ---------------- End Latest Update -------------- */



/* -------------- Gallery Both Area -------------- */

.gl_both_lat {
    background-image: linear-gradient(to right, #438bcf, #034d97);
    position: relative;
}

.gl_both_lat:before {
    content: '';
    position: absolute;
    background: url('grl_bg.22af4999a0a28fda.png') no-repeat;
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0;
    opacity: 0.2;
    background-position: top;
    background-size: cover;
}

.gl_both_lat:after {
    background: #f3f3f3a6;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
}
.gl_both_lat .container {
    position: relative;
    z-index: 1;
}
.tabs_araess {display:inline-block; width:100%;     font-family: 'Montserrat';}
.tabs_araess h3 {font-size:30px; color:#000; font-weight:600;  margin-bottom:12px; margin-top:0; line-height:40px;}
.tabs_araess a.tab{
	border: #0054a3 solid 1px;
    padding:7px 15px;
    font-size: 12px;
	background:#0054a3;
    color: #fff;
    text-transform: uppercase;
}
.tabs_araess a.tab.active {
    border: #fff solid 1px;
    padding:7px 15px;
    font-size: 12px;
    color: #fff;
	background:transparent;
    text-transform: uppercase;
}
.tabs_araess .tab-content {display: none;}
.tabs_araess .tab-content.active {display: block;}


.tabs_araess .tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  max-width: inherit;
  margin-bottom:20px;
}

.tabs_araess .tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: left;
}

.tabs_araess .tab-link {
	border: #0054a3 solid 1px;
    padding:7px 15px;
    font-size: 12px;
	background:#0054a3;
    color: #fff;
    text-transform: uppercase;
	list-style:none;
	    margin-right: 15px;
	cursor: pointer;
}
.tabs_araess .tab-link:last-child{margin:0;}

.tabs_araess .tab-link:hover {
  color: #fff;
  background:#0054a3;
  border: #0054a3 solid 1px;
}

.tabs_araess .tab-link.active {
    border: #000000 solid 1px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    background: transparent;
    text-transform: uppercase;
}
.tabs_araess .tab-link.active:hover {
    background: #0054a3;
    color: #fff;
    border: #0054a3 solid 1px;
}


.tabs_araess .tabs.button_tab_allass .tab-link {
    padding: 0;
}

.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss {border:#0054a3 solid 1px; padding:7px 15px; font-size:12px; background:#0054a3;
    color:#fff; text-transform:uppercase; list-style:none; margin-right:15px; cursor:pointer;}
.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss:last-child{margin:0;}

.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss:hover {color:#fff; background:#0054a3; border:#0054a3 solid 1px;}
.tabs_araess .tabs.button_tab_allass .tab-link.active button.button_tabsss {background: transparent !important; width:100%; color:#000000 !important;}
.tabs_araess .tabs.button_tab_allass .tab-link.active button.button_tabsss:hover {background:#0054a3 !important; color:#fff !important;}
.tabs_araess .tabs.button_tab_allass .tab-link button.button_tabsss {background:#0054a3 !important; color:#fff;}
.tabs_araess .tabs.button_tab_allass .tab-link button.button_tabsss:focus {outline: 2px solid #ff0015 !important;}

.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss.active {border:#000000 solid 1px; padding:7px 15px; font-size:12px; font-weight:600; color:#000000; background:transparent; text-transform:uppercase;}
.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss.active:hover {background: #0054a3; color: #fff; border: #0054a3 solid 1px;}

body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss:hover {color:#fff; background:#0054a3; border:#0054a3 solid 1px;}
body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link.active button.button_tabsss {background: #fed31e !important; color: #000000 !important;}

body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link button.button_tabsss {background:#afafaf !important; color: #000000;}
body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link button.button_tabsss:focus {border: 2px solid #ff0015 !important;}


body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link {border: #000 solid 1px !important;}
body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link button.button_tabsss{border: #000 solid 1px !important; background: #000 !important; color:#fed31e !important;}
body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link.active {border: #000 solid 1px !important;}
body.theme-color .tabs_araess .tabs.button_tab_allass .tab-link.active button.button_tabsss{border: #000 solid 1px !important; background:#b0b0b0 !important;}

.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss.active {border:#000000 solid 1px; padding:7px 15px; font-size:12px; font-weight:600; color:#000000; background:transparent; text-transform:uppercase;}
.tabs_araess .tabs.button_tab_allass .tab-link .button_tabsss.active:hover {background: #0054a3; color: #fff; border: #0054a3 solid 1px;}


.tabs_araess .content-wrapper {
  padding:0;
}

.tabs_araess .tab-content {
  display: none;
  text-align: center;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.tabs_araess .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}

.gl_bax_area {
    display: inline-block;
    width: 100%;
	position:relative;
}
.gl_bax_area .mg_araea {
    width: 100%;
    height: 185px;
    overflow: hidden;
	position:relative;
}
.gl_bax_area.gdo_glrrrs .mg_araea {
    height: 330px;
}
.gl_bax_area .mg_araea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gl_bax_area .mg_araea span.lnkss_ar {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
	    z-index: 1;
}
.gl_bax_area .gl_botm_cnt {
    background: #fff;
    padding:35px 15px;
    width: 94%;
    margin: 0 auto;
    font-size: 14px;
    color: #1a1a1a;
    text-align: left;
    position: relative;
    top: -20px;
    font-weight: 600;
}
.gl_bax_area .gl_botm_cnt:hover {
    background: #005baf;
    color: #fff;
}
.gl_bax_area .gl_botm_cnt:hover a img{
    filter: brightness(0) invert(1);
}
.gl_bax_area .gl_botm_cnt span.lnk_ss {
    float: right;
}
.gl_bax_area .gl_botm_cnt span.lnk_ss a:focus {
    padding: 2px 4px 5px;
}

.gl_both_lat .awardslist p {
    font-size: 20px;
    color: #000;
    line-height: 18px;
	margin-bottom: 35px;
    display: inline-block;
	font-weight:500;
}

.gl_both_lat .awardslist span a {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.gl_both_lat .awardslist span {
    float: right;
	    border-bottom: #ffffffb3 solid 1px;
    padding-bottom: 5px;
    position: relative;
    top: -8px;
}
.gl_both_lat .awardslist span:hover {
    background: transparent !important;
}
.gl_both_lat .awardslist span:hover a{
    color: #fff !important;
}
.gl_both_lat .awardslist span a img {
    padding-left: 4px;
}
.gl_both_lat .awardslist h3 {
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 12px;
	margin-top: 0;
	    line-height: 40px;
}
.gl_both_lat .awardslist {
    display: inline-block;
    width: 85%;
    font-family: 'Montserrat';
    float: right;
}

.gl_both_lat .awardslist .awrd_lists {
    display: inline-block;
    width: 100%;
	    font-family: 'Montserrat';
}
.gl_both_lat .awardslist .awrd_lists ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gl_both_lat .awardslist .awrd_lists ul li {
    background: #fff;
    padding:20px 60px;
    position: relative;
	margin-bottom: 15px;
}
.gl_both_lat .awardslist .awrd_lists ul li:last-child{margin-bottom:0;}

.gl_both_lat .awardslist .awrd_lists ul li h6 {
    position: absolute;
    background: #333;
    padding: 7px;
    left: -38px;
    width: 78px;
    top:13px;
    height: 78px;
    text-align: center;
    line-height: 65px;
    border-radius: 100px;
	color: #fff;
}
.gl_both_lat .awardslist .awrd_lists ul li h6 img {
    width: 45px;
    height: 45px;
	    border-radius: 30px;
}
.gl_both_lat .awardslist .awrd_lists ul li h5 {
    font-size: 16px;
    font-weight: 600;
    color: #010101;
    margin: 0 0 10px;
}
.gl_both_lat .awardslist .awrd_lists ul li p {
    font-size: 14px;
    color: #4c4c4c;
    line-height: 18px;
	    margin: 0;
	font-weight:400;
}
.gl_both_lat .awardslist .awrd_lists ul li div {
    font-size: 13px;
    color: #4c4c4c;
    line-height: 18px;
	    margin: 0;
}
.gl_both_lat .awardslist .awrd_lists ul li span.lnkss {
    position: absolute;
    right: 20px;
    top:40%;
    border: none;
}

.gl_both_lat .awardslist .awrd_lists ul li:hover div{color:#fff;}

.gl_both_lat .awardslist .awrd_lists ul li:hover p {
    color: #fff;
}
.gl_both_lat .awardslist .awrd_lists ul li:hover h5 {
    color: #fff;
}
.gl_both_lat .awardslist .awrd_lists ul li:hover h6 {
    background: #fff;
}
.gl_both_lat .awardslist .awrd_lists ul li:hover {
    background: #0054a3;
}
.gl_both_lat .awardslist .awrd_lists ul li:hover span.lnkss img {
    filter: brightness(0) invert(1);
}

.pht_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pht_img {
    width: 100%;
    height: 247px;
	overflow:hidden;
	margin-bottom:30px;
	cursor:pointer;
}
.gl_both_lat .awardslist .explr {
    margin-top: 35px;
}


.gl_both_lat .awardslist .explr span:hover {
    background: transparent !important;
}
.gl_both_lat .awardslist .explr span:hover a{
    color: #fff !important;
}

.tabs_araess .explr {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.tabs_araess .explr span {
    float: right;
    border-bottom: #ffffffb3 solid 1px;
    padding-bottom: 5px;
    position: relative;
    top: -5px;
}

.tabs_araess .explr span:hover {
    background: transparent;
}

.tabs_araess .explr span:hover a{
    color: #fff;
}

.tabs_araess .explr span a {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}
/* -------------- End Gallery Both Area -------------- */



/* ----------------- About us ----------------- */

.others_pgs {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: relative;
}
 .others_pgs:before {
    content: '';
    background:#d3d3d3d1;
    position: absolute;
    width: 100%;
    height: 100%;
}
.others_pgs .als_cnts {
    position: absolute;
    color: #000;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
	line-height:42px;
}

.brad_camp {
    background: #f0f0f0;
    padding: 10px 0;
}
.brad_camp .breadscm {
    color: #0054a3;
    font-weight: 600;
}
.brad_camp .breadscm a {
    color: #4f4f4f;
    font-size: 13px;
}
.brad_camp .breadscm span {
    color: #4f4f4f;
}


.contnt_araea {
    display: inline-block;
    width: 100%;
}
.contnt_araea h3 {
    font-size: 27px;
    margin: 0 0 30px;
    color: #0e58c0;
    line-height: 36px;
    font-weight: 600;
}


.tabsss_abt .tab-wrapper {
  text-align: left;
  display: block;
  margin: auto;
  max-width: inherit;
  margin-bottom:20px;
}

.tabsss_abt .tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: left;
  border-bottom: #e2e2e2 solid 1px;
}

.tabsss_abt .tabs button.link_supports_al {
    padding: 0 !important;
    background: transparent;
    border: none;
    margin-right: 5px;
}

.tabsss_abt .tab-link {
    border: #e2e2e2 solid 1px;
    padding: 7px 15px;
    font-size: 13px;
    background: #e2e2e2;
    color: #282828;
    text-transform: capitalize;
    list-style: none;
    margin-right:5px;
    cursor: pointer;
    font-weight:600;
	font-family: 'Montserrat';
}
.tabsss_abt .tab-link:last-child{margin:0;}

.tabsss_abt .tab-link:hover {
  color: #fff;
  background:#0054a3;
  border: #0054a3 solid 1px;
}

.tabsss_abt .tab-link.active {
    border: #0054a3 solid 1px;
    padding: 7px 15px;
    font-size: 12px;
    color: #fff;
    background: #0054a3;
    text-transform: capitalize;
}


.tabsss_abt .content-wrapper {
  padding:0;
}

.tabsss_abt .tab-content {
  display: none;
  text-align: center;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.tabsss_abt .tab-content.active {
  display: block;
}



.tabsss_abt .contn_scytnt .contentss {
    display: inline-block;
    width: 100%;
}
.tabsss_abt .contn_scytnt {
    display: inline-block;
    width: 100%;
    text-align: left;
}
.tabsss_abt .contn_scytnt h3 {
    font-size: 24px;
    color: #1a1a1a;
    line-height: 36px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.tabsss_abt .contn_scytnt .contentss p {
    font-size: 16px;
    line-height: 24px;
    color: #363636;
    margin-bottom: 20px;
	    text-align: justify;
}
.tabsss_abt .contn_scytnt .contentss p:last-child{margin-bottom:0;}


.tabs.button_tab_allass li.tab-link {padding: 0;}
.tabs.button_tab_allass li.tab-link button.link_supports_al {padding:7px 15px !important; color:#000; font-weight:500; margin:0; text-transform:capitalize;}
.tabs.button_tab_allass li.tab-link.active button.link_supports_al {color:#fff; padding:7px 15px !important;}
.tabs.button_tab_allass li.tab-link:hover {color: #fff !important;}
.tabs.button_tab_allass li.tab-link:hover .link_supports_al {
    color: #fff;
}


.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img {
    margin-bottom: 15px;
    width: 100%;
    max-width: 280px;
}

.abt_area_img {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.abt_area_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abt_area_img.admins{height:200px;}

.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem!important;
}
.mt-5 {
    margin-top: 2rem!important;
}
.mt-6 {
    margin-top: 4rem!important;
}


.tabsss_abt .contn_scytnt .contentss .undr_listing {
    display: inline-block;
    width: 100%;
}
.tabsss_abt .contn_scytnt .contentss .undr_listing h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.tabsss_abt .contn_scytnt .contentss .undr_listing ul {
    list-style: none;
    margin: 0;
    padding: 0 0 25px;
}
.tabsss_abt .contn_scytnt .contentss .undr_listing ul li {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.tabsss_abt .contn_scytnt .contentss .undr_listing ul li:last-child {
    margin: 0px;
}

.abt_bothss {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
	padding:60px 0;
}
.abt_bothss:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #005aafd4;
	    top: 0;
}

.abt_bothss .abt_bt_area {
    background: #fff;
    padding: 20px;
    display: inline-block;
    width: 100%;
}

.abt_bothss .abt_bt_area .lft_cnt_atara {
    float: left;
    width: 51%;
    margin-right: 4%;
}
.abt_bothss .abt_bt_area .lft_cnt_atara h5 {
    font-size: 17px;
    color: #272727;
    padding-bottom: 12px;
    border-bottom: #d9e9ff solid 1px;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
	height: 41px;
    overflow: hidden;
}
#hindi .abt_bothss .abt_bt_area .lft_cnt_atara h5 {
    font-size: 17px;
    color: #272727;
    padding-bottom: 12px;
    border-bottom: #d9e9ff solid 1px;
    margin-bottom: 15px;
    margin-top: 5px;
    font-weight: 600;
    line-height: 40px;
    height: 41px;
    overflow: hidden;
}

.abt_bothss .abt_bt_area .rt_mg_area {
    float: left;
    width: 45%;
    height: 240px;
    overflow: hidden;
}
.abt_bothss .abt_bt_area .rt_mg_area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.abt_bothss .abt_bt_area .lft_cnt_atara p {
    font-size: 12px;
    color: #333;
    line-height: 19px;
    margin-bottom: 20px;
}
.abt_bothss .abt_bt_area .lft_cnt_atara a {
    background: #005aaf;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 15px;
}
.abt_bothss .abt_bt_area .lft_cnt_atara a:hover {
    text-decoration: underline;
}
.abt_bothss .abt_bt_area .lft_cnt_atara a img {
    padding-left: 5px;
}
.abt_bothss .abt_bt_area .lft_cnt_atara ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.abt_bothss .abt_bt_area .lft_cnt_atara ul li {
    font-size: 12px;
    color: #333;
    display: flex;
    line-height: 19px;
    margin-bottom: 7px;
}
.abt_bothss .abt_bt_area .lft_cnt_atara ul li span {
    float: left;
    line-height: 15px;
}

.abt_bothss .abt_bt_area .lft_cnt_atara ul li img {
    float: left;
    height: 9px;
    width: 12px;
    padding-right: 0px;
    position: relative;
    top: 4px;
    margin-right: 6px;
}
.abt_cnttsts {
    text-align: justify;
}
.abt_cnttsts p {
    font-weight: 400;
}
.abt_mg_aress {
    text-align: center;
    padding-top: 65px;
}
.abt_bothss .abt_bt_area .lft_cnt_atara.midillls ul li p {margin: 0 0 10px; line-height:18px;}
.abt_bothss .abt_bt_area .lft_cnt_atara.midillls ul li p:last-child {margin: 0 0 0px;}
.adss_cntetetct {
    text-align: justify;
}

.abt_bt_area .lft_cnt_atara.midillls {
    width: 70%;
    margin-right: 3%;
}
.abt_bt_area .lft_cnt_atara.midillls ul li {
    display: block;
}
.abt_bt_area.hmo_abt_ar .rt_mg_area {
    width: 27%;
}
/* ----------------- About us ----------------- */

.contnt_araea.program_dtls .tab-content {
    padding-top: 0;
}
.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {
    font-size: 22px;
    color: #0e58c0;
    margin: 0 0 20px;
    line-height: 30px;
    font-weight: bold;
}
.HMA_program{margin: 35px 0 0px;}
.HMA_program h4 {
    font-size: 24px;
    color: #005baf;
    margin:0px 0 25px;
}

#accordion {
    max-width: inherit;
    background:transparent;
    margin: 0 auto;
}
#accordion button.link_supports_al {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
	padding:0 !important;
}
#accordion .heading {
    color:#005baf;
    font-size: 15px;
    border: 1px solid #e5edf7;
    letter-spacing: 0;
    padding: 12px 15px 12px 25px;
    background: #e5edf7;
    cursor: pointer;
    border-radius: 0;
    margin-bottom: 12px;
    font-weight: 600;
}
#accordion .heading.active {
    background: #005baf;
    color: #fff;
    border-radius: 0;
    border: 1px solid #005baf;
}
#accordion .heading:hover {
    background: #005baf;
    border-radius:0;
	color: #fff;
	border: 1px solid #005baf;
}

#accordion .heading::before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    float: right;
    transform: rotate(0deg);
    transition: all 0.5s;
    margin-top: 3px;
    background: url('arrow_r.5f446913645f0864.png') no-repeat;
    width: 10px;
    height: 16px;
}
#accordion .active.heading::before {
    transform: rotate(0deg);
    margin-top: 5px;
    background: url('arrow_w.9c994b7b064c98d1.png')no-repeat;
    width: 16px;
    height: 10px;
}
#accordion .not-active.heading::before {
    transform: rotate(0deg);
}
#accordion .contents {
    display: none;
    background: #fff;
    color: #4b4b4b;
    font-size: 15px;
    border: #fff solid 1px;
    line-height: 1.5;
    margin-top: -15px;
    border-top: 0;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0px 2px 10px #e7e7e7;
}
#accordion .contents .cnt_areaas {
    padding:15px 15px 15px;
}
#accordion .contents .cnt_areaas figure.image img {
    width: 100%;
}
#accordion .contents .cnt_areaas img {
    width: 100%;
}
#accordion .contents h5 {
    margin: 25px 0 10px;
    font-size: 15px;
    color: #005baf;
    font-weight: 700;
}
#accordion .contents h4 {
    margin: 0 0 14px;
    font-size: 17px;
    color: #363636;
    font-weight: 700;
}

#accordion .contents p {
    color: #4b4b4b;
        line-height: 21px;
    font-weight: 400;
}
#accordion .contents p:last-child{margin-bottom:0;}

#accordion .botm_nxt_areas {
    background: #f4f4f4;
    padding: 20px 40px;
    width: 100%;
}

#accordion .clk_aply a:hover {
    box-shadow: 0px 5px 10px #d0cfcf;
}

#accordion .clk_aply a img {
    margin-left: 5px;
}
#accordion .clk_aply a {
    padding: 15px 20px;
    color: #353535;
		font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border-radius: 5px;
}
#accordion .clk_aply {
    margin-top: 40px;
    margin-bottom: 10px;
}


#accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton {
    background: #fed32e;
    color: #000;
    padding: 8px 25px 8px 15px;
    display: inline-block;
    margin-top: 15px;
    position: relative;
}
#accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton img {
    position: absolute;
    width: auto;
    filter: brightness(0) invert(0);
    right: 10px;
    top: 14px;
}

.blue_bg {background: #0054a3;}
.yellow_bg {background: #fdd32d; color: #272727 !important;}

#accordion .botm_nxt_areas button.prog_bnts {
    border: none;
    padding: 9px 17px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 5px;
}
#accordion .botm_nxt_areas button.prog_bnts img {
    padding-left: 5px;
    width: 22px;
    position: relative;
    top: -2px;
}


#accordion .contents .cnt_areaas .sets_mgs {
    width: 100%;
    height: 180px;
    overflow: hidden;
}


#accordion .contents .cnt_areaas .sets_mgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* ------------ Contact Us ------------ */
.cont_bx_area p {
    color: #464646;
    font-weight: 600;
	font-size: 13px;
    line-height: 20px;
}
.cont_bx_area p:last-child{margin-bottom:0;}

.cont_bx_area span {
    font-size: 14px;
    color: #0054a3;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.cont_bx_area h6 {
    font-size: 18px;
    color: #363636;
    line-height: 24px;
    margin: 0 0 10px;
}
.cont_bx_area img {
    margin-bottom: 10px;
}
.cont_bx_area {
    background: #fff;
    padding: 30px;
	min-height:285px;
    box-shadow:0px 0px 10px #ccc;
    text-align:center;
	margin-bottom: 30px;
}
.cont_bx_area.oness{min-height:230px;}
.cont_bx_area.twosss{min-height:250px;}
.cont_bx_area.autos{min-height:auto; text-align:center;}
.cnt_form_areaa {
    background: #0054a3;
    padding: 40px;
}
.cnt_form_areaa h5 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}
.cnt_form_areaa .form-group{margin-bottom:15px;}
.cnt_form_areaa .form-group label {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.cnt_form_areaa .form-group input.form-control {background: #0b77bf; border-radius: 0; border: none; height: 40px; color: #fff; font-size: 12px;}
.cnt_form_areaa .form-group input.form-control:focus{border:#ff0015 solid 2px !important;}
.cnt_form_areaa .form-group input.form-control::placeholder {color:#fff; opacity:1;}
.cnt_form_areaa .form-group input.form-control:-ms-input-placeholder {color:#fff;}
.cnt_form_areaa .form-group input.form-control::-ms-input-placeholder {color:#fff;}

.cnt_form_areaa button {
    background: #fdd32d;
    color: #3a3a3a;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    margin-top: 12px;
	text-transform: uppercase;
}
.cnt_form_areaa button:focus{border:#ff0015 solid 2px !important;}
.cnt_form_areaa button:hover {
    background: #fff; text-decoration:underline;
}

.cnt_form_areaa button img {
    width: 12px;
    position: relative;
    top: -1px;
    padding-left: 5px;
}

.maps_araea iframe {
    width: 100%;
    height: 512px;
}
.maps_araea {
    max-height: 512px;
    overflow: hidden;
}
.red {color: #f00;}
.red1 {color: #b30000;}
/* ------------ End Contact Us ------------ */


/* --------------------------------- */

 .profile_usersss {
    background: #126dc2;
    padding: 40px;
}
.profile_usersss .user_mg {
    width: 100%;
    height: 224px;
    overflow: hidden;
    margin-bottom: 30px;
}
.profile_usersss .prof_cntss {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.profile_usersss .prof_cntss h5 {
    background: #fdd32d;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #303133;
    font-weight: 600;
    text-transform: uppercase;
	margin:0 0 15px;
}

.profile_usersss .prof_cntss p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 20px;
}
.profile_usersss .prof_cntss p:last-child{margin-bottom:0;}

.profile_usersss .prof_cntss.contctt p {
    margin-bottom: 10px;
    border-bottom: #cccccc42 solid 1px;
    padding-bottom: 5px;
}
.profile_usersss .prof_cntss.contctt p:last-child{border:none; padding-bottom:0;}


.user_prf_als {
    display: inline-block;
    width: 100%;
}
.user_prf_als h4 {
    font-size: 36px;
    color: #1a1a1a;
    line-height: 36px;
    margin: 0 0 10px;
	font-weight: 700;
}
.user_prf_als p {
    font-size: 18px;
    color: #005baf;
    line-height: 36px;
    margin: 0 0 15px;
	font-weight:600;
}

.user_prf_als .usr_list_prt h6 {
    border-bottom: #deeaf5 solid 1px;
    display: flex;
    margin: 15px 0 20px;
}
.user_prf_als .usr_list_prt h6 span {
    background: #deeaf5;
    font-size: 17px;
    color: #383838;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
}
.user_prf_als .usr_list_prt {
    display: inline-block;
    width: 100%;
}

.user_prf_als .usr_list_prt ul li {
    margin-bottom: 15px;
    color: #363636;
    font-size: 15px;
}
.user_prf_als .usr_list_prt ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.user_prf_als .usr_list_prt ul li img {
    padding-right: 6px;
    width: 22px;
}
/* --------------------------------- */


/* ---------------- FAQ ---------------- */
 .HMA_program.faq {margin-top: 0;}
/* ---------------- End FAQ ---------------- */


/* ------------ Faculty ----------- */
.facuty_tbss {
    background: #c2e2fc;
    padding: 25px 0;
    margin-bottom: 40px;
}
.facuty_tbss button.btn.btn-default.filter-button:focus {
    background: #005aae;
    color: #fff;
}

.facuty_tbss button.btn.btn-default.filter-button:hover{
	background: #005aae;
    color: #fff;
}
.facuty_tbss button.btn.btn-default.filter-button {
    color: #1b84c7;
    font-size: 13px;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 600;
	margin-right:6px;
}
.facuty_tbss button.btn.btn-default.filter-button:last-child{margin-right:0;}

 .HMA_program.faculty_pg {margin-top:0;}
 .faculty_pg .progmss_bg {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.faculty_pg .progmss_bg .nsw_mgs {
    width: 100%;
    height: 295px;
}

.faculty_pg .progmss_bg .nes_cnt_bx {
    background: #fff;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    font-family: 'Montserrat';
    top: 0px;
    min-height:155px;
    box-shadow: 0px 3px 10px #dfdfdf;
}

.faculty_pg .progmss_bg .nsw_mgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faculty_pg .progmss_bg .nes_cnt_bx h5 {
    margin: 0 0 10px;
    font-weight: 700;
    color: #005baf;
    font-size: 14px;
    line-height: 20px;
}
 .faculty_pg .progmss_bg .nes_cnt_bx p {
    margin: 0 0 15px;
    font-weight: 500;
    color: #333333;
    font-size: 12px;
    line-height: 17px;
}
 .faculty_pg .progmss_bg .nes_cnt_bx span {
    position: absolute;
    bottom: 15px;
}
 .faculty_pg .progmss_bg .nes_cnt_bx span a {
    background: #0054a3;
    padding: 6px 15px;
    display: inline-block;
    font-size: 11px;
    color: #fff;
}

.faculty_pg .progmss_bg .nes_cnt_bx:hover span a{background:#fff; color:#333; font-weight:500;}
.faculty_pg .progmss_bg .nes_cnt_bx:hover span a img{filter: brightness(0) invert(0);}

.faculty_pg .progmss_bg .nes_cnt_bx span a img {
    padding-left: 7px;
    width: 22px;
    position: relative;
    top: -1px;
}
.faculty_pg .progmss_bg:hover .nes_cnt_bx {
    background: #005baf;
}
.faculty_pg .progmss_bg:hover .nes_cnt_bx h5 {
    color: #fff;
}
.faculty_pg .progmss_bg:hover .nes_cnt_bx p {
    color: #fff;
}


.paginetion a:hover {
    background: #005aaf;
    border: #ddd solid 1px;
    color: #fff !important;
}
.paginetion a.act {
    background: #004088;
    border: #e1f3ff solid 1px;
    color: #fff;
}

.paginetion a {
    border: #e9e8e8 solid 1px;
    padding: 2px 10px;
    display: inline-block;
    color: #646464;
    font-weight: 400;
}
.ngx-pagination .current {
    padding: 2px 10px;
    background: #004088;
    border: #004088 solid 1px;
    color: #fefefe;
    cursor: default;
    margin-right: 5px;
}

.paginetion li.current {
    padding: 1px 7px;
    background: #004088;
    border: #004088 solid 1px;
    color: #fefefe;
    cursor: default;
    margin-right: 5px;
    margin-left: 5px;
}

.paginetion {
    text-align: center;
    margin-top: 40px;
}

.ngx-pagination li.pagination-next a {
    padding: 0.1875rem 0.625rem;
    color: #646464;
    cursor: pointer;
    border: none;
    font-weight: 500;
}
.ngx-pagination li.pagination-next a:hover {
    background: #004088 !important;
}
.ngx-pagination li.pagination-previous a:hover {
    background: #004088 !important;
}
/* ------------ End Faculty ----------- */


/* ------------------- Gallery ------------------- */

.gallry_pg{margin-top: 0;}

.gallry_pg .facuty_tbss .tabssd_ac {
    text-align: center;
}
.gallry_pg .facuty_tbss {
    padding: 0;
    background: transparent;
}
.gallry_pg .facuty_tbss button.btn.btn-default.filter-button:focus {
    background: #005aae;
    color: #fff;
	border: #ff0015 solid 2px;
}

.gallry_pg .facuty_tbss button.btn.btn-default.filter-button:hover{
	background: #005aae;
    color: #fff;
}
.gallry_pg .facuty_tbss button.btn.btn-default.filter-button {
    color: #0054a3;
    font-size: 13px;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    font-weight: 600;
	border:#e1f3ff solid 1px;
	margin-right:6px;
}
.gallry_pg .facuty_tbss button.btn.btn-default.filter-button:last-child{margin-right:0;}

.gallry_pg .progmss_bg {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.gallry_pg .progmss_bg .nsw_mgs {
    width: 100%;
    height: 298px;
    overflow: hidden;
	position: relative;
	cursor:pointer;
}
.gallry_pg .progmss_bg .nsw_mgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea {
        background:#005aaf;
    bottom: 0;
    content: "";
    height: 20%;
    position: absolute;
    transition: all .3s ease-in 0s;
    width: 100%;
    will-change: opacity;
    display: inline-block;
    top: inherit;
    z-index: 0;
    left: 0;
    color: #fff;
}
.gallry_pg .progmss_bg .nsw_mgs:hover .txtxtx_xrea {
    background: #fed32e;
    color: #000;
}
.gallry_pg .progmss_bg .nsw_mgs:hover .txtxtx_xrea span {
    color: #000;
}
.gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea span {
    position: absolute;
    bottom: 0;
    padding-left: 20px;
    padding-bottom: 20px;
	color: #fff;
    font-weight: 600;
	left:0;
}

.gallry_pg .tabsss_abt .tab-wrapper {
    text-align: left;
    display: block;
    margin: auto;
    max-width: inherit;
    margin-bottom: 35px;
    border-bottom: #e2e2e2 solid 1px;
}

.gallry_pg .tabsss_abt .tabs {
    padding: 0;
    display: table;
    border-bottom:none;
    margin: 0 auto;
}
.gallry_pg .tabsss_abt .tab-link.active {
    border: #0054a3 solid 1px;
    padding: 0;
    font-size: 12px;
    color: #fff;
    background: #0054a3;
    text-transform: capitalize;
}
.gallry_pg .tabsss_abt .tab-link {
    float: left;
}

div#lightbox {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 100%;
}
.tabsss_abt.archive .tab-wrapper {
    margin-bottom: 1px;
}

.tabsss_abt.archive .tab-content.active {
    padding-top: 0;
}
.tabsss_abt.archive .ent_list {
    text-align: left;
}

/* ------------------- End Gallery ------------------- */


/* ---------- News And Events --------- */

.news_ennts_list {
    display: inline-block;
    width: 100%;
}
.news_ennts_list .und_liststs {
    background: #e7f3ff;
    padding:20px;
    border: #d0e2f4 solid 1px;
	    margin-bottom: 30px;
}
.news_ennts_list .und_liststs:last-child{margin-bottom:0;}

.news_ennts_list .und_liststs .ent_list {
    display: inline-block;
    width: 100%;
}
.news_ennts_list .und_liststs .ent_list span {
    display: block;
    font-size: 13px;
    color: #0e58c0;
    margin-bottom: 8px;
    font-weight: bold;
}
.news_ennts_list .und_liststs .ent_list h4 {
    font-size: 17px;
	font-weight:bold;
    color: #363636;
    margin: 0 0 10px;
}

.news_ennts_list .und_liststs .ent_list p {
    font-size: 15px;
    color: #363636;
    margin: 0 0 15px;
	line-height:24px;
	    font-weight: 400;
}
.news_ennts_list .und_liststs .ent_list a {
    background: #0054a3;
    padding: 8px 20px;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}
.news_ennts_list .und_liststs .ent_list a img {
    padding-left: 5px;
    position: relative;
    top: -1px;
}
.news_ennts_list .und_liststs .ent_list a:hover {
    box-shadow: 0px 7px 10px #ccc;
}

.news_ennts_list .und_liststs .env_mg_area {
    display: inline-block;
    width: 100%;
    height: 185px;
    overflow: hidden;
}
.news_ennts_list .und_liststs .env_mg_area img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

/* ---------- End News And Events --------- */


/* Placements */

.plc_area {
    border: #d4e1f4 solid 1px;
    padding: 25px 0;
	text-align: center;
    margin-bottom: 30px;
}
.plc_area img {
    height: 80px;
    width: auto;
}

/* End Placements */

.HMA_program.blogs.dltss {
    margin-top: 0;
}

.col-lg-12.mt-4.paginnss {
    display: initial;
}
.section.contnt_araea.blog_pgss_lst .HMA_program.blogs {
    margin-top: 0;
}

.section.contnt_araea.blog_pgss_lst .paginetion {
    text-align: center;
    display: table;
    margin: 0 auto;
    margin-top:0px;
    margin-bottom:0px;
}

.section.contnt_araea.blog_pgss_lst ul.ngx-pagination {
    margin: 0;
	padding: 0;
}
.section.contnt_araea.blog_pgss_lst ul.ngx-pagination li.pagination-previous {
    cursor: pointer;
}
.section.contnt_araea.blog_pgss_lst ul.ngx-pagination li.pagination-next {
    cursor: pointer;
	margin: 0;
}

.blogs .img_ara_parts img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
}
.blogs .img_ara_parts {
    height: 236px;
    overflow: hidden;
}
.blogs .card-body {
    padding: 0 15px 15px;
}
.blogs .card-body h2 a:hover {
    text-decoration: underline;
}

.blogs .card-body h2 a {
    color: #000;
}
.blogs .card-body h2 {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogs .card-body p.discrip {
    height: 130px;
    overflow: hidden;
}
.blogs .card-body a.rdmr {
    font-weight: 600;
    color: #000 !important;
}
.blogs .card-body a.rdmr:hover{text-decoration: underline;}

.ngx-pagination li.pagination-previous {
    border: #bbb solid 1px;
    margin-right: 5px;
}
.ngx-pagination li.pagination-next {
    border: #bbb solid 1px;
    margin-left: 5px;
}
.ngx-pagination li span {
    color: #646464;
}

/* Programs */

.anauss_area {
    background: #fff9c2;
    padding: 10px 0;
}
.anauss_area .araea_lists {
    display: inline-block;
    width: 100%;
}
.anauss_area .araea_lists .bx_araea {
    float: left;
    width: 20%;
}
.anauss_area .araea_lists .bx_araea span {
    font-size: 11px;
    color: #005baf;
    font-weight: bold;
    display: block;
}
.anauss_area .araea_lists .bx_araea p {
    font-size: 11px;
    color: #333333;
    margin: 0;
    line-height: 16px;
    font-weight: 600;
}
.anauss_area .araea_lists .bx_araea.read_area {
    display: inline-block;
    width: 20%;
}
.anauss_area .araea_lists .bx_araea.read_area img {
    float: left;
    margin-right: 10px;
	    position: relative;
    top: 4px;
}
.anauss_area .araea_lists .bx_araea.read_area p {
    font-size: 11px;
    font-weight: bold;
    color: #0054a3;
    text-transform: uppercase;
}
.anauss_area .araea_lists .bx_araea.read_area p span {
    font-size: 11px;
    font-weight: bold;
    color: #0054a3;
    text-transform: uppercase;
}


.contnt_araea.program span {
    font-size: 16px;
    margin: 0 0 15px;
    padding: 0;
    color: #363636;
    line-height: 24px;
	display:block;
}

.contnt_araea.program p {
    font-size: 16px;
    margin: 0 0 40px;
    padding: 0;
	font-weight:bold;
    color: #363636;
    line-height: 24px;
}

.program_araea.abt_bothss {
    height: auto;
    padding: 0;
}
.program_araea.abt_bothss:before {
    display: none;
}
.program_araea.abt_bothss .abt_bt_area {
    border: #d4e1f4 solid 1px;
    margin-bottom: 30px;
	position: relative;
	padding-bottom: 0;
}
.program_araea.abt_bothss .abt_bt_area:hover {
    background: #0054a3;
}
.program_araea.abt_bothss .abt_bt_area:hover h5{
    color: #fff;
}
.program_araea.abt_bothss .abt_bt_area:hover p{
    color: #fff;
}
.program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a {
	background:#005baf;
}


.program_araea.abt_bothss .abt_bt_area h5 {
    border-bottom: #d9e9ff solid 2px;
}
.program_araea.abt_bothss .abt_bt_area p {
    font-weight: 500;
    margin-bottom: 5px;
}

.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara {
    position: relative;
    height: 240px;
}
#hindi .program_araea.abt_bothss .abt_bt_area .lft_cnt_atara {
    position: relative;
    height: 240px;
}
.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {
    position: absolute;
    bottom:-5px;
	background:#0054a3;
    max-width: 140px;
    width: 100%;
}
#hindi .program_araea.abt_bothss .abt_bt_area .lft_cnt_atara h5 {
    font-size: 17px;
    color: #272727;
    padding-bottom: 12px;
    border-bottom: #d9e9ff solid 1px;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
    height: 41px;
    line-height: 40px;
    padding-top: 5px;
    overflow: hidden;
}

.program_araea.abt_bothss.program_pgss .abt_bt_area:hover a {
    background: #fff;
    color: #333;
    font-weight: 500;
}
.program_araea.abt_bothss.program_pgss .abt_bt_area:hover a img{filter: brightness(0) invert(0);}
/* Programs */

.section.clents {padding: 40px 0;}
.clents button.pause-button {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    display: block;
    border: #ccc solid 1px;
    border-radius: 4px;
}
.clents button.pause-button img.icon {
    width: 20px;
    margin: 0 auto;
    position: relative;
    top: -2px;
    left: -2px;
}


.tabsss_abt .search-input-field {
    background: #f1f1f1;
    padding: 30px 15px;
    display: flex;
}
.tabsss_abt .search-input-field input {
    background: #fff;
    border: #ccc solid 1px;
    padding: 7px 15px;
    border-radius: 5px 0px 0px 5px;
    font-size: 14px;
	max-width:300px;
	width:100%;
}
.tabsss_abt .search-input-field button {
    background: #0054a3;
    border: none;
    color: #fff;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}
body.theme-color .tabsss_abt .search-input-field button{background:#000 !important; color:#fed32e !important;}
body.theme-color .tabsss_abt .search-input-field button:hover{color:#fff !important;}
.tabsss_abt .search-input-field button:hover {
    background: #fed32e;
    color: #000;
    font-weight: 500;
}

button.submit-btn:hover {
    background: #fed32e !important;
    color: #000;
    font-weight: 500;
}

#header .search {
    display: inline-block;
}
.navbar > .container .navbar-brand {
    margin-left: 0;
}
.top-bar {
    padding: 5px 0;
    background: #191919;
    border-bottom: 1px solid #222;
    line-height: 28px;
}
.top-number {
    color: #fff;
}
.top-number p {
    margin: 0;
}
.social {
    text-align: right;
}
.social-share {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.social-share li {
    display: inline-block;
}
ul.social-share li a {
    display: inline-block;
    color: #fff;
    background: #404040;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 2px;
}
ul.social-share li a:hover {
    background: #c52d2f;
    color: #fff;
}
.search i {
    color: #fff;
}
input.search-form {
    background: transparent;
    border: 0 none;
    width: 60px;
    padding: 0 10px;
    color: #fff;
    transition: all 400ms;
}
input.search-form::-webkit-input-placeholder {
    color: transparent;
}
input.search-form:hover::-webkit-input-placeholder {
    color: #fff;
}
input.search-form:hover {
    width: 180px;
}
.navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar {
    border-radius: 0;
    margin-bottom: 0;
    padding:0;
    padding-bottom: 0;
	background: #005aaf;
    min-height: auto;
}
.navbar-nav {
    margin-top:0px;
}

.navbar-nav > li {
    margin-left: 0;
    padding-bottom: 0px;
    margin-right: 2.9rem;
}

.navbar-nav > li:last-child {
    margin-right: 0;
}
.navbar-inverse .navbar-nav > li > a {
    padding: 12px 0px;
    margin: 0;
    border-radius: 0px;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    text-transform: inherit;
    display: inline-block;
	font-family: 'Montserrat';
	font-weight:500;
}


.navbar-inverse .navbar-nav > li > a:focus {
    color:#f2f7fd;
}
.navbar-inverse .navbar-nav > li > a:hover {
    background-color: transparent;
    color: #f9c74e;
}
.navbar-inverse {
    border: none;
}
.navbar-inverse .navbar-brand {
    font-size: 36px;
    line-height:90px;
    color: #fff;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: transparent;
    color:#fff;
    font-weight: 500;
}
.navbar-inverse .navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
    border: 0;
    padding: 0;
    margin-top: 0;
    border-top: 0;
    border-radius: 0;
    left: 0;
}
.navbar-inverse .navbar-nav .dropdown-menu:before {
    position: absolute;
    top: 0;
}
.navbar-inverse .navbar-nav .dropdown-menu > li > a {
    padding: 8px 15px;
    color: #fff;
}
.navbar-inverse .navbar-nav .dropdown-menu > li:hover > a,
.navbar-inverse .navbar-nav .dropdown-menu > li:focus > a,
.navbar-inverse .navbar-nav .dropdown-menu > li.active > a {
    background-color:#0f7c3c;
    color: #fff;
}
.navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
    border-radius: 0;
}
.navbar-inverse .navbar-nav .dropdown-menu > li.divider {
    background-color: transparent;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-top: 0;
    padding-bottom: 0;
	margin:0;
	padding:0;
}
.collapse.navbar-collapse.navbar-left.mnu_aria {
    margin-left: 0px;
    position: relative;
    width: 100%;
    padding: 0;
}
.navbar-right.lang_src {
    background: #0F7C3C;
    padding: 0;
    min-height: 100px;
    margin-left:0px;
    position: absolute;
    max-width:170px;
    width: 100%;
    right: 0;
}
.navbar-right.lang_src:after {
    content: '';
    position: absolute;
    border-bottom: 100px solid #0f7c3c;
    border-left:35px solid white;
    left: -30px;
}
/* .collapse.navbar-collapse.navbar-left.mnu_aria.collassing .navbar-nav{
    margin:0px !important;
	padding:0 !important
} */
.navbar-right.lang_src .src_ml ul li:last-child {
    margin: 0;
}
.navbar-right.lang_src .src_ml ul li {
    float: left;
    margin-right: 20px;
	font-size:16px;
	color:#fff;
	line-height:24px;
	font-weight: 400;
}
.navbar-right.lang_src .src_ml ul li img {
    position: relative;
    top: -1px;
}
.navbar-right.lang_src .src_ml ul {
    list-style: none;
    margin: 36px 0 0 15px;
    padding: 0;
    display: flex;
    position: relative;
    left: 0px;
}
.navbar-right.lang_src .src_ml {
    float: left;
    width: 100%;
}
.navbar-right.lang_src .src_ml ul li a.act {
    color: #fff;
}
.navbar-right.lang_src .src_ml ul li a:focus {
    color: #fff;
}
.navbar-right.lang_src .src_ml ul li a {
    color: #fff;
}
li#show-btn {
    cursor: pointer;
}
div#show-box {
    position: fixed;
    background: #fff;
    top: 68px;
    max-width: 194px;
    width: 100%;
    padding: 0;
    height: 30px;
    display: flex;
}
div#show-box input[type="text"] {
    border: none;
    padding: 3px 10px;
    font-size: 12px;
    width: 82%;
    position: relative;
    top: -1px;
}
div#show-box input[type="text"]:focus{border:none; outline:none;}
div#show-box button {
    background: #444;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 7px;
    width: 16.3%;
    height: 30px;
}

/* #header .container {
    max-width: 1280px;
    width: 100%;
} */

.section#sliser_aria {
    padding: 0;
    position: relative;
	min-height: 560px;
}
#sliser_aria .owl-carousel.banners.owl-theme.owl-loaded.owl-drag {
    height: 100%;
}
.section#sliser_aria .owl-stage-outer {
    height: 100%;
}
.section#sliser_aria .owl-stage-outer .owl-stage {
    height: 100%;
}

.section#sliser_aria .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
    position: relative;
    height: 100%;
}
.section#sliser_aria .owl-stage-outer .owl-stage .owl-item .item.bnr {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0 !important;
    top: 0;
    position: relative;
    width: 100%;
    display: block !important;
    height: 560px;
    transition: opacity ease-in-out 500ms;
}

#sliser_aria .owl-nav {
    position: absolute;
    z-index: 9;
    top: 45%;
    width: 100%;
	margin:0;
	display:none;
}
#sliser_aria .owl-nav button.owl-prev {
left: 10px;
    border-radius: 50px;
    position: absolute;
    padding: 5px;
    margin: 0;
    background: #ffffffb3;
    width: 50px;
    height: 50px;
    display: inline-block;
}
#sliser_aria .owl-nav button.owl-prev:hover{ background: #fff;}
#sliser_aria .owl-nav button.owl-prev span {
    font-size: 35px;
    color: #333;
    line-height:45px;
}
#sliser_aria .owl-nav button.owl-next {
    right:10px;
	border-radius: 50px;
    position: absolute;
    padding: 5px;
    margin: 0;
    background: #ffffffb3;
    width:50px;
    height:50px;
    display: inline-block;
}
#sliser_aria .owl-nav button.owl-next:hover{ background: #fff;}
#sliser_aria .owl-nav button.owl-next span {
    font-size: 35px;
    color: #333;
    line-height:45px;
}

#sliser_aria .carousel-content.bgr_cnts {
    margin-top: 45%;
}

#main-slider ol.carousel-indicators {
    display: none;
}
#main-slider {
    position: relative;
}
.no-margin {
    margin: 0;
    padding: 0;
}
#main-slider .carousel .carousel-content {
    margin-top: 150px;
}
#main-slider .carousel .slide-margin {
    margin-top: 60px;
}
#main-slider .carousel h2 {
    color: #fff;
}
#main-slider .carousel .btn-slide {
    padding: 8px 20px;
    background: #c52d2f;
    color: #fff;
    border-radius: 4px;
    margin-top: 25px;
    display: inline-block;
}
#main-slider .carousel .slider-img {
    text-align: right;
    position: absolute;
}
#main-slider .carousel .item {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0 !important;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 100%;
    display: block !important;
    height: 768px;
    transition: opacity ease-in-out 500ms;
}
#main-slider .carousel .item:first-child {
    top: auto;
    position: relative;
}
#main-slider .carousel .item.active {
    opacity: 1;
    transition: opacity ease-in-out 500ms;
    z-index: 1;
}
#main-slider .prev, #main-slider .next {
    position: absolute;
    top: 50%;
    background-color: #ffffff;
    color: #0f7c3c;
    display: inline-block;
    margin-top: -25px;
    height: 50px;
    line-height: 40px;
    font-size: 20px;
    width: 50px;
    line-height: 52px;
    text-align: center;
    border-radius: 60px;
    z-index: 5;
}
#main-slider .prev:hover,
#main-slider .next:hover {
    background-color: #000;
}
#main-slider .prev {
    left: 10px;
}
#main-slider .prev i {
    position: relative;
    left: -2px;
}
#main-slider .next {
    right: 10px;
}
#main-slider .next i {
    position: relative;
    right: -2px;
}
#main-slider .carousel-indicators li {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin: 0 15px 0 0;
    position: relative;
}
#main-slider .carousel-indicators li:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    left: -3px;
    top: -3px;
}
#main-slider .carousel-indicators .active {
    width: 20px;
    height: 20px;
    background-color: #c52d2f;
    margin: 0 15px 0 0;
    border: 1px solid #c52d2f;
    position: relative;
}
#main-slider .carousel-indicators .active:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #c52d2f;
    border: 1px solid #c52d2f;
    left: -3px;
    top: -3px;
}
#main-slider .active .animation.animated-item-1 {
    animation: fadeInUp 300ms linear 300ms both;
}
#main-slider .active .animation.animated-item-2 {
    animation: fadeInUp 300ms linear 600ms both;
}
#main-slider .active .animation.animated-item-3 {
    animation: fadeInUp 300ms linear 900ms both;
}
#main-slider .active .animation.animated-item-4 {
    animation: fadeInUp 300ms linear 1200ms both;
}
.bgr_cnts h1 {
    font-size: 60px;
    margin: 0 0 20px 0;
}
.bgr_cnts p {
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.7px;
}



#scroll {
position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #005baf;
    text-indent: -9999px;
    display: none;
    border-radius: 60px;
    z-index: 9;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#000;
    opacity:1;
}



footer.ftr_bgb {
    background: #004088;
    padding: 50px 0;
	position:relative;
}



footer.ftr_bgb .al_adrss p span {
    font-weight: 400;
}
footer.ftr_bgb .al_adrss p span a {
    color: #fff;
}
footer.ftr_bgb .al_adrss p span a:focus {
    border:#ff0015 solid 2px !important; padding:2px;
}
footer.ftr_bgb .al_adrss p {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 2px;
}
footer.ftr_bgb .al_adrss h5 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
}
footer.ftr_bgb .al_adrss {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
/*     border-bottom: #ffffff2e solid 1px; */
    padding-bottom: 15px;
}
footer.ftr_bgb .al_adrss:last-child{padding:0; margin:0; border:none;}






footer.ftr_bgb .abut_links {
    display: inline-block;
    width: 100%;
}
footer.ftr_bgb .abut_links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer.ftr_bgb .abut_links ul li {
    margin-bottom: 7px;
}
footer.ftr_bgb .abut_links ul li a {
    color: #fff;
}
footer.ftr_bgb .abut_links ul li a:hover {
    padding-left: 2px;
	text-decoration:underline;
}

footer.ftr_bgb .abut_links.lst ul li a {
    color: #0054a3;
    text-decoration: underline;
}

footer.ftr_bgb .abut_links.lst ul li {
    color: #fff;
    text-align: right;
}

footer.ftr_bgb a.ftr_blockss {
    display: block;
    margin-bottom: 20px;
}
footer.ftr_bgb a.ftr_blockss:last-child{margin-bottom:0;}
footer.ftr_bgb a.ftr_blockss:focus{padding:2px;}

.ftr_bgb .socialss ul li:last-child {
    margin: 0;
}
.ftr_bgb .socialss ul li span.sp_line {
    padding-left: 10px;
    padding-right: 5px;
}
.ftr_bgb .socialss ul li {
    float: left;
    margin-right: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.ftr_bgb .socialss ul li a{color:#fff; display: block;}
.ftr_bgb .socialss ul li a:hover{text-decoration:underline;}
.ftr_bgb .socialss ul {
    list-style: none;
    padding: 0;
    margin: 0;
	float:right;
}
.ftr_bgb .socialss {
    display: inline-block;
    width: 100%;
    margin-top:2%;
}

.copy_rights {
    padding: 16px 0;
}
.copy_rights .cpy {
    font-size: 14px;
    color: #004088;
    font-weight: 600;
}
#pro_gramess .owl-nav.ng-star-inserted {
    display: none !important;
}

/* Blog  Details */

.HMA_program.blogs.dltss .dtl_bl h2.hedings {
    margin: 0 0 15px;
}

.HMA_program.blogs .dtl_bl {
    margin-bottom: 30px;
    font-size: 14px;
}
.HMA_program.blogs .dtl_bl .dt_img_bl {
    width: 55%;
    height: 250px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    border-radius: 10px;
}
.HMA_program.blogs .dtl_bl .dt_img_bl {
    width: 100%;
    height: 450px;
    overflow: hidden;
    float: left;
    margin-right: 0;
    margin-bottom: 30px;
    border-radius: 0;
    border: #e0e0e0 solid 3px;
}

.HMA_program.blogs .dtl_bl .dt_img_bl img {
    width: 100%;
	height:100%;
	object-fit:contain;
}
.HMA_program.blogs .dtl_bl p {
    text-align: justify;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    top: -5px;
}
.HMA_program.blogs .dtl_bl h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}
.HMA_program.blogs .dtl_bl ul {
    margin: 0 0 20px 20px;
}
.HMA_program.blogs .dtl_bl ul li {
    padding: 0px;
    margin: 0;
    list-style-type: circle;
    line-height: 26px;
}

.HMA_program.blogs .socialsss {
    margin: 20px 0;
    display: block;
    text-align: right;
}
.HMA_program.blogs .socialsss a {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
}
.HMA_program.blogs .socialsss a.fb{background:#4267B2;}
.HMA_program.blogs .socialsss a.tw{background:#55acee;}
.HMA_program.blogs .socialsss a.lnk{background:#0077b5;}
.HMA_program.blogs .socialsss a.what{background:#25d366;}

.HMA_program.blogs .socialsss a:hover {
    box-shadow: 0px 5px 10px #ccc;
}

.HMA_program.blogs .recent_n {
    margin-bottom: 30px;
    border: #dedede dotted 1px;
    padding: 10px;
}
.HMA_program.blogs .recent_n h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 25px;
    margin-top: 0;
    background: #005aaf;
    padding: 8px 10px;
    color: #fff;
    text-transform: uppercase;
}
.HMA_program.blogs .rc_list {
    margin-bottom: 20px;
    display: flow-root;
}
.HMA_program.blogs .rc_list:last-child {
    margin-bottom:0px;
}
.HMA_program.blogs .rc_list .al_cvr {
    height: 70px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    width: 80px;
}
.HMA_program.blogs .rc_list .al_cvr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.HMA_program.blogs .rc_list h4 {
    margin: 0;
    font-weight: 600;
    line-height: 16px;
    font-size: 14px;
}
.HMA_program.blogs .rc_list span {
    font-size: 13px;
    color: #3d3d3d;
}
.HMA_program.blogs .rc_list {
    margin-bottom: 14px;
    display: flow-root;
}


.HMA_program.blogs .dtl_bl figure.image img {
    width: 100%;
}

.HMA_program.blogs .dtl_bl img {
    width: 100%;
}

/* End Blog  Details */
/* Google translate */
.skiptranslate {
    display:none !important;
    font-size:0;
  }
  body{
    top:0px !important;
  }
 /* End Google translate */

 /* ------------------ Program Details --------------- */

/*  .program_dtls .lft_area_main {
    background: #005aaf;
    padding: 20px 20px 25px;
}

 .program_dtls .lft_area_main h4{
    color: #fff;
} */

.lft_area_main {
    background: #005aaf;
    padding:20px 20px 25px;
}
.lft_area_main .lft_araea_tabss {
    display: inline-block;
    width: 100%;
}
.lft_area_main .lft_araea_tabss h4 {
    font-size: 18px;
    color: #fff;
    margin: 10px 0 15px;
    font-weight: 600;
}


.lft_area_main .lft_araea_tabss .tabs-left {
  border-bottom: none;
  border-right: none;
}

.lft_area_main .lft_araea_tabss .tabs-left>li {
  float: none;
 margin:0px 0 10px;
}

.lft_area_main .lft_araea_tabss .tabs-left>li:last-child{margin-bottom:0;}
.lft_area_main .lft_araea_tabss .tabs-left>li a{
    margin-right: 0;
    line-height: 1.428571429;
    border: 1px solid #83b5df;
    border-radius: 0;
    color: #fff;
	letter-spacing: 0;
	    text-transform: inherit;
}
.lft_area_main .lft_araea_tabss .tabs-left>li.active>a, .lft_area_main .lft_araea_tabss .tabs-left>li.active>a:hover, .lft_area_main .lft_araea_tabss .tabs-left>li.active>a:focus {
    border-bottom-color: #ddd;
    border-right-color: transparent;
    background: #005baf;
    border: none;
    border-radius: 0px;
    margin: 0px;
    color: #fff;
}
.lft_area_main .lft_araea_tabss .nav-tabs>li>a:hover {
    line-height: 1.42857143;
    border: 1px solid #3e91dd;
    background: #005baf;
    color: #fff;
}
.lft_area_main .lft_araea_tabss .tabs-left>li.active>a::after{content: "";
content: "";
    position: absolute;
    top: 13px;
    right: 10px;
    display: block;
    width: 10px;
    height: 17px;
    background: url('arrow_r_w1.7a0a7f47a1b5e037.png') no-repeat;
}

ul.nav.nav-tabs.tabs-left.sideways li.active {
    border: #fff solid 1px !important;
}
.botm_nxt_areas.prog_pg button.prog_bnts:hover{text-decoration:underline;}
.botm_nxt_areas.prog_pg a.prog_bnts:hover{text-decoration:underline;}

.tbds_act_araeas {
    display: inline-block;
    width: 100%;
}
.tbds_act_araeas h2 {
    font-size: 27px;
    color: #0e58c0;
    margin: 0 0 20px;
    line-height: 30px;
    font-weight: bold;
}
.tbds_act_araeas h6 {
    font-size: 19px;
    color: #363636;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.tbds_act_araeas p {
    font-size: 15px;
    line-height: 24px;
    color: #363636;
    margin-bottom: 20px;
}

.tbds_act_araeas figure.image img {
    width: 100%;
}

.tbds_act_araeas img {
    width: 100%;
}

.prp_area_cnt.aicte_app h6 {
    margin: 0px 0 10px;
    font-size: 19px;
    line-height: 20px;
    color: #363636;
}

.prp_area_cnt {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.prp_area_cnt h4 {
    margin: 0px 0 13px;
    font-size: 15px;
    line-height: 20px;
    color: #005baf;
}
.prp_area_cnt h6 {
    margin: 0px 0 10px;
    font-size: 15px;
    line-height: 20px;
    color: #363636;
}
.prp_area_cnt p {
    margin: 0px 0 15px;
    font-size: 15px;
    line-height: 24px;
    color: #363636;
}

.prp_area_cnt table {
    font-size: 14px;
}
.prp_area_cnt td.st_bold {
    font-size: 14px;
    font-weight: 600;
    color: #363636;
}

.prp_area_cnt .table-bordered > thead > tr > th, .prp_area_cnt .table-bordered > tbody > tr > th, .prp_area_cnt .table-bordered > tfoot > tr > th, .prp_area_cnt .table-bordered > thead > tr > td, .prp_area_cnt .table-bordered > tbody > tr > td, .prp_area_cnt .table-bordered > tfoot > tr > td {
    border: 1px solid #5c96cc;
}
.prp_area_cnt tr td {
    padding: 12px 10px !important;
}
.prp_area_cnt tr td span.clr_org {
    color: #005baf;
}
.prp_area_cnt tr td{font-weight:500; color:#363636; background:#f1f9ff;}
.prp_area_cnt tr td span.bld_txt {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.botm_nxt_areas.prog_pg {
    border-top: #e6e6e6 solid 1px;
    padding: 25px 0px 0px;
    width: 100%;
    margin-top: 30px;
}

.botm_nxt_areas.prog_pg .pdf-block {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
	position:relative;
}
.botm_nxt_areas.prog_pg .pdf-block .boths_ar {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}
.botm_nxt_areas.prog_pg .pdf-block .boths_ar img.prd_mg {
    width: 25px;
    height:25px;
    float: left;
    border-radius: 5px;
}
.botm_nxt_areas.prog_pg .pdf-block .boths_ar span.sm_contentts {
    font-size: 13px;
    color: #666;
    padding-left: 8px;
}
.botm_nxt_areas.prog_pg .pdf-block button#lang_btn_area {
    position: absolute;
    right: 10px;
    background: #c90303;
    border: none;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}
.botm_nxt_areas.prog_pg .pdf-block .pd_bottoms {
    display: inline-block;
    width: 100%;
}
.botm_nxt_areas.prog_pg .pdf-block .pd_bottoms span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.video-player-wrapper button.vg-icon-button {
    width: 25px;
    height: 25px;
    position: relative;
    top: 13px;
    margin-right: 10px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    line-height: 20px;
}

.botm_nxt_areas.prog_pg button.prog_bnts {
    border: none;
    padding: 9px 17px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 5px;
}
.botm_nxt_areas.prog_pg a.prog_bnts {
    border: none;
    padding: 9px 17px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 5px;
}


.news_announcements {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}
.news_announcements h2 {
    font-size: 18px;
    color: #005baf;
    margin: 0 0 20px;
}

.newsannounsment .news_sld_area {
    display: inline-block;
    width: 100%;
}
.newsannounsment .news_sld_area .new_ng_areaa {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}
.newsannounsment .news_sld_area .new_ng_areaa img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsannounsment .news_sld_area p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #333333;
}
.newsannounsment .news_sld_area h3 {
    font-size: 13px;
    line-height: 22px;
    color: #272727;
    font-weight: 600;
    margin: 0 0 10px;
}
.newsannounsment .news_sld_area a {
    background: #f2f2f2;
    font-size: 11px;
    display: inline-block;
    padding: 7px 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b6b6b;
}
.newsannounsment#pro_gramess .owl-dots {
    position: relative;
    top: 10px;
    left: 0;
    float: inherit;
    margin: 0 auto;
    display: table;
}
button.btn.btn-default.filter-button.active {
    background: #1b84c7;
    color: #fff;
}
/* ------------------ End Program Details --------------- */

/* Awards */
.awradss.gl_both_lat {
    display: inline-block;
    width: 100%;
}
.awradss.gl_both_lat h3 {
    color: #fff;
}
.awradss.gl_both_lat .awardslist {
    width: 100%;
    text-align: left;
    position: relative;
}
.awradss.gl_both_lat .awardslist .awrd_lists ul li{padding:20px 30px 20px 40px; display:inline-block; width:100%;}
.awradss.gl_both_lat .awardslist .awrd_lists ul li h6 {
    position: relative;
    float: left;
    top:-5px !important;
    left: -25px;
    margin: 0 !important;
    width: 60px;
    height: 60px;
    line-height:45px;
}
.awradss.gl_both_lat .awardslist .awrd_lists ul li h6 img {
    width: 40px;
	height:40px;
}
.awradss.gl_both_lat .awardslist .awrd_lists ul li .cntsss_areaaa {
    float: left;
    max-width: 1140px;
    width: 100%;
}
.awradss.gl_both_lat .awardslist .awrd_lists ul li .cntsss_areaaa p:last-child {
    margin: 0;
}

.awradss.gl_both_lat .awardslist .awrd_lists ul li .cntsss_areaaa p {
    margin-bottom: 10px;
    line-height: 20px;
}
.awradss.gl_both_lat .awardslist .awrd_lists ul li .cntsss_areaaa h5 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 26px;
    font-size: 20px;
}
.profile_usersss .user_mg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* End Awards */

.clents.new_partss_areaa {
    background: #f1f1f1;
    border-top: #dfdfdf solid 1px;
}

.clear_boths {clear: both !important;}


.site_main_tp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .site_main_tp1 {
    background-color: #cbe8fd;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #999;
    margin-bottom: 10px;
    width: 250px;
    text-align: center;
  }
  
  .brd_liness {
    width: 2px;
    height: 30px;
    background-color: #ccc;
  }
  
  .mnu_mlist {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    /* gap: 30px; */
    gap: 10px;
    position: relative;
  }
  
  .mnu_mlist_mh,
  .mnu_mlist_mh_s {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .mnu_mlist_mh1 {
    background-color: #cbe8fd;
    /* padding: 10px 20px; */
    padding: 10px 7px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px #999;
    text-align: center;
    /* min-width: 150px; */
    max-width: 96px;
  }
  
  .mnu_mlist_brd_l {
    width: 2px;
    height: 20px;
    background-color: #ccc;
    margin: 5px auto;
  }
  
  .mt_10 {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .mn_al_btns {
    background-color: #def3c2;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
  }
  
  .brd_linessHorizontal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
    z-index: -1;
    margin-top: 25px;
  }

  #hindi .site_main_tp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #hindi .site_main_tp1 {
    background-color: #cbe8fd;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #999;
    margin-bottom: 10px;
    width: 250px;
    text-align: center;
  }
  
  #hindi .brd_liness {
    width: 2px;
    height: 30px;
    background-color: #ccc;
  }
  
  #hindi .mnu_mlist {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    position: relative;
  }
  
  #hindi .mnu_mlist_mh,
  #hindi .mnu_mlist_mh_s {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  #hindi .mnu_mlist_mh1 {
    background-color: #cbe8fd;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px #999;
    text-align: center;
    max-width: 96px;
  }
  
  #hindi .mnu_mlist_brd_l {
    width: 2px;
    height: 20px;
    background-color: #ccc;
    margin: 5px auto;
  }
  
  #hindi .mt_10 {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  #hindi .mn_al_btns {
    background-color: #def3c2;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    color: #660000;
    font-weight: 500;
  }
  
  #hindi .brd_linessHorizontal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
    z-index: -1;
    margin-top: 25px;
  }
 


/* ========================== Print Area ========================== */


@media print {

    html {-webkit-print-color-adjust: exact!important;}	
    * {-webkit-print-color-adjust: exact!important; print-color-adjust: exact!important;}

	
	
	
    a:link:after,
    a:visited:after {content: "" !important;}
    *,
    :after,
    :before {box-sizing: border-box !important; vertical-align: top !important;}
    table {min-width: 100% !important; max-width: 100%; width: 100% !important;}




    @page {
        size: A4 portrait;
        margin: 0;
		padding:0;
        -webkit-print-color-adjust: exact;
        width: 100%;
    }


    table {
        min-width: 100%!important;
        max-width: 100%;
        width: 100%!important
    }


    .section {padding: 0px 0 !important; clear:both !important;}


    .mb_view_show {display: block !important;}
    .mb_view_hide {display: block !important;}
	
	.program#profrm_pagess{margin-top:-95% !important;}
	#als_pages_suportss{position:relative !important; top:-1000px !important; vertical-align: top !important;}

	#als_pages_suportss .content-wrapper .col-md-8{width:100% !important;}
	
	#als_pages_suportss.adsminss_pgss{position:relative !important; top:-50px !important; vertical-align: top !important;}
	#als_pages_suportss.adsminss{position:relative !important; top:-0px !important; vertical-align: top !important;}
	#als_pages_suportss_ftr.adsminss{position:relative !important; top:-0px !important; vertical-align: top !important;}
	
	#profrm_pagess .program_araea.abt_bothss.program_pgss .col-lg-4 {width: 50% !important; float:left !important;}
	#home_pgess_pages{position:relative !important; top:-1530px !important;}
	
	#accordion .contents .cnt_areaas .sets_mgs {width: 286px !important; height: 180px !important; overflow: hidden !important;}
	
	.HMA_program.blogs .dtl_bl .dt_img_bl#nw_details_pgs {height: 350px !important;}
	
	 .archive-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 .about-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 .programDetail-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 .faculty-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 
	 .newsEvent-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 .corporateRelation-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 .help-pages{top: -900px !important; position: relative !important; vertical-align: top !important;}
	 
	 #main-content1.sitemapss {padding: 0 5px !important;}
	 #main-content1.sitemapss .mnu_mlist_mh1 {padding: 7px 5px !important; font-size: 12px !important; max-width: 90px !important;}
	 #main-content1.sitemapss .mn_al_btns {padding: 6px 6px !important; font-size: 12px !important; color: #c52d2f !important;}

	footer.ftr_bgb .container .row .col-lg-5.col-sm-6.col-md-6 {float: left;  width: 30%;}
    footer.ftr_bgb .container .row .col-lg-2.col-sm-3.col-md-3 {float: left; width: 23.33333333333333%;}
	.gl_both_lat .col-lg-6 {width: 50%; float: left;}

	.both_araeas.faculty_profile_area .col-lg-7 {float: left; width: 58.333333333333336%;}
	.both_araeas.faculty_profile_area .col-lg-5 {float: left; width: 41.66666666666667%;}

	.la_updates .col-lg-4.col-sm-6.col-md-6.ng-star-inserted {float: left; width: 33.33333333333333%;}


	.gl_both_lat .awardslist .awrd_lists ul li {background-color:#fff !important; display:flex;  flex-wrap:wrap; padding:0px;}
	.gl_both_lat .awardslist .awrd_lists ul li h6{width:78px;}
	.gl_both_lat .awardslist .awrd_lists ul li .wth_boths {width:410px; text-align:left;}
    .gl_both_lat .awardslist .awrd_lists ul li span.lnkss {width:28px;}

    .tabsss_abt .contn_scytnt .col-md-8 {width: 66.66666666666666%; float:left;}
    .tabsss_abt .contn_scytnt .col-md-4 {width: 33.33333333333333%; float:left;}
	.abt_bothss.abt_as_boxx.about_pages .col-lg-4.col-sm-6{width:50% !important; float:left;}
	.abt_bothss.abt_as_boxx.about_pages .abt_bt_area.hmo_abt_ar {background-color: #fff !important; color: #000 !important;}
	.abt_bothss .abt_bt_area {background-color: #fff !important; color: #000 !important;}

	.abt_bothss.campusLifeData .col-lg-4{width: 50%; float:left;}

	header#header {display:block; width:100%; height:137px; position:relative;}
	header#header .top_areaas .col-lg-5 {width: 41.66666666666667%; float: left; margin-top:30px;}
	header#header .top_areaas .mb_view_hide.col-lg-7 {width: 58.333333333333336%; float: left;}

	header#header div .mb_view_hide.col-lg-7 {display: block !important; padding-top:15px;}
	header#header nav.navbar.navbar-inverse {display: block !important; position:absolute; bottom:0; background-color: #0054a3 !important;}
	header#header #sld_araea_shoow.col-lg-7.mb_view_show {display: none !important;}
	header#header .search.mb_view_show {display: none !important;}
	header#header .navbar-header button.menuhide.navbar-toggle {display: none !important;}
	header#header nav.navbar.navbar-inverse .navbar-left.navbar-collapse.mnu_aria.collapse {display:block !important; background-color:#0054a3 !important;
	position:absolute; bottom:-40px;}
    header#header nav.navbar.navbar-inverse .navbar-left.navbar-collapse.mnu_aria.collapse ul.nav.navbar-nav {display: flex; background-color:#0054a3 !important; height:38px !important; position:absolute; overflow:hidden; bottom:-40px;}
	header#header nav.navbar.navbar-inverse .navbar-left.navbar-collapse.mnu_aria.collapse ul.nav.navbar-nav li#clos_araeaa {display: none !important;}
	header#header nav.navbar.navbar-inverse .navbar-left.navbar-collapse.mnu_aria.collapse ul.nav.navbar-nav li {float:left; margin-right:0.3rem !important;}
	header#header nav.navbar.navbar-inverse .navbar-left.navbar-collapse.mnu_aria.collapse ul.nav.navbar-nav li a{color:#fff !important; font-size:8px !important;}
	header#header div .mb_view_hide {display: block !important;}
	
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt {background:#fed32e !important; color:#212121 !important; line-height:30px; height:30px; display:inline-block;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt span.us_r_cntxt {position: relative; top: -10px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt img{width:16px; height:16px; float:left; margin-right:5px;}
	.top_areaas .lgo_bothss .linkss_mnu .chcp_font_size {margin-top: 7px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li:nth-child(1) {margin-top: 7px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li .search {margin-top: 7px;}

	.gl_both_lat .awardslist span a {color: #000 !important;}

	.clents.new_partss_areaa {background-color: #f1f1f1 !important; border-top: #dfdfdf solid 1px !important;}

	.la_updates {background-color:#f3f3f3 !important;}

    header#header nav .navbar-nav li {margin-right: 5px !important;}

   .all_hedingss {color: #1a1a1a !important;}

    #pro_gramess .slide.item .progmss_bg span.cnt_tx {background-color: #0054a3 !important; color:#fff !important; left:0;}
	#pro_gramess .slide.item .progmss_bg span.cnt_tx:before{content:''; position:absolute; width: 100%; height:50px; line-height:24px; background: #004088; color:#fff !important; bottom: 0; left:0;}

	.both_araeas.faculty_profile_area .both_als .first_mg span.ovl_area {background-color:#595959 !important; color:#fff !important;}
	.both_araeas.faculty_profile_area .both_als .both_imgs .frt_ons span.ovl_area {background-color: #595959 !important; color: #fff !important;}
	
	.gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea span {color: #fff !important;}
    .paginetion li.current {background: #004088 !important; border: #004088 solid 1px !important; color: #fefefe !important;}
	
	.HMA_program.gallry_pg .tab-content .col-lg-6.col-sm-6.col-md-6 {width: 50%; float: left;}
	.HMA_program.gallry_pg .tab-content .gl_bax_area.gdo_glrrrs .mg_araea {height: 300px !important; overflow:hidden;}
	.HMA_program.gallry_pg .tab-content .gl_bax_area .mg_araea img {width: 100% !important;	height: 100% !important; object-fit: cover !important;	}
	.HMA_program.gallry_pg .tab-content .gl_bax_area .gl_botm_cnt {background-color: #fff !important; width: 94% !important;	margin: 0 auto; top: -20px !important;}


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





	.both_araeas.abt_as_boxx.faculty_profile .col-lg-7.col-md-12 {width: 58.3333%; float: left;}
	.both_araeas.abt_as_boxx.faculty_profile .col-lg-5.col-md-12 {width: 41.6667%;  float: left;}

	.brad_camp {background-color:#f0f0f0 !important;}
	.brad_camp .breadscm {color: #0054a3 !important;}

	.others_pgs.hm_program{background: url('undr_bgr.09c41cbf02edede3.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.hm_programes_und{background: url('programes.e3ba3aa1cb95fedc.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.others_pgs.ab_bg_ner{background: url('abt_us.5500b1388658c2d7.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.admis_bg_ner{background: url('admissions_bg.3d91a7cff0f6bfbf.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.progrms_bg_ner{background: url('programs_bg.85e62eea354dd44d.png') no-repeat !important; background-size: 100% 100% !important; }
	.others_pgs.campus_bg_ner{background: url('campus_life_bg.22f7adc6a9edae54.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.faculty_bg_ner{background: url('faculty_details_bg.4a7ff00bccc85864.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.newsev_bg_ner{background: url('news_and_events_pg.d4856b59003e4a03.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.newsandev_bg_ner{background: url('blog_bg.1ad44a8f6e3eccae.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.award_bg_ner{background: url('award_bg.9585c45dfafab0be.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.term_and_bg_ner{background: url('term_and_condition_bg.160a8adf8d4d23bd.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.corporate_bg_ner{background: url('corporate-relations.17241b273d41720e.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.disclaimer_bg_ner{background: url('disclaimer_bg.37bfad48e5e84a75.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.faq_bg_ner{background: url('faq_bg.d4c291ea0401e9fd.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.privacy_bg_ner{background: url('privacy_policy_bg.5bfbafa1fed6cbf9.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.gallery_bg_ner{background: url('gallery_bg.43e460893aece5c5.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.placements_bg_ner{background: url('placements_bg.55e226fc781b34be.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.program_details_bg_ner{background: url('program_details_bg.d8a1f0378f5a0db9.png') no-repeat !important; background-size: 100% 100% !important;}
	.others_pgs.login_bgr{background: url('bgr.34d67fb74f8ca7bf.jpg') no-repeat !important; background-size: 100% 100% !important;}



	.contnt_araea.faculty_details_p h3 {font-size: 27px; color: #0e58c0; line-height: 36px;}
	.contnt_araea.faculty_details_p .col-lg-4 {width: 33.33333333333333%; float:left;}
	.contnt_araea.faculty_details_p .col-lg-4 .profile_usersss {background-color: #126dc2 !important;  padding: 20px;}
	.contnt_araea.faculty_details_p .col-lg-4 .profile_usersss .prof_cntss h5 {background-color: #fdd32d !important; color: #303133 !important;}
	.contnt_araea.faculty_details_p .col-lg-4 .profile_usersss .prof_cntss p {color: #fff !important;}
	.contnt_araea.faculty_details_p .col-lg-4 .profile_usersss .prof_cntss p strong{font-weight:700; color: #fff !important;}
	.contnt_araea.faculty_details_p .col-lg-8 {width: 66.66666666666666%; float:left;}

	.contnt_araea.faculty_details_p .col-lg-8 .user_prf_als .usr_list_prt h6 {border-bottom:#deeaf5 solid 1px !important;}
	.contnt_araea.faculty_details_p .col-lg-8 .user_prf_als .usr_list_prt h6 span {background-color: #deeaf5 !important; color: #383838 !important;}
	.contnt_araea.faculty_details_p .col-lg-8 .user_prf_als p {font-size: 14px !important; color: #005baf !important; line-height: 24px; font-weight: 500;}


	.contnt_araea .HMA_program.faculty_pg h3 {
		color: #0e58c0 !important;
	}
	.HMA_program.faculty_pg .col-lg-3.col-sm-6.col-md-4.filter.General {width: 25%; float: left;}

	.HMA_program.faculty_pg .progmss_bg .nsw_mgs {height: 240px !important;}
	.HMA_program.faculty_pg .progmss_bg .nes_cnt_bx {background-color: #fff !important; padding: 10px; min-height: 155px; box-shadow: 0 3px 10px #dfdfdf !important;}
	.HMA_program.faculty_pg .progmss_bg .nes_cnt_bx h5 {color:#005baf !important;}
	.HMA_program.faculty_pg .progmss_bg .nes_cnt_bx p {color: #333 !important;}
	.HMA_program.faculty_pg .progmss_bg .nes_cnt_bx span a {background:#0054a3 !important; color:#fff !important;}
	.HMA_program.faculty_pg .progmss_bg .nes_cnt_bx span a img {position: relative !important; top:6px !important;}

	.contnt_araea.adminss_cmpnt h3 {color: #0e58c0 !important;}
	.contnt_araea.adminss_cmpnt .HMA_program h4 {color: #005baf !important;}
	.contnt_araea.adminss_cmpnt #accordion .heading {color: #005baf !important; border: 1px solid #e5edf7 !important; background-color: #e5edf7 !important;}

	.contnt_araea.adminss_cmpnt #accordion .contents {background-color: #fff !important; color: #4b4b4b !important; border: #fff solid 1px !important; box-shadow: 0px 2px 10px #e7e7e7 !important;}
	.contnt_araea.adminss_cmpnt #accordion .contents .cnt_areaas {padding: 10px 10px 10px;}
	.contnt_araea.adminss_cmpnt #accordion .contents h4 {color: #363636 !important; font-weight: 700 !important;}
	#accordion .contents .cnt_areaas .aply_btn_ad_cm a.pgdmApplybutton {background-color: #fed32e !important; color: #000 !important;}
	#accordion .heading:hover {background-color: #005baf !important; border: 1px solid #005baf !important;}
	#accordion .active.heading::before {background: url('arrow_w.9c994b7b064c98d1.png') no-repeat !important;}



	#lgo_body {background: url('bgr.34d67fb74f8ca7bf.jpg') no-repeat !important; background-size: 100% 100% !important;}
	#lgo_body .account-center .login-portals {background-color: #006ab4 !important; color: #fff !important;}
	#lgo_body .account-box {border:#ffffff4a solid 1px !important; background-color:#fff !important; box-shadow:0 10px 20px #00000045 !important;}
	#lgo_body .al_lgo_araeaea {color: #01447a !important;}
	.account-box .account-btn {background-color:#ffcf5b !important; color: #2b2b2b !important;}
	.account-box .form-group a {color: #006ab4 !important;}
	.form-group.form-focus.both_area span.rto_sgn {color:#333;}
	.form-group.form-focus.both_area span.rto_sgn a{color:#006ab4;}


	.anauss_area {background-color: #fff9c2 !important;}
	.anauss_area .araea_lists {display: flex;}
	.anauss_area .araea_lists .bx_araea.read_area {width: 20% !important;}
	.anauss_area .araea_lists .bx_araea {width: 20% !important;}
	.anauss_area .araea_lists .bx_araea.read_area img {float: left; margin-right: 10px;}
	.anauss_area .araea_lists .bx_araea.read_area p, .anauss_area .araea_lists .bx_araea.read_area p span {color: #0054a3 !important;}
	.anauss_area .araea_lists .bx_araea span {color: #005baf !important;}
	.anauss_area .araea_lists .bx_araea p {color: #333 !important; white-space: pre-wrap;}

	.contnt_araea h3 {color: #0e58c0 !important;}
	.contnt_araea.program span {color: #363636 !important;}
	.contnt_araea.program p {color: #363636 !important;}

	.program_araea.abt_bothss.program_pgss .col-lg-4 {width: 33.33333333333333%; float: left;}

	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area {border: #d4e1f4 solid 1px !important; display: flex !important;}

	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .rt_mg_area.mb_view_show{display:none !important;}

	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .lft_cnt_atara {
		position: relative;
		height: 240px;
		width:51%;
		float:left;
	}
    
    
	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .lft_cnt_atara h5 {
		color: #272727 !important;
		border-bottom: #d9e9ff solid 1px !important;
		height: 41px !important;
		overflow: hidden !important;
	}
	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .lft_cnt_atara p {
		color: #333 !important;
		height: 85px !important;
		overflow: hidden !important;
	}
	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .rt_mg_area .mb_view_hide {
		float: left;
		width: 45%;
		height: 240px;
		overflow: hidden;
		display:block !important;
	}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {
		background-color: #0054a3 !important; color:#fff !important;
	}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a img{position:relative; top:5px;}

	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .lft_cnt_atara h5 {color:#272727 !important; border-bottom:#d9e9ff solid 1px !important;}
	.program_araea.abt_bothss.program_pgss .col-lg-4 .abt_bt_area .lft_cnt_atara p {color:#333 !important;}
	
	
/* .program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a {
    background-color: #ffffff !important;
    color: #005baf !important;
    font-weight: 600 !important;
}
.program_araea.abt_bothss .abt_bt_area:hover .lft_cnt_atara a img{filter: brightness(0) invert(0) !important;}

	.botm_nxt_areas.prog_pg button.prog_bnts.blue_bg {
		background-color: #0054a3 !important;
		color: #fff !important;
	} */

	.contnt_araea.program_dtls .col-lg-4 {
		float: left;
		width: 33.33333333333333%;
	}
	.contnt_araea.program_dtls .col-lg-4 .lft_area_main {
		background-color: #005aaf !important;
	}
	.contnt_araea.program_dtls .col-lg-4 .lft_area_main .lft_araea_tabss h4 {
		color: #fff !important;
	}
	.lft_area_main .lft_araea_tabss .tabs-left>li a {border: 1px solid #83b5df !important; color: #fff !important;}

	.contnt_araea.program_dtls .col-lg-8 {
			width: 66.66666666666666%;
			float:left;
		}
	.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {
		color: #0e58c0 !important;
	}	
	.contnt_araea.program_dtls .tab-content .tbds_act_araeas p {
		color: #363636 !important;
	}
	.contnt_araea.program_dtls .tab-content .tbds_act_araeas p strong {
		font-weight: 600;
	}
	.contnt_araea.program_dtls .tab-content .tbds_act_araeas .botm_nxt_areas.prog_pg {
		border-top: #e6e6e6 solid 1px !important;
	}
	.botm_nxt_areas.prog_pg .pdf-block{border: 1px solid #ccc !important; padding: 10px;}


	#pro_gramess.newsannounsment .owl-carousel .owl-stage-outer {
		position: relative;
		overflow: hidden;
		-webkit-transform: translate3d(0, 0, 0);
	}

	#pro_gramess.newsannounsment .owl-item {
		width: 303px !important;
		display:none !important;
		padding:20px 20px 20px 50px;
	}
	#pro_gramess.newsannounsment .owl-item:nth-child(1) {
		display:block !important;
	}

	#pro_gramess.newsannounsment .news_sld_area {
		display: inline-block;
		width: 100%;
	}

	#pro_gramess.newsannounsment .news_sld_area .new_ng_areaa {
		width: 100%;
		height: 130px;
		overflow: hidden;
		margin-bottom: 20px;
	}
	#pro_gramess.newsannounsment .news_sld_area .new_ng_areaa img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	#pro_gramess.newsannounsment .news_sld_area h3 {
		color:#272727 !important;
	}
	#pro_gramess.newsannounsment .news_sld_area p {
		color:#333 !important;
	}
	.newslink {
		background: #0054a3 !important;
		color: #fff !important;
	}

	.contnt_araea.contact_pages .col-lg-4.col-sm-6 {width: 33.33333333333333%; float: left;}
	.cont_bx_area.oness{background-color: #fff !important; height: 290px; box-shadow: 0px 0px 10px #ccc !important;}
	.cont_bx_area.oness a strong{color: #c52d2f !important;}
	.cont_bx_area.oness h6 {color: #363636 !important;}
	.cont_bx_area.oness p {color: #464646 !important;}
	.cont_bx_area.oness p a{color: #c52d2f !important;}


	.container.mt-6.contn_form_pg .col-lg-5 {width: 41.66666666666667%; float: left;}
	.container.mt-6.contn_form_pg .col-lg-7 {width: 58.333333333333336%; float: left;}

	.contn_form_pg .cnt_form_areaa {background-color: #0054a3 !important; padding: 30px !important;}
	.contn_form_pg .cnt_form_areaa h5 {color: #fff !important;}
	.contn_form_pg .cnt_form_areaa .form-group label {color: #fff !important; display:block !important;}
	.contn_form_pg .cnt_form_areaa .form-group label span.wait{color: #fff !important;}
	.contn_form_pg .cnt_form_areaa .col-lg-6 {width: 50%; float: left;}
	.contn_form_pg .cnt_form_areaa .col-lg-12 {width: 100%; float: left;}
	.cnt_form_areaa .form-group input.form-control {background: #0b77bf !important; color: #fff !important;}
	.cnt_form_areaa button {background: #fdd32d !important; color: #3a3a3a !important;}


	.HMA_program.faq #accordion .col-lg-6.col-sm-6.col-md-6 {width: 50%; float: left;}
	#accordion .heading {color: #005baf !important; border: 1px solid #e5edf7 !important; background-color: #e5edf7 !important;}
	#accordion .contents.vl_cntr p a {color: #c52d2f !important;}

	.placements_pg .col-lg-3.col-md-4.col-xs-6 {width: 25%; float: left;}
	.placements_pg .plc_area {border: #d4e1f4 solid 1px !important;}
	.placements_pg .plc_area img {height: 80px !important; width: auto !important;}

	.news_ennts_list .und_liststs {background: #e7f3ff !important; border: #d0e2f4 solid 1px !important;}
	.news_ennts_list .und_liststs .col-lg-3.col-md-6 {width: 25%; float: left;}
	.news_ennts_list .und_liststs .env_mg_area {height: 155px !important; overflow: hidden !important;}
	.news_ennts_list .und_liststs .col-lg-9.col-md-6 {width: 75%; float: left;}
	.news_ennts_list .und_liststs .ent_list span {color: #0e58c0 !important;}
	.news_ennts_list .und_liststs .ent_list h4 {color: #363636 !important;}
	.news_ennts_list .und_liststs .ent_list a {background-color: #0054a3 !important; color: #fff !important;}
	.news_ennts_list .und_liststs .ent_list a img{position:relative; top:5px;}


	.HMA_program.blogs.dltss .col-lg-8.col-md-8 {
		width: 66.66666666666666%;
		float: left;
	}
	.HMA_program.blogs.dltss .dtl_bl h2.hedings {
		color:#000 !important;
	}
	.HMA_program.blogs .dtl_bl .dt_img_bl {
		height: 450px !important;
		overflow: hidden !important;
		border: #e0e0e0 solid 3px !important;
	}
	.HMA_program.blogs .dtl_bl .dt_img_bl img {
		width: 100% !important;
		height: 100% !important;
		object-fit: contain !important;
	}

	.HMA_program.blogs.dltss .col-lg-4.col-md-4 {
		width: 33.33333333333333%;
		float:left;
	}
	.HMA_program.blogs .recent_n {
		border: #dedede dotted 1px !important;
	}
	.HMA_program.blogs .recent_n h3 {
		background-color: #005aaf !important;
		color: #fff !important;
	}
	.HMA_program.blogs .rc_list {display: flow-root !important;}
	.HMA_program.blogs .rc_list .al_cvr {height: 70px !important; float: left !important; overflow: hidden !important; width: 80px !important;}
	.HMA_program.blogs .rc_list .al_cvr img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}
	.HMA_program.blogs .rc_list h4 {
		color:#005baf !important;
	}

	.HMA_program.blogs .rc_list span {
		color: #3d3d3d !important; display:block;
	}

	.HMA_program.blogs .socialsss {
		display: block !important;
		text-align: right !important;
	}
	.HMA_program.blogs .socialsss a.tw {
		background-color: #55acee !important;
	}
	.HMA_program.blogs .socialsss a.tw img{position:relative; top:6px !important;}
	.HMA_program.blogs .socialsss a.lnk {
		background-color: #0077b5 !important;
		line-height:40px !important;
	}
	.HMA_program.blogs .socialsss a.lnk img{position:relative; top:6px !important;}

	.clear_boths {clear: both !important;}

	footer.ftr_bgb:before{content: ''; position: absolute; width: 100%; height: 100%; background: #004088; top: 0;}

	#news_gramess .owl-nav{display:none !important; color:#004088 !important;}
	#faculty_profile .owl-nav{display:none !important;  color:#004088 !important;}
	footer.ftr_bgb .al_adrss h5{color:#fff !important;}
	footer.ftr_bgb .al_adrss p{color:#fff !important;}
	footer.ftr_bgb .abut_links ul li a{color:#fff !important;}
	footer.ftr_bgb .al_adrss p span{color:#fff !important;}

	.ftr_bgb .socialss ul{float:right !important;}
	.ftr_bgb .socialss ul li{color:#fff !important;}

	#news_gramess .progmss_bg .nes_cnt_bx {background-color: #fff !important;}
	#news_gramess .progmss_bg .nes_cnt_bx h5 {color: #005baf !important;}
	#news_gramess .progmss_bg .nes_cnt_bx span a {background-color: #d9dfe6 !important; color:#000 !important;}

	#faculty_profile .progmss_bg .nes_cnt_bx h5 {color: #005baf !important;}
	#faculty_profile .progmss_bg .nes_cnt_bx span a {background-color: #0054a3 !important; color: #fff !important;}

	.all_hedingss.text-center.latst {text-align: center !important;}
	.la_updates .up_d_bxss span.dates {background-color: #005aaf !important; color:#fff !important;}
	.la_updates .up_d_bxss h5 {color: #005baf !important;}


    .HMA_program.gallry_pg .tab-content .col-lg-4.col-sm-6.filter.Events {width: 33.33333333333333%; float: left;}
	.gallry_pg .progmss_bg .nsw_mgs {height: 298px; overflow: hidden; position:relative;}
	.gallry_pg .progmss_bg .nsw_mgs .txtxtx_xrea {background-color: #005aaf !important; height: 20% !important; color: #fff !important;}
	.gallry_pg .tabsss_abt .tab-link.active {border:#0054a3 solid 1px !important; color:#fff !important; background-color:#0054a3 !important;}
	.gallry_pg .facuty_tbss .tabssd_ac {overflow: initial !important;}
	.gallry_pg .facuty_tbss button.btn.btn-default.filter-button {font-size: 12px !important; padding: 10px 8px !important;}
	
	.tabsss_abt .tab-link {border: #e2e2e2 solid 1px !important; background-color: #e2e2e2 !important; color: #282828 !important;}
	.gallry_pg .facuty_tbss button.btn.btn-default.filter-button {color: #0054a3 !important; background-color: #fff !important;
    border: #e1f3ff solid 1px !important;}
	
	
	.collapse.navbar-collapse.navbar-left.mnu_aria {display: block !important;}
	body header#header {position: initial !important;}
	body .sticky {position: initial !important;}
	body .navbar {background-color: #005aaf !important;}
	body #pro_gramess .progmss_bg span.cnt_tx {background-color: #0054a3 !important;}
	body #sliser_aria{position: initial !important;}

	body .navbar {position: initial !important; background-color: #005aaf !important;}
	#header .lgo_areaas .search{display:none !important;}
	body #pro_gramess .progmss_bg span.cnt_tx {position: initial !important; bottom: 0; background-color: #0054a3 !important;}
	body .pro_gm_bgr {width: 100%; height: auto; position: initial !important; top:0px; margin-bottom:0px;}
	header#header .top_areaas .mb_view_hide .col-lg-7 {display: flex; right:0;}
	.top_areaas .lgo_bothss .linkss_mnu {display: flex;}
	header .container {padding: 0 15px !important; position: relative !important; z-index: 99999 !important;}
	
	
	.tabsss_abt .search-input-field button {background-color: #0054a3 !important; color: #fff !important;}
	.detail-page.public-police table tr td a {color: #c52d2f !important;}
	
	.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-prev{background: url('left_ar_w_tick.683300bd91e7a7df.png') no-repeat !important; width: 20px; height: 34px;}
	.clientss .owl-carousel .owl-nav.ng-star-inserted .owl-next{background: url('right_ar_w_tick.45546e3f227f2097.png') no-repeat !important; width: 20px; height: 34px;}
	
	
	.site_main_tp1 {background-color: #cbe8fd !important; padding:10px 10px !important; box-shadow: 2px 2px 5px #999 !important;}
	.brd_liness {background-color: #ccc !important;}	
	.mnu_mlist_mh1{background-color: #cbe8fd !important; padding:10px 10px !important; box-shadow: 2px 2px 5px #999 !important;}
	.mnu_mlist_brd_l{background-color: #ccc !important;}
	.mn_al_btns{background-color: #def3c2 !important;}
	.mnu_mlist{gap:6px !important;}
	
	
	
	#feedbk_box.container1 {background:#e8e8e8 !important; padding:15px !important; box-shadow:0px 4px 10px rgba(0, 0, 0, 0.1) !important;}
	#feedbk_box.container1 form #bothss.form-row {display:inline-block !important; width:100% !important;}
	#feedbk_box.container1 form .form-row .form-group {width:49% !important; float:left !important;}
	#feedbk_box.container1 form .form-row .form-group:nth-child(1) {margin-right:2% !important;}
	
	#feedbk_box.container1 form .select-dropdown {border: 1px solid #030303 !important;}
	#feedbk_box.container1 form .submit-btn {background-color: #004080 !important; color: #fff !important;}
	
	#feedbk_box.container1 form input, textarea {border: 1px solid #ccc !important; background: #fff !important;}
	.invalid-feedback {color: #dc3545 !important;}

	.red1 {color: red !important;}
	header#header nav.navbar.navbar-inverse .navbar-nav>li {margin-right: 0.1rem !important;}
	
}



.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}@keyframes bounce{0%,100%,20%,50%,80%{transform:translateY(0)}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}.bounce{animation-name:bounce}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scale(1)}30%{transform:scaleX(1.25) scaleY(0.75)}40%{transform:scaleX(0.75) scaleY(1.25)}60%{transform:scaleX(1.15) scaleY(0.85)}100%{transform:scale(1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,100%{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-10px)}20%,40%,60%,80%{transform:translateX(10px)}}.shake{animation-name:shake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}100%{transform:rotate(0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scale(1)}10%,20%{transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(3deg)}40%,60%,80%{transform:scale(1.1) rotate(-3deg)}100%{transform:scale(1) rotate(0)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:translateX(0%)}15%{transform:translateX(-25%) rotate(-5deg)}30%{transform:translateX(20%) rotate(3deg)}45%{transform:translateX(-15%) rotate(-3deg)}60%{transform:translateX(10%) rotate(2deg)}75%{transform:translateX(-5%) rotate(-1deg)}100%{transform:translateX(0%)}}.wobble{animation-name:wobble}@keyframes bounceIn{0%{opacity:0;transform:scale(.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0)}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0)}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0)}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{0%{transform:scale(1)}25%{transform:scale(.95)}50%{opacity:1;transform:scale(1.1)}100%{opacity:0;transform:scale(.3)}}.bounceOut{animation-name:bounceOut}@keyframes bounceOutDown{0%{transform:translateY(0)}20%{opacity:1;transform:translateY(-20px)}100%{opacity:0;transform:translateY(2000px)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{0%{transform:translateX(0)}20%{opacity:1;transform:translateX(20px)}100%{opacity:0;transform:translateX(-2000px)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{0%{transform:translateX(0)}20%{opacity:1;transform:translateX(-20px)}100%{opacity:0;transform:translateX(2000px)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{0%{transform:translateY(0)}20%{opacity:1;transform:translateY(20px)}100%{opacity:0;transform:translateY(-2000px)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(20px)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(2000px)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(-20px)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(-2000px)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(20px)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(2000px)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(-20px)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(-2000px)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) translateZ(0) rotateY(0) scale(1);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);animation-timing-function:ease-in}80%{transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);animation-timing-function:ease-in}100%{transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);animation-timing-function:ease-in}}.animated.flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);opacity:0}40%{transform:perspective(400px) rotateX(-10deg)}70%{transform:perspective(400px) rotateX(10deg)}100%{transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);opacity:0}40%{transform:perspective(400px) rotateY(-10deg)}70%{transform:perspective(400px) rotateY(10deg)}100%{transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px) rotateX(0deg);opacity:1}100%{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px) rotateY(0deg);opacity:1}100%{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedIn{0%{transform:translateX(100%) skewX(-30deg);opacity:0}60%{transform:translateX(-20%) skewX(30deg);opacity:1}80%{transform:translateX(0%) skewX(-15deg);opacity:1}100%{transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{transform:translateX(0%) skewX(0deg);opacity:1}100%{transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center center;transform:rotate(-200deg);opacity:0}100%{transform-origin:center center;transform:rotate(0);opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-90deg);opacity:0}100%{transform-origin:left bottom;transform:rotate(0);opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(90deg);opacity:0}100%{transform-origin:right bottom;transform:rotate(0);opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(90deg);opacity:0}100%{transform-origin:left bottom;transform:rotate(0);opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}100%{transform-origin:right bottom;transform:rotate(0);opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center center;transform:rotate(0);opacity:1}100%{transform-origin:center center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;transform:rotate(0);opacity:1}100%{transform-origin:left bottom;transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;transform:rotate(0);opacity:1}100%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;transform:rotate(0);opacity:1}100%{transform-origin:left bottom;transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;transform:rotate(0);opacity:1}100%{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes slideInDown{0%{opacity:0;transform:translateY(-2000px)}100%{transform:translateY(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{opacity:0;transform:translateX(-2000px)}100%{transform:translateX(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{opacity:0;transform:translateX(2000px)}100%{transform:translateX(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideOutLeft{0%{transform:translateX(0)}100%{opacity:0;transform:translateX(-2000px)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateX(0)}100%{opacity:0;transform:translateX(2000px)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateY(0)}100%{opacity:0;transform:translateY(-2000px)}}.slideOutUp{animation-name:slideOutUp}@keyframes slideInUp{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateY(0)}100%{opacity:0;transform:translateY(2000px)}}.slideOutDown{animation-name:slideOutDown}@keyframes hinge{0%{transform:rotate(0);transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out}80%{transform:rotate(60deg) translateY(0);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}100%{transform:translateY(700px);opacity:0}}.hinge{animation-name:hinge}@keyframes rollIn{0%{opacity:0;transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;transform:translateX(0px) rotate(0deg)}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1;transform:translateX(0px) rotate(0deg)}100%{opacity:0;transform:translateX(100%) rotate(120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale(.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale(.1) translateY(-2000px);animation-timing-function:ease-in-out}60%{opacity:1;transform:scale(.475) translateY(60px);animation-timing-function:ease-out}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale(.1) translateX(-2000px);animation-timing-function:ease-in-out}60%{opacity:1;transform:scale(.475) translateX(48px);animation-timing-function:ease-out}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale(.1) translateX(2000px);animation-timing-function:ease-in-out}60%{opacity:1;transform:scale(.475) translateX(-48px);animation-timing-function:ease-out}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale(.1) translateY(2000px);animation-timing-function:ease-in-out}60%{opacity:1;transform:scale(.475) translateY(-60px);animation-timing-function:ease-out}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1;transform:scale(1)}50%{opacity:0;transform:scale(.3)}100%{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale(.475) translateY(-60px);animation-timing-function:linear}100%{opacity:0;transform:scale(.1) translateY(2000px);transform-origin:center bottom}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale(.475) translateX(42px);animation-timing-function:linear}100%{opacity:0;transform:scale(.1) translateX(-2000px);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale(.475) translateX(-42px);animation-timing-function:linear}100%{opacity:0;transform:scale(.1) translateX(2000px);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale(.475) translateY(60px);animation-timing-function:linear}100%{opacity:0;transform:scale(.1) translateY(-2000px);transform-origin:center top}}.zoomOutUp{animation-name:zoomOutUp}
.mb_view_hide{display:block !important;}	
.mb_view_show{display:none !important;}


@media (min-width: 1800px) and (max-width: 4500px){

}



@media (min-width: 1668px) and (max-width: 2700px){
.navbar-nav > li {margin-left:0px; margin-right: 3.7777777777%;}
	.container {max-width: 98%; width: 100%;  margin: 0 auto;}
}

@media (min-width: 1501px) and (max-width: 1665px){
.navbar-nav > li {margin-left:0px; margin-right: 2.9%;}
	.container {max-width: 98%; width: 100%;  margin: 0 auto;}
}



@media (min-width: 1200px) {
    /* .dropdown:hover .dropdown-menu {
        display: block;
        -webkit-animation: fadeInUp 400ms;
        animation: fadeInUp 400ms;
    } */
    #portfolio .row {
        margin-left: -10px;
        margin-right: -10px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
	.mb_view_hide{display:none !important;}	
	.mb_view_show{display:block !important;}
	
	.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {margin: 20px 0 20px !important;}
	.newsannounsment .news_sld_area .new_ng_areaa {height: auto !important;}
	
	
	.faculty_pg .progmss_bg .nsw_mgs {height: 375px !important;}
	
	.HMA_program.mt_0.adsss.adminss_com {padding-top: 20px;}
.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img {margin-bottom: 15px;}
	
	#faculty_profile .owl-nav {top: -57px !important;}

	.both_als .first_mg {max-width: 665px !important;}
	.both_als .both_imgs {max-width: 320px !important;}

	.cont_bx_area.oness {min-height: 250px !important; margin: 30px 0 0 0;}
	
	.gl_both_lat .awardslist {width: 96% !important;}

	.blogs .card-body p.discrip {height: auto !important; overflow: initial !important;}
    .sticky {box-shadow: 0px 4px 10px #eaeaea;}
	#header .lgo_areaas .search {display: inline-block !important; position: absolute; right:90px; top:52px; z-index: 1;}
	#header .lgo_areaas .search input.search-form {position: absolute; padding: 4px 0px; top: -4px; color: #005aaf;  width: 30px; font-size: 0; margin: 0 -5px 0px;}
	#header .lgo_areaas .search input.search-form:focus {border: none; outline: none;}
	#header .lgo_areaas .search input.search-form:hover { width: 180px; background: #fff; border: #005aaf solid 1px; right:0px;	font-size:13px; padding: 4px 10px;}
	#header .lgo_areaas .search i.fa.fa-search {color: #005aaf; font-size: 20px; -webkit-text-stroke: 0px #f6f6f6;}	
	header#header.sticky button.navbar-toggle.menushow.collapsed {margin-top: 23px;}	
	.lgo_areaas a img {width:15%;}
	.top_areaas {padding: 0px 0 0 !important;}
	#header.sticky #sld_araea_shoow {display: none !important;}
	.mb_view_show{display:block !important;}
	.mb_view_hide {display: none !important;}
	#header.sticky button.menuhide.navbar-toggle {margin-top:23px !important;}
    .top_areaas .lgo_bothss {padding-top:7px;}
	
	header#header.sticky button.navbar-toggle.menushow{margin-top: 13px;}
	
	.HMA_program.blogs .dtl_bl .dt_img_bl{height:auto !important;}
	#video_pop .modal-dialog{width:94% !important;}
	.gl_bax_area.gdo_glrrrs .mg_araea {height:300px !important;}
	.gallry_pg .tabsss_abt .tab-wrapper {margin-bottom: 5px !important; margin-top: 20px !important;}
    .top_areaas .lgo_bothss .linkss_mnu ul li{margin-right:8px !important; font-size:12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt{padding:8px 5px !important; font-size:12px !important;}
	.btn-orig {font-size: 12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a img {width: 15px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search {font-size: 15px !important;}
	
		.lgo_areaas span.hal_cntss_lgo {font-size:14px !important; display: block;}
	section {padding:20px 0 !important;}
	.lgo_areaas {text-align: left; margin-bottom: 15px;}
	.top_areaas .sub_mnu_listss {text-align: right; display: block !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; padding: 0; flex-wrap: inherit; margin-top: 10px;}
		
	.top_areaas .sub_mnu_listss::-webkit-scrollbar {display: none;}
    .top_areaas .sub_mnu_listss {-ms-overflow-style: none;  scrollbar-width: none;}
	
    .navbar-toggle {position: absolute; bottom: 15px; right: 0;
        top: initial;
        float: right;
        padding: 9px 10px;
        margin-top: 0;
        margin-right: 15px;
        margin-bottom: 0;
        background-color: #005baf !important;
        background-image: none;
        border: 1px solid #005baf !important;
        border-radius: 4px; display: block;}
    .navbar-inverse .navbar-nav > li > a {padding: 5px 0px;}
    .both_als {display: flex;}
    .all_hedingss.latst {margin-bottom: 30px;}
    .la_updates .up_d_bxss {padding: 0;     text-align: left; margin-bottom: 30px;}
    .rt_bordr{display:none;}
    .gl_both_lat .awardslist {width: 100%; float: initial; margin-top: 25px;}
	.gl_both_lat .awardslist h3 {font-size: 26px; text-align: left;}
	.gl_both_lat .awardslist p {font-size: 18px;}
	.pro_gm_bgr{padding:0 20px; top: -165px;}
	.pro_gm_bgr .cntss_areaa h3 {font-size: 28px; padding-top: 30px;}
	.pro_gm_bgr .cntss_areaa p {font-size: 15px;}

	.all_hedingss {font-size: 26px !important; text-align: left; margin-bottom: 20px !important; margin-top: 20px !important;}
	#news_gramess .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0px;}
	#news_gramess .progmss_bg .nes_cnt_bx{text-align:left; min-height: auto;}
	#news_gramess .owl-nav {display: flex; position: relative; align-items: center; justify-content: center; right: 0; margin: 0; top: -30px;}
	#news_gramess .owl-nav button.owl-prev {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-prev:hover {background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next:hover {background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#faculty_profile .progmss_bg .nes_cnt_bx{min-height:auto; text-align:left;}
	#faculty_profile .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0;}
	#faculty_profile .owl-nav {display: flex; position: relative; right: 0; align-items: center; justify-content: center; margin: 0; top: 0; margin-bottom: 20px;}
	#faculty_profile .progmss_bg .nsw_mgs {width: 100%; height: auto;}
	.gl_both_lat .awardslist .awrd_lists ul li {padding: 20px 20px; text-align: left;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 {position: relative; background: #333; padding: 7px; left: 0; width: 55px; top: 0; height: 55px; text-align: left; line-height: 40px;
		margin: 0 auto; margin-bottom: 20px;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 img {width: 100%;}
	.gl_both_lat .awardslist .awrd_lists ul li span.lnkss {position: initial; right: 0; top: 0; border: none; align-items: center; justify-content: center; display: contents;}
	.gl_both_lat .awardslist .awrd_lists ul li p {margin: 0 0 15px;}
	footer.ftr_bgb .abut_links.lst ul li {text-align: left; margin-top: 20px;}
	footer.ftr_bgb .abut_links {margin-top:0px;}
	footer.ftr_bgb {padding: 30px 0 !important;}
	.copy_rights .cpy {text-align: left;}
	.ftr_bgb .socialss {margin-top:0% !important;}
	.ftr_bgb .socialss ul {float: left !important;}
	.tabs_araess .explr span a {font-size: 16px;}
	.gl_both_lat .awardslist span a {font-size: 16px;}
	.gl_both_lat .awardslist span {float: right; top: 1px;}
	.tabs_araess h3 {font-size: 26px; text-align: left;}	
	.tabs_araess .tab-link {width: 50%;}	
	
	.our_mng_aria .mng_bx .und_al_aria_l a {margin-top:0;}
	.navbar {background: #fff;}
    .navbar-left.mnu_aria .navbar-nav {margin:0px 0 0px 0; width:100%; height:100vh !important; top:0; position:fixed; background:#fff; overflow-y:scroll;}	
	.navbar-nav > li {margin: 0px !important; padding-left: 20px; display: block; border-bottom:1px solid #ddd; width: 100%;}
	.cnt_forms .form-group {margin-bottom: 20px;}
	.navbar-collapse.navbar-left.mnu_aria.in {position: fixed; width: 100%; background:#005baf; z-index: 9; right: 0; max-height: inherit; overflow: inherit;  padding: 0;  margin: 0;}

	nav.navbar.navbar-inverse .container {padding: 0; position: relative; top: 0; z-index: 2;}

     .navbar-collapse {max-height: 100% !important;}
	 .navbar-collapse.navbar-left.mnu_aria.in.show {right: 0; height:100% !important; position: fixed;   width: 80% !important; padding-top:0px;}
	 .navbar-left.mnu_aria .navbar-nav #clos_araeaa {background: #005baf; padding:3px 18px; display:block !important;}	 	 
	 .navbar-collapse.navbar-left.mnu_aria.in.show:before {background: rgba(0,0,0,0.5); content: ''; position: fixed; width: 20%; height: 100%; left: 0;}
	 .navbar-collapse.navbar-left.mnu_aria.in {position:fixed; width:80%; height:100% !important; padding:0;  margin:0; height:calc(100vh - 50px) !important; background:#fff; top:0px; right:-90%; transition:0.2s; z-index:999; width:80% !important;}
	 
	 .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {color: #051f96;}
	 .navbar-inverse .navbar-nav > li > a{color: #051f96 !important;}
	 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {border-top:0; padding-bottom:0; z-index:999; position:fixed;  right: -100%; transition: 0.2s; height:100% !important; width:80% !important;}
	
	.collapse.navbar-collapse.navbar-left.mnu_aria {display: none; width: 50% !important; z-index: 99999; background: #fff; right: -50%;}
	
	.navbar-left.mnu_aria .navbar-nav ::-webkit-scrollbar {display: none;}
    .navbar-left.mnu_aria .navbar-nav  {-ms-overflow-style: none;  scrollbar-width: none;}
	
	.navbar-right.lang_src {max-width: 100%; min-height: 60px;}
	.navbar-right.lang_src:after{display:none;}
	section#sliser_aria {min-height: 300px;}
	.navbar-right.lang_src .src_ml ul {margin: 20px 0 0 15px;}
	section#sliser_aria .owl-stage-outer .owl-stage .owl-item .item.bnr {height: 300px !important;}
	#sliser_aria .carousel-content.bgr_cnts {margin-top: 12%; text-align: left;}
	.bgr_cnts h1 {font-size: 30px; margin: 0 0 10px 0; line-height: 30px;}
	#sliser_aria .owl-nav{display:none;}
	
	
	body > section {padding:30px 0 !important;}
	 #main-slider .carousel .item {height: 300px;}
	 #main-slider .carousel .carousel-content {margin-top: -20px;}
	 
	.navbar {min-height:auto;}
	.navbar > .container .navbar-brand {margin-left: 15px;    line-height: 75px;}
	
		.tabsss_abt .tabs {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.abt_bothss {height:auto !important; padding:20px 0 !important;}
	.others_pgs {height:200px !important;}
	.others_pgs .als_cnts{font-size: 26px !important; padding: 0 15px; line-height: 30px;}
	.contnt_araea h3 {font-size: 20px !important; line-height: 30px !important; text-align: left; margin-bottom: 10px !important;}
	.tabsss_abt .contn_scytnt h3 {font-size: 20px; line-height: 26px; margin-top: 0px;}
	.abt_area_img {height: 250px; margin-top: 20px;}
	.abt_area_img.admins {margin: 7px 0 22px;}
	#accordion .contents .cnt_areaas {padding: 20px 20px 20px;}
	.HMA_program h4 {font-size: 20px;}
	#accordion .contents .cnt_areaas .sets_mgs {height: auto !important; margin-bottom:0px;}
	.als_cntsss_cumps {text-align: left;}
	.cont_bx_area {margin-bottom: 20px; min-height: auto;}
	.cnt_form_areaa {margin-bottom: 20px;}
	.cnt_form_areaa {padding: 20px;}
	.cnt_form_areaa .form-group label.mb_nn {display: none;}
	.mt-6 {margin-top: 2rem!important;}
	
	.profile_usersss .user_mg {text-align: left;}
	.profile_usersss {padding: 30px 20px 20px; margin-bottom: 30px;}
	.profile_usersss .prof_cntss {text-align: left;}
	.profile_usersss .prof_cntss:last-child {margin-bottom:0;}
	.user_prf_als h4 {font-size: 22px; margin: 0 0 0px; text-align: left;}
	.user_prf_als p {text-align: left;}
	.user_prf_als .usr_list_prt ul li {margin-bottom: 15px; font-size: 14px;}
	
	.gallry_pg .tabsss_abt .tabs {white-space: inherit; overflow-x: inherit; overflow-y: initial; width: auto;}
	.gallry_pg .facuty_tbss .tabssd_ac {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.gallry_pg .progmss_bg .nsw_mgs {height: 270px;}
	
	.news_ennts_list .und_liststs{padding:20px !important;}
	.news_ennts_list .und_liststs .ent_list h4 {line-height: 24px;}	
    .news_ennts_list .und_liststs .ent_list {text-align: left; padding-top: 10px;}
    .news_ennts_list .und_liststs .ent_list p {font-size: 14px; line-height: 22px;}
	.news_ennts_list .und_liststs .env_mg_area{height:auto !important;}
	
	.plc_area img {width: 100% !important; height:120px !important;}
	
	.anauss_area .araea_lists {display:flex !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap;  padding: 0; flex-wrap: inherit;}
	.anauss_area .araea_lists .bx_araea {float: left; width: auto !important; margin-right: 20px;}
	.anauss_area .araea_lists .bx_araea.read_area {width: auto;}
	.anauss_area .araea_lists .bx_araea:last-child {margin-right:0px;}
	.anauss_area .araea_lists .bx_araea.read_area p {display: contents;}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {padding: 4px 10px; font-size: 12px;}
	.program_araea.abt_bothss .abt_bt_area h5 {font-size: 16px !important; height: auto !important; overflow: inherit !important; line-height: 21px;}
	.program_araea.abt_bothss .abt_bt_area p {font-size: 12px;}
	.contnt_araea.program span {font-size: 14px; text-align: left;}
	.contnt_araea.program p {font-size: 14px; text-align: left;}
	.contnt_araea.program h3 {text-align: left; margin-bottom: 20px;}
}

.navbar-left.mnu_aria .navbar-nav #clos_araeaa{display:none;}
.mb_view_show{display:none;}


@media (min-width: 768px) and (max-width: 991px) {
.mb_view_hide{display:none !important;}	
.mb_view_show{display:block !important;}


.lft_area_main .lft_araea_tabss ul.nav.nav-tabs.tabs-left.sideways {background: transparent !important; border: none !important; padding: 0 !important;}

.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {line-height: 26px !important; margin: 20px 0 20px !important; font-size: 19px !important;}	
.newsannounsment .news_sld_area .new_ng_areaa {height: auto !important;}
.newsannounsment .news_sld_area h3 {font-size: 16px !important; line-height: 24px !important;}

.faculty_pg .progmss_bg .nsw_mgs {height: 415px !important;}

.HMA_program.blogs.dltss {margin-top: 0;}
section.contnt_araea.blog_pgss_lst .blogs .img_ara_parts{height: auto;}	

.HMA_program.mt_0.adsss.adminss_com {padding-top: 20px;}
.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img {margin-bottom: 15px;}
.abt_as_boxx.faculty_profile {padding-top: 10px !important;}
#faculty_profile .owl-nav {top: -57px !important;}


.abt_bothss.abt_as_boxx {height: auto; padding:15px 0;}
.cont_bx_area.oness {min-height: 300px !important; margin: 30px 0 0 0;}

.both_als .first_mg {max-width: 465px !important;}
.gl_both_lat .awardslist {width: 96% !important;}

#faculty_profile .owl-nav {top: -56px;}
	
	section.both_araeas {padding: 0 0 20px !important;}
body.theme-color .navbar-toggle {background-color: #000000 !important; border: 1px solid #000000 !important;}
body.theme-color .navbar-left.mnu_aria .navbar-nav #clos_araeaa{background:#000;}	
body.theme-color .navbar-inverse .navbar-nav > li > a {color: #000000 !important;}
body.theme-color #header .lgo_areaas .search i.fa.fa-search {color: #000;}
body.theme-color #header .lgo_areaas .search input.search-form:hover {border: #000000 solid 1px;}
body.theme-color #header .lgo_areaas .search input.search-form{color:#000;}
body.theme-color #naviconsHide .owl-theme .owl-dots .owl-dot.active span {background: #000000;}

	.blogs .card-body p.discrip {height: auto !important; overflow: initial !important;}
	.sticky {box-shadow: 0px 4px 10px #eaeaea;}
	#header .lgo_areaas .search {        display: inline-block !important;
        position: absolute;
        right: 95px;
        top: 38px;
        z-index: 1;}
	#header .lgo_areaas .search input.search-form {position: absolute; padding: 4px 0px; top: -4px; color: #005aaf;  width: 30px; font-size: 0; margin: 0 -5px 0px;}
	#header .lgo_areaas .search input.search-form:focus {border: none; outline: none;}
	#header .lgo_areaas .search input.search-form:hover { width: 180px; background: #fff; border: #005aaf solid 1px; right:0px;	font-size:13px; padding: 4px 10px;}
	#header .lgo_areaas .search i.fa.fa-search {color: #005aaf; font-size: 20px; -webkit-text-stroke: 0px #f6f6f6;}	
	header#header.sticky button.navbar-toggle.menushow.collapsed {margin-top: 23px;}	
	.lgo_areaas a img {width:15%;}
	.top_areaas {padding: 0px 0 0 !important;}
	#header.sticky #sld_araea_shoow {display: none !important;}
	.mb_view_show{display:block !important;}
	.mb_view_hide {display: none !important;}
	#header.sticky button.menuhide.navbar-toggle {margin-top:23px !important;}
    .top_areaas .lgo_bothss {padding-top:7px;}
	
	header#header.sticky button.navbar-toggle.menushow{margin-top: 13px;}
	
	.HMA_program.blogs .dtl_bl .dt_img_bl{height:auto !important;}
	#video_pop .modal-dialog{width:94% !important;}
	.gl_bax_area.gdo_glrrrs .mg_araea {height:250px !important;}
	.gallry_pg .tabsss_abt .tab-wrapper {margin-bottom: 5px !important; margin-top: 20px !important;}
    .top_areaas .lgo_bothss .linkss_mnu ul li{margin-right:8px !important; font-size:12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt{padding:8px 5px !important; font-size:12px !important;}
	.btn-orig {font-size: 12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a img {width: 15px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search {font-size: 15px !important;}
	
		.lgo_areaas span.hal_cntss_lgo {font-size:14px !important; display: block;}
	section {padding:20px 0 !important;}
	.lgo_areaas {text-align: left; margin-bottom: 15px;}
	.top_areaas .sub_mnu_listss {text-align: right; display: block !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; padding: 0; flex-wrap: inherit; margin-top: 10px;}
		
	.top_areaas .sub_mnu_listss::-webkit-scrollbar {display: none;}
    .top_areaas .sub_mnu_listss {-ms-overflow-style: none;  scrollbar-width: none;}
	
    .navbar-toggle {position: absolute;
        bottom: 15px;
        right: 0;
        top: initial;
        float: right;
        padding: 9px 10px;
        margin-top: 0;
        margin-right: 15px;
        margin-bottom: 0;
        background-color: #005baf !important;
        background-image: none;
        border: 1px solid #005baf !important;
        border-radius: 4px; display: block;}
    .navbar-inverse .navbar-nav > li > a {padding: 5px 0px;}
    .both_als {display: flex;}
    .all_hedingss.latst {margin-bottom: 30px;}
    .la_updates .up_d_bxss {padding: 0;     text-align: left; margin-bottom: 30px;}
    .rt_bordr{display:none;}
    .gl_both_lat .awardslist {width: 100%; float: initial; margin-top: 25px;}
	.gl_both_lat .awardslist h3 {font-size: 26px; text-align: left;}
	.gl_both_lat .awardslist p {font-size: 18px;}
	.pro_gm_bgr{padding:0 20px; top: -165px;}
	.pro_gm_bgr .cntss_areaa h3 {font-size: 28px; padding-top: 30px;}
	.pro_gm_bgr .cntss_areaa p {font-size: 15px;}

	.all_hedingss {font-size: 26px !important; text-align: left; margin-bottom: 20px !important; margin-top: 20px !important;}
	#news_gramess .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0px;}
	#news_gramess .progmss_bg .nes_cnt_bx{text-align:left; min-height: auto;}
	#news_gramess .owl-nav {display: flex; position: relative; align-items: center; justify-content: center; right: 0; margin: 0; top: -30px;}
	#news_gramess .owl-nav button.owl-prev {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-prev:hover {background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next:hover {background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#faculty_profile .progmss_bg .nes_cnt_bx{min-height:auto; text-align:left;}
	#faculty_profile .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0;}
	#faculty_profile .owl-nav {display: flex; position: relative; right: 0; align-items: center; justify-content: center; margin: 0; top: 0; margin-bottom: 20px;}
	#faculty_profile .progmss_bg .nsw_mgs {width: 100%; height: auto;}
	.gl_both_lat .awardslist .awrd_lists ul li {padding: 20px 20px; text-align: left;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 {position: relative; background: #333; padding: 7px; left: 0; width: 55px; top: 0; height: 55px; text-align: left; line-height: 40px;
		margin: 0 auto; margin-bottom: 20px;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 img {width: 100%;}
	.gl_both_lat .awardslist .awrd_lists ul li span.lnkss {position: initial; right: 0; top: 0; border: none; align-items: center; justify-content: center; display: contents;}
	.gl_both_lat .awardslist .awrd_lists ul li p {margin: 0 0 15px;}
	footer.ftr_bgb .abut_links.lst ul li {text-align: left; margin-top: 20px;}
	footer.ftr_bgb .abut_links {margin-top:0px;}
	footer.ftr_bgb {padding: 30px 0 !important;}
	.copy_rights .cpy {text-align: left;}
	.ftr_bgb .socialss {margin-top:3% !important;}
	.ftr_bgb .socialss ul {float: left !important;}
	.tabs_araess .explr span a {font-size: 16px;}
	.gl_both_lat .awardslist span a {font-size: 16px;}
	.gl_both_lat .awardslist span {float: right; top: 1px;}
	.tabs_araess h3 {font-size: 26px; text-align: left;}	
	.tabs_araess .tab-link {width: 50%;}	
	
	.our_mng_aria .mng_bx .und_al_aria_l a {margin-top:0;}
	.navbar {background: #fff;}
.navbar-left.mnu_aria .navbar-nav {margin: 0px 0 0px 0; width: 100%; height:100vh !important; top: 0; position: fixed; background: #fff; overflow-y:scroll !important;}	
	.navbar-nav > li {margin: 0px !important; padding-left: 20px; display: block; border-bottom:1px solid #ddd; width: 100%;}
	.cnt_forms .form-group {margin-bottom: 20px;}
	.navbar-collapse.navbar-left.mnu_aria.in {position: fixed; width: 100%; background:#005baf; z-index: 9; right: 0; max-height: inherit; overflow: inherit;  padding: 0;  margin: 0;}

	nav.navbar.navbar-inverse .container {padding: 0; position: relative; top: 0; z-index: 2;}

     .navbar-collapse {max-height: 100% !important;}
	 .navbar-collapse.navbar-left.mnu_aria.in.show {right: 0; height:100% !important; position: fixed;   width: 80% !important; padding-top:0px;}
	 .navbar-left.mnu_aria .navbar-nav #clos_araeaa {background: #005baf; padding:3px 18px; display:block !important;}	 	 
	 .navbar-collapse.navbar-left.mnu_aria.in.show:before {background: rgba(0,0,0,0.5); content: ''; position: fixed; width: 20%; height: 100%; left: 0;}
	 .navbar-collapse.navbar-left.mnu_aria.in {position:fixed; width:80%; height:100% !important; padding:0;  margin:0; height:calc(100vh - 50px) !important; background:#fff; top:0px; right:-90%; transition:0.2s; z-index:999; width:80% !important;}
	 
	 .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {color: #051f96;}
	 .navbar-inverse .navbar-nav > li > a{color: #051f96 !important;}
	 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {border-top:0; padding-bottom:0; z-index:999; position:fixed;  right: -100%; transition: 0.2s; height:100% !important; width:80% !important;}
	.collapse.navbar-collapse.navbar-left.mnu_aria{display:none; width:80% !important; z-index: 99999; background: #fff; right: 0%;}
	.navbar-left.mnu_aria .navbar-nav ::-webkit-scrollbar {display: none;}
    .navbar-left.mnu_aria .navbar-nav  {-ms-overflow-style: none;  scrollbar-width: none;}
	
	.navbar-right.lang_src {max-width: 100%; min-height: 60px;}
	.navbar-right.lang_src:after{display:none;}
	section#sliser_aria {min-height: 450px !important; padding-top: 0 !important;}
	.navbar-right.lang_src .src_ml ul {margin: 20px 0 0 15px;}
	section#sliser_aria .owl-stage-outer .owl-stage .owl-item .item.bnr {height: 300px !important;}
	#sliser_aria .carousel-content.bgr_cnts {margin-top: 12%; text-align: left;}
	.bgr_cnts h1 {font-size: 30px; margin: 0 0 10px 0; line-height: 30px;}
	#sliser_aria .owl-nav{display:none;}
	
	
	body > section {padding:30px 0 !important;}
	 #main-slider .carousel .item {height: 300px;}
	 #main-slider .carousel .carousel-content {margin-top: -20px;}
	 
	.navbar {min-height:auto;}
	.navbar > .container .navbar-brand {margin-left: 15px;    line-height: 75px;}
	
    .tabsss_abt .tabs {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.abt_bothss {height: auto !important; padding: 20px 0 !important;}
	.others_pgs {height:200px !important;}
	.others_pgs .als_cnts{font-size: 26px !important; padding: 0 15px; line-height: 30px;}
	.contnt_araea h3 {font-size: 26px !important; line-height: 30px !important; text-align: left; margin-bottom: 10px !important;}
	.tabsss_abt .contn_scytnt h3 {font-size: 20px; line-height: 26px; margin-top: 0px;}
	.abt_area_img {height: 250px; margin-top: 20px;}
	.abt_area_img.admins {margin: 7px 0 22px;}
	#accordion .contents .cnt_areaas {padding: 20px 20px 20px;}
	.HMA_program h4 {font-size: 20px;}
	#accordion .contents .cnt_areaas .sets_mgs {height: auto !important; margin-bottom:0px;}
	.als_cntsss_cumps {text-align: left;}
	.cont_bx_area {margin-bottom: 20px; min-height: auto;}
	.cnt_form_areaa {margin-bottom: 20px;}
	.cnt_form_areaa {padding: 20px;}
	.cnt_form_areaa .form-group label.mb_nn {display: none;}
	.mt-6 {margin-top: 2rem!important;}
	
	.profile_usersss .user_mg {text-align: left;}
	.profile_usersss {padding: 30px 20px 20px; margin-bottom: 30px;}
	.profile_usersss .prof_cntss {text-align: left;}
	.profile_usersss .prof_cntss:last-child {margin-bottom:0;}
	.user_prf_als h4 {font-size: 22px; margin: 0 0 0px; text-align: left;}
	.user_prf_als p {text-align: left;}
	.user_prf_als .usr_list_prt ul li {margin-bottom: 15px; font-size: 14px;}
	
	.gallry_pg .tabsss_abt .tabs {white-space: inherit; overflow-x: inherit; overflow-y: initial; width: auto;}
	.gallry_pg .facuty_tbss .tabssd_ac {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.gallry_pg .progmss_bg .nsw_mgs {height: 270px;}
	
	.news_ennts_list .und_liststs{padding:15px !important;}
	.news_ennts_list .und_liststs .ent_list h4 {line-height: 24px;}	
    .news_ennts_list .und_liststs .ent_list {text-align: left; padding-top: 10px;}
    .news_ennts_list .und_liststs .ent_list p {font-size: 14px; line-height: 22px;}
	.news_ennts_list .und_liststs .env_mg_area{height:auto !important;}
	
	.plc_area img {width: 100% !important; height:100px !important;}
	
		.anauss_area .araea_lists {display: flex !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap;  padding: 0; flex-wrap: inherit;}
	.anauss_area .araea_lists .bx_araea {float: left; width: auto !important; margin-right: 20px;}
	.anauss_area .araea_lists .bx_araea.read_area {width: auto;}
	.anauss_area .araea_lists .bx_araea:last-child {margin-right:0px;}
	.anauss_area .araea_lists .bx_araea.read_area p {display: contents;}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {padding: 4px 10px; font-size: 12px;}
	.program_araea.abt_bothss .abt_bt_area h5 {font-size: 16px !important; height: auto !important; overflow: inherit !important; line-height: 21px;}
	.program_araea.abt_bothss .abt_bt_area p {font-size: 12px;}
	.contnt_araea.program span {font-size: 14px; text-align: left;}
	.contnt_araea.program p {font-size: 14px; text-align: left;}
	.contnt_araea.program h3 {text-align: left; margin-bottom: 20px;}
}


@media (min-width: 481px) and (max-width: 767px) {
.mb_view_hide{display:none !important;}	
.mb_view_show{display:block !important;}	

.both_araeas.faculty_profile_area.section {padding-top: 10px;}
.managess_areea_arrow .slider-btns {top: 20px; right: 15px;}
.managess_areea_arrow .faculty-btns {top:0px; right: 15px;}
.clents .managess_areea_arrow .owl-next {top: 49%; right: 10px; z-index:9999;}

#mb_view_hide-ann{display: none !important;}
.news_announcements #pro_gramesss .owl-nav.ng-star-inserted {display: none !important;}

.botm_nxt_areas.prog_pg .pdf-block {display: grid;}
.botm_nxt_areas.prog_pg .pdf-block button#lang_btn_area {
    position: relative;
    right: initial;
    display: inline-block;
    width: 50%;
    margin-bottom: 5px;
}

.abt_bothss .abt_bt_area {padding: 15px !important;}
.abt_bt_area.hmo_abt_ar .rt_mg_area {height:auto !important;}

.lft_area_main .lft_araea_tabss ul.nav.nav-tabs.tabs-left.sideways {background: transparent !important; border: none !important; padding: 0 !important;}

.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {line-height: 26px !important; margin: 20px 0 20px !important; font-size: 17px !important;}	
.newsannounsment .news_sld_area .new_ng_areaa {height: auto !important;}
.newsannounsment .news_sld_area h3 {font-size: 14px !important; line-height: 22px !important;}

.contents_txx p img {width: 100%;}	
.plc_area {padding: 15px 0 !important;}	
.faculty_pg .progmss_bg .nsw_mgs{height:auto !important;}
.container.mt-6.contn_form_pg {margin-top: 10px !important;}
.program_araea.abt_bothss .abt_bt_area {padding: 10px 10px 20px; margin-bottom: 20px !important;}
.program_araea.abt_bothss .abt_bt_area .rt_mg_area {float: left; width: 100%; height: auto; overflow: hidden; margin-bottom: 15px;}


section.contnt_araea.blog_pgss_lst .blogs .img_ara_parts{height: auto;}	

.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img { margin-bottom: 15px !important;  width: 100% !important;}
.HMA_program.mt_0.adsss.adminss_com {padding-top: 20px;}
.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img {margin-bottom: 15px;}




#faculty_profile .owl-carousel .owl-stage-outer {margin-bottom: 20px;}		
.abt_mg_aress {padding-top:35px;}
.collapse.navbar-collapse.navbar-left.mnu_aria {display: none; width: 100% !important; z-index: 99999; background: #fff; right: 0%;}

body.theme-color .navbar-toggle {background-color: #000000 !important; border: 1px solid #000000 !important;}
body.theme-color .navbar-left.mnu_aria .navbar-nav #clos_araeaa{background:#000;}	
body.theme-color .navbar-inverse .navbar-nav > li > a {color: #000000 !important;}
body.theme-color #header .lgo_areaas .search i.fa.fa-search {color: #000;}
body.theme-color #header .lgo_areaas .search input.search-form:hover {border: #000000 solid 1px;}
body.theme-color #header .lgo_areaas .search input.search-form{color:#000;}
body.theme-color #naviconsHide .owl-theme .owl-dots .owl-dot.active span {background: #000000;}


	.blogs .card-body p.discrip {height: auto !important; overflow: initial !important;}
	.sticky {box-shadow: 0px 4px 10px #eaeaea;}
#header .lgo_areaas .search {display: inline-block !important; position: absolute; right:85px; top:16px; z-index: 1;}
#header .lgo_areaas .search input.search-form {position: absolute; padding: 4px 0px; top: -4px; color: #005aaf;  width: 30px; font-size: 0; margin: 0 -5px 0px;}
#header .lgo_areaas .search input.search-form:focus {border: none; outline: none;}
#header .lgo_areaas .search input.search-form:hover { width: 180px; background: #fff; border: #005aaf solid 1px; right:0px;	font-size:13px; padding: 4px 10px;}
#header .lgo_areaas .search i.fa.fa-search {color: #005aaf; font-size: 20px; -webkit-text-stroke: 0px #f6f6f6;}	
header#header.sticky button.navbar-toggle.menushow.collapsed {margin-top:-15px;}	
	.lgo_areaas a img {width: 25%;}
	.top_areaas {padding: 0px 0 0 !important;}
	#header.sticky #sld_araea_shoow {display: none !important;}
	.mb_view_show{display:block !important;}
	.mb_view_hide {display: none !important;}
	#header.sticky button.menuhide.navbar-toggle {margin-top:-15px !important;}
    .top_areaas .lgo_bothss {padding-top:7px;}
	
	header#header.sticky button.navbar-toggle.menushow{margin-top: 13px;}
	
	button.navbar-toggle.menushow {width:44px; height:34px; padding:9px 10px;}
	
	.HMA_program.blogs .dtl_bl .dt_img_bl{height:auto !important;}
	#video_pop .modal-dialog{width:94% !important;}
	.gl_bax_area.gdo_glrrrs .mg_araea {height: auto !important;}
	.gallry_pg .tabsss_abt .tab-wrapper {margin-bottom: 5px !important; margin-top: 20px !important;}
    .top_areaas .lgo_bothss .linkss_mnu ul li{margin-right:12px !important; font-size:12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li:last-child{margin-right:0 !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt{padding:8px 5px !important; font-size:12px !important;}
	.btn-orig {font-size: 12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a img {width: 15px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search {font-size: 15px !important;}
	
		.lgo_areaas span.hal_cntss_lgo {font-size: 10px !important; display: inline-block;}
	section {padding: 30px 0 !important;}
	.lgo_areaas {text-align: left; margin-bottom: 10px; margin-top: 5px;}
	.top_areaas .sub_mnu_listss {text-align: right; display: block !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; padding: 0; flex-wrap: inherit; margin-top: 10px;}
		
	.top_areaas .sub_mnu_listss::-webkit-scrollbar {display: none;}
    .top_areaas .sub_mnu_listss {-ms-overflow-style: none;  scrollbar-width: none;}
	
    .navbar-toggle {        position: absolute;
        bottom: 15px;
        right: 0;
        top: initial;
        float: right;
        padding: 9px 10px;
        margin-top: 0;
        margin-right: 15px;
        margin-bottom: 0;
        background-color: #005baf !important;
        background-image: none;
        border: 1px solid #005baf !important;
        border-radius: 4px;}
    .navbar-inverse .navbar-nav > li > a {padding: 5px 0px;}
    .both_als {display: flex;}
    .all_hedingss.latst {margin-bottom: 30px;}
    .la_updates .up_d_bxss {padding: 0;     text-align: left; margin-bottom: 30px;}
    .rt_bordr{display:none;}
    .gl_both_lat .awardslist {width: 100%; float: initial; margin-top: 25px;}
	.gl_both_lat .awardslist h3 {font-size: 26px; text-align: left;}
	.gl_both_lat .awardslist p {font-size: 18px;}
	.pro_gm_bgr{padding:0 20px; top: -165px;}
	.pro_gm_bgr .cntss_areaa h3 {font-size: 28px; padding-top: 30px;}
	.pro_gm_bgr .cntss_areaa p {font-size: 15px;}

	.all_hedingss {font-size: 26px !important; text-align: left; margin-bottom: 20px !important; margin-top: 20px !important;}
	#news_gramess .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0px;}
	#news_gramess .progmss_bg .nes_cnt_bx{text-align:left; min-height: auto;}
	#news_gramess .owl-nav {display: flex; position: relative; align-items: center; justify-content: center; right: 0; margin: 0; top: -30px;}
	#news_gramess .owl-nav button.owl-prev {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-prev:hover {background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next:hover {background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#faculty_profile .progmss_bg .nes_cnt_bx{min-height:auto; text-align:left;}
	#faculty_profile .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0;}
	#faculty_profile .owl-nav {display: flex; position: relative; right: 0; align-items: center; justify-content: center; margin: 0; top: 0; margin-bottom: 20px;}
	#faculty_profile .progmss_bg .nsw_mgs {width: 100%; height: auto;}
	.gl_both_lat .awardslist .awrd_lists ul li {padding: 20px 20px; text-align: left;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 {position: relative; background: #333; padding: 7px; left: 0; width: 55px; top: 0; height: 55px; text-align: left; line-height: 40px;
		margin: 0 auto; margin-bottom: 20px;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 img {width: 100%;}
	.gl_both_lat .awardslist .awrd_lists ul li span.lnkss {position: initial; right: 0; top: 0; border: none; align-items: center; justify-content: center; display: contents;}
	.gl_both_lat .awardslist .awrd_lists ul li p {margin: 0 0 15px;}
	footer.ftr_bgb .abut_links.lst ul li {text-align: left; margin-top: 20px;}
	footer.ftr_bgb .abut_links {margin-top: 20px;}
	footer.ftr_bgb {padding: 30px 0 !important;}
	.copy_rights .cpy {text-align: left;}
	.ftr_bgb .socialss {margin-top:3% !important;}
	.ftr_bgb .socialss ul {float: left !important;}
	.tabs_araess .explr span a {font-size: 16px;}
	.gl_both_lat .awardslist span a {font-size: 16px;}
	.gl_both_lat .awardslist span {float: right; top: 1px;}
	.tabs_araess h3 {font-size: 26px; text-align: left;}	
	.tabs_araess .tab-link {width: 50%;}	
	
	.botm_nxt_areas.prog_pg {overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	
	.our_mng_aria .mng_bx .und_al_aria_l a {margin-top:0;}
	.navbar {background: #fff;}
    .navbar-left.mnu_aria .navbar-nav {margin: 0px 0 0px 0; width: 100%; height:100vh !important; top: 0; position: fixed; background: #fff; overflow-y:scroll !important;}	
	.navbar-nav > li {margin: 0px !important; padding-left: 20px; display: block; border-bottom:1px solid #ddd; width: 100%;}
	.cnt_forms .form-group {margin-bottom: 20px;}
	.navbar-collapse.navbar-left.mnu_aria.in {position: fixed; width: 100%; background:#005baf; z-index: 9; right: 0; max-height: inherit; overflow: inherit;  padding: 0;  margin: 0;}

	nav.navbar.navbar-inverse .container {padding: 0; position: relative; top: 0; z-index: 2;}

     .navbar-collapse {max-height: 100% !important;}
	 .navbar-collapse.navbar-left.mnu_aria.in.show {right: 0; height:100% !important; position: fixed;   width: 80% !important; padding-top:0px;}
	 .navbar-left.mnu_aria .navbar-nav #clos_araeaa {background: #005baf; padding:3px 18px; display:block !important;}	 	 
	 .navbar-collapse.navbar-left.mnu_aria.in.show:before {background: rgba(0,0,0,0.5); content: ''; position: fixed; width: 20%; height: 100%; left: 0;}
	 .navbar-collapse.navbar-left.mnu_aria.in {position:fixed; width:80%; height:100% !important; padding:0;  margin:0; height:calc(100vh - 50px) !important; background:#fff; top:0px; right:-90%; transition:0.2s; z-index:999; width:80% !important;}
	 
	 .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {color: #051f96;}
	 .navbar-inverse .navbar-nav > li > a{color: #051f96 !important;}
	 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {border-top:0; padding-bottom:0; z-index:999; position:fixed;  right: -100%; transition: 0.2s; height:100% !important; width:80% !important;}
/* 	.collapse.navbar-collapse.navbar-left.mnu_aria{display:none; width:80% !important;} */
	.navbar-left.mnu_aria .navbar-nav ::-webkit-scrollbar {display: none;}
    .navbar-left.mnu_aria .navbar-nav  {-ms-overflow-style: none;  scrollbar-width: none;}
	
	.navbar-right.lang_src {max-width: 100%; min-height: 60px;}
	.navbar-right.lang_src:after{display:none;}
	section#sliser_aria {min-height: 300px;}
	.navbar-right.lang_src .src_ml ul {margin: 20px 0 0 15px;}
	section#sliser_aria .owl-stage-outer .owl-stage .owl-item .item.bnr {height: 300px !important;}
	#sliser_aria .carousel-content.bgr_cnts {margin-top: 12%; text-align: left;}
	.bgr_cnts h1 {font-size: 30px; margin: 0 0 10px 0; line-height: 30px;}
	#sliser_aria .owl-nav{display:none;}
	
	
	body > section {padding:30px 0 !important;}
	 #main-slider .carousel .item {height: 300px;}
	 #main-slider .carousel .carousel-content {margin-top: -20px;}
	 
	.navbar {min-height:auto;}
	.navbar > .container .navbar-brand {margin-left: 15px;    line-height: 75px;}
	
		.tabsss_abt .tabs {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.abt_bothss {height:auto; padding:30px 0;}
	.others_pgs {height:200px !important;}
	.others_pgs .als_cnts{font-size: 20px !important; padding: 0 15px; line-height: 26px !important;}
	.contnt_araea h3 {font-size: 26px !important; line-height: 30px !important; text-align: left; margin-bottom: 10px !important;}
	.tabsss_abt .contn_scytnt h3 {font-size: 20px !important;  line-height: 26px !important; margin-top: 0px !important;}
	.abt_area_img {height: 250px; margin-top: 20px;}
	.abt_area_img.admins {margin: 7px 0 22px;}
	#accordion .contents .cnt_areaas {padding:15px 15px 15px !important;}
	.HMA_program h4 {font-size: 20px;}
	#accordion .contents .cnt_areaas .sets_mgs {height: auto !important; margin-bottom: 20px;}
	.als_cntsss_cumps {text-align: left;}
	.cont_bx_area {margin-bottom: 20px; min-height: auto;}
	.cnt_form_areaa {margin-bottom: 20px;}
	.cnt_form_areaa {padding: 20px !important;}
	.cnt_form_areaa .form-group label.mb_nn {display: none;}
	.mt-6 {margin-top: 2rem!important;}
	
	.profile_usersss .user_mg {text-align: left;}
	.profile_usersss {padding: 30px 20px 20px; margin-bottom: 30px;}
	.profile_usersss .prof_cntss {text-align: left;}
	.profile_usersss .prof_cntss:last-child {margin-bottom:0;}
	.user_prf_als h4 {font-size: 22px; margin: 0 0 0px; text-align: left;}
	.user_prf_als p {text-align: left;}
	.user_prf_als .usr_list_prt ul li {margin-bottom: 15px; font-size: 14px;}
	
	
	
	.gallry_pg .tabsss_abt .tabs {white-space: inherit; overflow-x: inherit; overflow-y: initial; width: auto;}
	.gallry_pg .facuty_tbss .tabssd_ac {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.gallry_pg .progmss_bg .nsw_mgs {height: 270px;}
	
	.news_ennts_list .und_liststs{padding:15px !important;}
	.news_ennts_list .und_liststs .ent_list h4 {line-height: 24px;}	
    .news_ennts_list .und_liststs .ent_list {text-align: left; padding-top: 10px;}
    .news_ennts_list .und_liststs .ent_list p {font-size: 14px !important; line-height: 22px !important;}
	.news_ennts_list .und_liststs .env_mg_area{height:auto !important;}
	
	
	.plc_area img {width: 100% !important; height:70px !important;}
	
		.anauss_area .araea_lists {display: flex !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap;  padding: 0; flex-wrap: inherit;}
	.anauss_area .araea_lists .bx_araea {float: left; width: auto !important; margin-right: 20px;}
	.anauss_area .araea_lists .bx_araea.read_area {width: auto;}
	.anauss_area .araea_lists .bx_araea:last-child {margin-right:0px;}
	.anauss_area .araea_lists .bx_araea.read_area p {display: contents;}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {padding:7px 15px; font-size: 12px;}
	.program_araea.abt_bothss .abt_bt_area h5 {font-size: 16px !important; height: auto !important; overflow: inherit !important; line-height: 21px;}
	.program_araea.abt_bothss .abt_bt_area p {font-size: 12px;}
	
	.contnt_araea.program span {font-size: 14px; text-align: left;}
	.contnt_araea.program p {font-size: 14px; text-align: left;}
	.contnt_araea.program h3 {text-align: left; margin-bottom: 20px;}
}




@media (min-width: 411px) and (max-width: 420px) {
	#header .lgo_areaas .search {top: 25px !important;}
	
}


@media (min-width: 320px) and (max-width: 480px) {
.mb_view_hide{display:none !important;}	
.mb_view_show{display:block !important;}

.both_araeas.faculty_profile_area.section {padding-top: 10px;}
.managess_areea_arrow .slider-btns {top: 20px; right: 15px;}
.managess_areea_arrow .faculty-btns {top:0px; right: 15px;}
.clents .managess_areea_arrow .owl-next {top: 49%; right: 10px; z-index:9999;}

#mb_view_hide-ann{display: none !important;}
.news_announcements #pro_gramesss .owl-nav.ng-star-inserted {display: none !important;}

.botm_nxt_areas.prog_pg .pdf-block {display: grid;}
.botm_nxt_areas.prog_pg .pdf-block button#lang_btn_area {
    position: relative;
    right: initial;
    display: inline-block;
    width: 50%;
    margin-bottom: 5px;
}

.abt_bothss .abt_bt_area {padding: 15px !important;}
.abt_bt_area.hmo_abt_ar .rt_mg_area {height:auto !important;}

.lft_area_main .lft_araea_tabss ul.nav.nav-tabs.tabs-left.sideways {background: transparent !important; border: none !important; padding: 0 !important;}
.contnt_araea.program_dtls .tab-content .tbds_act_araeas h2 {line-height: 26px !important; margin: 20px 0 20px !important; font-size: 17px !important;}	
.newsannounsment .news_sld_area .new_ng_areaa {height: auto !important;}
.newsannounsment .news_sld_area h3 {font-size: 14px !important; line-height: 22px !important;}

.contents_txx p img {width: 100%;}	
.plc_area {padding: 15px 0 !important;}	
.faculty_pg .progmss_bg .nsw_mgs{height:auto !important;}	
	
section.contnt_araea.blog_pgss_lst .blogs .img_ara_parts{height: auto;}	
.container.mt-6.contn_form_pg {margin-top: 10px !important;}	


.program_araea.abt_bothss .abt_bt_area {padding: 10px 10px 20px; margin-bottom: 20px !important;}
	
#faculty_profile .owl-carousel .owl-stage-outer {margin-bottom: 20px;}	
	
.HMA_program.mt_0.adsss.adminss_com .contn_scytnt img { margin-bottom: 15px !important;  width: 100% !important;}	
	
.abt_mg_aress {padding-top:35px;}
.botm_nxt_areas.prog_pg {overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}	

.collapse.navbar-collapse.navbar-left.mnu_aria {display: none; width: 100% !important; z-index: 99999; background: #fff; right: 0%;}	
	
body.theme-color .navbar-toggle {background-color: #000000 !important; border: 1px solid #000000 !important;}
body.theme-color .navbar-left.mnu_aria .navbar-nav #clos_araeaa{background:#000;}	
body.theme-color .navbar-inverse .navbar-nav > li > a {color: #000000 !important;}
body.theme-color #header .lgo_areaas .search i.fa.fa-search {color: #000;}
body.theme-color #header .lgo_areaas .search input.search-form:hover {border: #000000 solid 1px;}
body.theme-color #header .lgo_areaas .search input.search-form{color:#000;}
body.theme-color #naviconsHide .owl-theme .owl-dots .owl-dot.active span {background: #000000;}


.top_areaas .lgo_bothss .linkss_mnu ul li span.usr_name_dy {width:70px; white-space:nowrap; overflow:hidden; display:block; text-overflow:ellipsis; float: left;}	
	.blogs .card-body p.discrip {height: auto !important; overflow: initial !important;}
.sticky {box-shadow: 0px 4px 10px #eaeaea;}
#header .lgo_areaas .search {display: inline-block !important;
        position: absolute;
        right: 70px;
        top: 22px;
        z-index: 1;}
#header .lgo_areaas .search input.search-form {position: absolute; padding: 4px 0px; top: -4px; color: #005aaf;  width: 30px; font-size: 0; margin: 0 -5px 0px;}
#header .lgo_areaas .search input.search-form:focus {border: none; outline: none;}
#header .lgo_areaas .search input.search-form:hover { width: 180px; background: #fff; border: #005aaf solid 1px; right:0px;	font-size:13px; padding: 4px 10px;}
#header .lgo_areaas .search i.fa.fa-search {color: #005aaf; font-size: 20px; -webkit-text-stroke: 0px #f6f6f6;}	
header#header.sticky button.navbar-toggle.menushow.collapsed {margin-top: 14px;}	
	.lgo_areaas a img {width: 25%;}
	.top_areaas {padding: 0px 0 0 !important;}
	#header.sticky #sld_araea_shoow {display: none !important;}
	.mb_view_show{display:block !important;}
	.mb_view_hide {display: none !important;}
	#header.sticky button.menuhide.navbar-toggle {margin-top:13px !important;}
    .top_areaas .lgo_bothss {padding-top:7px;}
	
	button.navbar-toggle.menushow {width:44px; height:34px; padding:9px 10px;}
	header#header.sticky button.navbar-toggle.menushow{margin-top: 13px;}

	.HMA_program.blogs .dtl_bl .dt_img_bl{height:auto !important;}
	
	#video_pop .modal-dialog{width:94% !important;}
	.gl_bax_area.gdo_glrrrs .mg_araea {height: auto !important;}
	.gallry_pg .tabsss_abt .tab-wrapper {margin-bottom: 5px !important; margin-top: 20px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li{margin-right:8px !important; font-size:12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a.lgo_bnt{padding:8px 5px !important; font-size:12px !important;}
	.btn-orig {font-size: 12px !important;}
	.top_areaas .lgo_bothss .linkss_mnu ul li a img {width: 15px;}
	.top_areaas .lgo_bothss .linkss_mnu ul li .search i.fa.fa-search {font-size: 15px !important;}
	
	
	.lgo_areaas span.hal_cntss_lgo {font-size: 10px !important; display: block; top: 0 !important;}
	
	
	section {padding: 30px 0 !important;}
	.account-box {padding: 15px 20px 30px; width: 94%;}
	.account-center .login-portals{width:94%;}
    .form-group.form-focus.both_area {margin-top: 5px; text-align: left;}
	.form-group.form-focus.both_area span.rto_sgn {float: inherit; display: block; margin-top: 10px;}
	
	.lgo_areaas {text-align:left; margin-bottom: 2px; padding-top:5px; position: relative;}
	.top_areaas .sub_mnu_listss {text-align:right; display: block !important; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; padding: 0; flex-wrap: inherit; margin-top:5px;}
	
	
	.top_areaas .sub_mnu_listss::-webkit-scrollbar {display: none;}
    .top_areaas .sub_mnu_listss {-ms-overflow-style: none;  scrollbar-width: none;}
	
    .navbar-toggle {position: absolute;
        bottom: 15px;
        right: 0;
        top: initial;
        float: right;
        padding: 9px 10px;
        margin-top: 0;
        margin-right: 15px;
        margin-bottom: 0;
        background-color: #005baf !important;
        background-image: none;
        border: 1px solid #005baf !important;
        border-radius: 4px;}
	
    .navbar-inverse .navbar-nav > li > a {padding:10px 0px !important; font-weight: 400 !important;}
    .both_als {display: flex;}
    .all_hedingss.latst {margin-bottom: 30px;}
    .la_updates .up_d_bxss {padding: 0;     text-align: left; margin-bottom: 30px;}
    .rt_bordr{display:none;}
    .gl_both_lat .awardslist {width: 100%; float: initial; margin-top: 25px;}
	.gl_both_lat .awardslist h3 {font-size: 26px; text-align: left;}
	.gl_both_lat .awardslist p {font-size: 18px;}
	.pro_gm_bgr{padding:0 20px; top: -165px;}
	.pro_gm_bgr .cntss_areaa h3 {font-size: 28px; padding-top: 30px;}
	.pro_gm_bgr .cntss_areaa p {font-size: 15px;}

	.all_hedingss {font-size: 26px; text-align: left; margin-bottom: 20px;}

	#news_gramess .progmss_bg .nes_cnt_bx span {position:relative !important; bottom:0px !important;}
	#news_gramess .progmss_bg .nes_cnt_bx{text-align:left; min-height: auto; min-height: auto !important;}
	#news_gramess .owl-nav {display: flex; position: relative; align-items: center; justify-content: center; right: 0; margin: 0; top:-46px !important;}
	#news_gramess .owl-nav button.owl-prev {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-prev:hover {background: #015bb1 url('ar_left.de66868edd9b5097.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next {width: 30px; height: 30px; display: block; border-radius: 50px; background: #b9c2c9; opacity: 1; cursor: pointer; font-size:0;
		background: #b9c2c9 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#news_gramess .owl-nav button.owl-next:hover {background: #015bb1 url('ar_right.e7208a996697b198.png') no-repeat; background-position: center;}
	#faculty_profile .progmss_bg .nes_cnt_bx{min-height:auto; text-align:left;}
	#faculty_profile .progmss_bg .nes_cnt_bx span {position: relative; bottom: 0;}
	#faculty_profile .owl-nav {display: flex; position: relative; right: 0; align-items: center; justify-content: center; margin: 0; top: 0; margin-bottom: 20px;}
	#faculty_profile .progmss_bg .nsw_mgs {width: 100%; height: auto;}
	.gl_both_lat .awardslist .awrd_lists ul li {padding: 20px 20px; text-align: left;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 {position: relative; background: #333; padding: 7px; left: 0; width: 55px; top: 0; height: 55px; text-align: left; line-height: 40px;
		margin: 0 auto; margin-bottom: 20px;}
	.gl_both_lat .awardslist .awrd_lists ul li h6 img {width: 100%;}
	.gl_both_lat .awardslist .awrd_lists ul li span.lnkss {position: initial; right: 0; top: 0; border: none; align-items: center; justify-content: center; display: contents;}
	.gl_both_lat .awardslist .awrd_lists ul li p {margin: 0 0 15px;}
	footer.ftr_bgb .abut_links.lst ul li {text-align: left; margin-top: 20px;}
	footer.ftr_bgb .abut_links {margin-top: 20px;}
	footer.ftr_bgb {padding: 30px 0 !important;}
	.copy_rights .cpy {text-align: left;}
	.ftr_bgb .socialss {margin-top:3% !important;}
	.ftr_bgb .socialss ul {float: left !important;}
	.tabs_araess .explr span a {font-size: 16px;}
	.gl_both_lat .awardslist span a {font-size: 16px;}
	.gl_both_lat .awardslist span {float: right; top: 1px;}
	.tabs_araess h3 {font-size: 26px; text-align: left;}	
	.tabs_araess .tab-link {width: 50%;}	
	
	.our_mng_aria .mng_bx .und_al_aria_l a {margin-top:0;}
	.navbar {background: #fff;}
	.navbar-left.mnu_aria .navbar-nav {margin:0px 0 0px 0; width:100%; height:100vh !important; top:0; position:fixed; background:#fff; overflow-y:scroll !important;}	
	.navbar-nav > li {margin: 0px !important; padding-left: 20px; display: block; border-bottom:1px solid #ddd; width: 100%;}
	.cnt_forms .form-group {margin-bottom: 20px;}
	.navbar-collapse.navbar-left.mnu_aria.in {position: fixed; width: 100%; background:#005baf; z-index: 9; right: 0; max-height: inherit; overflow: inherit;  padding: 0;  margin: 0;}

	nav.navbar.navbar-inverse .container {padding: 0; position: relative; top: 0; z-index: 2;}

     .navbar-collapse {max-height: 100% !important;}
	 .navbar-collapse.navbar-left.mnu_aria.in.show {right: 0; height:100% !important; position: fixed;   width: 80% !important; padding-top:0px;}
	 .navbar-left.mnu_aria .navbar-nav #clos_araeaa {background: #005baf; padding:3px 18px; display:block !important;}	 	 
	 .navbar-collapse.navbar-left.mnu_aria.in.show:before {background: rgba(0,0,0,0.5); content: ''; position: fixed; width: 20%; height: 100%; left: 0;}
	 .navbar-collapse.navbar-left.mnu_aria.in {position:fixed; width:80%; height:100% !important; padding:0;  margin:0; height:calc(100vh - 50px) !important; background:#fff; top:0px; right:-90%; transition:0.2s; z-index:999; width:80% !important;}
	 
	 .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {color: #051f96;}
	 .navbar-inverse .navbar-nav > li > a{color: #051f96 !important;}
	 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {border-top:0; padding-bottom:0; z-index:999; position:fixed;  right: -100%; transition: 0.2s; height:100% !important; width:80% !important;}
	/* .collapse.navbar-collapse.navbar-left.mnu_aria{display:none; width:80% !important;} */
	.navbar-left.mnu_aria .navbar-nav ::-webkit-scrollbar {display: none;}
    .navbar-left.mnu_aria .navbar-nav  {-ms-overflow-style: none;  scrollbar-width: none;}
	
	.navbar-right.lang_src {max-width: 100%; min-height: 60px;}
	.navbar-right.lang_src:after{display:none;}
	section#sliser_aria {min-height: 300px;}
	.navbar-right.lang_src .src_ml ul {margin: 20px 0 0 15px;}
	section#sliser_aria .owl-stage-outer .owl-stage .owl-item .item.bnr {height: 300px !important;}
	#sliser_aria .carousel-content.bgr_cnts {margin-top: 12%; text-align: left;}
	.bgr_cnts h1 {font-size: 30px; margin: 0 0 10px 0; line-height: 30px;}
	#sliser_aria .owl-nav{display:none;}
	
	
	body > section {padding:30px 0 !important;}
	 #main-slider .carousel .item {height: 300px;}
	 #main-slider .carousel .carousel-content {margin-top: -20px;}
	 
	.navbar {min-height:auto;}
	.navbar > .container .navbar-brand {margin-left: 15px;    line-height: 75px;}
	
	
	
	.tabsss_abt .tabs {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.abt_bothss {height:auto; padding:30px 0;}
	.others_pgs {height: 150px !important;}
	.others_pgs .als_cnts{font-size: 20px !important; padding: 0 15px; line-height: 26px !important;}
	.contnt_araea h3 {font-size: 22px !important; line-height: 26px !important; text-align: left; margin-bottom: 10px !important;}
	.tabsss_abt .contn_scytnt h3 {font-size: 20px; line-height: 26px; margin-top: 0px;}
	.abt_area_img {height: auto !important; margin-top: 20px;}
	.abt_area_img.admins {margin: 7px 0 22px;}
	#accordion .contents .cnt_areaas {padding:15px 15px 15px !important;}
	.HMA_program h4 {font-size: 20px;}
	#accordion .contents .cnt_areaas .sets_mgs {height: auto; margin-bottom: 20px;}
	.als_cntsss_cumps {text-align: left;}	
	.cont_bx_area {margin-bottom: 20px; min-height: auto;}
	.cnt_form_areaa {margin-bottom: 20px;}
	.cnt_form_areaa {padding: 20px !important;}
	.cnt_form_areaa .form-group label.mb_nn {display: none;}
	.mt-6 {margin-top: 2rem!important;}
	
	
	.profile_usersss .user_mg {text-align: left;}
	.profile_usersss {padding: 30px 20px 20px; margin-bottom: 30px;}
	.profile_usersss .prof_cntss {text-align: left;}
	.profile_usersss .prof_cntss:last-child {margin-bottom:0;}
	.user_prf_als h4 {font-size: 22px; margin: 0 0 0px; text-align: left;}
	.user_prf_als p {text-align: left;}
	.user_prf_als .usr_list_prt ul li {margin-bottom: 13px; font-size: 12px;}
	
	.gallry_pg .tabsss_abt .tabs {white-space: inherit; overflow-x: inherit; overflow-y: initial; width: auto;}
	.gallry_pg .facuty_tbss .tabssd_ac {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; flex-wrap: inherit;}
	.gallry_pg .progmss_bg .nsw_mgs {height: auto !important;}
	.gallry_pg .progmss_bg {margin-bottom: 20px !important;}
	
		.news_ennts_list .und_liststs{padding:15px !important;}
	.news_ennts_list .und_liststs .ent_list h4 {line-height: 24px;}	
    .news_ennts_list .und_liststs .ent_list {text-align: left; padding-top: 10px;}
    .news_ennts_list .und_liststs .ent_list p {font-size: 14px !important; line-height: 22px !important;}
	.news_ennts_list .und_liststs .env_mg_area{height:auto !important;}
	
	.plc_area img {width: 100% !important; height:70px !important;}
	
	.anauss_area .araea_lists {display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; white-space: nowrap;  padding: 0; flex-wrap: inherit;}
	.anauss_area .araea_lists .bx_araea {float: left; width: auto; margin-right: 20px;}
	.anauss_area .araea_lists .bx_araea.read_area {width: auto;}
	.anauss_area .araea_lists .bx_araea:last-child {margin-right:0px;}
	.anauss_area .araea_lists .bx_araea.read_area p {display: contents;}
	.program_araea.abt_bothss .abt_bt_area .lft_cnt_atara a {padding: 4px 10px; font-size: 12px;}
	.program_araea.abt_bothss .abt_bt_area h5 {font-size: 15px !important; height: auto !important; overflow: inherit !important; line-height: 21px;}
	.program_araea.abt_bothss .abt_bt_area p {font-size: 11px;}
	.contnt_araea.program span {font-size: 14px; text-align: justify;}
	.contnt_araea.program p {font-size: 14px; text-align: justify;}
	.contnt_araea.program h3 {text-align: left; margin-bottom: 20px;}
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel .owl-item.center{z-index: 5;}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{touch-action:pan-y;-webkit-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url('owl.video.play.e3b436436832b027.png') no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
html.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  box-sizing: content-box;
  outline: none;
}

.lightbox .lb-image {
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url('data:image/gif;base64,R0lGODlhIAAgAPUuAOjo6Nzc3M3Nzb+/v7e3t7GxsbW1tbu7u8XFxdHR0djY2MHBwa2trbm5ucnJyaSkpKWlpaGhoeLi4urq6u7u7ubm5vLy8vb29vT09Pr6+v39/aysrK+vr7Ozs8fHx9vb297e3qmpqb29vdPT06amptXV1aCgoMvLy8/Pz9fX18PDw/j4+Ozs7ODg4PDw8KioqOTk5JqampmZmZycnP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBwAuACwAAAAAIAAgAEAG/0CXcEgECQ6bUGRDbDpdimTo9QoJnlhsYVvojLLgrEAkGiwWiFTYldGsRyHSYz6P2COG9XCw2TAYeXprCQYEhQcKgoouAQ4IHg4CAiMpCiASFRMUFhgXFxkZawEDcnd2Jh2LLiAdLyQvELEFX6pCAQx9fQ21T1wFHCi8TwcGxQYnwk8eBAcHZQnJTh8D1I8OJwmWMBMsFJudoG4u4mAgIwIoCSMKlpjcmxeLCgcPJianEcIKBXR1prVRSMiBUIfDAA8JoC1SMYWKKw/RXCzoE6IixIgC+uDaQCsiAQ4gOSCIOMRXhxIkhRjoYEwhSQTGCAxIyYiAzWYjU35o5oxaIj095J6AWFDmDAIHCVpgubCizRoFKtBAQjeixIdLADRZYBpOQ1An5qYmLKEgQAsYWb95UiUhgIJK7bZRCBMEACH5BAkHADMALAAAAAAZACAAAAb/wJlwSAQJRJxNJMLgHBzE6FBxeD0ey2zEBJESA4sXBHItZ2MJr1DReZFIZfNS9lGXOC83aRzPktQKHCEheW4QBQseCQkeAwZeIAYbG4OEBiNqXgiTnBsemV6BkwwbDCigXioMq6RQqFEBHLKyB69SKAW5BRwltlELugW1vkQHBh3In8RDBs3NactCBM4GvdEzBNMGBNbRB9MEB9DRAwQNBwcC1zMe5wciCOsj7wcDAwrXAe8i9ifrDvwGLEDQjdgHewtUIPBQJxqKBQM9OBDQkBgIBws9CBCQQAEMNRk0SAngoeTGBCMUgKgwgYIFDBcyhPTywSTHEiolsHR5YcVMMkgoOCbACUJny5cxf0ppkWIRzgAtYABg4QKmz5AivUhQ8LTozqo9M9iS0KKFURY8iQQBACH5BAkHAAAALAAAAAAZACAAAAb/QIBwSAShRBzGA8LhHAQgolSoEIVIENJjG+maHgfFFBBQbUKvF3bL7kZMpoFUYTij0xAI++E2yVJEJQUbhCF3JGsRfF0xB0QKg4SFIR0qDgkJHgMhjEUESZIbBiNjAAkvAkQeHAUFTRwOpaUKHa22CbKlCLatsblTAQYdwgVyv1MJBsrKJcdTCMsGxs5EAwQEBgQn1FIH1wQHpNxDBw0H52LjQucHIiKA6gAi7SID4uoL9QMLuPEOA/sW+FI3IiACDwHigVCB4OCleKYOejgh4INChwIEJJAQLxPFBCNKcBwHIiOKBCUUfJAwgaRGlApASKgwwQWGCxkyaNAgC8SIMxEpYs6cQMHChRU6f0lQEFQmzaJHk/6CAeKDU6JGkfJ0VkHCUAo2cerc6mwC0bBayQIIAgAh+QQJBwAuACwAAAAAHAAgAAAG/0CXcEgEJQaFAomUHAhAxGhUMWCErq/X8sF9HRRSYgDB2ZixWgiXG4kMAuFPg2Gmb0JZEkTNbnPARCUGHAUcDHZYS3wPbW0QCUMfBklJhhsGCA4JCQ4LDH0RMzIcQiAHBR2UBQclYS4JBY0mA0MOBrepBieuRAgmMhuRBLfEkLxEJwdEHgbDtwLHxwEE1NQq0ccjDdQHX9i8Dt3d19+uCyIiB07lrgPu7q3sUu8LCx/y8/ULCPf4vQgAPQDyJ8RBQAfxCL5C4MGBAGMKFTA88VCCQhcgHDhEMWIgwRECUCQYkcKiQhAiSSoAAeCiggQlFHwAIWGCQgkpUqxsAQMABToMBCXIpFlhAgULF1Zk0KCBnQQQRI0iVdpUXgUJEooeTbrU34QKWqd2JUiBxVaqTC9iwHAhg9u0roIAACH5BAkHADMALAAAAAAfACAAAAb/wJlwSAQlFoZOKNQpDFAgonQq/CwKjI12E3p5IaGDgjoNeAoFDoeR5XpfJAiENAiQq6ImOt1efiEPgRxjVCkHBkl7axsMfnGADxERLyNTH4eIBgVNBAgnIyMOCxwvgYGSL4RCIAMGBJkGIiVkIx2QkhEcdkICBK+/AndDCBC4kgNVBwcNzAeVwkMCkZIxMR8zJyIiygco0FIIESYyBava2gMe31MbL0QjA/HxqutVUgILAwsL6vXCHgtULEDwzB8ZDwgSeqBnEJwHDw4cRGlIBQFEAQImUpQSESOUjVNQYEyQYBfIISVQJBhR4trJIR9IlkjxocJLIRJY0gQh4WaVTxQKArSQMMGnBAUfeFaY4MJnCxAtYCylgOFmhaFLWbjAcCHDSwASplq4sCKDBg0nJwCYQGFsWbQvKcjlmsGszxkW3Nq9y/Ut3Lsz6u6tFwQAIfkECQcAAAAsAAAAACAAHwAABv9AgHBIBCUQBsOGkVwkQMSodPhBdApYzma7CYU2IsV0CnIQklcsg7H1vl6hQWBMHRjOhnSBw+6G3iQQBWJjCgcEiEkGWXxtfy8QEA8hI1MfAwcNiUkHHgIjIycIBX+BkpOEQyAqByIHmQQLJWMjBpEPuBEFUEMCra+vKHRDHiS4DxERA3UDzQMis8O9xrkRhALOzQnSUQjIyREHACAIKggLCyfcUh3gyR8pCPLyH+tRI+AmJh4oCB4eDgTYk8IhQgwZMQYIcODghIMUA6McIDGgHoCGAjLOiUgnowAUCVpwpAMyASgJI8ckSFCihAKUKaW0TKHgA8yYROApCADiJk5QIS0+8JQAg8LPIRU+9IRRYcLRIRKINqVg4SmACRKmurBwweqECSyoXriQ4SmFCVQxkM2gQcNRCmJXsHX71ILaDGytChmLl65eAH3/EvGbMggAIfkECQcAMQAsAAAAACAAHAAABv/AmHBIjI0QB0KhQCCoEqCidPpBNAzYzrLA2Ww4A8V0ChIkm1jDtuv1qgLj4Ud1ODQIafWSw2iHQh1iYwoLdXV3aXt8Xn8vLxsjUwELAwMihgcDDgIlIwIIBoyOJCQhgkMgDpSVlginRSMGIS+kpAVRQwkICJSUCXFDHrMQD8UDqLvJrsBEKCQQxA8vggke1tYlzEUe0cUHMS0O4icOv9pFBsUPEQ8fCgLw8LjnQyPs6xEeJQkoCQmR9IpwiEAwAoF9IxLCCUhkQMEIDEpITKFAAkMiJx5CSEHxw4cKF3MVNBHBI4iTAEIKSTAywskWEmBMUDlFQswKFVjQlIKzwoQ6CRR2FpkAACgFFxiEDqEA1IUFDBeULqVg4cKFFRmkxsDwFGuGDBq0Wv2qoWxYqWTPao1Bdi2RsmuDAAAh+QQJBwAqACwAAAAAIAAaAAAG/0CVcEhUlRwDkcEgOiASoKJ0GnA0G4Ts0lDoLhTTKUiQbB4IW0OnW2BwEIHwEORYDJKHPHq57jI2GwZgYR8eCAh2d2Z7bBx/gAUlYh6Ghwt2CAIJKSUoDgQFjo8hHINDLZ6UlQ6mRSUNgBshIS8dUUMpAicCAg4eknJCDn+0JC8LQxIJCby8ccFDCbIvJMaDCsvZH9BFHi/U1CIqMCXlJSOt3EIGJBAPECQfLQr09DDqRSMQ7g8PDiABAgC8hY9Ih37vDoBYKKFFhYJFFiB8UECCxQoVJkAkciJCvwgkYGAEMIHCxmgeH0SIQHICCwoWTgpJsLJmSQouLGCQqaJjTT0IFGBiuHCB54CaEThYsED0QgaeDWbIiGGiwVCnGTJo4KkCxIIXCFRg1UCWa5GsZc2e1ap2Ctu2UrbCFRIEACH5BAkHADAALAAAAAAgABkAAAb/QJhwSISVTovBgTAYeEagonQaEKgGooN2STB4VZ/pFJRAqK5NbaPr7RQ6noB4CBIg7oik8rD2GtwFHAQKc3UODh53KklZDQ1+BZGBBSVTLQkCAoceiR4JIyklCQ4HBpIcDBsFhEWimAInDgJhUyUHgRwbugZRdCMjCcEorHMwJwWpuhsqQxUKKaGivcVCCbkbISEbrBIf3goK09RCHtjZIQMwEy0g7QHi40INIS/1Lx8AEvr6APFFI/ZIkDgxAUCFgxX8SSnwAoLAAxMiRmShsMgCEg8cFqDAkaOLikQEPBj5IISFkxgsYAA5JAHJjBdiymRZ7SWEFRkyrFhxgaaxQwgjI7zISTSDzwERkkbgoKFpU6M0NyiNQEDDEA1QQSYwkdSECQdEmtJ8EYErV1o+hziYIcPrgbRTEMiYQQxuEQRCggAAIfkECQcAMQAsAAAAACAAHAAABv/AmHBIjClQHsRApFqcRsWoNAZKJBHNweDAJTQQn2lUkhI4PNeFlnsgGAgER0AslIxQArMDgdWKDg0NbwYdB2FTEiUJiwInZ3xqf4EGlB0dBiVSMAopIyMJeCcCIyUKCiMCIoKVBQUGh0QgHx+cnyMgUykDlq2tBLhDMCAgAQGmwHQCBr0cDAhDEzASEi2yEnRECQUczRscCkITABUV0xXYRSfcG+wLMS4sE/Lk6FEH7OwMARYuFP4TFOoVGYFvQwgBGBLyCyiwiAGDIUIMuEAxIYaGRRZseMHRQIYMKyhewEhEwAsSJzd8XLmC5JAEJCCQmKmhpoaPLoUkgMBz5pBSmxlyxhDwoCiEEEQ0CI2xoGjRAkuLcHD64EDUlxGoOrgqhEPWBxEgwFqKwESEsyasXnUQwezZCOCuDpDh1sQArkIE0DURYg7eGHMfZPqbNwGRIAAh+QQJBwAuACwAAAAAIAAfAAAG/0CXcEh0gUqCEwLhcAhKxajUJVGMEgKBw7NcDL6OzzRaASlKV1TS0f2KDocTaCwEtAIfRSqt5XoHbw0EA2JTExISICABemknbAhecAcEBAcpUhQAFRWIiwoKHx+LewiAcAYEBg2FRCwTsBUwiBVTCggHDQa7BiJzQxYUwq8AE3RCKJW8BR5DFxgW0cIUx0Mjux0F2gpCF97eGBjVRAIG2toqQisZGSve40UD5xwFAez37PBEJdocHBsCMmgYOFBfkQb/NmwYUFCIBoNEEDBQuMHAQ4hSBFDcwAHjlBEKQ4j0KCWByBAvQpCMIgDlixcbVhZZ8JLEiwIyiRQgwZPEgU6cQkZAGEoCwgmgLgw8gLCURKuVCB5Ilfozp4ClU19wk4kgQoSpDwbIDPDCq9kIDALkDDHj7AMoQGOY8PoiAdKkMdBuvUtChNq7Qp4SCQIAIfkECQcAMAAsAQAAAB8AIAAABv9AmHBIlHxKCZRgmVAQn9AhwKgojRIJwcmD6AoCUShl2gJ9qlctF6EaLASgsNA1AVQk5TNS6eAuBgMHKh9hFhQsExN3EgEfKVgCfQh/gQcDTk8XGBYuh4oSoKAtRwKTgAeoB4REF62bFIkTYR8OpwcNBANxQhkZKyuaFhZyQwkiqAQEBg68vb3AF8REJbcGygSEGtoaztJPCcoG4ggwGkPc3lAL4gYdHWDn5unT4h0FBQLz0gf39wv6xDz0K9AAoBwUHApwSGgwzIiFHDYwaBhlBAMGGyRShCIgY0YOG58g8LjBQEgiBkKE2BBiwEkhI168CDEz30sDL0jIDLEqpAdOCBByvnB5UgAJoBB0YtqIAMIDpBCIUkxQIMKDq1c5wDN4YEOEr1gfvEix0YCJr1a/hhgRckEMtF85LN0Y4+xZEVtD1n3QYO7JESfyQgkCACH5BAkHADAALAQAAAAcACAAAAb/QJhwCANIQB/FaFn6EJ9QC6tSOSZHCZTg5EgEoE+MizWptgKKUiKx9SAQCRAYdsFYKCxAFZnCChxuCCoeX0QZGSt1d2VWSmyAbyoLCwpEGhqIdRQTE3p7CgmQCAsDpU5DmBmKFnMBAqOlAwcqcqiZc0QjpLIHBwKWiLhPKSIivb2nMJjCUAm9DQ0EHszMCNAE2IXUYCnRBgQGCdu4AwbmBgjjcw7mHR0H6mAJ7R0G8VAlBfr6908j+/z6DUHBAaDAIQg4KOTQ4KAQAgw2SBzgcITEi78OEri4gYG2ex5CiJS44KCAEC9ejKzUDwGJlylDqOj3D8KDBzALfMS1BsGANw0Rbt58uSHFOA4RkgYVijPECHURTChl+qAAy3EdpCoNSmLATmomwop9cOBqvAImQmxoIKDWnCAAIfkECQcAKQAsBgAAABoAIAAABv/AlFBooUwqsBYoAAINn1Dh5VJkHSWgj2KUUDijwoz4giles9sESlD6PjXwzIpKYVUkSkVJLXAI3G9jGC4sADASAXoJAicOHh4fUXFTg0Z3H3uMDggIHgGSYmApEiWanCoegHCiTwqOnAsDAqy0CrADuJG0oiUquAMHJ7usDrgHByKfw1EKIiLHBwnLYCrQDR7TUQINDQQEA9lQCd0GBA3hTyUEBuUG6EMl7PLvQgny7PQpHgUd/Af5BwoILKCCXgkOAwugoHeAA0KEysI52ECRAYOC6FAwoEiRgwJ0HjaE4LgBQbgRBl6oHLmhQ0QoBwZ4SJDAwwIOEEiofBEihEc+VhwiCBX64AEECC90vuAwgpaMoUWjPiChs8NHVgpiQJWa88WCl2BezDAxlOiDFweu7vrQgGIEExs4HPhDKwgAIfkECQcAJwAsBwAAABkAIAAABv/Ak/CkyWQuGBdlAqgMn9BnEWlZViQgECzKnV6qkyvoo/hIuEPNFAMWf0qjUgutNiJdrAqsBVKUEoABaEYrVEt7ZCMJKAICIGhoFQEKio0ejpBoIIsCDh4ICZmanZ4ICIKiUQqlCCooqVwopioLC4+wTx8ItQMDI7hQHr29DsBPCcMiKsZDJQfPBwPMQinQz9MnzgcEDQ3YCQ0EBAbe0w4G4wbS0wMG7gYI0yUdBvQGocwiBQUd9KjADvYJjGcsQQEOAgsoMOaBg0OEHDw8CRACX5QRBjZo3MCAg4F/J2LMMMFgAKgEHhYUeBEixMYNCo+ZiEAzwoObN0m8YLmxQAk0KDJMCLWJM+fOlhsMLHxSQuhQojchkNDpcgHIIQoaRHiKk4TUECKWQgIh4ADHmw4PYIIUBAAh+QQJBwAAACwEAAAAHAAgAAAG/0CAcEjUZDKXi8VFbDqdGmPSQplYn9hiZqWsViSwSvYZRWKoky8IBBsXjWYXawKTgBSKlpu4vWC8Ei0BCiUlEntPFGofhAkjeohOFYMlIwkCKZFPEimWlwIgmk4gCSgCJw4Jok4lpw4eCKGrQyACrwgqmbNDKB6wCCi7QyMIuAgOwkIpCAvNC8kACgsD1APQCtUi1sklByLe28ICB+QHz8kLDQ3kHskpBPDwqsIDBgT2BAHiBvz87UO2IiXo0KEfgQ9DHJiIgGDPiQIQCXZAJmREjBkRInAYgaUEAQ4QIzbQB8BDjBgZUxZYkGqEAwQGNjDgABKiAQVDPpBIGeGBT0kIQF+8CLFBpkyQBko0UcBgYU+fDyA8EDq0aFEGBHA6CSAiJVQSEEgIJVqUAwKSWBQ0IPGVhNihITgM0Lqn1gGaD0iAHIBCFpYgACH5BAkHADEALAIAAAAeACAAAAb/wJhwSCzGNJqMcck0IjOXC6ZJLT6lFle1+oRiXKwJa7vsRi2USaUCIC8zK6krXZG0Ku7lBa2GtUAgeUwUaxIgHwqBgkYTdocKJRKLRhUBiCUJCpNGAZAJny2bRBIjnwICH6JEJSinAgmqQwoCJw4OArFCH7YevbkxH70Iw78fw8e/KQgqzAi/CQsD0h6/CNLSJ0SKggoHIiIDIiNDIRyTCAfp6QExGzImEc55Ag0H9QfZDybw8LhkIwYICCQgIpWICPAiRHggj4oAAxADGsgWA0SIhA8yFhi3pMSBDhEhithW4oHCjBlJFFDhYMQIBwgMcChQICQBTUQSQDiZEQKJRxcvQmwYymEmzQ4dCKRYooADypQ/gw7dYJTmgVRMAgyA8MAniZ9CpzIoWgABuyrdXjyIGiLs0AILsLoBIUAEzbYgFyTYtiQIACH5BAkHAAAALAAAAQAgAB8AAAb/QIBwSCwaAZqjcqnUZJjQpXN1iVqFGucFg7kys9Oty+JtOjOXi4VCKS/RahdrMnEr45RJBVa3G9d6FRISfkd6MBIgIBWFRSyIIAEfhI1EiQEKJR+Vlh+ZJSWcQxIpJSMJI6JCEqcJKCiqAC2uArWxH7UnukMnBh6FKQ4nDh61LyYxEQyFAh7OCAkeJiYR1Ql2Hwja2ikf1d8Fdg4LCyoqCCAADdTfCGUJA/HxAkIK3w8PJPRWJSLy8ZuEDKiGL98vKCgOKDwg4sA+IQE2RCj4AIKBVEdKLCBAYOGBBemIpAhBkcSLEAYQnBgxolkDAzANEGhwYEDAIiNIQoBAwmSIRw0bGHDgUKBATI4dUyxRUICnyZNAhRYt0AEmAQM2oQQY8KJriJ9Bh0616iBkFAUiNnwFCpRo0Q4IbnoBgWIATKAyVSQweyQIACH5BAkHADEALAAABAAgABwAAAb/wJhwSCwaiRpN5shsFpNLp/QJzVym2Fj1csFkpZkw10L+OldjF4VidmIs6gmA1WZiKCx5BVBn6isSMH1HE4ASLS2DRhOHIAEfBRwcBQWKFQGPHwoRJiYRESODFQqkJSUQn58egy2mI68bqREDgx8JtwkjBJ6fHIMjKAICKCUeng8PoHUgwifCCh/JyA8ddSgO2NggMQfTDxCrXyUIHuUICUIKJN4kKFkKKioI8wjbQgPsIeFOCQP+C/PQDQnAgYRBEi9CGCjBJAWCAyL8DVjgwd6QFCEMvki4YQMBDwJMCXAw4IBJiP8+HBmxYWOIEB0ZSKJkoCaBBg1ODlDQREGHN5cdN8ikVKCmzZwHVKh0EmBB0I6TKHWwSYDAAQEWpSgYwAEq0ak2ESw1AyLBAgIGKFlFMCKrkSAAIfkECQcAMgAsAAAGACAAGgAABv9AmXBILBqPmqNyqUwyn01NBkqVJTXSafWJzV5kjoJge8yYV5c0wRQzhcbkIfqCwVg2kXxkEB/S7RQUEHoRcH0YLoEsE4QRCX1CLosTExV6DxEokDIUABWfEoMPmA6bEzAwEqocEaMPC5sVIC0gtQeuDwWbIB8BHx8gDq4QECN9EgrJKSktHyQQDxAkBn0pIyUj1xIyByQv3y8eZB8J5eUKQgovJN4vG5pUHycC9CgJLUML698bG6VPJTw4OEHwRAoiAQq8CBGi34YGJZR8cIAAgYeLHgTgI5KCQcMNDBhw4HDAgYASJRIIUDFgwIIFFS0GODKCg0ORBXIaMEDggM8/Ay0HqLD4YYkCA/1wFuiwk+dPEUEdzGQSAAEHpUyb9jwgAqgAEFUULMhZQCsBAg24Su0DIgGCtDuBehgBdkkQACH5BAkHADIALAAABwAgABkAAAb/QJlMJSwaj8hkURGZOZTQqOxgMsVMAqlW+ImYIuDGVuv4giOJMVSjIZwjDPWRLWNnOJHHIzKQGzNsGhkZL3l7J35Fg4srEHp6aYkyKxeVlY8PEJGJFxieFhYvehAQiJIYLqAUFAUkjiQLkjIULLW1ByS5Lx2yEwC/ABMnui8hI4kTEhUwzBMfL9AvGwSJEiASLdkTMgMhxRsbT2oSCh8BINdCChsh4Bscm1IgIykK9h8VRSrgDAwcBaaifEiQYMSIEiVAGAlgwN2/AgdKKAmA4oQAAQQTlJBwREGBDf4KiDQgAqO9EQkcIPDgwKIAFAlaJClR4GGBDgYMEDhwQMSAQAELEKxk6UCAQiUKCDzMmXNnz59BhXowKiUAgpFNCTR4+lMoggRHtXxAwJSA1p4+ByBAESDRPAQ/dy5Y4CBhlCAAIfkECQcAJgAsAAAEACAAHAAABv9Ak9CUeA2PyKTyqCDNjMtoFLSJRGJQqXY4sFplpO1W4bU+EmLtIfJ4WBFp6YfEdnfiUke7HUHjlwd7DwV/UQUQDxAQC4VLLySKEAKNSRokl5cjlCYaGpwaL4+hfoUZGZ0aGRuhLyEnlKaxGR2tLxsqlBe6uwMhvhsGlBYYGBfEAiEbyhslhRYUFBYWLhYBDMsMB4UTEyzQ0SYLyxwFr3EAFRUA3CxCChwb5AUdpFoVIBISMDAV7UII8goUMDBJS4sPH0CAaNGiwpEABOR1MGBgQIolIFKMSKEAYQAQAJAoMCBwIsUGCwSMUKAgRQkBAlAkGFGC4weHSUqQNGmgwQFNEQMGLEDgwQFMmSM2Sojy4QBFAlAP/BSqwkPREzETlFgqJYADqFGnCkVA1oFRBVy3fEDQwKfUoEPJehgBohCIEQ4WLDgwgCgKBXWjBAEAIfkECQcAKAAsAAABACAAHwAABv9AlHAoVBCPyGQyIJopn1CUgmMyRaLY4YhkNc1A2aiCFCmXnWEliFN+mAtp5cD9cEcQ8eS4zhfkkyJ8dXh/Rx8kEA8QEAaFSCcQL4sQI45HBySZL3CWRAUvmgudRBsvpiF+o0IhrCEblaoorhu0CbEoHLS0qaoGugyEfxpEGgO0DBwNjhrMKMwCGwwF0yV/GdfMGhkBBRzTBSJ/FxfX10Iq3tMGvFkYGOPjK0XTHQb2sFgUFC4W7u9DHgrYs0fAVpQJACaw2OcCA5EADQYaIHAAgZEkFSRIqFBhgkIKSBQQmDjxgIgBCEakCADiwwcFClhq5DgBJJIUDQgQaHDgwIBPBSoQODghIMGIEgo+gGghAcaEJx8GUDQ54CcCDw4EFFWZFISEp1BAOOjp06pQokaPKmhRIcwHByJOLkBAN+vWDzD+gCghACtdrSUCSIASBAAh+QQFBwAzACwAAAAAHwAgAAAG/8CZcEgECU7EpHJJVDQiJhlzugwMIlhThMoVKjjYcGzQnY5C2EfYZCgvFaGHXI1lHNxJUGEujxRGeEoLEBAPhRAIgUoKLySEECQCikoDjSSOHpNJHyEvjS9tmkQCnZ4vgKJDIiGsIR2pRAYbsxuJsEIctBuStzMMswwMqLe/DBwcCb0zBcfMvLcEBdIFmb0L0wV3vQIFHR0GBiW9Ad/gBguTGkoI5gQEyXgZGupEHwQG7g0H4mUrGfLq5glxgI/AgQMD4FHBcMEfQHozQAwgoA/hAAcfmFCg4ILhhX8Zkig4eHDAAhUIUCgIIEECjAowAEygYMHjRyUpBogQYXKBB04HJ1CMKPEBRIsKMjnWvMAkgAqeA1A6ECAgQQkFRSVUmDCzIxUjJhEg+Fl16MoWWiuwcFEmgACxCKYKLZFCgVG1ikAoSCAARdWrICRQCQIAOw==') no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFF0lEQVR4Ac2ZW0xcVRSGPTNnhlPKcCsUAeeChkEVxhutDQwzMANaqamNWgpaH+yDIaZp1cRHbgH0gTsxkmDCI/hiRAqgD5qYRgKQ8II6TE00wfgGAcIdKeM/ydrNZIezxxg9m518gRxWmn6s9a9zhvNQJBL5T/gfjokwA5Uw0zWFeHBOugiTsAArfSWZky+iABVowAZSwRkiDSTRz1iHlJMmogATsIDTIAPYgRs8SeTTtXSQSLVKFNkivIQKksDDJFCsquqLmqZdAa/i+yCuPQ1cJHOKjdpJEWGdsIFs8BQoy83NvTEzMzO3t7f318HBweHc3Nxdj8dznWQeIWmpIryENUaiCPgdDsfN+fn5XyLcWV5eDlmt1gBqHgOpbAHIFmESySAHeECF0+m8hd/+vcgxZ3d39wBj9grqCkA6iaiyRBRunJhEpcvl+nBhYeG3iM7Z2dnZgkg1ZSgNqLI6wgebSVTZ7faPlpaW/tSTWF9f36ivr+9AbQkF3iZRhAs2dSInJ+eDUCj0h0Biq7S09BPUBkEhyAKJssKusE6QRCGoQLDfn56eDulJrK6ubgeDwS7UXgTPAztIkXUfUbhxKgLlyMRtBPtXPYm1tbXdqqoqJnEOOGhbJQCTkSJ8sJlEMNoJrFhdicPDw6PKyspe1FaD85yE2YBnLUGwSSIrK+s2bnZLehIbGxubfr+/B7WXSMJJ42QlCcVAES7YJJGdnR0dp7BgnLZKSko6qBPngIvrBEkYIKIT7PLoOKET4TjB7kbty+A8SaRxmcAxQEQn2BUI9q3Z2dl7gk7sINhRiZeoE87jMmGECB/s3JhgR8dJV2Jzc3Pb5/N1UieKKdgsEyaAY5wIk2Dj5GHBRifCgmBHb3adLBNsO3HBNkxEAWZwCmSCx4EPwb4ZJ9jbCHYXSRQDpyDYhomoNFIOUIRMvINO/KQnsbKyshMIBD5D7RVwgQWblzBahD2Sp5jN5jzM+9uLi4s/60mEw+FNbKcvUH8DVIECcAZoXLCliaRaLBbX8PBwb0RwRkZGfkftx+BdUM4+KInDbdxoWUCKoih5CQkJgYGBgS/xs6PjRPb394+ampp+RP174CIoBGcpYypQZIqYY+4dz4DLvb29Y6LONDY2fou6OuAF+SCDZCgj8kQSQDqNihfU9vX1TYlkGhoa7qDuDVBKMpQVrjMG30fYCs6gAHuRmdqurq5JkUxLS8sEaq+CMq4zJGOgCB2Fk8kHJSaTqaazs3Pi2MzQaWtrm0RtDfDFyCQyGUNFOJlEkMlkwLWenp5vRDKtra1TNGYsM5mcjKEifGeYjBfUQUaYmebm5omYzLjFC8C4zyNqTGfcNDZ1/2ABjKHudZLXkTFARJAZN/CqqnqNMqN7Ojo6vqMF4ONkVFmvFUQLQNiZ7u7u76PZAn6S4TJjrIhoAdT+iwXAdQYYKCJaAG/iPhNvAYyj7jXwAngUpAGrDBF+ATCZAuBXFOX60NDQ3TiPM1/hyfoyPf7kgNNSXyvwmSGZMk3T3hocHPwhzlPzJLLFnpZT5PztV5wZNyilbTZFmTnZrxU4GZWXATV4ap4kmeNELlEticjsSHyZq/39/V/j374P2Lk/Pj5+BznxUuDlj1acJ4B8cAH/4er29vbPR0dH58fGxubx/ac2my1Ab3iz5Yc9/gJIB05QCJ4Fz9FXD3gC5HIfi+WKCGQ0GpuzwA7yCDtdS+b/SCFfRPwaQqPxSSaS6JrlwUjR+RtEvCM0ct4sLQAAAABJRU5ErkJggg==') left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFDUlEQVR4Ac2ZS0xcVRjHvTN3hisw0GIRZ3AeLWHQWqdVsRqgA86AUmpqoy20Whd2YYhprJq45BVAF7yJkQQTluDGiEhBF5qYRsIjYYMKQxNNMO4gQHgjZfxP8pF8ufEe0qQ5pyf5BTKcWfzyff/vnHt5xLQ0wgbsQCfswEY80BWPxx8I5sUlHMBJP0nm4RfRWAUMkAqOgseII8AFDNqjPYwiGuEAySADeEEuOEkE6bNjIIX22riQchHWSo+SRACc1nU9ahjGG+ASfn8Vn+WT0BNUMV0so04kFTwJTodCoeuTk5N3dnd397a3t/8dHx+fzM7OvoG/nQPPADdwscqoF2HBPgJynE5nZGFhYTZuWlNTU3/4fL6b2FMMnmUyTpJRLqKTSAbIQyu9vrW1tRv/n4Uqzfv9/g+x7xUQAh6QxmVUV0SnKRWESMXm5uZ63GJNT0//GQgEPsHeUibD20xTLeKioBdUV1e3rKysrFrJzM3N/eP1ej/F3jImIxgAcsOeDLLAKRAtLCz8HDKWlZmdnf3b4/F8zCojGADyz5F04AUvgPJoNNq2tLS0YSUzNjY2iwHwEWXmFHCzymiqRGwgiaaXD7wIysvKytqWl5e3rGQwAO4iM7ewt4SmmYfLqLpr2U0yZ0FFaWlp597e3r6VDEbzXapMlGQEA0COiEYyTmozP8lcKC4u7lhdXV2zksGhOZeVlXWLy5gHgDwRJsMqE6A2qygoKGhBm60L2izmdruZjGkAyBShxTNzlGTOgvMYAO2iAYDKxKjNSgQDQI6IRWb8VJnXMADaUZlNK5mJiYl5DAC6AQgGgCwRWjaWGR/IB+fD4XDr2trahqDN5lEZ3mbZ5gEgW4QPAD6aK3BotmIArAsqE2MDIMTajGTkinAZ3mb5NAAS58zGIQPgJvaGwVMgk5597ECTLcJl+AB4GVyKRCJfLi4uijLzGzLzHrWYj1pMVyXCB4BBz/J5oAzcwDT7OhaLWZ4zMzMzvyNX79rt9uOUNyewqRSxsbzk0Jh9H3w2MDDwV1yw+vv7Ox0OR4C+q1REAzr1+ON0TpSDD+rq6n7d2dmxusbs9/T0fJOUlBTRNO2gIg6lGSGJYyAXFIFrtbW1P4oq0dnZOYR9F8EZdqaoCDtVgrJBEoXgck1Nzfciia6urlHsu0rSOSADJEkXYRK8EufAlYaGhtsiiba2thFk4kAij75Po1fiOcIkkplEGFQ2NTWNCBz2W1tbb9tstkrsLaDvcQlN5hWFS2SyTFxubGwcFUl0dHT8gH1VTCITJHMJWSLmYAcPMlFfXy9sJ0gkMnGNpEnCXAkJIhYSReAtBHvosGCTRBgEWSV0qc8jPNhMIgyutLS0/CSSSGRC1/Uqkg5aZUKGiDkTQVAMqtrb238+RGJUHGyZb1F4Je4/2FfFwZYr4qRb7QnwEngTwR4+5JxIZOJtcbDlv2lMAR5wBjfUi7h2fCuS6Ovru6Np2nVqvzwmQcFW9+43HeSg10twix0RSfT29v5iGMY7dMLniTOh+N8KghN7lKZTIQgKMiG/IkwkCJELFiL7uMWOYE+lWUL8elRNa51APoqGh4cTN9p7TOJed3f3d4nz5P4l1ITdDU66XK5Ic3PzF0NDQ1ODg4NT+P0rCFbQM3qu4MRWLsIfX7PB0yAEngPP089TwA8yBMFWKmJ+qZBGj7FecJzw0mfpwBBLqBexseAbIBWkESnAEPybQLnIf4JfIzSb+FymAAAAAElFTkSuQmCC') right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 10px;
  zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  max-width: 80%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-controlContainer {
  float: right;
}

.lb-data .lb-turnContainer {
  float: left;
  margin-right: 5px;
}

.lb-data .lb-zoomContainer {
  float: right;
  margin-right: 5px;
}

.lb-data .lb-downloadContainer {
  float: right;
  margin-right: 5px;
}

.lb-data .lb-closeContainer {
  float: right;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAMAAAC6CgRnAAAAPFBMVEX///8AAAD9/f2CgoKAgIAAAAAAAAAAAABLS0sAAAAAAACqqqqqqqq6urpKSkpISEgAAAC7u7u5ubn////zbsMcAAAAE3RSTlMASv6rqwAWS5YMC7/AyZWVFcrJCYaKfAAAAHhJREFUeF590kkOgCAQRFEaFVGc+/53FYmbz6JqBbyQMFSYuoQuV+iTflnstI7ssLXRvMWRaEMs84e2uVckuZe6knL0hiSPObXhj6ChzoEkIolIIpKIO4joICAIeDd7QGIfCCjOKe9HEk8mnxpIAup/F31RPZP9fAG3IAyBSJe0igAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-turnLeft {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACIElEQVRIicWWPWsUURSG3xM/4hYpjLIhphJiIYugNloIiRoU/QO20UJrU1gE/EAbRReCGkQQEbFLCi0EG5NKEIKYItFSkBhSmMLIipolj8WeWa/rbrIzmdm8MNy599xznjN37pe0QbKwAlyTdFjSoJkt1Nhyko5L6pe0S1KPmxYkzUmalDRpZqXYWQDLVHQuaNsNPAFKrK2fwCOgNy440nlgK1AEftUE/wJMAM/8mQDma/qUgVvAlrjgK8CboF4C7gAHAKvjZ24r1ozMFNAdB7wSvI8BXTFGLe8+kT4A+WbBkd4DF4Czazr/H2so+ICpVYe9DjjUyzhgj3cp8L+RBPwbGI4L9pjjHmMZ2JMkRiIB3cA3hz9oGdjhdx38A+hoJXhf8NtOS1Jbi9gzkhb9/WgVTGUD6GnktV6ZGZLeebVQBUsalTQHDGYFlzTvZWcIPuhlX4bgz14uSdJmr0xLOqTKEZeVRiR9lfS82gJ0AAPApgzBGyMaHTTAKeBTFhMMuOxr+Go944gbl4DOFKFdwPeGWyZQ8MNgBSikCL7v0DKwN2qPZrXMbBY4ImmHmc2mBZbU7mXRzD42k+kx4OR6qUCOBlemep138vf2MAZsjwHKA/eA60mybAfeBifKzSb9hn1y4ok3fVcLg2wDbgMzwAlva/PJ8gp4CvQH/fcHiZZZ7aqTIJle/tV0YMsBD4HHaa6KEH4ReAG8Bs6kDshafwDkXu6L86KiLgAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-turnRight {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACGUlEQVRIicWXPWgUQRTH/3OJiSCEgJg7FcEmGLkmNoKCYESLYGNrqaDBSkQri4ARDPgBQRBU8CNgE8TCwkIhIqiVYLAQg5UoOZA0Eg1RE/xZ7DsymZzu7HJ7GVgG5r3/+82+3Z33Vlqj4WIdgQ2SBuzaJqlsphlJNUkvJE065xYC3WZJ9yW9ds6NRO8M6AXuAD9JHz+Ae8B2T3/cbIuxwA7gMrAUBJ8BJoEHdj0HaoHPL+CKxThZX4yBbgHeBHdyFegHVj0ewAG7gGvAvKd7BQxHgYEy8METTwA9UWlK9BXgkaf/kwq21Lz1BGdigabvAY4BQ8BUkP7/gi95fueyQE3/JISlgoEdLL9IE1mhFuM88Dsr+LbZvwGVPOA8O+0CFgw81hKogQ97Gam2glmyeb/Ns865960E1+9yqkgYsDUEb7S5ViD0hKQvwHUf/NXm2aLAkvYqqYa7JandFk9LeiZpvEDwZ5s/FshYPew4Pgh0hoa2lh0cAfiifcdnC4h9CvgEDDYy1o/M70C5gT4vtBuYs9ijjRx2ekXiVhPBfSQldvGfpyLLZfFus8AWdxDYk+ZUBTqaADsCHMgjLAEjJE1bltanC3homVsCNmUFV7yKNQdcANoidH4X8xIopWkaBRllZXvb79n2AePAU+Am0G7rh4Bpy9T6zFAPULVP7Qawzlt/x8rRmxuScUNHSZr5xyRdZfTv0JqOvwtaARgflgIWAAAAAElFTkSuQmCC') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-zoomOut {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAAB7UlEQVRIieXWvWsUURTG4XPjJpgmlSFKRAtTWGjAj0ajiSKKFopg/AtELbQTAiI2IaazEhsLK0XEVisbISD4gY2FlQQixiAYxESiBn0sdoKTQHZ3dte18FR3uO97fufcmbmciH8UqVYhUkT0RER3RMxGxMeU0uJfqQoJJ/EAc5bHDzzGWXQ0E9qPZ/iMGziCXnRgPfZgDFN4i2PNgJ7IOryFdVW0a3EZ3zHSCHQfvuFCQd8hzONcPdAuzGC0sLnsP5UVvb2o8RpeY0094CzHXTwqYmjHLIbrhWZ5tuAX+mo1LL2jzkbAWa4XuFRJ05Zb74iIlymlhUbBETERETsrCUq59YaImM5vYlNEXKkBdCelNJF7fh/lRlaNtkqbDUbF6zjf8YeI2LXMmdJURJyvA9obETOVBPmOX0XE7mZ8XBExGBHPa1KihE843QgRffiJrUVMo3iDUnX1qjnu4WFRUxemMVYndBgLha/MzLw3M18s6DucXUDXC0NzSY7jC26ju4q2E1exmA0I8xhqBL4NT7MCbuIoNuYGgQGM4x0mMZJBmwJP2VBwPysgHwt4gjNLvyCGVsAH64avKKRHeSTabJU5awV8rmnwGgscyJ3QVxz8b+EHWgnf789MPon2VsIHlGfv/pZBc/DWdVopfgMdyEl3/DM14wAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-zoomIn {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAAB+UlEQVRIieXWv29NcRzG8c+XttGlk6aEMOhAQhM/FkpLhDD4kai/QFgYpQliaRobi1gMJoRYmSxNmkhIWVibJkQjQiNaKRpehh7p0bTnntt7XYNnOiff5znv53vvPd/7ifhHSmWNSBHRERHtETEREe9TSjN/pRUSjuMBJv2p73iM02ipJ7QLT/EJ13EQa9CCVdiJQbzGKA7XA3o02+FNrKzgXYEL+Ib+WqC78RVnq8ztxxTOLAXahncYqDo8mz+Rld5SbXAQL7G8wDOCTQXrd/CoGmgzJtBXwQfbC9Y34Cc6i56zLHfdExEtEVG+7QJKKY1GxPOIOFYWvDUiRlJK07WAMw1HxLYiQ1PuenVEjOcXsS4iLi2Qu4gPufvbKaXh3P3bmN3IolpWtFijyh3HOI+hEr7CH1fmuYZ7RZ78jl9ExA60lmparJ6IeFbKiSZ8xMkKvkqvUyd+YGPpmhjAqxoPkLt4WBqahdowjsGqgnP5PkxXfWRm4V1Z+FyVuQPZn8TVqqG5hxzBZ9xCewVvKy5jJvv+p9BbC3wznmQFbuAQ1uYGgW5cwRuMoT+D1gWesqHgflYgr2kM4dTvVxC98+A9S4bPK9JhdiRab5E5ax58sm7wkgW7c5/QF+z7b+F7GwnfY24mH0NzI+HdZmfvroZBc/DG7bRIvwDiiW2v3ei28wAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-download {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAAaUlEQVR4Ae3VgQVAIQCE4UZplDa70Rrt3gQ5eDry/wRIn1QNoka2l22FsW6C5JwAAQIE6IeF5+HR287tw9x5YzdSedcKKDXOTcZ0UQFTQOnta59RVUxAFTABVcAElAZRuEX1DxYQEV3oA58RWgFolpBxAAAAAElFTkSuQmCC') right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* animation */
@keyframes fadeIn{    
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeOut{    
  0% {opacity: 1;}
  100% {opacity: 0;}
}


@keyframes fadeInOverlay{    
  0% {opacity: 0;}
  100% {opacity: 0.8;}
}

@keyframes fadeOutOverlay{    
  0% {opacity: 0.8;}
  100% {opacity: 0;}
}

.fadeIn{
  animation-name: fadeIn; 
}

.fadeInOverlay{
  animation-name: fadeInOverlay;
}

.fadeOut{
  animation-name: fadeOut;
}

.fadeOutOverlay{
  animation-name: fadeOutOverlay;
}

.animation{
  animation-fill-mode: both;
}

.transition{
  /* For Safari 3.1 to 6.0 */
  -webkit-transition-property: all;
  -webkit-transition-timing-function: ease;
  /* Standard syntax */
  transition-property: all;
  transition-timing-function: ease;
}

.lb-image {
  transition-duration: 0.5s;
      transition-property: transform;
  }

/* animation */

/* You can add global styles to this file, and also import other style files */

.invalid-feedback {
  width: 100%;
  margin-top: 0.25rem;
  color: #dc3545;
}

button:disabled,
button[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed !important;
}

.active-link {
  color: #fff;
  background: #2064af;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

div#submenu>a {
  color: white;
  padding: 8px 0px 10px 25px;
  font-size: 12px;
  text-decoration: none;
  display: block;
  border-bottom: #1a5393 solid 1px;
  background: transparent;
}

.cursor-pointer {
  cursor: pointer;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}
i.fa.fa-file-pdf-o.bnt_d{
  font-size: 24px;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel .owl-item.center{z-index: 5;}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{touch-action:pan-y;-webkit-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url('owl.video.play.e3b436436832b027.png') no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
@font-face{font-family:videogular;src:url('videogular.3fd92bcf683e015f.eot?hj1wei');src:url('videogular.3fd92bcf683e015f.eot?hj1wei#iefix') format("embedded-opentype"),url('videogular.a2e9f11f226cda93.ttf?hj1wei') format("truetype"),url('videogular.ef07f01ce399477e.woff?hj1wei') format("woff"),url('videogular.b5fa324995460a3b.svg?hj1wei#videogular') format("svg");font-weight:400;font-style:normal}[class*=" vg-icon-"],[class^=vg-icon-]{font-family:videogular!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;display:flex;align-items:center;justify-content:center;width:50px;font-size:24px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vg-icon-closed_caption:before{content:"\e006"}.vg-icon-pause:before{content:"\e018"}.vg-icon-play_arrow:before{content:"\e01b"}.vg-icon-repeat:before{content:"\e023"}.vg-icon-replay:before{content:"\e025"}.vg-icon-skip_next:before{content:"\e027"}.vg-icon-skip_previous:before{content:"\e028"}.vg-icon-stop:before{content:"\e02a"}.vg-icon-volume_down:before{content:"\e030"}.vg-icon-volume_mute:before{content:"\e031"}.vg-icon-volume_off:before{content:"\e032"}.vg-icon-volume_up:before{content:"\e033"}.vg-icon-hd:before{content:"\e035"}.vg-icon-forward_10:before{content:"\e038"}.vg-icon-forward_30:before{content:"\e039"}.vg-icon-replay_10:before{content:"\e03b"}.vg-icon-replay_30:before{content:"\e03c"}.vg-icon-fullscreen:before{content:"\e20c"}.vg-icon-fullscreen_exit:before{content:"\e20d"}vg-player video{width:100%;height:100%}
