@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham-Bold/gothambold.eot');
  src: local('gothambold'), url('../fonts/Gotham-Bold/gothambold.woff') format('woff'), url('../fonts/Gotham-Bold/gothambold.ttf') format('truetype');
}

@font-face {
  font-family: 'Gotham-Book';
  src: url('../fonts/Gotham-Book/Gotham-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Book/Gotham-Book.otf') format('opentype'),
    url('../fonts/Gotham-Book/Gotham-Book.woff') format('woff'), url('../fonts/Gotham-Book/Gotham-Book.ttf') format('truetype'), url('../fonts/Gotham-Book/Gotham-Book.svg#Gotham-Book') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Light';
  src: url('../fonts/Gotham-Light/Gotham-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Light/Gotham-Light.otf') format('opentype'),
    url('../fonts/Gotham-Light/Gotham-Light.woff') format('woff'), url('../fonts/Gotham-Light/Gotham-Light.ttf') format('truetype'), url('../fonts/Gotham-Light/Gotham-Light.svg#Gotham-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Bold';
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-ExtraBold';
  src: url('../fonts/OpenSans/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Light';
  src: url('../fonts/OpenSans/OpenSans-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-SemiBold';
  src: url('../fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  height: auto;
}

.table-hover>tbody>tr:hover {
  background-color: #FFFFFF20 !important;
}

body {
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'OpenSans-Regular';
  background-color: #eef2f5;
  color: #575757;
  position: relative;
}

.main_body {
  width: 100%;
  height: auto;
  /*z-index: 0;*/
  position: relative;
  background-color: #fff;
}

.main_header {
  background-color: #fff;
  position: relative;
  z-index: 1045;
}

.logo_wrap {
  width: 100%;
  position: relative;
}

.logo_wrap img {
  max-height: 80px;
  /*max-height: 45px;*/
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

.main_header ul li>a {
  /*padding-left: 35px;*/
  padding: 0 0px 0 50px;
  /*padding: 0 15px 0 50px;*/
  position: relative;
  color: #00336a;
  text-transform: uppercase;
  font-family: "OpenSans-Bold";
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.main_header ul li {
  margin-left: 15px;
  display: inline-block;
}

.main_header ul li>a:hover,
.main_header ul li.active>a {
  color: #019CDE;
}

.main_header ul li>a:before {
  position: absolute;
  content: "";
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.main_header ul li>a.login:before {
  background-image: url(../images/icons/user.png);
}

.main_header ul li>a.login:hover:before,
.main_header ul li.active>a.login:before {
  background-image: url(../images/icons/user_hover.png);
}

.main_header ul li>a.logout:before {
  background-image: url(../images/icons/logout.png);
}

.main_header ul li>a.logout:hover:before,
.main_header ul li.active>a.logout:before {
  background-image: url(../images/icons/logout_hover.png);
}

.nav_height {
  height: 80px;
  position: relative;
}

.nav_warp ul {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.blue_bg {
  background-color: #00336a;
}

.blue_font {
  color: #00336a;
}

.blue_font.hover:hover {
  color: #019CDE;
}

.sticky_nav_bar {
  height: 50px;
  z-index: 0;
}

.sticky_nav_bar ul li {
  display: inline-block;
  /*margin-right: 30px;*/
  margin-right: 8px;
}

.sticky_nav_bar ul li a,
.sticky_nav_bar .right_anchor {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 0 10px;
  line-height: 50px;
  height: 50px;
  font-family: "OpenSans-SemiBold";
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}

.transition {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.sticky_nav_bar ul li a:after {
  position: absolute;
  content: "";
  left: 50%;
  top: calc(100% - 3px);
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  border-radius: 5px;
  background-color: #a3fd9d;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.sticky_nav_bar ul li:hover a:after,
.sticky_nav_bar ul li.active a:after {
  width: 100%;
  left: 0;
}

.sticky_nav_bar ul li:hover a,
.sticky_nav_bar ul li.active a {
  color: #a3fd9d;
}

.banner_warp {
  height: 500px;
  width: 100%;
  background-color: #fff;
  position: relative;
  /* background-image: url(../images/banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;*/
}

.banner_image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner_image.slide1 {
  background-image: url(../images/Banner1.jpg);
  /*background-image: url(../images/slide1.jpg);*/
}

.banner_image.slide2 {
  background-image: url(../images/Banner2.jpg);
  /*background-image: url(../images/slide2.jpg);*/
}

.banner_image.slide3 {
  background-image: url(../images/Banner4.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.slide4 {
  background-image: url(../images/Banner3.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.slide5 {
  background-image: url(../images/Banner5.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.slide6 {
  background-image: url(../images/Banner6.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.slide7 {
  background-image: url(../images/Banner7.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.slide8 {
  background-image: url(../images/Banner8.jpg);
  /*background-image: url(../images/slide3.jpg);*/
}

.banner_image.contact_us_banner {
  background-image: url(../images/Contact.jpg);
  height: 100%;
}

.banner_image.join_us_banner {
  background-image: url(../images/Join_us.jpg);
  height: 100%;
}

.homeswiper,
.swiper-container {
  height: 100%;
}

.font_10 {
  font-size: 10px;
}

.font_12 {
  font-size: 12px;
}

.font_14 {
  font-size: 14px;
}

.font_16 {
  font-size: 16px;
}

.font_18 {
  font-size: 18px;
}

.font_20 {
  font-size: 20px;
}

.font_32 {
  font-size: 32px;
}

.font_40 {
  font-size: 40px;
}

.light_font {
  font-family: "OpenSans-Light";
}

.bold_font {
  font-family: "OpenSans-Bold";
}

.semibold_font {
  font-family: "OpenSans-SemiBold";
}

.white_font {
  color: #fff;
}

.green_font {
  color: #019CDE;
}

.error-label {
  color: #ff0011;
}

.uppercase {
  text-transform: uppercase;
}

.banner_warp .container {
  height: 100%;
  position: relative;
}

.banner_text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
}

.availability_div {
  height: 80px;
  line-height: 80px;
  background-color: #019CDE;
  color: #fff;
  padding: 0 60px;
  position: absolute;
  top: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.availability_div:hover,
.availability_div:focus {
  background-color: #00336a;
  color: #fff;
}

.about_block {
  background-color: #fff;
  width: 100%;
}

.pt100 {
  padding-top: 100px;
}

.font_42 {
  font-size: 46px;
}

.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.gray_font {
  color: #3c4e5c;
}

.w75 {
  width: 77%;
  margin: auto;
}

.p0 {
  padding: 0 !important;
}

.login_box {
  position: absolute;
  background: #fff;
  right: -30px;
  width: 386px;
  top: calc(100% + 29px);
  border: 3px solid #019CDE;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.login_box.open {
  height: 350px;
  /*overflow:unset;*/
  opacity: 1;
  visibility: visible;
}

.login_box.opened {
  height: auto;
}

.login_form {
  position: relative;
  padding: 30px;
  /*opacity: 0;*/
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}


.login_box.open .login_form {
  /*opacity: 1;*/
}

.login_menu:after {
  /*position: absolute;
  content: "";
  top: -20px;
  right: 50px;
  border-bottom: 20px solid #019CDE;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;*/

  position: absolute;
  content: "";
  top: calc(100% + 9px);
  right: 30px;
  border-bottom: 0px solid #019CDE;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.login_menu.active:after {
  border-bottom: 20px solid #019CDE;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
}

label {
  color: #434343;
  font-size: 14px;
  margin-bottom: 15px;
}

.login_form_Wrap .form-control {
  border: 2px solid transparent;
  box-shadow: unset;
  line-height: 40px;
  height: 40px;
  background-color: #eaeff2;
  border-radius: unset;
}

.login_form_Wrap .form-control:focus {
  background-color: #fff;
  border-color: #019CDE;
}

.mt20 {
  margin-top: 20px;
}

label.error,
i.error {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: normal;
  font-style: normal;
  color: #ff0011;
}

.error {}

.btn-green {
  background-color: #019CDE;
  color: #fff;
  /*line-height: 1.8;*/

}

.btn-gray {
  background-color: #000;
  color: #fff !important;
  line-height: 1.8;

}

.btn-padded {
  padding: 6px 25px;
}

.btn-padded-large {
  padding: 10px 50px;
}

.btn-padded-medium {
  padding: 10px 30px;
}

.lightgray_font {
  color: #abadb2;
}

.fp_link {
  display: inline-block;
  margin-top: 5px;
}

.mb20 {
  margin-bottom: 20px;
}

.overlay {
  width: 100vw;
  height: calc(100vh - 50px);
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 50px;
  position: fixed;
  z-index: 1039;
  display: none;
  transition: all 0.5 ease-in-out;
}

.eagent .overlay {
  height: 100vh;
  top: 0;

}

.menu_overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  display: none;
  transition: all 0.5 ease-in-out;
}



.btn-green:hover,
.btn-green:focus {
  background-color: #00336a;
  color: #fff;
  outline: unset;
}

.btn-gray:hover,
.btn-gray:focus {
  background-color: transparent;
  color: #000 !important;
  border-color: #000;
  outline: unset;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: unset;
  outline-offset: unset;
}

.green_bg {
  background-color: #019CDE;
  line-height: 50px;
}

.lh50 {
  line-height: 50px;
}

.price_finder_bg {
  width: 100vw;
  /*width: 100%;*/
  min-height: calc(100vh - 180px);
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-color: #242424;
}

.eagent .price_finder_bg {
  padding-top: 141px;
  min-height: calc(100vh - 168px);
}

/*.price_finder_bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
}
*/
.bg_overlay {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 180px);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

.price_finder_bg.resetPwdPage .white_bg {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.mt50 {
  margin-top: 50px;
}

.mt100 {
  margin-top: 80px;
}

.w40 {
  width: 40%;
  margin: auto;
}

.w55 {
  width: 50%;
  margin: auto;
}

.has-success .input-group-addon {
  color: #fff;
  background-color: #019CDE;
  border-color: #019CDE;
}

.input-group,
.input-group .form-control {
  height: 45px;
  color: #818184;
  font-weight: normal;
  font-family: "OpenSans-SemiBold";
}

.input-group {
  width: 100%;
}

.mt30 {
  margin-top: 30px;
}

.has-success .form-control {
  border-color: transparent;
}

.input-group-addon {
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50px;
}

.input-group-addon.state {
  background-image: url('../images/icons/state.png');
}

.input-group-addon.auth_agent {
  background-image: url('../images/icons/auth_agent.png');
  background-size: 28px;
}

.input-group-addon.commodity {
  background-image: url('../images/icons/commodity.png');
}

.input-group-addon.utility {
  background-image: url('../images/icons/utility.png');
}

.input-group-addon.usage {
  background-image: url('../images/icons/energy.png');
  background-size: 25px;
}

.input-group-addon.date {
  background-image: url('../images/icons/date.png');
}

.input-group {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  font-weight: normal;
  font-family: "OpenSans-SemiBold";
  font-size: 14px;
  margin: 15px auto;
}

.md-button.md-icon-button {
  display: none;
  width: 0;
}

.md-datepicker-input-container {
  width: 100%;
  margin-left: 0;
  border: unset;
  padding: 0 15px;
}

.md-datepicker-input-container input {
  line-height: 1.2;
  width: 100%;
  color: #818184;
  font-family: "OpenSans-SemiBold";
}


.md-datepicker-input-container input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #818184;
  font-family: "OpenSans-SemiBold";
}

.md-datepicker-input-container input::-moz-placeholder {
  /* Firefox 19+ */
  color: #818184;
  font-family: "OpenSans-SemiBold";
}

.md-datepicker-input-container input:-ms-input-placeholder {
  /* IE 10+ */
  color: #818184;
  font-family: "OpenSans-SemiBold";
}

.md-datepicker-input-container input:-moz-placeholder {
  /* Firefox 18- */
  color: #818184;
  font-family: "OpenSans-SemiBold";
}

.op9 {
  opacity: 0.8;
}

.input-group label.error,
.input-group i.error {
  position: absolute;
  top: calc(100% + 2px);
  left: 50px;
  font-size: 12px;
}

.plan_wrapper {
  width: 100%;
  min-height: 60vh;
  /*background-color: rgba(255,255,255,0.2);*/
  background-color: #fff;
}

.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mtb50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mtb70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.plan_steps li {
  display: inline-block;
  margin: 0 15px;
  text-align: center;
  width: 90px;
  /*width: 80px;*/
}

.plan_steps li span {
  display: block;
}

.font_60 {
  font-size: 60px;
}

.font_white {
  color: #fff;
}

.plan_steps li span.white_font {
  color: #afafb1;
}

.plan_steps li .prev_span {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  background-color: #fff;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  position: relative;
  border: 1px solid #afafb1;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.plan_steps li.active .prev_span,
.plan_steps li a:hover .prev_span {
  background-color: #019CDE;
  border: 1px solid #019CDE;
}

.dashboardPage .plan_steps li.active .prev_span,
.plan_steps li a:hover .prev_span {
  background-color: #00336a;
  border: 1px solid #00336a;
}

.dashboardPage .plan_steps li span.white_font {
  color: #fff;
}

.dashboardPage .plan_steps li.active .white_font,
.dashboardPage .plan_steps li a:hover .white_font {
  color: #00336a;
}

.plan_steps li.active .white_font,
.plan_steps li a:hover .white_font {
  color: #019CDE;
}

.plan_steps li .prev_span.step1 {
  background-image: url("../images/icons/checkout_step_1.png");
}

.plan_steps li .prev_span.step2 {
  background-image: url("../images/icons/checkout_step_2.png");
}

.plan_steps li .prev_span.step3 {
  background-image: url("../images/icons/checkout_step_3.png");
}

.plan_steps li.active .prev_span.step1 {
  background-image: url("../images/icons/checkout_step_1_active.png");
}

.plan_steps li.active .prev_span.step2,
.plan_steps li a:hover .prev_span.step2 {
  background-image: url("../images/icons/checkout_step_2_active.png");
}

.plan_steps li.active .prev_span.step3 {
  background-image: url("../images/icons/checkout_step_3_active.png");
}

.plan_steps li .prev_span.notifications {
  background-image: url("../images/icons/account_notification.png");
}

.plan_steps li.active .prev_span.notifications,
.plan_steps li a:hover .prev_span.notifications {
  background-image: url("../images/icons/account_notification_active.png");
}

.plan_steps li .prev_span.accounts {
  /*background-size: 24px;*/
  background-image: url("../images/icons/account_deals.png");
}

.plan_steps li.active .prev_span.accounts,
.plan_steps li a:hover .prev_span.accounts {
  background-image: url("../images/icons/account_deals_active.png");
  /*background-image: url("../images/icons/account_meters_active.png");*/
}

.plan_steps li .prev_span.deals {
  background-size: 26px;
  background-image: url("../images/icons/renewals.png");
}

.plan_steps li.active .prev_span.deals,
.plan_steps li a:hover .prev_span.deals {
  background-image: url("../images/icons/renewals_active.png");
}

.main_header ul li>a.notifications {
  position: relative;
  width: 25px;
  height: 25px;
}

.main_header ul li>a.notifications:before {
  background-image: url("../images/icons/account_notification.png");
}

.main_header ul li>a.notifications:hover:before {
  background-image: url("../images/icons/account_notification_green.png");
}


.plan_steps li .prev_span:after {
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  width: 40px;
  /*width: 38px;*/
  /*background: #afafb1;*/
  background: #e6e6e6;
  opacity: 0.7;
  content: "";
  height: 1px;
}

.plan_steps li .prev_span:before {
  position: absolute;
  top: 50%;
  /*left: -38px;
  width: 38px;*/
  left: -45px;
  width: 44px;
  /*background: #afafb1;*/
  background: #e6e6e6;
  opacity: 0.7;
  content: "";
  height: 1px;
}


.plan_steps li:first-child .prev_span:before,
.plan_steps li:last-child .prev_span:after {
  background: transparent;
}

.plan_price {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  position: relative;
}

.plan_content {
  width: 100%;
  position: relative;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}


.yellow_bg,
.plan_list_wrap .swiper-slide:nth-child(2n - 1) .round_bg {
  background-color: #f7b427;
}

.red_bg,
.plan_list_wrap .swiper-slide:nth-child(2n) .round_bg {
  background-color: #f08865;
}

.light_green_bg,
.plan_list_wrap .swiper-slide:nth-child(3n) .round_bg {
  background-color: #019CDE;
}

.sky_blue_bg,
.plan_list_wrap .swiper-slide:nth-child(4n) .round_bg {
  background-color: #55aae0;
}

.planSwiper .plan_box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  min-height: 320px;
  margin: 10px;
  border-radius: 4px;
  /*border: 3px solid transparent;*/
}

.planSwiper .plan_box:hover {
  border: 3px solid #019CDE;
}

.planSwiper .plan_box:hover .month_header {
  background-color: rgba(68, 173, 70, 1)
}

.month_header {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 800;
  color: #000;
  background-color: rgba(68, 173, 70, 0.4)
}

.rate_price_font {
  margin: 50px auto 0px;
  font-size: 30px;
  font-weight: 800;
  color: #00336a;
}

.uom_rate {
  font-size: 14px;
  color: #000;
  margin-bottom: 50px;
}

.btn-plan-selection {
  background-color: #00336a;
  font-size: 14px !important;
  text-transform: unset;
  padding: 10px 30px;
  border-radius: 25px;
  color: #fff;
}

.btn-plan-selection:hover {
  color: #fff;
  background-color: #019CDE;
}

/*
.plan_list_wrap ks-swiper-slide:nth-child(2n - 1) .round_bg{
  background-color: #f7b427;
}*/

.btn-yellow,
.plan_list_wrap .swiper-slide:nth-child(2n - 1) .btn-coloured {
  background: #f7b427;
  color: #fff;
  border: 2px solid #f7b427;
}

.btn-yellow:hover,
.plan_list_wrap .swiper-slide:nth-child(2n - 1) .btn-coloured:hover {
  border-color: #fff;
  color: #fff;
  opacity: 0.8;
}

.btn-red,
.plan_list_wrap .swiper-slide:nth-child(2n) .btn-coloured {
  background: #f08865;
  color: #fff;
  border: 2px solid #f08865;
}

.btn-red:hover,
.plan_list_wrap .swiper-slide:nth-child(2n) .btn-coloured:hover {
  border-color: #fff;
  color: #fff;
  opacity: 0.8;
}

.btn-sky_blue,
.plan_list_wrap .swiper-slide:nth-child(4n) .btn-coloured {
  background: #55aae0;
  color: #fff;
  border: 2px solid #55aae0;
}

.btn-sky_blue:hover,
.plan_list_wrap .swiper-slide:nth-child(4n) .btn-coloured:hover {
  border-color: #fff;
  color: #fff;
  opacity: 0.8;
}

.btn-light_green,
.plan_list_wrap .swiper-slide:nth-child(3n) .btn-coloured {
  background: #019CDE;
  color: #fff;
  border: 2px solid #019CDE;
}

.btn-light_green:hover,
.plan_list_wrap .swiper-slide:nth-child(3n) .btn-coloured:hover {
  border-color: #fff;
  color: #fff;
  opacity: 0.8;
}


.planSwiper .swiper-container {
  min-height: 380px;
  margin: 20px auto;
}

.plan_content span {
  display: block;
}

.font_22 {
  font-size: 22px;
}

.font_24 {
  font-size: 24px;
}

.font_26 {
  font-size: 26px;
}

.font_28 {
  font-size: 28px;
}

.plan_list_wrap {
  padding: 0 150px 0px;
  /*padding:0 150px 100px; */
}

.plan_list_wrap .border-right {
  position: relative;
}

.plan_list_wrap .row {
  height: 350px;
}

.plan_list_wrap .border-right:after {
  position: absolute;
  left: 100%;
  height: 80%;
  top: 10%;
  width: 1px;
  background-color: #fff;
  content: "";
}

.mb10 {
  margin-bottom: 10px;
}

.plan_list_wrap .yellow_block a.white_font:hover,
.plan_list_wrap .swiper-slide:nth-child(2n - 1) a.white_font:hover {
  color: #f7b427;
  opacity: 1;
}

.plan_list_wrap .red_block a.white_font:hover,
.plan_list_wrap .swiper-slide:nth-child(2n) a.white_font:hover {
  color: #f08865;
  opacity: 1;
}

.plan_list_wrap .light_green_block a.white_font:hover,
.plan_list_wrap .swiper-slide:nth-child(3n) a.white_font:hover {
  color: #019CDE;
  opacity: 1;
}

.plan_list_wrap .sky_blue_block a.white_font:hover,
.plan_list_wrap .swiper-slide:nth-child(4n) a.white_font:hover {
  color: #55aae0;
  opacity: 1;
}


.white_bg {
  background-color: #fff;
  /* border:1px solid #019CDE; */
}

.form_container {
  padding: 0 100px 100px;
}

.signupPage .form_container {
  padding: 0 100px 70px;
}

.pt50 {
  padding-top: 50px;
}

.pb30 {
  padding-bottom: 30px
}

.mb50 {
  margin-bottom: 50px;
}

.checkoutPage .form-control {
  line-height: 50px;
  height: 50px;
  border-radius: 0;
  border: 1px solid #afafb1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;

}

.select_line .form-control {
  line-height: 1;

}

.checkoutPage input[type="text"] {
  text-transform: capitalize;
}

.capitalize {
  text-transform: capitalize;
}

.checkoutPage textarea.form-control {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

.checkoutPage input[name="email_id"] {
  text-transform: unset;
}

.checkoutPage input:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3c4e5c;
  font-weight: 500;
}

.checkoutPage input:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #3c4e5c;
  font-weight: 500;
}

.checkoutPage input:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #3c4e5c;
  font-weight: 500;
}

.checkoutPage input:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #3c4e5c;
  font-weight: 500;
}

.checkoutPage .form-control:focus {
  box-shadow: unset;
  border: 1px solid #3c4e5c;
}

.checkoutPage .form-group {
  margin-bottom: 20px;
}

.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
  margin-left: 0;
}



.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 22px;
  color: #afafb1;
}

.checkbox label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 6px;
  margin-left: 0;
  border: 2px solid #afafb1;
  border-radius: 3px;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  background-color: #fff;
}

.checkbox input[type="checkbox"]:checked+label:before,
.checkbox input[type="radio"]:checked+label:before {
  background-color: #fff;
  border-color: #afafb1;
}

.checkbox label:after {
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 0;
  margin-left: 0;
  padding-left: 2px;
  padding-top: 0;
  margin-top: 0;
  font-size: 12px;
}

.checkbox input[type="checkbox"]:checked+label:after,
.checkbox input[type="radio"]:checked+label:after {
  font-family: "FontAwesome";
  content: "\f00c";
  color: #019CDE;
}

.btn-prev,
.btn-next {
  /*height: 70px;
  width: 70px;
  line-height: 70px;*/

  height: 50px;
  width: 130px;
  line-height: 50px;


  color: #fff !important;
  text-align: center;
  background-color: #003551;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70px;
  border: 1px solid #cdcdce;
}

.btn-prev:hover,
.btn-prev:focus,
.btn-next:hover,
.btn-next:focus {
  background-color: #019CDE;
  outline: unset;
}


.btn-prev[disabled],
.btn-next[disabled],
.btn-prev[disabled]:hover,
.btn-next[disabled]:hover,
.btn-prev[disabled]:focus,
.btn-next[disabled]:focus {
  cursor: no-drop;
  background-color: #ddd;
}

.btn-prev {
  /*background-image: url("../images/icons/prev.png");*/
}

.btn-prev:hover,
.btn-prev:focus {
  color: #FFF;
  /*background-image: url("../images/icons/prev_hover.png");*/
}

.btn-next {
  /*background-image: url("../images/icons/next.png");*/
}

.btn-next:hover,
.btn-next:focus {
  color: #FFF;
  /*background-image: url("../images/icons/next_hover.png");*/
}


.btn-prev[disabled]:hover,
.btn-prev[disabled]:focus {
  /*background-image: url("../images/icons/prev.png");*/
}

.btn-next[disabled]:hover,
.btn-next[disabled]:focus {
  /*background-image: url("../images/icons/next.png");*/
}


.form_pagging {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 50px;
  /*height: 70px;*/
}

.page_labels {
  width: calc(100% - 140px);
  line-height: 70px;
}

.query_label {
  position: absolute;
  right: 15px;
  top: 25px;
  transform: translateY(-50%);
}

.mb30 {
  margin-bottom: 30px;
}

.footer {
  background-color: #242424;
  color: #fff;
}

.ptb70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer ul li {
  padding: 5px;
  /*border-bottom: 1px dotted rgba(255,255,255,0.3);*/
}

.footer ul li:last-child {
  border-bottom: unset;
}

/* .footer ul li a {
  color: #fff;
  text-transform: uppercase;
} */
/* .footer a {
  color: #fff;
} */

.footer a:hover,
.footer li.active a {
  color: #019CDE;
}

.follow_links li {
  display: inline-block;
  margin-right: 2px;
}

.follow_links li a {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border: 1px solid #fff;
}

.follow_links li a:hover {
  border: 1px solid #019CDE;
  background-color: #019CDE;
  color: #fff;
}

.footer_strip {
  background-color: #39393a;
  height: 50px;
  width: 100%;
}

.footer_strip p {
  line-height: 50px;
  opacity: 0.7;
  margin-bottom: 0;
}

.body_content_wrap {
  min-height: 400px;
}

.wow {
  visibility: hidden;
}

.address_content {
  line-height: 30px;
}

.swiper-button-prev {
  background-image: url(../images/icons/left_blue.png);
  background-size: 32px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;

}

.swiper-button-next {
  background-image: url(../images/icons/right_blue.png);
  background-size: 32px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

/* .swiper-button-prev:hover, .supplier_swiper .swiper-button-prev  {
  background-image: url(../images/icons/left_hover.png);
}

.swiper-button-next:hover, .supplier_swiper .swiper-button-next  {
  background-image: url(../images/icons/right_hover.png);
} */

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.supplier_swiper .swiper-button-next {
  right: -4px;
}

.supplier_swiper .swiper-button-prev {
  left: -4px;
}


.supplier_swiper.eagentSwp .swiper-button-next {
  right: 25px;
}

.supplier_swiper.eagentSwp .swiper-button-prev {
  left: 25px;
}


.supplier_swiper .swiper-button-next:hover,
.supplier_swiper .swiper-button-prev:hover {}

.main_header ul li {
  position: relative;
}


.main_header ul li:before {
  position: absolute;
  content: "";
  background: #ddd;
  height: calc(100% + 10px);
  width: 1px;
  left: 0;
  top: -5px;
}

.main_header ul li.time_wrap:before,
.main_header ul li.temp_wrap:before {
  background: transparent;
}


.main_header ul li.time_wrap {
  margin-left: 5px;
  margin-right: 0px;
  border-left: 1px solid #ddd;
  padding: 0 5px;
}

.tab_pannel li {
  display: inline-block;
  width: 165px;
  text-align: center;
  padding: 12px 0px;
  font-family: "OpenSans-SemiBold";
  text-transform: uppercase;
}

.tab_pannel li a {
  color: #3c4e5c;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.tab_pannel {
  position: relative;
  width: 504px;
  margin: auto;
  margin-bottom: 80px;
}

.tab_pannel:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  background-color: #ddd;
  height: 3px;
  border-radius: 10px;
  width: 100%;
}

.tab_pannel:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  background-color: #019CDE;
  height: 3px;
  border-radius: 10px;
  width: 148px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.tab_pannel li:nth-child(1),
.tab_pannel li:nth-child(3) {
  width: 148px;
}

.tab_pannel li:nth-child(2) {
  width: 200px;
}

.tab_pannel.active1:after {
  left: 0px;
}

.tab_pannel.active2:after {
  left: 152px;
  width: 200px;
}

.tab_pannel.active3:after {
  left: 354px;
}

.tab_pannel li.active a {
  color: #019CDE;
}

.checkoutPage .form-control.upload_div {
  line-height: 36px;
  color: #999999;
}

.bill_listing li {
  padding: 9px 10px 9px 35px;
  /* background-position: left center; */
  background-repeat: no-repeat;
  background-size: 35px;
}

.bill_listing li.jpg_file {
  background-image: url(../images/icons/jpg_ext.png);
}

.bill_listing li.png_file {
  background-image: url(../images/icons/png_ext.png);
}

.bill_listing li.pdf_file {
  background-image: url(../images/icons/pdf_ext.png);
}

.bill_listing li.doc_file {
  background-image: url(../images/icons/doc_ext.png);
}

.bill_listing li.docx_file {
  background-image: url(../images/icons/docx_ext.png);
}


.bill_listing li.xls_file {
  background-image: url(../images/icons/xls_ext.png);
}

.bill_listing li.xlsx_file {
  background-image: url(../images/icons/xlsx_ext.png);
}

.folderLinks li a {
  display: inline-block;
  padding: 10px 10px 10px 35px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 30px;
}

.folderLinks li.jpg_file a {
  background-image: url(../images/icons/jpg_ext_grey.png);
}

.folderLinks li.png_file a {
  background-image: url(../images/icons/png_ext_grey.png);
}

.folderLinks li.pdf_file a {
  background-image: url(../images/icons/pdf_ext_grey.png);
}

.folderLinks li.doc_file a {
  background-image: url(../images/icons/doc_ext_grey.png);
}

.folderLinks li.docx_file a {
  background-image: url(../images/icons/docx_ext_grey.png);
}

.folderLinks li.xls_file a {
  background-image: url(../images/icons/xls_ext_grey.png);
}

.folderLinks li.folder_file a {
  background-image: url(../images/icons/folder.png);
}

.folderLinks li.jpg_file:hover a {
  background-image: url(../images/icons/jpg_ext.png);
}

.folderLinks li.png_file:hover a {
  background-image: url(../images/icons/png_ext.png);
}

.folderLinks li.pdf_file:hover a {
  background-image: url(../images/icons/pdf_ext.png);
}

.folderLinks li.doc_file:hover a {
  background-image: url(../images/icons/doc_ext.png);
}

.folderLinks li.docx_file:hover a {
  background-image: url(../images/icons/docx_ext.png);
}

.folderLinks li.xls_file:hover a {
  background-image: url(../images/icons/xls_ext.png);
}

.folderLinks li.folder_file:hover a {
  background-image: url(../images/icons/folder_green.png);
}

.folderIcon img {
  width: 60px;
}

.modal .modal-dialog {
  margin-top: 14%;
}

.plan_terms_conditions_modal .modal-body {
  max-height: 500px;
  overflow-y: auto;
}

.user_details_table {
  width: 60%;
  margin: 30px auto;
}

.user_details_table td {
  background-color: rgba(163, 163, 163, 0.1);
  /*color: #fff;*/
}

/*.info_tooltip_wrap {
    position: absolute;
    left: 100%;
    top: -200px;
    z-index: 2;
    height: 400px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 13px rgba(0,0,0,0.4);
    display: none;
}

.query_label.show_tooltip:hover + .info_tooltip_wrap {
    animation: fadeIn;
    animation-duration: 0.5s;
    display: block;
}
.info_tooltip, .info_tooltip img {
  height: 100%;
}

.info_tooltip {
  position: relative;
}

.info_tooltip:before, .info_tooltip:after {
    position: absolute;
    content: "";
    left: -17px;
    bottom: 162px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 17px solid rgba(0,0,0,0.2);
}

.info_tooltip:after {
    left: -15px;
    bottom: 164px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #fff;
}
*/



.info_tooltip_wrap {
  position: absolute;
  top: 40px;
  left: 100px;
  z-index: 3;
  width: 600px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.4);
  display: none;
  /*max-height: 500px;
    overflow: auto;*/
}

.accountInpt.open .info_tooltip_wrap {
  /*.accountInpt.open .query_label.show_tooltip.open + .info_tooltip_wrap {*/
  animation: fadeIn;
  animation-duration: 0.5s;
  display: block;
}

/*.query_label.show_tooltip:hover + .info_tooltip_wrap {
    animation: fadeIn;
    animation-duration: 0.5s;
    display: block;
}*/
.info_tooltip,
.info_tooltip img {
  min-width: 100%;
}

.info_tooltip img {
  max-width: 700px;
}

.info_tooltip {
  position: relative;
  max-height: 500px;
  overflow: auto;
}

.accountInpt {
  position: relative;
}

.accountInpt:before,
.accountInpt:after {
  position: absolute;
  content: "";
  bottom: 8px;
  right: 15px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 17px solid rgba(0, 0, 0, 0.2);
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  display: none;
}

.accountInpt:after {
  bottom: 6px;
  right: 17px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #fff;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}


.accountInpt.open:before,
.accountInpt.open:after {
  animation: fadeIn;
  animation-duration: 0.5s;
  display: block;
}

.removeIcon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #019CDE;
  color: #fff;
}

.removeIcon:hover {
  background-color: #00336a;
  color: #fff;
}

.upload_title {
  width: calc(100% - 22px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bill_name {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  color: #fff;
  display: none;
}

.verticle-center {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.business_block_wrap {
  background-color: #fff;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 380px;
  width: 100%;
  position: relative;
  overflow-y: hidden;
  text-align: left;

}

.business_block_hover {
  position: absolute;
  top: 90%;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 51, 106, 0.95);
  padding: 40px 40px 40px;
  transition: all 0.5s ease-in-out;
}

#supplier_access {
  background-image: url(../images/supplier_access.jpg);
}

#joe_online_portal {
  background-image: url(../images/online_portal.jpg);
}

#licenses {
  background-image: url(../images/licenses.png);
}

.business_block_hover .business_title {
  font-size: 150%;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.buisness_bottom_div .business_title {
  font-size: 120%;
  font-weight: 800;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.5s ease-in-out;
}

.business_block_wrap:hover .buisness_bottom_div {
  opacity: 0;
}

.business_block_wrap:hover .business_block_hover {
  top: 0;
  opacity: 1;
}

.buisness_bottom_div {
  background-color: #00336a;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
  width: 100%;
}

.gray_bg {
  /*background-color: #eee;*/
}

.pb70 {
  padding-bottom: 70px;
}

.content_ul {
  padding-left: 20px;
  margin-top: 25px;
}

.content_ul li {
  /* list-style-type: disc; */
  position: relative;
}

.border_div {
  border: 1px solid #afafb1;
  padding: 5px 0;
  background-color: #fff;
  /*margin-bottom: 20px;*/
}

.fix_height {
  height: 275px;
  overflow-x: hidden;
  overflow-y: auto;
}

.mt10 {
  margin-top: 10px;
}

.padded_border {
  border: 1px solid #ccc;
  background: #f3f3f3;
  /*border-radius: 15px;*/
  padding: 10px;
}

.meter_list {
  margin: 10px auto;
}

.fix_hgt {
  min-height: 450px;
}

.full_width_btn {
  width: 100%;
}

.section1 {
  width: 100%;
  min-height: calc(100vh - 50px);
  background-color: #5cc159;
  background-image: url(../images/About_Banner.jpg);
  background-position: 100% 100%;
  background-size: cover;
  /*background-attachment: fixed;*/
  background-repeat: no-repeat;
  padding-bottom: 120px;
}

.lh15 {
  line-height: 1.8em;
}

@keyframes downArrowAnimation {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 5px);
  }
}

.down_arrow_box {
  height: 70px;
  width: 70px;
  line-height: 70px;
  font-size: 30px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
}

.down_arrow_box i {
  animation: downArrowAnimation 1s ease-in-out infinite;
  margin-top: -5px;
}

/* .section2, .section3 {
  height: 592px;
} */
.section2 .row,
.section2 .col-md-6,
.section2 .sec_left,
.section3 .row,
.section3 .col-md-6,
.section3 .sec_right {
  height: 100%;
}

.section2 .sec_left,
.section3 .sec_right {
  width: 100%;
  height: 100%;
  background-image: url(../images/about1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section3 .sec_right {
  background-image: url(../images/about2.jpg);
}

.section2 .sec_right {
  padding-left: 70px;
  padding-right: 25%;
}

.section3 .sec_left {
  padding-right: 70px;
  padding-left: 25%;
}

.market_banner {
  height: 100%;
  width: 100%;
  background-image: url(../images/Market_Banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.form_wrap {
  width: 60%;
  margin: auto;
}

.zipcode_wrap {
  position: relative;
  background-color: transparent;
  border-radius: 12px;
  height: 70px;
}

.zipcode_wrap .zip_search {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: #019CDE;
  border-radius: 50%;
  left: -20px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
}

.zipcode_wrap input {
  background-color: #fff;
  border: unset;
  height: 100%;
  width: calc(100% - 150px);
  padding: 0px 40px;
  color: #000;
  font-size: 22px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  float: left;

}

.submit-zipbtn {
  background-color: #019CDE;
  text-align: center;
  height: 100%;
  line-height: 70px;
  width: 146px;
  color: #fff;
  border-top-left-radius: 0px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 0px;
  font-size: 18px;
  display: inline-block;
  float: left;
  cursor: pointer;
}

.submit-zipbtn:hover {
  background-color: #00336a;
  color: #fff;
}

.zipcode_wrap ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}

.zipcode_wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

.zipcode_wrap :-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}

.zipcode_wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

.form_wrap .text_wrap {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.marketing_wrap {
  width: 100%;
  /* background-color: #eef8ed;   */
  padding-top: 70px;
}


.market_container {
  margin: 0 70px;
  width: calc(100% - 140px);
  background-color: #fff;
  min-height: 80vh;
}

.mb70 {
  margin-bottom: 70px;
}

.state_selection {
  border: 2px solid #019CDE;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 18px;
  color: #019CDE;
  height: auto;
  -webkit-appearance: none;
  /* for webkit browsers */
  -moz-appearance: none;
  /* for firefox */
  appearance: none;
  /* for modern browsers */
  background-image: url(../images/icons/down-arrow.png);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 22px;
}

.state_selection:focus,
.state_selection:active {
  outline: unset;
  box-shadow: unset;
  border: 2px solid #00336a;
  color: #00336a;
  background-image: url(../images/icons/down-arrow-active.png);
}

.map_wrap img {
  max-width: 100%;
}

.indicator_box {
  height: 20px;
  width: 20px;
  border: 1px solid #aaa;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  top: 5px;
}

.map_title_wrap {
  width: 80%;
  margin: auto;
}

.rate_table table {
  font-size: 16px;
}


.rate_table table th,
.rate_table table td {
  padding: 15px;
  border-bottom: 1px solid #aaa;
  color: #00336a;
}

.rate_table table th {
  color: #019CDE;
  font-size: 18px;
}


md-toast {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999999;
}


.suggation_block {
  background: #fff;
  border: 1px solid #b5b5b5;
  margin-top: -20px;
  position: absolute;
  width: calc(100% - 30px);
  display: none;
  z-index: 5;
}

.suggation_block .outer_suggation>ul {
  padding-left: 0;
  overflow-y: auto;
  max-height: 250px;
  width: 100%;
  margin-bottom: 0;
}

.suggation_block .outer_suggation>ul ul {
  padding-left: 0;
}

.suggation_block ul li {
  list-style: none;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;

}

.suggation_block .outer_suggation>ul>li {
  border-bottom: 1px solid #eee;
}

.outer_suggation {
  max-height: 250px;
  /*max-height: 250px;*/
  overflow: hidden;
}

.suggation_block ul li.selected {
  background: #5ac154;
  color: #fff;
}

.suggation_block ul li.selected .active-color {
  color: #fff;
}

.box_wrap {
  line-height: 50px;
  height: 50px;
  border-radius: 0;
  border: 1px solid #afafb1;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
}

.box_wrap .md-button.md-icon-button {
  display: inline-block;
  width: 32px;
}

/*.box_wrap md-datepicker {
  line-height: 50px;
}
*/

.box_wrap .md-datepicker-input-container {
  width: calc(100% - 45px);
  padding: 0;
}

.box_wrap .md-button.md-icon-button.md-datepicker-triangle-button {
  display: none !important;
  width: 0 !important;
}

.box_wrap .md-datepicker-open .md-datepicker-input-container {
  margin-left: 0;
  border: none;
}

.box_wrap .md-default-theme .md-datepicker-open .md-datepicker-input-container,
.box_wrap .md-datepicker-open .md-datepicker-input-container {
  background: transparent;
}

.box_wrap .md-datepicker-input {
  min-width: unset !important;
  max-width: unset !important;
}

.box_wrap md-datepicker {
  margin-right: 0;
  padding-right: 0;
  position: relative;
  top: -5px;
}

.md-default-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-default-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: rgb(68, 173, 70);
}

.md-default-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator,
.md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid rgb(68, 173, 70);
}

.md-default-theme .md-datepicker-open .md-datepicker-calendar-icon,
.md-datepicker-open .md-datepicker-calendar-icon {
  color: rgb(68, 173, 70);
}

.nav_warp ul.submenu {
  position: absolute;
  background: #fff;
  right: -30px;
  height: 0;
  /*width: 100%;*/
  top: calc(100% + 29px);
  border: 3px solid #019CDE;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transform: unset;
  visibility: hidden;
  opacity: 0;
}


.nav_warp ul.submenu.open,
.account_menu:hover .submenu {
  visibility: visible;
  opacity: 1;
  height: 182px;
}

.nav_warp ul.submenu.opened {
  height: auto;
}

.nav_warp ul.submenu li {
  display: block;
  list-style: none;
  margin-left: 0;
}

.nav_warp ul.submenu li a {
  text-align: left;
  display: block;
  width: 100%;
  padding: 6px 10px 6px 40px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  opacity: 0;
}

.account_menu:hover .submenu li a {
  opacity: 1
}

.nav_warp ul.submenu li:first-child a {
  padding-top: 12px;
}

.nav_warp ul.submenu li:last-child a {
  padding-bottom: 12px;
}

.account_menu {
  position: relative;
}


.main_header ul.submenu li:before {
  content: unset;
}

.main_header ul.submenu li a:before {
  content: "";
  position: absolute;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.main_header ul.submenu li a#profile:before {
  background-image: url(../images/icons/user.png);
}

.main_header ul.submenu li a#meters:before {
  background-image: url(../images/icons/deals.png);
  /*background-image: url(../images/icons/accounts.png);*/
}

.main_header ul.submenu li a#deals:before {
  background-size: 20px;
  background-image: url(../images/icons/close_deals.png);
}

.main_header ul.submenu li a#notifications:before {
  background-image: url(../images/icons/notification.png);
}

.main_header ul.submenu li a#logout:before {
  background-image: url(../images/icons/logout.png);
}

.main_header ul.submenu li a#profile:hover:before,
.main_header ul.submenu li.active a#profile:before {
  background-image: url(../images/icons/user_hover.png);
}

.main_header ul.submenu li a#meters:hover:before,
.main_header ul.submenu li.active a#meters:before {
  background-image: url(../images/icons/deals_hover.png);
  /*background-image: url(../images/icons/accounts_hover.png);*/
}

.main_header ul.submenu li a#deals:hover:before,
.main_header ul.submenu li.active a#deals:before {
  background-image: url(../images/icons/close_deals_hover.png);
}

.main_header ul.submenu li a#notifications:hover:before,
.main_header ul.submenu li.active a#notifications:before {
  background-image: url(../images/icons/notification_hover.png);
}

.main_header ul.submenu li a#logout:hover:before,
.main_header ul.submenu li.active a#logout:before {
  background-image: url(../images/icons/logout_hover.png);
}


.account_menu:after {
  position: absolute;
  content: "";
  top: calc(100% + 9px);
  right: 45px;
  border-bottom: 0px solid #019CDE;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.account_menu.active:after,
.account_menu:hover:after {
  border-bottom: 20px solid #019CDE;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
}

.pb50 {
  padding-bottom: 50px;
}

.accountBlock {
  text-align: left;
  margin-bottom: .5em;
  background-color: #f7f6f5;
  border: 1px solid #e6e5e3;
  padding: 1em 1em .7em;
  border-radius: 4px;
}

.accountBlockWrap {
  width: 75%;
  float: left;
}

.accountOperation {
  width: 22%;
  float: right;
}

.btn-opration {
  background: #E6E5E3;
  font-size: 12px;
  padding: 3px;
  width: 90px;
  text-align: center;
  margin-bottom: 5px;
}

/*.ac_blocks:nth-child(2n + 1) {
  clear: both;
}
*/
@media (min-width:1200px) {
  .ac_blocks.col-lg-1:nth-child(12n+1) {
    clear: left;
  }

  .ac_blocks.col-lg-2:nth-child(6n+1) {
    clear: left;
  }

  .ac_blocks.col-lg-3:nth-child(4n+1) {
    clear: left;
  }

  .ac_blocks.col-lg-4:nth-child(3n+1) {
    clear: left;
  }

  .ac_blocks.col-lg-6:nth-child(odd) {
    clear: left;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .ac_blocks.col-md-1:nth-child(12n+1) {
    clear: left;
  }

  .ac_blocks.col-md-2:nth-child(6n+1) {
    clear: left;
  }

  .ac_blocks.col-md-3:nth-child(4n+1) {
    clear: left;
  }

  .ac_blocks.col-md-4:nth-child(3n+1) {
    clear: left;
  }

  .ac_blocks.col-md-6:nth-child(odd) {
    clear: left;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .ac_blocks.col-sm-1:nth-child(12n+1) {
    clear: left;
  }

  .ac_blocks.col-sm-2:nth-child(6n+1) {
    clear: left;
  }

  .ac_blocks.col-sm-3:nth-child(4n+1) {
    clear: left;
  }

  .ac_blocks.col-sm-4:nth-child(3n+1) {
    clear: left;
  }

  .ac_blocks.col-sm-6:nth-child(odd) {
    clear: left;
  }
}

@media (max-width:767px) {
  .ac_blocks.col-xs-1:nth-child(12n+1) {
    clear: left;
  }

  .ac_blocks.col-xs-2:nth-child(6n+1) {
    clear: left;
  }

  .ac_blocks.col-xs-3:nth-child(4n+1) {
    clear: left;
  }

  .ac_blocks.col-xs-4:nth-child(3n+1) {
    clear: left;
  }

  .ac_blocks.col-xs-6:nth-child(odd) {
    clear: left;
  }
}


.swal2-icon.swal2-warning {
  color: #007AC2;
  border-color: #007AC2;
}

@keyframes pulse-warning {
  0% {
    border-color: #007AC2;
  }

  100% {
    border-color: #000000;
  }
}

.swal2-modal,
button {
  font-family: "Gotham-Book";
}


.notification_body {
  /*padding:50px;*/
}

.notification_card {
  min-height: 90px;
  background-color: #f3f3f3;
  box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 6px;
  margin: 10px;
  padding: 20px 40px;
}

.rightSideBar_wrap.open .notification_card {
  animation-name: fadeInUpSmall;
  animation-duration: 2s;
}

.notification_card:first-child {
  margin-top: 10px;
}

.notification_card:before {
  position: absolute;
  left: 0px;
  background: #909193;
  content: "";
  top: 0.5px;
  height: calc(100% - 1px);
  width: 4px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;

}

.green.notification_card:before {
  background-color: #42b655;
}

.red.notification_card:before {
  background-color: #ff0011;
}

.font_10 {
  font-size: 10px;
}

.black_font {
  color: #020202;
}

.notification_card p {
  margin-bottom: 5px;
}

/*There is a CSS rule that can hide scrollbars in Webkit-based browsers (Chrome and Safari).*/
.notification_body::-webkit-scrollbar {
  width: 0 !important
}

.notification_body::-webkit-scrollbar {
  width: 0 !important
}

/*There is a CSS rule that can hide scrollbars in IE 10+*/
.notification_body {
  -ms-overflow-style: none;
}

.notification_body {
  -ms-overflow-style: none;
}

/*There used to be a CSS rule that could hide scrollbars in Firefox,*/
.notification_body {
  overflow: -moz-scrollbars-none;
}

.notification_body {
  overflow: -moz-scrollbars-none;
}

.notification_card:hover {
  box-shadow: -2px 5px 14px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: -2px 5px 14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -2px 5px 14px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: -2px 5px 14px rgba(0, 0, 0, 0.2);
  -o-box-shadow: -2px 5px 14px rgba(0, 0, 0, 0.2);
}

.innerBody_wrap {
  min-height: 300px;
}

.rounded_card {
  background-color: #f3f3f3;
  border-radius: 15px;
  position: relative;
}

.box_shadow {
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.2);
}

.noradius {
  border-radius: 0px;
}

.rounded_card.noradius {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: transparent;
}

.border_right {
  position: relative;
}

.border_right:after {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 1px;
  background-color: #eee;
  height: calc(100% - 20px);
}

/*.card_header {
  position: relative;
  height: 50px;
  line-height: 50px;
  background-color: #333c45;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}*/

.card_header {
  position: relative;
  height: 56px;
  line-height: 56px;
  /*background-color: #003551;*/
  background-color: #333c45;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.card_body {
  padding: 30px 0;
  min-height: 300px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
}

.label-status {
  padding: 3px 8px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
  /*border: 1px solid #fff;*/
  box-shadow: 0 0 9px rgba(0, 53, 81, 0.3);
}

.plr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.pt100 {
  padding-top: 80px;
}

.supplier_logo {
  text-align: center;
  min-height: 200px;
  position: relative;
  background: #fff;
}

.supplier_logo img {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.white_font.green_hover:hover {
  color: #019CDE !important;
}

.fixminh {
  min-height: 500px;
}


.deal_details .card_body {
  min-height: 220px;
  padding: 15px 0;
}

.deal_details .card_body.smallDiv {
  min-height: 120px;
  position: relative;
}


.ac_bill_name {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.deal_details .radio input {
  display: none;
}

.deal_details .radio {
  margin: 0;
}

.deal_details .radio label {
  position: relative;
  min-height: 30px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
  line-height: 30px;
  border: 2px solid #aaa;
  padding: 2px 15px;
}

.deal_details .radio input:checked+label {
  /* border: 2px solid #333c45;
      background-color: #333c45;
      color: #fff;
      text-align: center;
      margin: 0; */
}

.deal_details .radio input:checked+label:after {
  content: "\2713";
  width: 25px;
  height: 25px;
  line-height: 22px;
  border-radius: 100%;
  border: 2px solid #007AC2;
  background-color: #007AC2;
  z-index: 2;
  position: absolute;
  top: -13px;
  color: #fff;
  right: -13px;
}

.deal_details .radio.min_rate label {
  background-color: #e8e8e8;
  border-color: #333c45;
}

.deal_details .custom_rate_label {
  padding: 5px 10px;
  border: 2px solid #ff0011;
  color: #ff0011;
}

.deal_details .radio input[disabled]+label {
  cursor: no-drop !important;
  opacity: 0.7;
}

/*.deal_details {
    padding: 0 15px;
  }
*/
.deal_details .table>tbody>tr>td {
  border-color: transparent;
}

.active_block .card_header {
  background-color: #0b4f82;
}

.no_d {
  opacity: 0.5;
}

.w150 {
  width: 135px;
  float: right;
  text-align: center;
  padding: 10px 15px;
  background-color: #5ac154;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.w150:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.wm150 {
  width: calc(100% - 135px);
  float: left;
  padding: 10px 15px 10px 15px;
  border-right: 1px solid #ddd;
  line-height: 11px;
}

.wm150 span,
.wm150 a {
  width: 100%;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 20px;
}

.upload_div {
  border: 1px solid #ddd;
}

.mt15 {
  margin-top: 15px;
}

.pl50 {
  padding-left: 50px;
}

.contact_us_banner .banner_text,
.join_us_banner .banner_text {
  left: 15px;
}

.mtb100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.supplier_logo_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.md-datepicker-input-mask,
.md-datepicker-input-mask-opaque {
  display: none;
}

.green_not_bg {
  background-color: rgba(234, 255, 237, 0.7);
}

/*.notification_count {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    background-color: #f5504a;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
}*/
.notification_count {
  position: absolute;
  height: 22px;
  width: 22px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  background-color: #f5504a;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  right: -6px;
  top: -7px;
}

.nav_warp ul.submenu {
  min-width: 200px;
}

/*.ac_blocks:nth-child(2n) {
  clear: both;
}
*/
.logo_name {
  text-align: left;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page404 {
  min-height: 100vh;
}

.font_62 {
  font-size: 62px;
}

.font_52 {
  font-size: 52px;
}

.font90 {
  font-size: 90px;
}

.bordered_page_wrap {
  border: 4px solid #00336a;
  width: calc(100% - 200px);
  left: 100px;
  padding: 7%;
  height: calc(100% - 200px);
}

.market_banner .verticle-center {
  left: 0;
}

.eagent .market_banner .verticle-center {
  top: 56%;
}

.black_bg {
  background-color: #000;
}

.upload_div span,
.upload_div a {
  width: calc(100% - 35px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  font-size: 18px;
  font-family: var(--medium-font-family);
  color: var(--default-color);
}

.table_wrpper {
  max-width: 100%;
  overflow-x: auto;
}

.green_not_bg {
  /*background-color: rgba(234, 255, 237, 0.7);*/
  background-color: rgba(66, 182, 85, 0.4);
  /*background-color: rgba(234, 255, 237, 0.7);*/
}

.notification_card.green_not_bg p.active_green,
.notification_card.green_not_bg .gray_font {
  color: #306d3a;
}

.custom_account_container {
  width: 80%;
  margin: auto;
}

.action_icon {
  display: inline-block;
  background-size: 22px;
  width: 25px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 5px;
}

.action_icon.add_meter {
  background-image: url(../images/icons/plus_round.png);
}

.action_icon.view_meter {
  background-image: url(../images/icons/eye.png);
  width: 30px;
  background-size: 30px;
}

.action_icon.edit {
  background-image: url(../images/icons/edit.png);
}

.action_icon.delete {
  background-image: url(../images/icons/trash.png);
}

.table>thead>tr:hover>td .action_icon.add_meter,
.table>tbody>tr:hover>td .action_icon.add_meter,
.table>tfoot>tr:hover>td .action_icon.add_meter {
  background-image: url(../images/icons/plus_round_hover.png);
}

.table>thead>tr:hover>td .action_icon.view_meter,
.table>tbody>tr:hover>td .action_icon.view_meter,
.table>tfoot>tr:hover>td .action_icon.view_meter {
  background-image: url(../images/icons/eye_hover.png);
}

.table>thead>tr:hover>td .action_icon.update_usage,
.table>tbody>tr:hover>td .action_icon.update_usage,
.table>tfoot>tr:hover>td .action_icon.update_usage {
  background-image: url(../images/icons/update_usage_hover.png);
}

.table>thead>tr:hover>td .action_icon.edit,
.table>tbody>tr:hover>td .action_icon.edit,
.table>tfoot>tr:hover>td .action_icon.edit {
  background-image: url(../images/icons/edit_hover.png);
}

.table>thead>tr:hover>td .action_icon.delete,
.table>tbody>tr:hover>td .action_icon.delete,
.table>tfoot>tr:hover>td .action_icon.delete {
  background-image: url(../images/icons/trash_hover.png);
}

.table>thead>tr>th {
  border-color: transparent;
}

.dashboardPage .table>thead>tr>th {
  border-bottom: 2px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dashboardPage .form_container {
  padding: 0;
  /*padding: 0 50px 50px;*/
}

.search_deal input {
  width: 300px;
  margin-bottom: 50px;
}

.notification_card {
  width: 80%;
  margin: 10px auto;
}

.danger-text {
  color: #ff0011;
}

.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-left: 5px;
  padding-right: 5px;
  vertical-align: middle; */
}

.label-primary {
  background-color: #00336a;
}

.dashboardPage .notification_count {
  height: 22px;
  width: 22px;
  line-height: 22px;
  right: -7px;
  position: absolute;
  top: -7px;
}

.profileFormWrap {
  width: 550px;
  margin: auto;
}

.table-wrap .label-status {
  font-size: 10px;
}

.ac_blocks:nth-child(2n + 1) {
  clear: both;
}

.folderWrap {
  /*text-align: center;*/
  /*display: inline-block;
  margin: 0 auto;*/
  text-align: left;
}

.folder {
  /*display: inline-block;*/
  /*width: calc(16.67% - 24px);*/
  /*height: 200px;*/
  margin-bottom: 15px;
  text-align: center;
  padding: 30px 30px 80px 30px;
  border: solid 1px #eee;
  position: relative;
}

.folderLinks {
  margin: 0;
  padding: 0;
}

.folderLinks li {
  display: block;
}

.folderLinks li a {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  /*padding: 10px 0;*/
  display: block;
}

.folderLinks li:last-child a {
  border-color: transparent;
}

.folder i {
  font-size: 60px;
}

.folderName {
  width: 100%;
  height: 70px;
  /*line-height: 70px;*/
  position: absolute;
  bottom: 5px;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 5px;
  /*white-space: nowrap;*/
}

/*home new design*/

.relative {
  position: relative;
}

.uppercase {
  text-transform: uppercase;
}

.black_hm {
  color: #000;
}

.featureWrapper_hm .black_hm {
  color: #fff;

}

.blue_hm {
  color: #31496B;
}

.white {
  color: #fff;
}

.green_hm {
  color: #0A5008;
}

.bg_white_hm {
  background: #fff;
}

.dg_gray_hm {
  background: #ECF2FE;
}

.bold_font {
  font-family: 'OpenSans-SemiBold';
}

.font_hm_reg {
  font-family: 'OpenSans-Regular';
}

.center-col {
  float: none;
  margin: 0 auto;
}

.font_hm_16 {
  font-size: 16px;
}

.font_hm_18 {
  font-size: 18px;
}

.font_hm_20 {
  font-size: 20px;
}

.font_hm_30 {
  font-size: 30px;
}

.font_hm_40 {
  font-size: 40px;
}

.font_hm_45 {
  font-size: 45px;
}

.width_100 {
  width: 100%;
}

.hm_logo {
  position: absolute;
  top: 50%;
  right: 95px;
  width: 14%;
  transform: translateY(-50%);
}

.hm_logo.left {
  right: auto;
  left: 5%;
}

.hm_logo img {
  margin: 0 auto;
}


.topWrapper_hm {
  padding: 100px 0;
  position: relative;
  top: 0;
}

.agentWrapper_hm {
  padding: 100px 0;
  position: relative;
  top: 0;
}

.eAgent_block_hm {
  transform: translateY(10%);
}

.pad_bot10 {
  padding-bottom: 10px;
}

.banner_bg {
  background-image: url('../images/home/bg_banner.jpg');
  width: 100%;
  background-position: left top;
  position: relative;
}

.border_none {
  border: none !important;
}

.menu_hm {
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 9999;
}

/*.login_box_hm{
      display: none;
  }
  .login_box{
      display: none;
  }*/
.login_box {
  z-index: 1039;
}

.col_center_hm {
  float: none;
  margin: 0 auto;
}

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

.nav_right {
  height: 80px;
  position: relative;
}

.logo_menu img {
  position: absolute;
  transform: translateY(43%);
}

.top_menu_righ ul li {
  margin-left: 5px;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-family: 'OpenSans-SemiBold';
  border-right: 1px solid #fff;
  padding: 5px 8px 3px 0;
}

.nav_right ul {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.top_menu_righ ul li>a {
  /* padding-left: 35px; */
  padding: 0 0px 0 50px;
  /* padding: 0 15px 0 50px; */
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-family: 'OpenSans-SemiBold';
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.top_menu_righ ul li>a:before {
  position: absolute;
  content: "";
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.top_menu_righ ul li>a:hover {
  color: #368637;
}

.top_menu_righ ul li>a.login_img:before {
  background-image: url(../images/home/user.png);
}

.top_menu_righ ul li>a.login_img:hover:before,
.top_menu_righ ul li.active>a.login_img:before {
  background-image: url(../images/home/user_hover.png);
  text-decoration: none;
}

.top_menu_righ ul li>a.notifications:before {
  background-image: url(../images/icons/account_notification_active.png);
}

.top_menu_righ ul li>a.notifications:hover:before,
.top_menu_righ ul li.active>a.notifications:before {
  background-image: url(../images/icons/account_notification_green.png);
  text-decoration: none;
}

.eagent .top_menu_righ ul li>a.notifications:hover:before,
.eagent .top_menu_righ ul li.active>a.notifications:before {
  background-image: url(../images/icons/account_notification_active.png);
  text-decoration: none;
}

.top_menu_righ ul li>a.logout:before {
  background-image: url(../images/icons/logout_white.png);
}

.top_menu_righ ul li>a.logout:hover:before,
.top_menu_righ ul li.active>a.logout:before {
  background-image: url(../images/icons/logout_hover.png);
  text-decoration: none;
}

.mainMenu_hm .nav>li>a {
  padding: 20px 50px 0 0;
  font-size: 16px;
  color: #fff;
  font-family: 'OpenSans-SemiBold';
  letter-spacing: 1.3;
  background-color: transparent;
  text-transform: uppercase;

}

.eagent .mainMenu_hm .nav>li.active>a {
  color: #003551;
  background-color: transparent;
}

.eagent .about_page .section1 {
  padding-top: 120px;
}

.mainMenu_hm .navbar-nav>li>a:focus,
.mainMenu_hm .navbar-nav>li>a:hover {
  color: #FFF;
  background-color: transparent;
}

.contact_right a {
  padding: 15px 0;
  display: block;
  font-size: 16px;
  font-family: 'OpenSans-SemiBold';
  color: #fff;
}

.top_swiper_wrapper {
  position: absolute;
  top: 20%;
  width: 100%;
  height: 78%;
}

.swiper_left_hm {
  width: 37%;
  padding-left: 2.5%;
  transform: translateY(-30%);
}

.swiper_right_hm {
  width: 50%;
  padding-right: 2%;
}

.swiper_left_hm h2 {
  width: 100%;
  text-align: left;
  padding-bottom: 25px;
}

.swiper_left_hm p {
  width: 87%;
  text-align: left;
  line-height: 1.2;
  padding-left: 50px;
  font-size: 20px;
}

.swiper_left_hm p:before {
  display: block;
  background-image: url(../images/home/line.png);
  position: relative;
  content: "";
  left: -50px;
  top: 15px;
  /* transform: translateY(0%); */
  width: 40px;
  height: 5px;
  background-repeat: no-repeat;
  z-index: 9999;
}



.channel_partner_hm {
  top: 50%;
  transform: translateY(100%);
  width: 85%;
  margin: 0 auto;
}

.today_hm img {
  margin: 0 auto;
  padding: 0px 0px 50px 0;
}

.today_hm p {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.title_hm {
  padding: 100px 0 100px 0;
  margin: 0;
}

.customer_title {
  /*padding: 100px 0 50px 0;*/
}

.customer-center {
  float: none;
  margin: 0 auto;
}

.customer_block1 {
  padding: 10px 0;
}

.customer_block1 img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  /*background-color: #999;*/
}

.customer_block1 h2 {
  margin: 20px 0 5px 0;
}

.cust_block2_content {
  padding: 50px;
  box-shadow: 0px 0px 12px #ccc;
  border-radius: 15px;
  margin: 20px;
  min-height: 340px;
  /*min-height: 330px;*/
}

.customer_block2 h2 {
  margin: 20px 0 15px 0;
  line-height: 1.6;
}

.customer-center .swiper-slide {
  display: inline-block;
}

.cust_block2_content img {
  margin: 0 auto;
}

.our_suppliers_hm {
  background: #ECF2FE;
}

.our_suppliers_swiper {
  margin: 0px 0px 200px 0;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.home-swiper-hm {
  /*background: #69BB73;*/
  background-image: url('../images/home/feature.png');
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  display: block;
}

.dg_for_agent_hm {
  /*background: #69BB73;*/
  /*background-image: url('../images/home/for_eagents.jpg'); */
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.for_table_hm {
  width: 90%;
}

.for_table_hm .table {
  border-radius: 15px;
}

.for_table_hm .table {
  border-radius: 15px;
  margin: 0;
}

.for_table_hm thead tr th {
  color: #fff;
  padding: 17px;
}

.homeswiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: transparent !important;
}

.contact_right {
  /*width: 25%;*/
  text-align: right;
  display: inline-block;
}

.blue_logo img {
  margin: 0 auto;
  padding-bottom: 30px;
}

.eAgent_hm {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.top_swiper_wrapper .swiper-pagination-bullets {
  bottom: unset;
  left: 40px;
  width: 2%;
  top: 40%;
  transform: translateY(-50%);
  display: inline-grid;
}

.top_swiper_wrapper .swiper-pagination-bullet {
  margin: 8px 5px;
  background: #fff;
  width: 12px;
  height: 12px;
}

/*.top_swiper_wrapper .swiper-pagination-fraction,.top_swiper_wrapper .swiper-pagination-custom,.top_swiper_wrapper .swiper-container-horizontal >.swiper-pagination-bullets {
      bottom: unset;
      left: 40px;
      width: 2%;
      top: 40%;
      transform: translateY(-50%);
      display: inline-grid;
  }
  .top_swiper_wrapper .swiper-pagination-bullets {
      margin: 8px 5px;
      background: #fff;
      width: 12px;
      height: 12px;
  }*/

.top-swiper {
  height: 100%;
  width: 100%;
  position: relative;
}

.custWrapper_hm {
  padding: 100px 0;
}

.custWrapper_hm .swiper-pagination {
  position: relative;
  padding: 15px 0;
}

.custWrapper_hm .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  margin: 0 6px;
  border: 1px solid #000;

}

.custWrapper_hm .swiper-pagination-bullet-active {
  opacity: 1;
  background: green;
}

.cust_title p {
  width: 49%;
  text-align: left;
  line-height: 1.6;
  padding-left: 50px;
  font-size: 20px;
}

.cust_title p:before {
  display: block;
  background-image: url("../images/home/line_black.png");
  position: relative;
  content: "";
  left: -50px;
  top: 15px;
  /* transform: translateY(0%); */
  width: 40px;
  height: 5px;
  background-repeat: no-repeat;
  z-index: 9999;
}

.featureWrapper_hm {
  position: relative;
  /*top: 100px;*/
  width: 100%;
  padding: 100px 0;
}

.featureSwipper {
  position: relative;
  width: 100%;
  padding-top: 50px;
}

.feat_box {
  min-height: 230px;
  /*min-height: 350px;  */
  background: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 40px 30px 15px 30px;
}

.feat_box img {
  margin: 0 auto;
}

.feat_box .font_hm_20 {
  margin-top: 25px;
}



.featureWrapper_hm .swiper-button-prev {
  position: absolute;
  top: -10%;
  right: 315px;
  margin-top: -22px;
  z-index: 9;
  cursor: pointer;
  background-image: url(../images/home/arrow_right.png);
  width: 50px;
  height: 50px;
  background-size: 45px 45px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  left: unset;
  outline: none;
}

/*.swiper-button-prev :before {
      display: block;
      background-image: url(../images/home/line_black.png);
      position: relative;
  }*/
.featureWrapper_hm .swiper-button-next {
  position: absolute;
  top: -10%;
  right: 250px;
  margin-top: -22px;
  z-index: 9;
  cursor: pointer;
  background-image: url(../images/home/arrow_right.png);
  width: 50px;
  height: 50px;
  background-size: 45px 45px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  outline: none;
}

.featureWrapper_hm .swiper-button-prev.swiper-button-disabled,
.featureWrapper_hm .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
  pointer-events: none;
  left: unset;
}


.for_table_hm thead {
  background: green;
}

.table-striped>tbody>tr:nth-of-type(even) {
  background-color: #B4CCB6;
}

.tbl_with {
  width: 150px;
}

.for_table_hm th {
  text-align: center;
  font-family: 'OpenSans-Regular';
  font-size: 16px;
}

.for_table_hm th:first-child {
  text-align: left;
  padding-left: 20px
}

.for_table_hm td {
  text-align: center;
  font-family: 'OpenSans-Regular';
  font-size: 16px;
  color: green;
  border-right: 1px solid #5A8F61;
}

.for_table_hm td:first-child {
  text-align: left;
  padding-left: 20px
}

.for_table_hm td:last-child {
  border: none;
}

.for_table_hm td img {
  margin: 0 auto;
  padding: 7px 5px;
}

.btn_hm {
  border: 2px solid #fff;
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
  transition: all ease-in-out .5s;
  font-family: 'OpenSans-Regular';
  font-size: 16px;
  display: inline-block;
}

.btn_hm:hover {
  border: 2px solid #fff;
  color: green;
  transition: all ease-in-out .5s;
  background: #fff;

}

.btn_green_hm {
  border: 2px solid #fff;
  padding: 7px 20px;
  border-radius: 10px;
  color: green;
  transition: all ease-in-out .5s;
  font-family: 'OpenSans-Regular';
  font-size: 16px;
}

.btn_green_hm:hover {
  border: 2px solid #fff;
  color: #fff;
  transition: all ease-in-out .5s;
  background: green;

}

.pad_bot25 {
  padding-bottom: 25px;
}

.line_hm {
  position: relative;
}

.feat_box p {
  padding-top: 20px;
  padding-bottom: 10px;
}

.line_hm:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 70px;
  border: 1.5px solid #31496B;
  transform: translateX(-50%);
  margin: 10px 0px;
}

.top_swiper_wrapper .swiper-button-next,
.top_swiper_wrapper .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/home/arrow_right.png);
  width: 50px;
  height: 50px;
  background-size: 45px 45px;
  right: 20px;
  left: auto;
  opacity: 0.3;
  top: 40%;
}

.btn_swipper {
  text-align: left;
  margin-top: 30px;
  padding-left: 50px;
}

.btn_swipper_hm {
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  transition: all ease-in-out .5s;
  font-family: 'OpenSans-Regular';
  font-size: 16px;
  background: #576477;
}

.btn_swipper_hm:hover {
  color: #1C3762;
  transition: all ease-in-out .5s;
  background: #fff;
}

.cont_list {
  display: inline-flex;
  margin: 0;
}

.cont_list select {
  margin-left: 5px;
  outline: none;
  border: none;
  box-shadow: none;
}

.cont_list .form-control {
  width: auto;
}

.content_field_hm {
  display: flex;
}

/*.content_field_hm .btn {
          padding: 5px 5px;
          background: transparent;
      }
      .cont_list .dropdown-menu {
          min-width: auto;
      }*/
.add_file_hm {
  display: flex;
}

.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

/*.form_items [type=file] {
      cursor: inherit;
      display: block;
      font-size: 999px;
      filter: alpha(opacity=0);
      min-height: 100%;
      min-width: 100%;
      opacity: 0;
      position: absolute;
      right: 0;
      text-align: right;
      top: 0;
  }*/

.custom-file-input::before {
  content: 'Add File';
  display: inline-block;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  filter: alpha(opacity=0);
  cursor: pointer;
  font-size: 10pt;
}

.custom-file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  /* position: absolute;*/
  z-index: -1;
}

.add_file_hm .add_file_label {
  width: calc(100% - 70px);
  color: #969698;
  font-weight: 500;
}

.inputfile+label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background-color: black;
  display: inline-block;
}

/*============== Contact End ==================*/
#contactForm {
  background: #003551;
}

.contact_wraper {
  display: inline-block;
  width: 100%;
  padding: 50px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 26px 0px #55555590;
  margin-top: -150px;
}

.form_items .img_lable {
  padding: 5px;
  float: left;
  margin-bottom: 0px;
}

.contact_wraper .form_items {
  border-bottom: 1px solid #D2D3D5;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
}

.contact_wraper .form_items .form_input {
  outline: none;
  border: none;
  padding: 8px 8px;
  font-family: 'OpenSans-Regular';
  width: 89%;
  margin: 0px;
  color: #2b4a6e;
}

.contact_wraper label.error {
  position: absolute;
  left: 0;
  top: 100%;
}

.captacha_div,
.form_items_textarea {
  width: 100%;
  display: inline-block;
  position: relative;
}

.form_items_textarea .text_area {
  width: 100%;
  border-radius: 20px;
  outline: none;
  padding: 13px 15px;
  border-color: #D2D3D5;
  color: #2b4a6e;

}

/*.message_title {
      padding-bottom: 12px;
  }*/
.messages_tyle {
  display: inline-block;
  color: #969698;
  font-family: 'OpenSans-Regular';
}


.contact_wraper .form_items .form_input.file {
  opacity: 0;
  z-index: 1;
}

.file_lable {
  display: inline-block;
  position: absolute;
  z-index: 0;
  top: 11px;
  left: 58px;
  color: #969698;
  font-family: 'OpenSans-Regular';
}

.submit_button {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-top: 40px;
}

.button_inquiry {
  border: 2px solid #00476b;
  background: #fff;
  padding: 16px 40px;
  border-radius: 25px;
  color: #00476b;
  outline: none;
  transition: all ease-in-out 0.4s;
  font-family: 'OpenSans-Regular';
  text-transform: uppercase;
}

.button_inquiry:hover {
  background: #00476b;
  color: #fff;
}

input[type="email"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="file"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #969698;
}

input[type="email"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="file"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #969698;
}

input[type="email"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="file"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #969698;
}

input[type="email"]:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="file"]:-moz-placeholder {
  /* Firefox 18- */
  color: #969698;
}

.mail_div {
  display: inline-block;
  width: 93%;
  background: #ffffff30;
  padding: 25px 15px 25px 120px;
  border-radius: 20px;
  transition: all ease-in-out 0.4s;
  margin-top: 20px;
}

.mail_wraper {
  position: absolute;
  top: 50%;
  left: 33px;
  transform: translateY(-50%);
}

.content_after:after {
  content: '';
  width: 1px;
  height: 57%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 98px;
  transform: translateY(-50%);
  transition: all ease-in-out 0.4s;
}

.email_icon_two {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all ease-in-out 0.4s;
}

.mail_div p,
.mail_div a {
  color: #fff;
  line-height: 1.5;
  transition: all ease-in-out 0.4s;
  margin-bottom: 0px;
}

.mail_div p {
  font-weight: 300;
}

.mail_div:hover {
  cursor: pointer;
  background: #ffffff;
}

.mail_div:hover p,
.mail_div:hover a {
  color: #00476b;
}

.mail_div:hover .content_after:after {
  background: #00476b;
}

.mail_div:hover .email_icon_two {
  opacity: 1;
}

.second_footer_section {
  width: 100%;
  display: inline-block;
  padding: 2em 0 0em 0;
}

.tab_border {
  position: absolute;
  top: 14px;
  left: 0;
  border-bottom: 1px solid #fff;
  width: 100%;
  display: none;
}

.divder {
  width: 100%;
  height: 1px;
  background: #fff;
  position: relative;
  top: -20px;
  z-index: 0;
}

.otherService_divd {
  background: #ffca00;
  padding: 10px;
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #fff;
}

/*===========Contact Us============*/

/*============== footer ==================*/
.footer_wraper {
  width: 100%;
  display: inline-block;
  /*background: linear-gradient(120deg, rgba(68,130,239,1), rgba(22,82,182,1));*/

  /*background: linear-gradient(90deg, #4586f4, #1652b6c7);*/
  background: linear-gradient(to bottom, rgba(28, 88, 189, 0.85), rgba(28, 88, 189, 1));
}

.footer_links ul li a {
  display: inline-block;
  color: #fff;
  padding: 0px 0px 2px 0px;
  margin-left: 20px;
  border-bottom: 1px solid transparent;
  transition: all ease-in-out 0.4s;
}

/*.footer_links ul li a:hover {
      padding: 15px 0px 5px 0px;
      border-bottom: 1px solid #fff;
      transition: all ease-in-out 0.4s;
  }
  */
.footer_logo {
  display: inline-block;
  padding: 0 0 15px 0;
}

.footer_block_wraper {
  display: inline-block;
  width: 100%;
  padding: 2em 0 0em 0;
  border-bottom: 1px solid #fff;
}

.footer_block_wraper_copy_right {
  display: inline-block;
  width: 100%;
  padding: 15px 0 25px 0;
}

.footer_block_wraper_copy_right a,
.footer_block_wraper_copy_right p,
.footer_block_wraper_copy_right {
  color: #fff;
  font-size: 14px;
  font-family: 'OpenSans-Regular';
}

.footer_block_wraper_copy_right .social_div ul li a {
  color: #fff;
  padding: 0 0 0 0px;
}

.footer_block_wraper_copy_right .social_div ul li a:hover {
  color: #999;
}

.email_deatils_main {
  display: block;
}

.social_div ul li a {
  color: #fff;
  padding: 0 0 0 20px;

}

.menu_footer_div ul li a {
  color: #fff;
  padding: 0 0 0 20px;
  /*padding: 0 0 0 50px;*/
}

.email_deatils_main h2,
.email_deatils_duplicate h2 {
  font-family: 'OpenSans-Regular';
  text-transform: uppercase;
  font-size: 28px;
  color: #fff;
  margin-bottom: 0;
}

.email_deatils_duplicate {
  display: none;
}

textarea {
  resize: none;
}

.comm_icon_protfolio {
  display: inline-block;
  padding: 0 3px;
}

/*============== footer ==================*/

/*============== mobile menu ==================*/

.mobile_menu_hm {
  display: none;
}

#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 30px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 7px;
  width: 70%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}



/*home new design*/


/*--- FAQ page --- */
.banner_faq {
  width: 100%;
}

.col_faq_hm {
  float: none;
  margin: 0 auto;
}

.faq_hm {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: -200px;
  margin-bottom: 150px;
  z-index: 5;
  background: #fff;
  padding: 50px;
}

.faq_hm h2 {
  text-align: left;
  margin: 0px 0 15px 0;
  font-size: 30px;
}

.faq_hm h4 {
  text-align: left;
  font-size: 18px;
  padding: 8px 0;
  width: 94%;
  line-height: 1.3;
}

.faq_hm p {
  text-align: left;
}

.faq_hm .panel-default>.panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #ddd;
  position: relative;
}

.faq_hm .panel-heading h4:after {
  font-family: "FontAwesome";
  content: "";
  position: absolute;
  right: 20px;
  font-size: 0;
  font-weight: 400;
  top: 50%;
  line-height: 0;
  margin-top: 0;
  height: 100%;
  width: 42px;
  transform: translateY(-50%);
  background-image: url(../images/faq/minus_icon.png);
  background-repeat: no-repeat;
  border-left: 1px solid #e8e8e8;
  background-position: right center;
}

.faq_hm .panel-heading h4.collapsed:after {
  content: "";
  background-image: url(../images/faq/plus_icon.png);
  background-repeat: no-repeat;
}

/*--- FAQ page --- */
.swiper-container-horizontal>.swiper-pagination {
  display: none;
}

.transparent_bg {
  background-color: transparent;
}

.listing_search_box {
  width: 25px;
  float: right;
  position: relative;
  height: 46px;
  line-height: 46px;
  margin: 2px 10px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.listing_search_box input {
  border: unset;
  color: #fff;
  height: 46px;
  font-size: 16px;
  width: 90%;
  border: none !important;
  outline: none !important;
  line-height: 46px;
}

.listing_search_box input:focus,
.listing_search_box input:active,
.search_icon:focus,
.search_icon:active {
  outline: unset !important;
  box-shadow: unset !important;
}

.search_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}



.listing_search_box.focused {
  width: 300px;
  border-bottom-color: #fff;
}

.dashboardPage .table-striped>tbody>tr:nth-of-type(even) {
  background-color: rgba(0, 53, 81, 0.06);
}


.dashboardPage .table-striped>tbody>tr:nth-of-type(odd) {
  background-color: #fff;
}


.dashboardPage .table>thead>tr>th {
  border-bottom: unset;
}

.dashboardPage .table>thead>tr>th,
.dashboardPage .table>tbody>tr>th,
.dashboardPage .table>tfoot>tr>th,
.dashboardPage .table>thead>tr>td,
.dashboardPage .table>tbody>tr>td,
.dashboardPage .table>tfoot>tr>td {
  border-top: unset;
}

.mt9 {
  margin-top: 9px;
}

.dashboardPage .card_header .btn-green:hover {
  background-color: #fff;
}


.add_form_body {
  /*max-height: 800px;*/
  padding: 0;
}

.lfDiv,
.rfDiv {
  /*max-height: 800px;*/
}

.rfDiv {
  /*overflow-y: auto;*/
}

/*There is a CSS rule that can hide scrollbars in Webkit-based browsers (Chrome and Safari).*/
.rfDiv::-webkit-scrollbar {
  width: 0 !important
}

.rfDiv::-webkit-scrollbar {
  width: 0 !important
}

/*There is a CSS rule that can hide scrollbars in IE 10+*/
.rfDiv {
  -ms-overflow-style: none;
}

.rfDiv {
  -ms-overflow-style: none;
}

/*There used to be a CSS rule that could hide scrollbars in Firefox,*/
.rfDiv {
  overflow: -moz-scrollbars-none;
}

.rfDiv {
  overflow: -moz-scrollbars-none;
}

.add_form_body .blue_bg {
  border-bottom-left-radius: 6px;
}

.add_form_body>div,
.add_form_body>div>.row,
.add_form_body .blue_bg {
  height: 100%;
}

.add_icon_div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  width: 60%;
  text-align: center;
}

.add_icon_div .img_wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background-position: center center;
  background-size: 160px;
  background-repeat: no-repeat;
}

