/*
Template Name: Velonic Dashboard build with Bootstrap v3.3.6
Template Version: 2.1
Author: CoderThemes
Email: coderthemes@gmail.com
Date: Jan 2015
Last Update: Nov 2015
*/



/* TABLE OF CONTENTS
    1) General
        1.1 Loader
    2) Left Panel
        2.1 Logo
        2.2 Navigation
        2.3 Sub-menu
    3) Top Header
    4) Content Area
    5) Footer
    6) Panel-Tab-Accordions
    7) Portlets
    8) Widgets
    9) Chat / Todo
   10) Calendar
   11) Forms
       11.1 Form wizard
   12) Datatable
   13) Chart
   14) Mail
   15) Maps
   16) Profile
   17) Timeline
   18) Pages (Log-in,Register Etc....)

   ======= Version 1.1 ======
   19) Flot-chart / Rickshaw
   20) Announcements
        20.1 Global Announcements
        20.2 My Announcements
   21) Facebook Buttons CSS
   22) Payments page
   23) Advisor Portfolio
   24) Coupons
   */


   /******** 1. General ********/
   @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(../fonts/Roboto-Regular.woff2) format('woff2'), url(../fonts/Roboto-Regular.woff) format('woff');
  }

  body {
   color: #797979 ;
   background-color: #edf0f0 ;
   font-family: 'Roboto';
   padding: 0px !important;
   margin: 0px !important;
   font-size: 14px;
 }

 html {
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}
body, html {
  overflow-x: hidden;
}


/* 1.1 Loader */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #3bc0c3;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #3bc0c3, 0 0 5px #3bc0c3;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 80px;
  right: 30px;
  width: 30px;
  height: 30px;
  border: solid 2px transparent;
  border-top-color: #3bc0c3;
  border-left-color: #3bc0c3;
  border-radius: 50px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}


/******** 2. Left Panel (aside navigation) ********/
aside.left-panel {
  background-color: #fff;
  width: 230px;
  position: fixed;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 4000;
}

aside.left-panel.collapsed {
  overflow: hidden !important;
  position: fixed;
  bottom: 0px;
}

aside.left-panel.lg {
  width: 250px;
}

aside.left-panel.lg + .content {
  margin-left: 250px;
}

td.highlight {
  font-weight: bold;
  color: blue;
}

/***** 2.1 LOGO *****/
.logo {
  padding: 10px 0px 10px 10px;
  float: left;
}

.logo img {
  height: 28px;
}

.logo-expanded {
  font-size: 20px;
  letter-spacing: .05em;
  color: #fff !important;
  padding: 0px 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-expanded span {
  vertical-align: middle;
}

/******** 2.2 Navigation *******/

.navigation {
  margin: 50px 0px 20px;
}

.navigation > ul > li {
  position: relative;
}

.navigation > ul > li.active.has-submenu:after,
.navigation > ul > li.has-submenu:hover:after {
  color: #fff;
}

.navigation > ul > li > a {
  display: block;
  padding: 15px 27px;
  color: #205080;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  font-weight: 400;
  outline: none !important;
}

.navigation > ul > li > a:hover {
  background-color: #edf1f2;
}

.navigation > ul > li.active:hover > a,
.navigation > ul > li.active > a {
  color: #1c3f90;
  background: #cfd6d8;
}

.navigation ul li a i {
  margin-right: 6px;
  font-size: 18px;
  width: 25px;
  float: left;
}

.navigation ul li a .nav-label {
  vertical-align: middle;
}

.collapsed .navigation ul li a i {
  float: none;
}


/*** 2.3 Sub Menu ***/
.navigation ul li ul {
  display: none;
  background-color: #e8eaed;
  padding-bottom: 10px;
}

aside:not(.collapsed) .navigation ul li.active ul {
  display: block;
}

.navigation ul li ul li a {
  padding: 8px 25px 8px 55px;
  color: #75798B;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  font-size: 14px;
  border-left: 0px solid #75798B;
  text-align: left;
  display: block;
  outline: none !important;
}

.navigation ul li ul li a:hover {
  color: #fff;
}

.navigation ul li ul li.active a {
  color: #000 !important;
}


/******************** 3.Top Header ****************/

header {
  background-color: #1c3f90;
  border-bottom: 1px solid #ececee;
  /* padding-top: 4px; */
  /* padding-bottom: 4px; */
  position: fixed;
  width: 100%;
  z-index: 5000;
  height: 50px;
}

.navbar-toggle {
  margin: 8px 0px;
  display: block;
  padding-left: 8px;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}

.app-search {
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0px;
  margin-left: 10px;
  width: 260px;
}

.app-search .form-control,
.app-search .form-control:focus {
  border: none;
  font-size: 13px;
  color: #444444;
  padding-left: 40px;
  background: #edf1f2;
  box-shadow: none;
  border-radius: 4px;
  margin-top: 1px;
  height: 30px;
}

/*.app-search:before {
  content: "\f002";
  position: absolute;
  left: 12px;
  font-family: FontAwesome;
  cursor: pointer;
  top: 7px;
  color: #c4c4cd;
  display: inline-block;
}*/

#search_icon {
	position: absolute;
    top: 9px;
    margin-left: 13px;
    color: rgba(0,0,0,.3);
    cursor: pointer;
}
.app-search .form-control::-moz-placeholder {
  color: #c4c4cd;
}
.top-nav .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  background: #edf1f2;
}

.dropdown .extended {
  width: 280px;
  padding: 0;
  margin-left: -1px;
  z-index: 3;
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: none;
  max-height: 330px;
  right:0;
  left:auto;
}

.dropdown .extended li {
  border-bottom: 1px solid #f0f0f0;
  line-height: 20px;
}

.dropdown .extended li a {
  padding: 10px 20px !important;
  color: #000;
}

.dropdown .extended i {
  float: left;
  width: 38px;
  margin-right: 10px;
  text-align: center;
  margin-top: 5px;
}

.dropdown .extended p {
  font-weight: 600;
  background-color: #E4E9ED;
  padding: 10px 15px 11px 15px;
  margin-bottom: 0px;
}

.dropdown .pro-menu {
  width: 200px;
  z-index: 1000;
}

.Leftmenu-trigger {
  cursor: pointer;
  font-size: 16px;
  line-height: 64px;
  padding: 0px 15px 0px 7px;
}

.badge.up {
  position: relative;
  top: -12px;
  padding: 3px 6px;
  margin-left: -13px;
}

.top-nav ul.top-menu > li {
  margin-left: 10px;
}

.top-menu li {
  height: 100%;
  display: inline-block;
  position: relative;
  float: left;
  line-height: 50px;
  padding: 0px;
}

.top-menu li >a {
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 16px;
}

.top-menu li >a:hover,.top-menu li >a:focus,.top-menu li >a:active {
  background-color: #edf1f2;
  color: #205080;
}

.top-menu .dropdown-menu li {
  width: 100%;
  text-align: left !important;
}

.top-menu .dropdown-menu li a {
  font-size: 14px;
  text-align: left;
  padding: 5px 15px;
}

.username {
  font-size: 14px;
  vertical-align: middle;
  margin-left: 3px;
}

.header-noti li a {
  font-size: 14px;
}

.portfolio-dropdown-container{
  display: flex;
  float: right !important;
  height: 100%;
}
.portfolio-dropdown{
  display: flex;
  align-items: center;
}
.portfolio-dropdown button{
  background-color: #ECF0F0;
  /*width: 150px;*/
  /* min-width: 135px; */
  text-align: left;
}
#dropdownMenuButton {
  padding: 6px 10px;
}
#dropdownMenuButton span{
  float: right;
  position: relative;
  right: 0px;
  top: 8px;
  margin-left: 5px;
}
.portfolio-dropdown .dropdown-menu{
  padding: 5px 10px;
}
.portfolio-dropdown .dropdown-menu a{
  display: block;
  padding: 4px 0px;
}
.portfolio-dropdown .dropdown-menu a:hover{
  background-color: #ECF0F0;
}
.buyBtn a{
  display: block;
}
#buy_pro_portfolio{
  background-color: #ECF0F0 !important;
  color: #3f51b5 !important;
  min-width: 100px !important;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) and (min-width: 320px) {
  /*.portfolio-dropdown-container{
    width: 100%;
  }*/
  /*#dropdownMenuButton,*/
  #subscribe-batches{
    background-color: #1c3f90;
    color: #ffffff;
  }
  #subscribe-batches a{
    color: #ffffff !important;
  }
  .portfolio-dropdown-container .dropdown{
    margin: auto; 
  }
}
/***************** 4.Content Area (right) ****************/

.content {
  margin-left: 230px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.content > .container-fluid {
  padding-left: 25px;
  padding-right: 25px;
}

.wraper {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 550px;
}
.page-title {
  padding: 10px 0px 30px;
  height: 80px;
  display: flex;
}
.page-title h3 {
  margin: 0px;
}
.pro-portfolio-title-container, .portfolio-title-container{
  display: block;
  margin: auto 0;
}
.pro-portfolio-button-container, .portfolio-button-container{
  display: flex;
  margin: auto 0;
  float: right;
  margin-left: auto;
}
.pro-portfolio-button-container button, .portfolio-button-container button{
  background-color: #1c3f90 !important;
  font-family: Roboto;
}
/***************** 5.Footer ****************/
.footer {
  color: #58666e;
  padding: 20px 30px;
  font-weight: 600;
  background-color: #e6eaed;
  border-top: 1px solid #ddd;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 230px;
}

.collapsed + .content .footer{
  left: 75px;
}
#footer a{
  color: white !important;
}
/***************** 6.Panel-Tab-Accordions ****************/
.nav.nav-tabs+.tab-content,.tabs-vertical-env .tab-content {
  background: #FFF;
  padding: 20px;
  margin-bottom: 30px;
}

.nav.nav-tabs>li.active>a,.tabs-vertical-env .nav.tabs-vertical li.active>a {
  border: 0;
  background-color: #fff;
  border-top: 2px solid #D8D6D6;
}

.nav.nav-tabs>li>a {
  border: none;
  background-color: #eee;
  margin-right: 5px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 0;
  border-top: 2px solid #eee;
}

.nav.nav-tabs>li:last-of-type a {
  margin-right: 0px;
}

.nav.nav-tabs {
  border-bottom: 0;
}

.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus ,.tabs-vertical-env .nav.tabs-vertical li.active>a {
  border: none;
  border-top: 2px solid #D8D6D6;
}

.tabs-vertical-env {
  margin-bottom: 30px;
}

.tabs-vertical-env .nav.tabs-vertical {
  min-width: 120px;
  width: 150px;
}

.tabs-vertical-env .nav.tabs-vertical, .tabs-vertical-env .tab-content {
  display: table-cell;
  vertical-align: top;
}

.panel-group .panel .panel-heading a[data-toggle=collapse].collapsed:before, .panel-group .panel .panel-heading .accordion-toggle.collapsed:before {
  content: '\f067';
}

.panel-group .panel .panel-heading a[data-toggle=collapse]:before, .panel-group .panel .panel-heading .accordion-toggle:before {
  float: right;
  display: block;
  content: '\f068';
  font-family: 'FontAwesome';
  font-size: 14px;
  width: 25px;
  text-align: right;
}

.panel-group .panel .panel-heading a[data-toggle=collapse], .panel-group .panel .panel-heading .accordion-toggle {
  display: block;
}

.tabs-vertical-env .nav.tabs-vertical li>a {
  background-color: #eee;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
}

.panel-group .panel .panel-heading+.panel-collapse .panel-body {
  border-top: 1px solid #DDDDDD;
  margin-top: 15px;
}

.panel-group.panel-group-joined .panel+.panel, .panel-group-joined .panel-group .panel+.panel {
  margin-top: 0;
  border-top: 1px solid #ddd;
}

.table>thead>tr>td.middle-align, .table>tbody>tr>td.middle-align, .table>tfood>tr>td.middle-align, .table>thead>tr>th.middle-align, .table>tbody>tr>th.middle-align, .table>tfood>tr>th.middle-align {
  vertical-align: middle;
}
/* Modal-use */
.modal-content .nav.nav-tabs+.tab-content, .tabs-vertical-env .tab-content, .modal-content .panel-group {
  margin-bottom: 0px;
}

.modal-content .panel {
  border-top: none;
}


/***************** 7.Portlets ****************/
.portlet {
  margin-bottom: 20px;
  background: #fff;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.portlet .portlet-heading {
  padding: 20px 30px;
  line-height: 38px;
  min-height: 39px;
  border-radius: 3px;
  color: #fff;
}

.portlet .portlet-heading .portlet-title {
  float: left;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}

.portlet .portlet-heading .portlet-widgets {
  position: relative;
  text-align: right;
  float: right;
  padding-left: 15px;
  display: inline-block;
  font-size: 15px;
  line-height: 0px;
}

.portlet .portlet-body {
  background: #fff;
  padding: 15px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.portlet .portlet-heading .portlet-widgets .divider {
  margin: 0 5px;
}

.portlet .portlet-heading.bg-purple a, .portlet .portlet-heading.bg-info a, .portlet .portlet-heading.bg-success a, .portlet .portlet-heading.bg-primary a, .portlet .portlet-heading.bg-danger a, .portlet .portlet-heading.bg-warning a, .portlet .portlet-heading.bg-inverse a,.portlet .portlet-heading.bg-pink a {
  color: #fff;
}

.portlet .portlet-heading a {
  color: #999;
}

.panel-disabled {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 15px;
  background: rgba(243,242,241,0.5);
}

.loader-1 {
  -webkit-animation: loaderAnimate 1000ms linear infinite;
  -moz-animation: loaderAnimate 1000ms linear infinite;
  -o-animation: loaderAnimate 1000ms linear infinite;
  animation: loaderAnimate 1000ms linear infinite;
  clip: rect(0, 30px, 30px, 15px);
  height: 30px;
  width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
}

lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes loaderAnimate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(220deg);
  }
}

@-moz-keyframes loaderAnimate {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(220deg);
  }
}

@-o-keyframes loaderAnimate {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(220deg);
  }
}

@keyframes loaderAnimate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    transform: rotate(220deg);
  }
}

lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes loaderAnimate2 {
  0% {
    box-shadow: inset #555 0 0 0 8px;
    -webkit-transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #555 0 0 0 2px;
  }

  100% {
    box-shadow: inset #555 0 0 0 8px;
    -webkit-transform: rotate(140deg);
  }
}

@-moz-keyframes loaderAnimate2 {
  0% {
    box-shadow: inset #555 0 0 0 8px;
    -moz-transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #555 0 0 0 2px;
  }

  100% {
    box-shadow: inset #555 0 0 0 8px;
    -moz-transform: rotate(140deg);
  }
}

@-o-keyframes loaderAnimate2 {
  0% {
    box-shadow: inset #555 0 0 0 8px;
    -o-transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #555 0 0 0 2px;
  }

  100% {
    box-shadow: inset #555 0 0 0 8px;
    -o-transform: rotate(140deg);
  }
}

@keyframes loaderAnimate2 {
  0% {
    box-shadow: inset #555 0 0 0 8px;
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -ms-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #555 0 0 0 2px;
  }

  100% {
    box-shadow: inset #555 0 0 0 8px;
    -webkit-transform: rotate(140deg);
    -moz-transform: rotate(140deg);
    -ms-transform: rotate(140deg);
    transform: rotate(140deg);
  }
}

.loader-1:after {
  -webkit-animation: loaderAnimate2 1000ms ease-in-out infinite;
  -moz-animation: loaderAnimate2 1000ms ease-in-out infinite;
  -o-animation: loaderAnimate2 1000ms ease-in-out infinite;
  animation: loaderAnimate2 1000ms ease-in-out infinite;
  clip: rect(0, 30px, 30px, 15px);
  content: '';
  border-radius: 50%;
  height: 30px;
  width: 30px;
  position: absolute;
}

@keyframes loaderAnimate2 {
  0% {
    box-shadow: inset #fff 0 0 0 17px;
    transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #fff 0 0 0 2px;
  }

  100% {
    box-shadow: inset #fff 0 0 0 17px;
    transform: rotate(140deg);
  }
}