.add_icon_div .img_wrap.add_lead_request {
  background-image: url(../images/icons/add_lead_request.png);
}

.add_icon_div .img_wrap.user_profile {
  background-image: url(../images/icons/add_customer.png);
}

.lfDiv>div,
.lfDiv>div>div {
  height: 100%;
}

.card_body.nopadd {
  padding: 1px;
}

.card_body .blue_bg {
  background-color: rgba(0, 53, 81, 0.95);
  min-height: 850px;
}

.active_blue_c {
  color: #003551;
  font-weight: 800;
}

.card_body.accountTab .blue_bg {
  min-height: 620px;
}


.notification_td {
  width: 100%;
  padding: 15px 30px;
  position: relative;
}

.notification_td:hover {
  background: rgba(1, 156, 222, 0.2);
}

.notification_td .unreadlabel {
  position: absolute;
  top: 15px;
  right: 30px;
}

.dashboardPage .request_form {
  width: 650px;
  margin: auto;
}

.mb15 {
  margin-bottom: 15px;
}




.folderIcon img {
  width: 30px;
}

.folder {
  padding: 15px 15px 80px 15px;
  background-color: #fff;
}

.folderName {
  height: 65px;
}

.col-lg-17 {
  float: none;
  display: inline-block;
  margin: 0 auto;
  width: 14.28%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.folderWrap {
  padding: 0 15px;
}

.img_lable>span {
  white-space: nowrap;
  word-break: break-all;
  max-width: 100%;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
}

.min140 {
  min-width: 140px;
}

.backBtn {
  margin: 0 0 20px 0;
  display: inline-block;
}