/***************** 8.Widget  ****************/
.widget-panel {
  padding: 40px 20px;
  border-radius: 4px;
  color: #ffffff;
  position: relative;
  margin-bottom: 20px;
}

.widget-style-1 i {
  position: absolute;
  font-size: 6rem;
  right: 0;
  bottom: 1rem;
  color: #edf0f0;
}
.widget-style-1 h2 {
  font-weight: 600;
  font-size: 32px;
}

.widget-style-1:hover i {
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
.widget-style-2 {
  padding-left: 30px;
}
.widget-style-2 i {
  font-size: 60px;
  float: right;
  padding: 30px;
  margin-top: -40px;
  margin-right: -20px;
  color: #edf0f0;
  background: rgba(255,255,255,0.2);
}
.widget-style-2 h2 {
  font-weight: 600;
  font-size: 32px;
}

.profile-widget {
  background: #ffffff;
  margin-bottom: 20px;
}

.bg-profile {
  height: 100px;
}

.profile-widget .img-thumbnail {
  margin-top: -42px;
  border: none;
}

.widget-list {
  padding: 10px;
  margin-top: 20px;
  margin-left: 0px;
  padding-bottom: 30px;
}

.widget-list span {
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.tile-stats {
  padding: 20px 0px 0px 0px;
  position: relative;
  min-height: 128px;
  overflow: hidden;
  margin-bottom: 20px;
}

.tile-stats .status {
  margin-top: 0px;
  padding: 0px 20px 10px 20px;
}

.status-ab {
  position: absolute;
  right: 0;
}

.mini-stat {
  background: #fff;
  padding: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.mini-stat-icon {
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  float: left;
  margin-right: 10px;
  color: #fff;
}

.mini-stat-info {
  font-size: 12px;
  padding-top: 2px;
}

.mini-stat-info span {
  display: block;
  font-size: 24px;
  font-weight: 600;
}


/************* 9.Chat / Todo **********/

.conversation-list {
  list-style: none;
  padding: 0px 20px;
  max-height: 350px;
}

.conversation-list li {
  margin-bottom: 24px;
}

.conversation-list .chat-avatar {
  width: 40px;
  display: inline-block;
  text-align: center;
  float: left;
}

.conversation-list .chat-avatar img {
  width: 100%;
  border-radius: 100%;
}

.conversation-list .chat-avatar i {
  font-size: 12px;
  font-style: normal;
}

.conversation-list .ctext-wrap i {
  display: block;
  font-style: normal;
  font-weight: bold;
  position: relative;
  font-size: 12px;
  color: #1a2942;
}

.conversation-list .conversation-text {
  display: inline-block;
  font-size: 12px;
  float: left;
  margin-left: 12px;
  width: 70%;
}

.conversation-list .ctext-wrap {
  padding: 10px;
  background: #d8f2f3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  display: inline-block;
}

.conversation-list .ctext-wrap p {
  margin: 0px;
  padding-top: 3px;
}

.conversation-list .ctext-wrap:after {
  right: 100%;
  top: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(213,242,239,0);
  border-right-color: #d8f2f3;
  border-width: 5px;
  margin-top: -5px;
}

.conversation-list .odd .chat-avatar {
  float: right !important;
}

.conversation-list .odd .conversation-text {
  width: 70% !important;
  margin-right: 12px;
  text-align: right;
  float: right !important;
}

.conversation-list .odd .ctext-wrap {
  background: #e8e9ec !important;
}

.conversation-list .odd .ctext-wrap i {
  color: #acacac;
}

.conversation-list .odd .ctext-wrap:after {
  left: 100% !important;
  top: 20% !important;
  border-color: rgba(238,238,242,0)!important;
  border-left-color: #e8e9ec !important;
}

.chat-send {
  padding-left: 0px;
  padding-right: 30px;
}

.chat-send button {
  width: 100%;
}

.chat-inputbar {
  padding-left: 30px;
}
/****ToDo List****/
.todoapp {
  padding: 10px 30px 20px 30px !important;
}
.todo-list li{
  border:0px;
  margin:0px;
  border-radius:0px;
  border-bottom:1px solid #eee;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.todo-list li:last-of-type {
  border-bottom: none;
}

.todo-send {
  padding-left: 0px;
}
/************* 10.Calendar **********/
.calendar {
  margin-bottom: 0px;
  float: left;
}

.fc-toolbar {
  margin-bottom: 5px;
}

.fc-toolbar h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
}

.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-widget-header,
.fc-widget-content {
  border: 1px solid #D5D5D5;
}

.fc th.fc-widget-header {
  background: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  padding: 10px 0px;
}

.fc-button {
  border: 1px solid #D5D5D5;
  background: #FFF;
  color: #555;
  text-transform: capitalize;
}

.fc-text-arrow,
.fc-text-arrow {
  font-family: arial;
  font-size: 16px;
}

.fc-state-hover {
  background: #F5F5F5;
}

.fc-state-highlight,
.fc-cell-overlay {
  background: #F0F0F0;
}

.fc-unthemed .fc-today {
  background: #fff;
}

.fc-event {
  font-size: 13px;
  padding: 5px 5px;
  text-align: center;
  margin-bottom: 5px;
  background: #1a2942;
  border: none;
  border-radius: 2px;
  cursor: move;
}

#external-events .fc-event {
  background: #3bc0c3;
}

.new-event-form {
  margin-bottom: 20px;
}

.fc-ltr .fc-basic-view .fc-day-number {
  padding: 5px 6px;
}


/************* 11.Forms **********/
/* Form-validation */
.error {
  color: #ff0000;
}
/* Datapicker */
.datepicker {
  border: 1px solid #ddd;
}
/* Multiple Select */
.search-input {
  margin-bottom: 10px;
}

.ms-selectable {
  outline: none !important;
  box-shadow: none;
}

.ms-container .ms-list.ms-focus {
  box-shadow: none;
}

.ms-container .ms-selectable li.ms-hover, .ms-container .ms-selection li.ms-hover {
  background-color: #3bc0c3;
}
/* spinner */
.spinner-buttons.btn-group-vertical .btn {
  height: 17px;
  margin: 0;
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
  width: 22px;
}

.spinner-buttons.btn-group-vertical .btn i {
  margin-top: -3px;
  line-height: 10px;
}

.spinner-buttons.btn-group-vertical .btn:first-child {
  border-radius: 0 4px 0 0 !important;
  -webkit-border-radius: 0 4px 0 0 !important;
}

.spinner-buttons.btn-group-vertical .btn:last-child {
  border-radius: 0 0 4px !important;
  -webkit-border-radius: 0 0 4px !important;
}

/* summernote */
.note-editor .note-toolbar {
  background-color: #f3f3f3;
  border-bottom: 1px solid #dfdfdf;
  margin: 0;
}

.note-editor {
  position: relative;
  border: 1px solid #dfdfdf;
}

.note-editor .note-statusbar {
  background-color: #fff;
}

.note-editor .note-statusbar .note-resizebar {
  height: 15px;
  border-top: 1px solid #dfdfdf;
  padding-top: 3px;
}

.note-popover .popover .popover-content, .note-toolbar {
  padding: 5px 0 10px 5px;
}

/* Code Editer */
.code-edit-wrap {
  padding-top: 0px !important;
  margin-left: -30px;
  margin-bottom: -20px;
  margin-right: -30px;
}

.cm-s-ambiance .CodeMirror-linenumber {
  color: #999;
}
/*------------------*/
/* 11.1 form wizard */
/*------------------*/

.wizard > .content {
  background: #fff;
  min-height: 240px;
}

.wizard > .content > .body {
  padding: 0px;
}

.wizard > .content > .body input {
  border: 1px solid #eeeeee;
}

.wizard > .content > .body ul > li {
  display: block;
}

.wizard > .steps .number {
  display: inline-block;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
  background: #f2f2f2;
  color: #323232;
  cursor: default;
}

.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active, .wizard > .content {
  border-radius: 2px;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background: #3bc0c3;
}

.wizard > .steps .current a .number,
.wizard > .steps .current a:hover .number,
.wizard > .steps .current a:active .number {
  background: transparent;
  color: #ffffff;
}

.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
  background: #1a2942;
}

.wizard > .content > .body label.error {
  margin-left: 0;
  color: #e55957;
}

.wizard > .actions {
  margin-bottom: 30px;
}

.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
  background: #3bc0c3;
  color: #fff;
  border-radius: 2px;
}

.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
  background: #e2e2e2;
  color: #323232;
}

.wizard > .content > .body label {
  display: inline-block;
  margin-top: 10px;
}

.wizard > .content > .body ul > li {
  display: block;
  line-height: 30px;
}
/* Datapiker */
.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
  box-shadow: none;
  background-color: #1a2942 !important;
  background-image: none;
}

/************* 12.Datatable **********/
#datatable td {
  font-weight: normal;
}

div.dataTables_paginate ul.pagination {
  margin-top: 30px;
}

div.dataTables_info {
  padding-top: 38px;
}


/************* 13.Chart **********/
/* Sparkline-Chart */
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/** EASY PIE CHART **/
.chart {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.chart.chart-widget-pie {
  margin-top: 5px;
  margin-bottom: 5px;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  line-height: 110px;
  z-index: 2;
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}


/************* 14.Mail **********/

.mails .mail-rateing {
  color: #9d9ea5;
  width: 1%;
}

.mails .mail-select {
  width: 1%;
}

.mails .label {
  margin-right: 10px;
}

.mail-list i {
  width: 20px;
  text-align: center;
}


/************* 15.Maps **********/
.gmaps,
.gmaps-panaroma {
  height: 300px;
  background: #1a2942;
  border-radius: 3px;
}

.gmaps-overlay {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  background: #1a2942;
  border-radius: 4px;
  padding: 10px 20px;
}

.gmaps-overlay_arrow {
  left: 50%;
  margin-left: -16px;
  width: 0;
  height: 0;
  position: absolute;
}

.gmaps-overlay_arrow.above {
  bottom: -15px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #1a2942;
}

.gmaps-overlay_arrow.below {
  top: -15px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #1a2942;
}

.vmap-space {
  width: 100%;
  height: 350px;
}

.jvectormap-zoomin, .jvectormap-zoomout,
.jqvmap-zoomin, .jqvmap-zoomout {
  border: 1px solid #eaeaea;
  background: #fff;
  border-radius: 0;
  color: #545454;
  width: 28px;
  height: 28px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}

.jvectormap-zoomin:hover, .jvectormap-zoomout:hover,
.jqvmap-zoomin:hover, .jqvmap-zoomout:hover {
  background: #eaeaea;
}

.jvectormap-zoomin, .jqvmap-zoomin {
  position: absolute;
  top: 0px;
}

.jvectormap-zoomout, .jqvmap-zoomout {
  position: absolute;
  top: 27px;
}


/************* 16.Profile **********/
.uprofile-image img {
  height: 100px;
  width: 100px;
}

ul.social-icons {
  padding: 0;
  margin-left: 0;
}

ul.social-icons li {
  list-style: none;
  display: inline-block;
  margin-left: 5px;
}

ul.social-icons li:first-child {
  margin-left: 0px;
}

ul.social-icons li a {
  display: inline-block;
  margin: 0;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  transition: all 0.17s ease-in-out;
  -moz-transition: all 0.17s ease-in-out;
  -webkit-transition: all 0.17s ease-in-out;
  -o-transition: all 0.17s ease-in-out;
}

ul.social-icons li a.facebook {
  background: #3e5ea2;
}

ul.social-icons li a.twitter {
  background: #2eb0e3;
}

ul.social-icons li a.github {
  background: #fff;
}

ul.social-icons li a.pinterest {
  background: #f43a2c;
}

ul.social-icons li a.google {
  background: #da5f2e;
}

ul.social-icons li a.youtube {
  background: #df2826;
}

ul.social-icons li a.linkedin {
  background: #107cb7;
}

ul.social-icons li a:hover {
  opacity: 0.8;
}

ul.social-icons li a i {
  color: #fff;
  font-size: 15px;
  line-height: 36px;
  transition: all 0.17s ease-in-out;
  -moz-transition: all 0.17s ease-in-out;
  -webkit-transition: all 0.17s ease-in-out;
  -o-transition: all 0.17s ease-in-out;
}


/************* 17.Timeline **********/
/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0 20px;
  list-style: none;
  text-align: right;
}

.timeline:before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background-color: #999;
}

.timeline > li {
  position: relative;
  margin-bottom: 20px;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  float: left;
  position: relative;
  width: 46%;
  padding: 20px;
  background: #fbfbfb;
  border: 1px solid #e7e7e7;
}

.timeline > li > .timeline-panel:before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 26px;
  right: -15px;
  border-top: 15px solid transparent;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #ccc;
}

.timeline > li > .timeline-panel:after {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 27px;
  right: -14px;
  border-top: 14px solid transparent;
  border-right: 0 solid #fbfbfb;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #fbfbfb;
}

.timeline > li > .timeline-badge {
  z-index: 100;
  position: absolute;
  top: 16px;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  border-radius: 50% 50% 50% 50%;
  text-align: center;
  font-size: 1.4em;
  line-height: 50px;
  color: #fff;
  background-color: #999999;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline-badge.primary {
  background-color: #3bc0c3 !important;
}

.timeline-badge.success {
  background-color: #33b86c !important;
}

.timeline-badge.warning {
  background-color: #ebc142 !important;
}

.timeline-badge.danger {
  background-color: #cb2a2a !important;
}

.timeline-badge.info {
  background-color: #1ca8dd !important;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

/* Timeline-2 */
.timeline-2 {
  position: relative;
  border-left: 2px solid #14082d;
}

.time-item {
  position: relative;
  padding-bottom: 1px;
  border-color: #dee5e7;
}

.time-item:before, .time-item-item:after {
  display: table;
  content: " ";
}

.timeline-2 .time-item:after, .time-item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  margin-left: -8px;
  background-color: #fff;
  border-color: #14082d;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  content: '';
}

.item-info {
  margin-left: 15px;
  margin-bottom: 15px;
}

.item-info p {
  margin-bottom: 10px !important;
}

.profile-desk h1 {
  color: #49586e;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.profile-desk .designation {
  color: #49586e;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
}

.profile-desk p {
  line-height: 25px;
  margin-bottom: 40px;
}

.p-follow-btn {
  background: #eff0f4;
  color: #a4a4a4;
}

ul.p-social-link {
  list-style-type: none;
}

ul.p-social-link li {
  display: inline-block;
}

ul.p-social-link li a {
  background: #eff0f4;
  color: #bfbfc1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  display: inline-block;
  text-align: center;
}



/*********** 18. Conatct *********/
.media-main a.pull-left {
  width: 100px;
}

.media-main .info {
  overflow: hidden;
  color: #000;
}

.media-main .info h4 {
  padding-top: 10px;
  margin-bottom: 5px;
}
.social-links li a {
  background: #EFF0F4;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #7A7676;
}


/*********** 19. Pages / Carousel *********/
/* Log-in */
.wrapper-page {
  width: 380px;
  margin: 140px auto 140px;
}

/* Lock-screen */
.user-thumb img {
  margin: 0px auto;
}

/* Error-pages */
.ex-page-content h1 {
  font-size: 150px;
  line-height: 150px;
  font-weight: 700;
  color: #252932;
}

/* Sweet-alert **/
.sweet-alert p {
  font-size: 14px;
}

/* Carousel */
.velonic-carousel {
  padding: 20px 30px;
}

.slider-bg {
  background: url(../img/album/img-1.jpg) center;
  background-size: cover;
  position: relative;
}

.slider-overlay {
  background: rgba(0,0,0,0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  margin: -20px -30px;
}

.owl-buttons {
  display: none;
}


/*Profile-v2*/
.bg-picture {
  position: relative;
  min-height: 300px;
  margin: -20px -25px 0px -25px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
.bg-picture>.bg-picture-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0d…0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,rgba(0,0,0,.4) 100%);
  background-image: -o-linear-gradient(top,rgba(255,255,255,0) 0,rgba(0,0,0,.4) 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,0)),to(rgba(0,0,0,.4)));
  background-image: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(0,0,0,.4) 100%);
}
.bg-picture>.meta.bottom {
  bottom: 10px;
}
.bg-picture>.meta {
  position: absolute;
  left: 0;
  right: 0;
}
.box-layout {
  display: table!important;
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}

#flotTip {
  padding: 4px 8px;
  background-color: #000;
  z-index: 100;
  color: #FFF;
  opacity: .7;
  font-size: 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.progress-animated {
  -webkit-transition: 5s all;
  -webkit-animation-duration: 5s;
  -webkit-animation-name: animationProgress;
  transition: 5s all;
  animation-duration: 5s;
  animation-name: animationProgress;
}
@-webkit-keyframes animationProgress {
  from {
    width:0;
  }
}
@keyframes animationProgress {
  from {
    width:0;
  }
}
.profile-tabs {
  background-color: #eeeeee;
  padding-bottom: 1px;
}
.nav.nav-tabs.profile-tabs>li>a {
  border: none;
  margin-right: 0px;
  padding: 15px 30px;
  font-size: 16px;
}
.nav.nav-tabs.profile-tabs>li>a i {
  margin-right: 10px;
}


/* Flot Chart */
.flot-chart {
  width: 100%;
  text-align: center;
  margin:0 auto;
}

#legend {
  background: white;
  position: absolute;
  top: 0;
  right: 15px;
}
#legend .line {
  color: #333;
}


.popupMainCont {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0,0,0,0.6);
  z-index: 6000;
}
.popupBox {
  position: relative;
  height: 100%;
  width: 100%;
}
.popupImgCont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
  width: 350px;
  padding: 0px 0px 0px 20px;
  background-color: #fff;
}

.buy-popupMainCont {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0,0,0,0.6);
  z-index: 6000;
}
.buy-popupBox {
  position: relative;
  height: 100%;
  width: 100%;
}
.buy-popupImgCont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
  width: 350px;
  padding: 0px 0px 0px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.buy-heading{
  font-size: 12px;
  font-weight: 700;
}


/*********** Advisor Profile SearchPage *********/
.dbAdvMainCont {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../img/bg-adv.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center center;
  background-attachment: fixed;
}
.dbAdvContWrap {
  margin: 0px auto;
  height: 100%;
  position: relative;
}
.dbAdvCont {
  position: absolute;
  top: calc(50% - 106px);
}
.dbAdvSpan {
  color: #1c3f90;
  text-align: center;
  margin-bottom: 25px;
}
.dbAdvInput, .dbAdvInputName, .dbAdvProInput, .dbAdvProInputName, .dbAdvSearchBtn {
  border-radius: 2px;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,.2);
  margin-bottom: 4px;
}
.dbAdvSearch {
  background-color: #1c3f90;
}
@media screen and (min-width: 980px) {
  .dbAdvContWrap {
    width: 960px;
  }
  .dbAdvInput, .dbAdvProInput {
    width: 250px !important;
  }
  .dbAdvInputName, .dbAdvProInputName {
    width: 380px !important;
  }
  .dbAdvSearch {
    display: none;
  }
  .dbAdvDetailSetCont {
    width: 670px;
  }
  .dbAdvDetail {
    width: 60%;
  }
  .dbAdvExtraDetail {
    width: 40%;
    padding-right: 10px;
  }
  .dbAdvProfileSetCont {
    width: 930px;
  }
  .dbAdvReqButton {
    position: absolute;
    bottom: 0px;
  }
  .dbAdvProfileContainer {
    position: relative;
  }
  .dbAdvProExtraDetail {
    width: calc(40% - 75px);
    padding-right: 10px;
  }
   .dbNewsImgDetail {
    padding-right: 10px;
  }
  .dbNewsDetail {
    width: calc(100% - 255px);
  }
  .newsBottom {
    bottom: 0px;
    position: absolute;
  }
  .newsImgCont {
    margin-right: 20px;
  }
}
@media screen and (max-width: 979px) and (min-width: 768px) {
  .dbAdvContWrap {
    width: 700px;
  }
  .dbAdvInput {
    width: 340px !important;
  }
  .dbAdvProInput {
    width: 175px !important;
  }
  .dbAdvInputName {
    width: 641px !important;
  }
  .dbAdvProInputName {
    width: 270px !important;
  }
  .dbAdvSearch {
    display: none;
  }
  .dbAdvFilterSetCont {
    display: none;
  }
  .dbAdvDetailSetCont {
    width: 670px;
  }
  .dbAdvDetail {
    width: 60%;
  }
  .dbAdvExtraDetail {
    width: 40%;    
    padding-right: 10px;
  }
  .dbAdvReqButton {
    position: absolute;
    bottom: 0px;
  }
  .dbAdvProfileContainer {
    position: relative;
  }
  .dbAdvProExtraDetail {
    width: calc(40% - 75px);
    padding-right: 10px;
  }
  .dbNewsImgDetail {
    padding-right: 10px;
  }
  .dbNewsDetail {
    width: calc(100% - 255px);
  }
  .newsBottom {
    bottom: 0px;
    position: absolute;
  }
  .newsImgCont {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .dbAdvContWrap {
    width: 310px;
  }
  .dbAdvInput, .dbAdvInputName {
    width: 280px !important;
  }
  .dbAdvSearchBtn, .dbAdvFilterSetCont, .dbAdvSearchCont {
    display: none;
  }
  .dbAdvDetailSetCont {
    width: 280px;
  }
  .dbAdvDetail, .dbNewsDetail { 
    width: 100%;
  }
  .dbAdvExtraDetail, .dbAdvProExtraDetail, .dbNewsImgDetail  { 
    width: 100%;
    padding-right: 0px;
  }
  .newsDesc { 
    margin-bottom: 0px !important;
  }
  .newsBottom { 
    margin-top: 10px;
  }
  .newsImgCont {
    margin-right: 0px;
  }
}

@media screen and (max-width: 1170px) {
  #topStoryCont {
    display: none;
  }
}

/*********** Advisor Profile Listing *********/
.dbAdvContainer {
  width: 100%;
  height: 100%;
  position: absolute;
}
.dbAdvSearchCont {
  position: absolute;
  top: 60px;
}
.dbAdvProfileCont {
  position: relative;
  top: 120px;
}
.dbAdvFilterSetCont {
  width: 250px;
  float: left;
  margin-right: 10px;
}
.dbAdvDetailSetCont {
  float: left;
}
.dbAdvFilterCont, .dbAdvDetailCont, .dbAdvProDetailCont {
  width: 100%;
  padding: 20px;
  background-color: white;
  border-radius: 2px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,.2);
  overflow: auto;
}
.dbAdvFilterCont {
  min-height: 115px;
}
.dbAdvFilterHeading {
  color: #444444;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dvAdvSkillClass {
  height: 28px;
}
.dbAdvCheckBoxCont {
  float: left;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
.dbAdvSkillSpan {
  margin-left: 10px;
  color: #444444;
  float: left;
  line-height: 27px;
  font-size: 13px;
}
.dbAdvDetail {
  float: left;
  padding-right: 20px;
}
.dbAdvDetail p {
  margin: 0px !important;
}
.dbAdvDetailClass {
  min-height: 100px;
}
.dbAdvImgCont {
  float: left;
}
.dbAdvImgCont img {
  width: 100px;
  height: 100px;
  border-radius: 2px;
}
.dbAdvInfoCont {
  width: calc(100% - 120px);
  margin-left: 20px;
  float: left;
}
.dbAdvNameHeading {
  color: #1c3f90;
  font-size: 15px;
  font-weight: 700;
}
.dbAdvProHeading {
  color: #444444;
  font-size: 13px;
  font-weight: 700;
}
.dbAdvExHeading, .dbAdvProfileContainer {
  color: #444444;
  font-size: 13px;
  line-height: 20px;
}
.dbAdvCertiCont {
  min-height: 40px;
  padding: 10px;
}
.dbAdvStarCont {
  width: 90px;
  float: left;
}
.dbAdvStarCont i {
  color: #1c3f90;
}
.dbAdvRangeSpan {
  color: #444444;
  margin-bottom: 10px;
  font-size: 13px;
}
#slider1, #slider2 {
  border: 1px solid #444444;
  left: 10px;
  width: calc(100% - 20px);
}
.dbAdvExtraDetail, .dbAdvProExtraDetail {
  float: left;
}
.dbAdvProHeading i {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.dbAdvReqButton {
  height: 36px;
  padding: 6px;
  background-color: #1c3f90 !important;
  border-radius: 2px;
  width: 160px;
  font-size: 14px;
}

/*********** Advisor Profile Detail *********/
.dbAdvProfileContainer {
  min-height: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}
.dbAdvProfileSetCont {
  position: relative;
  top: 190px;
}
.dbAdvProDetailCont {
  padding-top: 75px;
  overflow: auto;
}
.dbAdvProImageCont {
  width: 130px;
  height: 130px;
  padding: 5px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,.2);
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
}
.dbAdvProImageCont img {
  width: 120px;
  height: 120px;
  border-radius: 2px;
}
.dbAdvProNameCont {
  color: #1c3f90;
  text-align: center;
}
.dbAdvProNameCont span {
  font-size: 16px;
  font-weight: 700;
}
.dbAdvTestiContainer {
  min-height: 80px;
  overflow: auto;
  font-size: 13px;
  color: #444444;
}
.dbAdvTestiNameDetail {
  width: 25%;
  float: left;
  font-weight: 700;
}
.dbAdvTestiDetail {
  width: 75%;
  float: left;
}
/*.dbAdvTestiDetail i {
    color: #78cb21;
    }*/
    .dbAdvTestiDetail i {
      color: #1c3f90;
      margin-right: 0px;
    }
    .dbAdvProNameCont p {
      cursor: pointer;
      font-size: 13px;
    }
    .dbAdvProEditCont {
      float: right;
      color: #1c3f90;
      font-size: 14px;
      margin-bottom: 20px;
      cursor: pointer;
    }
    .dbAdvProEditCont i {
      margin-left: 5px;
    }
    .dbAdvProSaveButton {
      height: 32px;
      font-size: 14px;
      padding: 4px 10px;
      background-color: #1c3f90 !important;
      border-radius: 2px;
    }
    /*********** My Profile Page CSS *********/
/*.profileInfoContainer .dbAdvImgCont{
  display: block;
  width: 100%;
}
.profileInfoContainer .dbAdvImgCont #imagePreview{
  margin: auto;
  display: block; 
}
.profileInfoContainer .dbAdvInfoCont{
  width: 100%;
  margin-left: 0px;
}
.profileInfoContainer .dbAdvInfoCont .dbAdvProfileContainer{
  font-size: 16px;
  margin-bottom: 10px;
}
.userDetailTitle{
  width: 45% !important;
}
.userDetailInfo{
  width: auto !important;
}
@media screen and (min-width: 601px) {
  .profileInfoContainer .dbAdvImgCont{
    display: inline;
    width: auto;
  }
  .profileInfoContainer .dbAdvInfoCont{
    width: 75%;
    margin-left: 10px;
  }
  .profileInfoContainer .dbAdvImgCont #imagePreview{
    margin: auto;
    display: block; 
  }
  .userDetailTitle{
    display: inline-block !important;
  }
  }*/
  /*********** Multiple watchlist *********/
  #tabb {
    border: none;
    padding: 0px;
    z-index: 0;
  }
  #tabb ul {
    background-color: #edf0f0;
    border: none;
    overflow-x: auto;
    overflow-y: hidden;
    display: -webkit-box;  
    display: -moz-box; 
  }
  #tabb ul li {
    border: none;
    background: none;
    float: none;
  }
  #tabb ul li:hover {
    cursor: pointer;
  }
  #tabb ul li a {
    padding: 10px 15px;
    font-weight: 400;
  }
  .ui-tabs .ui-tabs-panel {
    padding: 0px;
    font-size: 14px;
    color: #797979;
  }
  .ui-widget button, .ui-widget input{
    font-size: 14px;
  }
  .sbmtBtn {
    background-color: #3f51b5;
    border: 1px solid #3f51b5;
    color: #FFFFFF !important;
    width: 37px;
    height: 34px;
    opacity: .9;
  }
  .sbmtBtn:hover {
    opacity: 1;
  }
  .pagination {
    display: inline-block !important;
  }
  .pagination>.disabled>a, .pagination>.disabled>a:hover {
    cursor: default;
  }
  /*********** Personal Portfolio *********/
  #plusCont {
    height: 120px;
    width: 120px;
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    background-color: #fff;
    padding: 5px;
    color: #1c3f90;
    text-align: center;
    cursor: pointer;
  }
  .plusBox {
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .plusClass {
    font-size: 30px;
  }
  thead {
    color: #797979;
  }
  .datepicker.dropdown-menu {
    z-index: 10000 !important;
  }
  .removeTab {
    font-size: 16px !important;
    margin: 3px 0px 0px 20px;
    color: #555;
    opacity: 1 !important;
    font-weight: 400;
  }

  /*********** Compare Screen *********/
  #compareBtn {
    height: 36px;
    padding: 3px;
    background-color: #1c3f90 !important;
    border-radius: 2px;
    font-size: 14px;
  }
  .companySpace {
    overflow: auto;
    margin: 20px 0px 10px;
  }
  .addCompany {
    float: left;
    padding: 10px 20px;
    background-color: #ffffff;
    margin: 0px 10px 10px 0px;
    border-radius: 2px;
  }
  .addCompany span {
    margin-left: 5px;
  }

  /*********** My profile *********/
  #birth-date::-webkit-inner-spin-button,
  #birth-date::-webkit-calendar-picker-indicator,
  #birth-date::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
  }
  #imagePreview {
    width: 100px;
    height: 100px;
    border-radius: 2px;
    background-position: center center;
    background-size: cover;
    display: inline-block;
  }
  #uploadFile {
    height: 100px;
    width: 100px;
    opacity: 0;
    cursor: pointer;
  }
  #dbp-otp-num::-webkit-inner-spin-button, 
  #dbp-otp-num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
  }

  /*********** News Page *********/
  .newsImgCont {
    width: 225px;
    height: 150px;
    border-radius: 2px;
    background-position: center center;
    background-size: cover;
    display: inline-block;
  }
  .newsTitleCont {
    line-height: 25px;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 3px;
    font-weight: 700;
  }
  .newsDesc {
    color: #212121;
    font-size: 15px;
    text-align: justify; 
    margin-bottom: 50px;
  }
  .dbNewsImgDetail {
    float: left;
    text-align: center;
  }
  .dbNewsDetail {
    float: left;
  }
  .dbTopNewsHeader {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .dbTopNewsImgCont {
    float: left;
    width: 288px;
    height: 162px;
    border-radius: 2px;
    background-position: center center;
    background-size: cover;
    display: inline-block;
  }
  .dbTopNewsImgCont img {
    width: 288px;
    height: 162px;
    border-radius: 2px;
  }

  /*********** 404 Page *********/
  .errorContainer {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("../img/404.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center center;
    background-attachment: fixed;
  }

  /*********** Demo Page *********/
  .demoImgCont {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .demoImgCont img {
    width: 100%;
    height: 100%;
  }
  .leftArrow {
    left: 0px;
  }
  .rightArrow {
    right: 0px;
  }
  .leftArrow, .rightArrow {
    position: fixed;
    height: 100%;
    width: 87px;
    line-height: 40px;
    background-color: rgba(255,255,255,0.01);
    cursor: pointer;
    text-align: center;
    z-index: 1;
    font-size: 36px;
  }
  .leftArrow:hover, .rightArrow:hover {
    background-color: rgba(0,0,0,0.46);
    color: #fff;
  }
  .leftArrow span, .rightArrow span {
    position: absolute;
    top:50%;
  }
  .demoBtn {
    position: absolute;
    right: calc(50% - 50px);
    bottom: 5%;
    width: 100px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.46);
    border: none;
    color: #fff;
    padding: 6px 0;
    border-radius: 4px;
  }

  /*********** Bloglist Page *********/
.plusBoxCont {
    width: 100%;
    border: 1px dashed #1c3f90;
    margin-bottom: 20px;
}
.addArticle {
    background-color: #fff;
    padding: 5px 5px 30px;
    color: #1c3f90;
    text-align: center;
    cursor: pointer;
}
.addArticleBox {
    margin-top: 30px;
    margin-bottom: 10px;
}
.batch-details{
    margin-bottom: 15px;
}
.wrap-blog{
    white-space: nowrap;
}
.close-blog, .read-more{
    display: none;
    font-size: 16px;
    text-decoration-line: underline;
}
.margin-bottom{
  margin-bottom: 20px;
}

  /*********** Add Blog Page *********/
  #cke_26, #cke_32 ,#cke_46 ,#cke_1_bottom {
    display: none;
  }
  #dpb-blog-title {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  #uploadFeatureImg {
    margin-top: 10px;
    float: left;
  }

/*********** All Blog Page *********/
#pagination-blog .pagination>.disabled>a, #pagination-blog .pagination>.disabled>a:hover {
    cursor: not-allowed;
}
.more-link {
    color: #337ab7 !important;
}
#pagination-blog {
    float: right;
}

  /* change chrome autosaved field color */
  input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  }

  /*********** Credential Page *********/
  .dbCredentialCont {
    width: 75%;
    padding: 12px 20px;
    background-color: #ffffff;
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,.2);
    overflow: auto;
  }
  @media screen and (max-width: 767px) {
    .dbCredentialCont {
      width: 100%;
    }
  }

  /*********** 20. Announcements *********/

/*********** 20.1 Global Announcements *********/
.glb-ancmnts-title{
    margin-top: 15px !important;
}
#dividend-table_paginate, #dividend-table_info, #dividend-table_length, #dividend-table_filter{
    display: none;
}
#search-dividend {
    width: auto;
}
#dividnd-refresh {
    cursor: pointer;
}

  /*********** 21. Facebook buttons CSS *********/
  .fb-buttons-container{
    text-align: left;
    position: relative;
  }
  .shareButton{
    background-color: rgb(66, 103, 178);
    border: none;
    width: 72px;
    height: 32px;
    border-radius: 5px;
    padding: 0px;
    margin: 0px 5px;
    font-family: Roboto;
    font-weight: bold;  
  }
  .shareButton i{
    color: #ffffff;
    margin: 0px 4px;
    font-family: Roboto;
    font-size: 14px;
  }
  .shareButton a{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .compareProfileBtn{
    background-color: #1c3f90;
    color: #ffffff;
  }
  .compareProfileBtn:hover{
    color: #ffffff;
  }
  @media only screen and (max-width: 600px) {
    .bseContainer{
      display: block;
    }
    .mobileHide{
      /* display: none; */
    }
    .mobileShow{
      display: flex !important;
      justify-content: center !important;
      width: 100%;
      margin: 0 !important;
    }
    /*#dropdownMenuButton{
      margin-right: 25px;
    }*/
    /*#buy_pro_portfolio{
      padding: 6px 24px;
      background-color: #1c3f90 !important;
    }
    #buy_pro_portfolio a{
      color: #ffffff !important;
    }*/
    .mobileShow #buy_pro_portfolio{
      display: block;
    }
    .indexPage{
      /*margin-top: 40px;*/
      display: block;
    }
    .marketLabel{
      display: block;
      float: none !important;
    }
    .sensexTitle{
      display: block !important;
    }
  }
  @media only screen and (min-width: 601px){
    .mobileShow{
      display: none !important;
    }
  }

  /*Cumulative Brokerage and Transaction in dashboard*/
  .cumulativeContainer{
    display: block;
  }
  .analyticsDivCls {
    display: inline-block;
  }
  .analyticsDivCls p {
    margin: 0px !important;
  }
/*.dbAdvProfileContainer{
  margin-left: 0px !important;
}
.dbAdvProExtraDetail, .dbAdvDetail{
  width: auto;
  }*/
  @media only screen and (max-width: 600px){
    .bseContainer{
      line-height: 28px;
    }
    .cumulativeContainer{
      display: inline-block;
      width: 400px;
    }
  /*.dbAdvProfileContainer{
    margin-left: 20px;
  }
  .dbAdvDetail{
    display: inline-block;
  }
  .dbAdvDetail p{
    margin-bottom: 0px;
    width: 50px;
  }
  .dbAdvProExtraDetail{
    display: inline-block;
    float: left;
  }
  .dbAdvProExtraDetail span, .dbAdvDetail p{
    line-height: 30px;
    }*/
  }
  @media only screen and (min-width: 600px){
    .cumulativeContainer{
      width: 52%;
    }
  /*.dbAdvProExtraDetail{
    display: inline;
  }
  .dbAdvDetail{
    display: inline;
    float: none;
  }
  .dbAdvDetail p{
    display: inherit;
    }*/
  }
  @media only screen and (max-width: 868px){
    .indexBody{
      margin-top: 30px;
    }
  }
  /************* 22. Payments Page **********/
  .paymentsContainer{
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.paymentsCard, .paymentSuccessful, .paymentFailure{
  /* position: absolute;
  top: calc(50% - 60px); */
  background-color: white;
  height: auto;
  width: 32%;
  border-radius: 5px;
  padding: 20px;
  margin: 10px 5px;
  border: 1px solid grey;
}
.makePayments{
  padding: 10px 0px;
}
.makePayments p{
  font-size: 20px;
}
.batchCard{
  height: auto;
}
.batchCard p{
  font-size: 14px !important;
}
.btnContainer{
  display: flex;
}
.btnContainer button{
  margin: auto;
  color: #ffffff !important;
  min-width: 100px !important;
  width: auto !important;
  text-align: center;
  height: 35px;
  background-color: #1c3f90;
  border: none;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.75);

}
.paymentSuccessful{
  padding: 30px !important;
}
.successMessage{
  text-align: center; 
}
.successMessage span{
  color: #3f51b5 !important;
  font-size: 16px;
  font-family: Roboto;
}
.paymentFailure{
  padding: 40px 0px !important;
}
.failureMessage p{
  text-align: center;
  color: red;
}
.paymentFailure button{
  width: 125px !important;
  font-family: Roboto;
  background-color: #1c3f90;
  border: none;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.75);
}

/************* Company Rank Page **********/
.radioBtnGrp {
  list-style-type: none;
  padding: 0;
}
.radioBtnGrp li {
  float: left;
  width: 43px;
  height: 40px;
  position: relative;
}
.radioBtnGrp label, .radioBtnGrp input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.radioBtnGrp input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
}
.radioBtnGrp input[type="radio"]:checked + label {
  background: #1c3f90;
  color: #ffffff;
}
.radioBtnGrp label {
  padding: 8px;
  border: 1px solid #CCC; 
  cursor: pointer;
  z-index: 90;
}
.radioBtnGrp label:hover {
  background: #DDD;
}
.select-period{
  width: 100px !important;
}
#sliderPrice, #sliderValue {
    z-index: 4800 !important;
}
/************* Powered By Section**********/
.footer-text{
  float: right;
  font-size: 13px;
  line-height: 20px;
  color: #797979;
  font-family: Roboto;
  margin-top: 65px;
}

/************* 23. Advisor Portfolio **********/
.clearfix:after{
  display: block;
  content: "";
  clear: both;  
}
.batch-container{
  display: flex;
}
#batch-button{
  width: 150px !important;
  text-align: left;
  border-radius: 5px;
}
#batch-button span{
  position: absolute;
  top: 15px;
  right: 10px;
}
.subscribeBtn{
  height: 36px;
  margin: 0px 5px;
}
.subscribeBtn:hover{
  background-color: #ffffff !important;
}
.rateAdvisor{
  background-color: #ffffff !important;
  color: #3f51b5 !important;
  min-width: 100px !important;
  width: 100px;
  text-align: center;
  border: 1px solid #ccc;
  color: #333 !important;
  border-radius: 5px;
  margin: 0px 5px;
}
.rateAdvisor:hover{
  background-color: #e6eaed !important;
  border: 1px solid #adadad !important;
}
.advisor-feedback textarea{
  width: 303px;
  max-width: 303px;
  min-width: 303px;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
}
#send-rating{
  margin: auto;
  display: block;
}
/* Stars CSS */
/* Rating Star Widgets Style */
.rating-stars ul {
  list-style-type:none;
  padding:0;
  -moz-user-select:none;
  -webkit-user-select:none;
}
.rating-stars ul > li.star {
  display:inline-block;
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size:2.5em; /* Change the size of the stars */
  color:#ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color:#FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color:#FF912C;
}
.success-box{
  height: 30px;
}
#subscribe-to-batch{
    background-color: #1c3f90 !important;
}
#subscribe-to-batch a{
    color: #ffffff;
}

/************* Company detail page **********/
.bannerAdClass {
	width: 100%;
    height: 150px;
    background-image: url(../img/Ban.jpg);
    background-position: center center;
    background-size: cover;
    display: inline-block;
    margin: 10px 0px 20px;
}
.squareAdClass {
	width: 100%;
    height: 450px;
    background-image: url(../img/ban2.jpg);
    background-position: center center;
    background-size: cover;
    display: inline-block;
}
.graphBtnClass {
	padding: 20px 20px 10px;
}
.graphBtnClass i {
	padding-right: 5px;
    font-size: 11px;
}
.graphBtn {
    color: #3f51b5 !important;
    border: 2px solid #3f51b5;
    padding: 3px 30px;
    background-color: #fff;
    border-radius: 4px;
    font-size: 13px;
}
.captureImgClass {
    padding: 7px 7px 7px 10px;
    display: inline-block;
    box-shadow: 0 1px 3px 0px rgba(0,0,0,0.3);
    margin-left: 10px;
    cursor: pointer;
}
.captureImgClass i {
    font-size: 20px;
    color: #7373b7;
    opacity: .7;
}
.captureImgClass:hover i {
    opacity: 1;
}
#chart_div > div > div.amChartsLegend.amcharts-legend-div {
    display: none !important;
}
.compActionBtn {
	color: #1c3f90 !important;
    padding: 6px 30px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}
.compActionBtn:hover {
	color: #fff !important;
	background-color: #1c3f90 !important;
}
.ui-widget.ui-widget-content {
	z-index: 5000;
}
.headerLoginBtn {
	color: #1c3f90 !important;
    padding: 6px 50px;
    background-color: #fff;
    font-size: 13px;
    font-weight: 700;
    float: right;
    margin: 8px;
}
#register .form-content .tabbable-panel .nav-tabs {
    border: none;
    display: inline-block;
    margin: 0 0 0 -35px;
}
#register .form-content .tabbable-panel .nav-tabs li a {
    border: none;
    font-size: 17px;
    padding: 10px 43px;
    background: transparent;
    position: relative;
    margin: 0;
    cursor: pointer;
    display: block;
    z-index: 999;
}
#register .form-content .tabbable-panel .nav-tabs li {
    position: relative;
    overflow: hidden;
}
#register .form-content .tabbable-panel .nav-tabs li:first-of-type::after {
    content: '';
    right: -50%;
    position: absolute;
    top: 27%;
    height: 22px;
    width: 96px;
    background: #46c5fd;
    border-radius: 50px;
    overflow: hidden;
}
#register .form-content .tabbable-panel .nav-tabs li:first-of-type.active::before {
    content: '';
    right: 4px;
    position: absolute;
    top: 36%;
    height: 14px;
    width: 14px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    z-index: 9;
    transition:1s;
}
#register .form-content .tabbable-panel .nav-tabs li:last-of-type.active::before {
    content: '';
    left: 8px;
    position: absolute;
    top: 36%;
    height: 14px;
    width: 14px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    z-index: 9;
    transition:1s;
}
#register .form-content .tabbable-panel .nav-tabs li:last-of-type::after {  
    content: '';
    left: -50%;
    position: absolute;
    top: 27%;
    height: 22px;
    width: 96px;
    background: #46c5fd;
    border-radius: 50px;
    overflow: hidden;
}
.compReportIcon {
    background-color: #3f51b514;
    float: left;
    width: 25%;
    padding: 22px;
}
.compReportIcon i {
    font-size: 40px;
}
.compReportClass {
    background-color: #fff;
    padding: 10px;
    float: left;
    width: 75%;
    min-height: 84px;
}
.compReportClass a {
    color: #337ab7 !important;
}
.compReportClass span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.compReportSpan {
    height: 36px;
    color: #797979;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.compReportSpan a{
    color: #797979 !important;
}
.compReportClass a:hover, .compReportSpan a:hover {
    color: #23527c !important;
    text-decoration: underline !important;
}
.compReportLink {
    margin-top: 10px;
    font-size: 13px;
    color: #797979 !important;
}
.compReportLink a:hover {
    color: #337ab7;
}
.dbLoginBtnCont {
    position: absolute;
    right: 0;
}
.dbLoginBtnCont a {
    padding: 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    line-height: 48px;
}
.dbLoginBtnCont i {
    color: #ffffff;
}
#header-link-cont a:hover {
    text-decoration: underline;
}
.morecontent span {
    display: none;
}
.morelink:hover {
    color: #23527c;
    text-decoration: underline;
}
@media screen and (min-width: 981px) {
    #header-button-cont {
        display: none;
    }
}
@media screen and (max-width: 980px) {
    #header-link-cont {
        display: none;
    }
}

/************* Index page **********/
#index_chart_div {
    width: 100%; 
    height: 280px;
    padding: 0;
}
@media screen and (max-width: 700px) {
    #index_chart_div {
        height: 300px;
    }
    #index_chart_div_AnnotationChart_zoomControlContainer, 
    #index_chart_div_AnnotationChart_legendContainer {
        display: block;
    }
}

/************* Customer page **********/
.floatingCont {
    position: fixed;
    right: 25px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background-color: #1c3f90;
    border-radius: 50%;
    cursor: pointer;
}
.floatingCont .plusClass {
    font-size: 25px;
    padding: 13px 15px;
    color: #ffffff;
}
.dbInput {
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.disabledClick {
    pointer-events: none;
    opacity: 0.4;
}

/************* Subscription page **********/
.subsTitle {
    color: #444;
    display: inline-block;
}
.subsBasic, .subsPro, .subsFund {
    border: 1px solid #dcdcdc;
    box-shadow: 10px 0 10px -10px #ddd;
    -moz-box-shadow: 10px 0 10px -10px #ddd;
    -webkit-box-shadow: 10px 0 10px -10px #ddd;
    background-color: #fff;
    padding: 10px 15px;
}
.subsAdv {
    border: 1px solid #dcdcdc;
    background-color: #fff;
    padding: 10px 15px;
}
.subsPrice {
    font-size: 20px;
    font-weight: 700;
    color: #32a2d0;
}
.subsBtn {
    display: flex;
    margin: 25px;
}
.subsBtn button {
    border: 1px solid #1c3f90;
    border-radius: 2px;
    min-width: 150px;
    color: #1c3f90;
    background-color: #fff;
    margin: auto;
    text-align: center;
    height: 40px;
}
.subsBtn button:hover {
    color: #fff;
    background-color: #1c3f90;
}
.subsPoint {
    color: #444;
    text-align: center;
    margin: 10px 0;
    font-weight: 700;
}
.subsDetail {
    line-height: 24px;
    padding-left: 20px;
}
@media screen and (min-width: 767px) {
    .subsTitle {
        min-height: 38px;
    }
}
/* 24) Coupons */ 

.coupon-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.coupon-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.coupon-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.coupon-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .coupon-slider {
  background-color: #1c3f90;
}

input:checked + .coupon-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.coupon-slider.coupon-round {
  border-radius: 24px;
}

.coupon-slider.coupon-round:before {
  border-radius: 50%;
}
.subs-cards-container{
  display: flex;
  justify-content: space-evenly;
}
.paymentSubscription{
  background-color: white;
  height: auto;
  width: 400px;
  border-radius: 5px;
  padding: 20px 10px;
  margin: 10px 5px;
  border: 1px solid grey;
}
.coupon-add-area .btn{
  margin: 5px auto;
}
.coupon-remove-area label{
  color: #1c3f90;
  font-size: 13px;
}
.coupon-remove-area .coupon-code-applied{
  font-size: 15px;
}
.coupon-remove-area .btn{
  padding: 2px 2px;
  font-size: 15px;
  margin-left: 20px;
  background-color: transparent;
  color: #cb2a2a;
}