@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  position: relative;
  height: 100%;
  color: #353535 !important;
}

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

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

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

.text-primary-theme {
  color: #353535;
}

.text-secondary-theme {
  color: #00b1b3;
}

.bg-primary-theme {
  background: #353535;
  color: white !important;
}

.bg-secondary-theme {
  background: #00b1b3;
  color: white !important;
}

.bg-grey {
  background-color: #f1f1f1 !important;
}

.form-control {
  /*padding: 25px 0.75rem !important;*/
  height: 52px !important;
}

/*Back to top css */
#backtotop {
  display: inline-block;
  background-color: #353535;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backtotop:after {
  content: "";
  font-family: icomoon;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#backtotop:hover {
  cursor: pointer;
  background-color: #00b1b3;
}
#backtotop:active {
  background-color: #555;
}

.showbtn {
  opacity: 1 !important;
  visibility: visible !important;
}

/*header css*/
header {
  background-color: #f9f9f9;
}
header .logo img {
  width: 200px;
}
header .top-info {
  padding: 15px 0;
}
header .top-info ul li {
  display: table-cell;
  padding: 0 25px;
}
header .top-info ul li .info-icon {
  display: table-cell;
  vertical-align: top;
  float: left;
  line-height: 50px;
}
header .top-info ul li .info-icon img {
  width: 42px;
  height: 42px;
}
header .top-info ul li .info-detail {
  padding-left: 14px;
  display: table;
  vertical-align: middle;
  float: left;
}
header .top-info ul li .info-detail h5 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #353535;
  margin-bottom: 5px;
}
header .top-info ul li .info-detail p {
  font-size: 16px;
  font-weight: 400;
  color: #00b1b3;
  margin-bottom: 0;
}
header .social-icon {
  text-align: right;
}
header .social-icon li {
  display: inline-block;
  padding: 5px;
}
header .social-icon li i {
  color: #353535;
  transition: all 0.1s ease-out;
}
header .social-icon li i:hover {
  color: #00b1b3;
  transition: all 0.1s ease-out;
  transform: scale3d(1.2, 1.2, 5);
}

.navigationmenu {
  background-color: #00b1b3;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}

.mt-body {
  margin-top: 40px !important;
}

.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  animation: smoothScroll 1s forwards;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0px);
  }
}
.account-login {
  width: 39px;
  height: 39px;
  background-color: #353535;
  border-radius: 50px;
  float: left;
  text-align: center;
}
.account-login img {
  height: 35px;
}

.account-login-text {
  float: left;
  padding: 8px 0;
  margin-left: 6px;
}
.account-login-text a {
  color: #000000;
}
.account-login-text a:hover {
  color: #fff;
}

/**********************************************banner css**************************************/
.banner {
  background: url("../images/bannerbg.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 550px;
}
.banner h1 {
  margin: 50px 0 10px 0;
  font-weight: 700;
  color: #fff;
}
.banner p {
  color: #00b1b3;
  font-size: 25px;
  margin-bottom: 30px;
}
.banner .search-box {
  width: 520px;
  height: 100%;
  margin: auto;
  position: relative;
}
.banner .search-box .form-search {
  display: inline-block;
  width: 100%;
  float: left;
  height: 60px;
  padding: 0.375rem 0.75rem;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding-right: 108px;
}
.banner .search-box button {
  right: 0;
  float: left;
  height: 60px;
  border: none;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background-color: #00b1b3;
  width: 97px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}
.banner .search-box button i {
  color: #fff;
  font-size: 45px;
}
.banner ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
}
.banner ul li {
  flex: 1;
  padding: 0 10px;
  border-right: 1px solid #fff;
}
.banner ul li h5 {
  color: #fff;
  font-weight: 600;
}
.banner ul li p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0;
}

/**********************************************start comparing css**************************************/
.heading-seperator {
  position: relative;
}
.heading-seperator span:after {
  content: "";
  left: 53%;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #353535;
  border-bottom-style: solid;
}
.heading-seperator:after {
  content: "";
  left: 50%;
  position: absolute;
  bottom: 28px;
  width: 59px;
  margin-left: -37px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #00b1b3;
}

.main-heading, .news-container h4, .faq .faq-text h4, .guarantee .guarantee-text h4, .newtoswitch h4, .howitworks h4 {
  color: #353535;
  text-align: center;
  font-weight: 600;
  font-size: 33px;
  padding-bottom: 34px;
}

.start-comparing {
  padding: 35px 0;
}
.start-comparing .compare-box {
  width: 140px;
  height: 140px;
  background-color: #00b1b3;
  border: 2px solid #353535;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease-in;
}
.start-comparing .compare-box i {
  font-size: 6rem;
  color: #fff;
  line-height: 140px;
}
.start-comparing .compare-box a {
  cursor: pointer;
}
.start-comparing .compare-box:hover {
  background-color: #353535;
  border: 2px solid #00b1b3;
  transition: all 0.3s ease-in-out;
  transform: scale(1.28, 1.28);
  opacity: 0.9;
}
.start-comparing p {
  font-size: 18px;
  margin-top: 15px;
}

/***********************************howitworks css************************************************/
.howitworks {
  padding: 35px 0;
  background-color: #f1f1f1;
  position: relative;
}
.howitworks .bg-curve {
  position: absolute;
  left: 208px;
  top: 74px;
}
.howitworks .bg-curve img {
  width: 883px;
  height: 200px;
}
.howitworks .howitworks-box {
  text-align: center;
}
.howitworks .howitworks-box .howitworks-icon {
  position: relative;
  z-index: 0;
}
.howitworks .howitworks-box .howitworks-icon span {
  display: block;
}
.howitworks .howitworks-box .howitworks-icon span:first-child i {
  font-size: 100px;
  color: #00b1b3;
}
.howitworks .howitworks-box .howitworks-icon span:last-child {
  width: 50px;
  height: 50px;
  background-color: #353535;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  z-index: -1;
  left: 70px;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.howitworks .howitworks-box .howitworks-text h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}
.howitworks .btn-primary {
  font-size: 18px;
}
.howitworks .btn-primary i {
  color: #fff;
  font-size: 30px;
  vertical-align: middle;
}

/***********************************customers rating css************************************************/
.customer-ratings {
  background-color: #00b1b3;
  padding: 35px 0;
}
.customer-ratings .rating-box {
  display: block;
  text-align: center;
}
.customer-ratings .rating-box p {
  font-size: 18px;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
}
.customer-ratings .rating-box .total-star {
  display: inline-block;
  vertical-align: middle;
}
.customer-ratings .rating-box .total-star i {
  color: #f4c01e;
  font-size: 40px;
}
.customer-ratings .rating-box .total-star h2 {
  float: right;
  font-weight: 700;
  color: #fff;
  font-size: 38px;
  margin-bottom: 0;
}
.customer-ratings .review {
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.customer-ratings .r-text {
  padding: 15px;
}
.customer-ratings .r-text .carousel-total-star {
  display: inline-block;
}
.customer-ratings .r-text .carousel-total-star .icon-star {
  font-size: 20px;
  color: #f4c01e;
}
.customer-ratings .r-text h5 {
  color: #353535;
  font-weight: 600;
  font-size: 16px;
}
.customer-ratings .r-text p {
  font-size: 12px;
  color: #fff;
}
.customer-ratings .r-text span {
  font-size: 10px;
  color: #fff;
}
.customer-ratings .carousel-control-prev {
  width: 5% !important;
  left: -45px !important;
}
.customer-ratings .carousel-control-next {
  width: 5% !important;
  right: -45px !important;
}

/***********************************our partners css************************************************/
/*.ourpartners {
    background-color: $lightgray;
    padding: 35px 0;

    h4 {
        @extend .main-heading;
    }

    .partner-box {
        padding: 15px;
        margin: 10px;
        border-radius: 6px;
        background-color: $whitecolor;
        -webkit-box-shadow: 0px 1px 8px 1px rgba(0,0,0,0.15);
        -moz-box-shadow: 0px 1px 8px 1px rgba(0,0,0,0.15);
        box-shadow: 0px 1px 8px 1px rgba(0,0,0,0.15);
    }
}*/
/***********************************newtoswitch css************************************************/
.newtoswitch {
  background-color: #f1f1f1;
  padding: 35px 0;
}
.newtoswitch .switch-container {
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.newtoswitch .switch-container:hover .overlay {
  bottom: 0;
  height: 100%;
}
.newtoswitch .switch-container h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  padding: 0 6px;
}
.newtoswitch .switch-container p {
  padding: 0 6px;
  padding-bottom: 10px;
}
.newtoswitch .switch-container .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #353535;
  opacity: 0.9;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}
.newtoswitch .switch-container .overlay .text {
  white-space: nowrap;
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/***********************************simplysave guarantee css************************************************/
.guarantee {
  padding: 35px 0;
}
.guarantee .guarantee-text h4 {
  text-align: left !important;
}
.guarantee .guarantee-text .heading-seperator:after {
  margin-left: -54px !important;
}
.guarantee .guarantee-text p {
  font-weight: 600;
}
.guarantee .guarantee-text ul li {
  margin-bottom: 15px;
  line-height: 25px;
}
.guarantee .guarantee-text ul li i {
  float: left;
  font-size: 25px;
  color: #00b1b3;
  line-height: 25px;
  margin-right: 15px;
}
.guarantee .guarantee-text ul li span {
  display: table-cell;
}

/***********************************faq css************************************************/
.faq {
  padding: 35px 0;
  background-color: #f1f1f1;
}
.faq .faq-text h4 {
  text-align: left !important;
}
.faq .faq-text .heading-seperator:after {
  margin-left: -54px !important;
}
.faq .faq-card {
  width: 100%;
  margin: 20px auto;
}
.faq .card-header {
  background: #ececec;
  font-size: 16px;
  padding: 10px;
  font-weight: 500;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
}
.faq .card-header:after {
  content: "";
  font-family: icomoon;
  position: absolute;
  right: 10px;
  font-size: 25px;
  font-weight: 500;
  top: 6px;
}
.faq .toggle:after {
  content: "";
  font-family: icomoon;
  position: absolute;
  right: 10px;
  font-size: 25px;
  font-weight: normal;
  top: 6px;
}
.faq .card-content {
  padding: 10px;
  margin-bottom: 5px;
  display: none;
  background: #00b1b3;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
}
.faq .active {
  background: #00b1b3;
  color: white;
}

/***********************************footer css************************************************/
.footer {
  background-color: #fff;
  padding: 35px 0;
  border-top: 1px solid #ededed;
}
.footer .footer-menu li {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.footer .footer-menu li a {
  color: #353535;
}
.footer .footer-menu li a:hover {
  color: #00b1b3;
  transition: all 0.2s linear;
}
.footer p {
  color: #353535;
  font-size: 12px;
  font-weight: 300;
}
.footer .social-icon-footer {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.footer .social-icon-footer li {
  display: inline-block;
  padding: 5px;
}
.footer .social-icon-footer li a {
  color: #353535;
}
.footer .social-icon-footer li a i {
  font-size: 22px;
  transition: all 0.1s ease-out;
}
.footer .social-icon-footer li a i:hover {
  color: #28a696;
  transition: all 0.1s ease-out;
  transform: scale3d(1.2, 1.2, 5);
}
.footer .safe-secureimg {
  display: inline-block;
}
.footer .safe-secureimg img {
  width: 100px;
}

/***********************************copyright css************************************************/
.copyright {
  background-color: #00b1b3;
}
.copyright p {
  color: #fff;
  font-size: 12px;
  margin: 12px 0;
}

/***********************************Compare page css ************************************************/
/******************Added by Nazar**************************/
.breadcrumb_area {
  background-color: #353535;
  padding: 50px 0px;
}
.breadcrumb_area p {
  font-size: 38px;
  margin: 0;
}

.hr1 {
  width: 100%;
  height: 2px;
  background: -moz-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00b1b3), color-stop(100%, #353535));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ie10+ */
  background: linear-gradient(90deg, #00b1b3 0%, #353535 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#28a696", endColorstr="#353535",GradientType=1 );
  /* ie6-9 */
  transition: all 0.5s ease;
}

.compare_details input[type=radio] {
  display: none;
}

.no-gutter {
  padding-left: 0px;
  padding-right: 0px;
}

.compare_area {
  padding: 30px 0px;
  position: relative;
}
.compare_area .left_form_side .compare_details {
  background-color: #f1f1f1;
  height: auto;
  padding: 60px 30px;
  border-left: 10px solid #353535;
}
.compare_area .left_form_side .compare_details .steps {
  margin-bottom: 30px;
}
.compare_area .left_form_side .compare_details .steps ul {
  display: flex;
  position: relative;
}
.compare_area .left_form_side .compare_details .steps li {
  width: 26%;
  margin-right: 10px;
  display: inline-block;
  /*width: 100%;*/
  height: 15px;
  background: #e6e6e6;
  border-radius: 6px;
}
.compare_area .left_form_side .compare_details .steps li:first-child {
  background: -moz-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00b1b3), color-stop(100%, #353535));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ie10+ */
  background: linear-gradient(90deg, #00b1b3 0%, #353535 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#28a696", endColorstr="#353535",GradientType=1 );
  /* ie6-9 */
  transition: all 0.5s ease;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box .form-group label {
  font-size: 18px;
  font-weight: 600;
  color: #353535;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box .postcode a {
  background: -moz-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00b1b3), color-stop(100%, #353535));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ie10+ */
  background: linear-gradient(90deg, #00b1b3 0%, #353535 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#28a696", endColorstr="#353535",GradientType=1 );
  /* ie6-9 */
  transition: all 0.5s ease;
  color: #fff;
  border-radius: 0px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15.5px 0.75rem;
  width: 100%;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box .address_box {
  background-color: #fff;
  background: #fff;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.1);
  width: 350px;
  height: auto;
  padding: 15px 10px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box .address_box .editbox {
  font-size: 11px;
  margin-top: -11px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li {
  float: left;
  width: 180px;
  height: auto;
  overflow: hidden;
  margin-right: 15px;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li label {
  max-width: 100%;
  margin-bottom: 0;
  padding: 12px;
  position: relative;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li label .icon {
  float: left;
  width: 100%;
  text-align: center;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li label .icon i {
  font-size: 100px;
  color: #b7bbbe;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li label .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #ecedeb;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 4px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input [type=radio] + label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  width: 100%;
  background: #f4f4f4;
  padding: 12% 8%;
  border-radius: 5px;
  box-shadow: 0 6px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.13);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio]:checked + label {
  display: inline-block;
  border: 2px solid #00b1b3;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio]:checked + label .checkbox {
  border-color: #00b1b3;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio]:checked + label .icon i {
  color: #00b1b3;
  transition: all 0.3s ease-in;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio]:checked + label .icon .notsolar {
  color: #EF5E5E;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_one li input[type=radio]:checked + label:before {
  content: "✓";
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  color: #00b1b3;
  z-index: 999;
  position: absolute;
  top: 0px;
  right: 0px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three {
  width: 100%;
  margin: 0;
  padding: 0;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li {
  float: left;
  width: 130px;
  position: relative;
  list-style: none;
  background: #fff;
  padding: 0;
  text-align: center;
  margin-right: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li input[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li input[type=radio] + label {
  display: inline-block;
  padding: 12px 10px;
  background: #fff;
  min-width: 90px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 6px 0px #9e9e9e;
  border-radius: 3px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(199, 199, 199, 0.13);
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li input[type=radio]:checked + label {
  display: inline-block;
  box-shadow: 0 6px 0px #00b1b3;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li input[type=radio]:checked + label:before {
  content: "✓";
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  color: #00b1b3;
  z-index: 999;
  position: absolute;
  right: 0px;
  top: 0px;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li input[type=radio]:checked + label .checkbox {
  border-color: #00b1b3;
}
.compare_area .left_form_side .compare_details .form_wrapper .info_box ul.form_plan_gas_three li label .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #ecedeb;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 4px;
}
.compare_area .right_side_form .details_box {
  background-color: #f1f1f1;
  height: auto;
  padding: 5px 10px 10px 10px;
}
.compare_area .right_side_form .details_box .rightside-detail {
  border-bottom: 1px solid #bbbbbb;
  padding: 14px 15px;
  font-size: 15px;
}
.compare_area .right_side_form .details_box .rightside-detail:last-child {
  border-bottom: none;
}
.compare_area .right_side_form .details_box .rightside-detail h5 {
  font-size: 18px;
  font-weight: 600;
  color: #00b1b3;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.compare_area .right_side_form .details_box .rightside-detail .c-heading {
  color: #353535;
  font-weight: 600;
}

.bg-gradient {
  background: -moz-linear-gradient(0deg, #28a696 0%, #353535 100%) !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #28a696), color-stop(100%, #353535)) !important;
  background: -webkit-linear-gradient(0deg, #28a696 0%, #353535 100%) !important;
  background: -o-linear-gradient(0deg, #28a696 0%, #353535 100%) !important;
  background: -ms-linear-gradient(0deg, #28a696 0%, #353535 100%) !important;
  background: linear-gradient(90deg, #28a696 0%, #353535 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#28a696", endColorstr="#353535",GradientType=1 );
  transition: all 0.5s ease;
  color: #fff !important;
}

.active {
  display: block !important;
}

.inactive {
  display: none !important;
}

.form_usage {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
.form_usage li {
  float: left;
  width: 180px;
  height: auto;
  overflow: hidden;
  margin-right: 12px;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.form_usage li:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.form_usage li input[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.form_usage li label {
  max-width: 100%;
  margin-bottom: 0;
  padding: 12px;
  position: relative;
}
.form_usage li label .icon {
  float: left;
  width: 100%;
  text-align: center;
}
.form_usage li label .icon i {
  font-size: 100px;
  color: #b7bbbe;
}
.form_usage li label .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #ecedeb;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 4px;
}
.form_usage li input [type=radio] + label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  width: 100%;
  background: #f4f4f4;
  padding: 12% 8%;
  border-radius: 5px;
  box-shadow: 0 6px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.13);
}
.form_usage li input[type=radio]:checked + label {
  display: inline-block;
  border: 2px solid #00b1b3;
  border-radius: 12px;
  height: 100%;
}
.form_usage li input[type=radio]:checked + label .checkbox {
  border-color: #00b1b3;
}
.form_usage li input[type=radio]:checked + label .icon i {
  color: #00b1b3;
}
.form_usage li input[type=radio]:checked + label .icon .notsolar {
  color: #EF5E5E;
}
.form_usage li input[type=radio]:checked + label:before {
  content: "✓";
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  color: #00b1b3;
  z-index: 999;
  position: absolute;
  top: 0px;
  right: 0px;
}

.usage-items li {
  text-align: left !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  width: 100% !important;
  margin-right: 0 !important;
  margin-bottom: 4px !important;
  box-shadow: none;
}
.usage-items li:hover {
  box-shadow: none;
}
.usage-items li i {
  font-size: 25px;
  font-weight: 600;
  color: #00b1b3;
  float: left;
  width: 15%;
  margin-right: 10px;
}
.usage-items li span {
  float: left;
  width: 78%;
}

.checkbox-custom {
  width: 5%;
  float: left;
}
.checkbox-custom input[type=checkbox] {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}
.checkbox-custom input[type=checkbox] {
  display: none;
}
.checkbox-custom input[type=checkbox] + label:before {
  content: "✔";
  border: 0.1em solid #353535;
  border-radius: 0.2em;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  font-size: 18px;
  line-height: 18px;
  font-weight: 200 !important;
}
.checkbox-custom input[type=checkbox] + label:active:before {
  transform: scale(0);
}
.checkbox-custom input[type=checkbox]:checked + label:before {
  background-color: #00b1b3;
  border-color: #00b1b3;
  color: #fff;
}
.checkbox-custom input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}
.checkbox-custom input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.policy-text {
  font-size: 14px;
  width: 95%;
  float: left;
}

/*Surbhi*/
.step-title, .title {
  font-size: 18px;
  font-weight: 600;
  color: #00b1b3;
  position: absolute;
  top: 25px;
  text-transform: uppercase;
}

/*Compare Results*/
.title {
  position: unset !important;
  top: unset !important;
}

.btn-secondary-theme {
  background: #00b1b3 !important;
  color: white !important;
}
.btn-secondary-theme:hover {
  background: #218c7e !important;
}

.text-underline {
  text-decoration: underline !important;
}

/*Common Radio*/
.theme-radio {
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.theme-radio input[type=radio] {
  visibility: hidden;
}
.theme-radio .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #ecedeb;
  background: #fff;
  margin-right: 10px;
  position: relative;
  font-weight: bold;
  transition: all 0.2s ease-in;
}
.theme-radio input[type=radio]:checked + .checkbox {
  display: inline-block;
  border-color: #00b1b3 !important;
  transition: all 0.2s ease-in;
}
.theme-radio input[type=radio]:checked + .checkbox:hover {
  transform: scale(1, 1);
}
.theme-radio input[type=radio]:checked + .checkbox:before {
  content: "✓";
  width: 100%;
  height: 20px;
  border-radius: 100%;
  color: #28a696;
  z-index: 999;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  margin: auto;
  bottom: 0;
  text-align: center;
}

#compare_result {
  padding: 2rem 0;
}
#compare_result .filter {
  background: #f1f1f1;
  padding: 15px;
  width: 230px;
  position: relative;
  transition: 0.2s all;
  float: left;
}
#compare_result .filter h3 {
  position: relative !important;
  padding: 0 15px;
  margin-bottom: 15px;
}
#compare_result .filter h3:after {
  position: absolute;
  content: "";
  background: -moz-linear-gradient(0deg, #00b1b3 0%, #353535 100%) !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00b1b3), color-stop(100%, #353535)) !important;
  background: -webkit-linear-gradient(0deg, #00b1b3 0%, #353535 100%) !important;
  background: -o-linear-gradient(0deg, #00b1b3 0%, #353535 100%) !important;
  background: -ms-linear-gradient(0deg, #00b1b3 0%, #353535 100%) !important;
  background: linear-gradient(90deg, #00b1b3 0%, #353535 100%) !important;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: -15px;
}
#compare_result .filter ul {
  padding: 0;
  margin: 0;
  padding: 15px 0;
  /*margin-bottom: 1rem;*/
  border-bottom: 1px solid #bbbbbb;
}
#compare_result .filter ul:last-child {
  border-bottom: none;
}
#compare_result .filter ul .filter_category {
  padding: 10px 15px 20px !important;
  font-size: 16px;
  font-weight: 600;
}
#compare_result .filter ul li a {
  display: block;
  padding: 15px;
  color: #212529 !important;
}
#compare_result .results {
  margin-left: 245px;
  transition: 0.2s all;
  width: auto;
  overflow-x: hidden;
}
#compare_result .results .item {
  border-left: 10px solid #353535;
  margin-top: 15px;
  border-radius: 2px;
}
#compare_result .results .result-row {
  background: #f1f1f1;
  /*border-left: 10px solid $maincolor;*/
  color: #353535;
  font-size: 12px;
}
#compare_result .results .result-row div {
  border-width: 2px !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
#compare_result .results .result-row img {
  width: 100px;
  /*height:76px;*/
}
#compare_result .results .result-row h4 {
  color: #353535;
  font-size: 18px;
  font-weight: 600;
}
#compare_result .results .result-row .tariff {
  margin: 0;
  font-size: 12px;
  background: white;
  padding: 4px 5px;
  border-radius: 4px;
  font-weight: 500;
}
#compare_result .results .result-row .currency {
  font-size: 18px;
}
#compare_result .results .result-row small {
  font-size: 13px !important;
}
#compare_result .results .result-row h3 {
  font-size: 18px;
  font-weight: 600;
}
#compare_result .results .result-row h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ff2c2c;
}
#compare_result .results .more {
  background-color: #f7f7f7;
  /*border-left: 10px solid $maincolor;*/
  font-size: 12px;
  color: #353535;
}
#compare_result .results .more div {
  padding-top: 15px;
  padding-bottom: 15px;
}
#compare_result .results .more div h1 {
  font-size: 18px;
  font-weight: 400;
}
#compare_result .results .more div h5 {
  font-size: 22px;
  font-weight: 600;
}
#compare_result .results .more div p {
  color: #353535;
}
#compare_result .results .more div a {
  font-size: 13px;
}
#compare_result .results .more div .discount-line {
  font-size: 9px;
}
#compare_result .results .currency {
  font-size: 18px;
}
#compare_result .filter-pos {
  position: fixed;
  top: 185px;
  left: 0;
  z-index: 999999;
}
#compare_result .filter-pos img {
  color: #fff;
}

/*******************************compare-details page css start************************************/
.compare-detail-section {
  padding: 30px 0;
}
.compare-detail-section .compare-details-left {
  background-color: #ECEDEB;
  height: auto;
  padding: 30px;
}
.compare-detail-section .compare-details-left h2 {
  font-size: 18px;
  font-weight: 600;
  color: #00b1b3;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.compare-detail-section .compare-details-left .form-group label {
  font-size: 18px;
  font-weight: 600;
  color: #353535;
}
.compare-detail-section .compare-details-left .form_compare-details {
  width: 100%;
  margin: 0;
  padding: 0;
}
.compare-detail-section .compare-details-left .form_compare-details input[type=radio] {
  display: none;
}
.compare-detail-section .compare-details-left .form_compare-details li {
  float: left;
  width: 130px;
  position: relative;
  list-style: none;
  background: #fff;
  padding: 0;
  text-align: center;
  margin-right: 15px;
}
.compare-detail-section .compare-details-left .form_compare-details li input[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.compare-detail-section .compare-details-left .form_compare-details li input[type=radio] + label {
  display: inline-block;
  padding: 12px 10px;
  background: #fff;
  min-width: 90px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 6px 0px #9e9e9e;
  border-radius: 3px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(199, 199, 199, 0.13);
}
.compare-detail-section .compare-details-left .form_compare-details li input[type=radio]:checked + label {
  display: inline-block;
  box-shadow: 0 6px 0px #00b1b3;
}
.compare-detail-section .compare-details-left .form_compare-details li input[type=radio]:checked + label:before {
  content: "✓";
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  color: #00b1b3;
  z-index: 999;
  position: absolute;
  right: 0px;
  top: 0px;
}
.compare-detail-section .compare-details-left .form_compare-details li input[type=radio]:checked + label .checkbox {
  border-color: #00b1b3;
}
.compare-detail-section .compare-details-left .form_compare-details li label .checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #ecedeb;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 4px;
}
.compare-detail-section .compare-details-left .postcode a {
  background: -moz-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00b1b3), color-stop(100%, #353535));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(0deg, #00b1b3 0%, #353535 100%);
  /* ie10+ */
  background: linear-gradient(90deg, #00b1b3 0%, #353535 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#28a696", endColorstr="#353535",GradientType=1 );
  /* ie6-9 */
  transition: all 0.5s ease;
  color: #fff;
  border-radius: 0px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15.5px 0.75rem;
  width: 100%;
}
.compare-detail-section .compare-details-right {
  background-color: #ECEDEB;
  height: auto;
  padding: 30px;
}
.compare-detail-section .compare-details-right h2 {
  font-size: 18px;
  font-weight: 600;
  color: #00b1b3;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.compare-detail-section .compare-details-right .icon-home {
  font-size: 45px;
  color: #00b1b3;
}

.plan {
  background-color: #ECEDEB;
  border-left: 10px solid #1f2a5b;
  margin-bottom: 20px;
}

.comparebox {
  background-color: #ECEDEB;
  border: 1px solid #e4e4e4;
  display: flex;
  padding: 10px 0px;
}

.comparedetail {
  border: 1px solid #28a696;
  background-color: #fff;
  display: flex;
  padding: 10px;
  height: 100%;
}

.comparelogo {
  max-width: 60px;
  width: 100%;
  float: left;
  margin-right: 10px;
}

.total > .value {
  font-size: 30px;
  line-height: 24px;
}

.total > .period, .discount {
  font-size: 12px;
}

.total {
  margin-top: 10px;
}

.comparetitle {
  color: #1f2a5b;
  font-size: 18px;
  font-weight: 600;
}

.comparedetail_preview {
  background-color: #d4fffa !important;
  border: 1px dotted #28a696 !important;
}

.comparedetail_preview p {
  padding: 10px 0px;
}

.see-detail {
  padding: 1px 5px;
  float: right;
}

.comparedetail_preview p > span {
  border-radius: 30px;
  border: 1px dashed #1f2a5b;
  display: inline-block;
  line-height: 32px;
  width: 32px;
  height: 32px;
  margin-top: 6px;
}

.compare-btn {
  color: #28a696;
  font-weight: bold;
  padding: 25px 0px;
  border-radius: 5px;
}

.crossbtn {
  position: absolute;
  right: 24px;
  top: 2px;
  cursor: pointer;
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.auto-complete {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  animation: smoothScroll 0.2s forwards;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-table thead tr th {
  padding: 5px;
  border-bottom-width: inherit;
}

.search-table tbody tr td {
  padding: 5px;
}

.result-header {
  background-color: #00b1b3;
  padding: 15px 0;
}
.result-header h4 {
  color: #fff;
}

.summary-traif .icon-label {
  display: block;
  margin-bottom: 5px;
}
.summary-traif .icon-label i {
  margin-right: 3px;
  font-size: 17px;
}
.summary-traif .icon-label span {
  display: inline;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #353535;
}

.plan-id {
  font-size: 16px;
  /*text-align: right;*/
  color: #353535;
}
.plan-id img {
  width: 20px;
}

.estimated-price li:first-child {
  border-top: 0;
}
.estimated-price li {
  background: transparent;
  border-color: #dadada !important;
  display: flex;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 !important;
}
.estimated-price li span {
  flex-grow: 1;
  flex: 1;
  margin-right: 10px;
}
.estimated-price li span:nth-child(1) {
  font-size: 13px;
}
.estimated-price li span:last-child {
  margin-right: 0 !important;
}
.estimated-price li span:nth-child(3) {
  margin-right: 3rem !important;
}
.estimated-price li .line-half {
  display: block;
  font-size: 13px;
}
.estimated-price li .user i {
  margin-right: 5px;
}
.estimated-price .active-price span:first-child {
  background: #00b1b3;
  color: white;
}
.estimated-price .active-price span:nth-child(3) .h1 {
  color: #00b1b3;
}

.plan-features .list-group-item {
  background: none !important;
  border: none !important;
}
.plan-features li {
  padding: 0.4rem !important;
}
.plan-features li i {
  font-weight: bold;
}

.border-top-result {
  border-top: 3px solid #00b1b3 !important;
}

.pricing .list-group-item {
  background: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-color: #dadada !important;
}
.pricing .list-group-item img {
  width: 20px;
  margin-right: 5px;
}

.bubble {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  display: inline-block;
}

.bubble-low {
  background: #00ad00;
}

.bubble-medium {
  background: #ffa300;
}

.bubble-high {
  background: #e30000;
}

.additional-details ul li {
  padding-bottom: 6px;
}
.additional-details ul li p {
  margin-bottom: 0;
}

.compare img {
  height: 80px;
}

/*css resultpage sidenav*/
/*added on date 30/08/2019*/
.sidenav {
  height: 100%;
  width: 100%;
  max-width: 630px;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
  transform: translateX(-100%);
}
.sidenav .form-control {
  height: auto !important;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 99999;
  color: #000000 !important;
}

.open-bg {
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 999999;
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
}

.open {
  transform: translateX(0px);
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
}
.feeresults p {
  margin-bottom: 0;
}

/*news section css*/
.news-container {
  padding: 35px 0;
}
.news-container .news-block {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.news-container .news-block .overlay-link {
  outline: none;
  text-decoration: none;
}
.news-container .news-block .overlay-link:hover img {
  opacity: 0.75;
}
.news-container .news-block .image-overlay {
  position: relative;
  display: block;
  background: #000;
  min-height: 150px;
  transition: all 0.3s ease-in;
}
.news-container .news-block img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in;
}
.news-container .news-block .category {
  position: absolute;
  top: 20px;
  left: 20px;
  margin: 0;
  padding: 6px 9px;
  background: #000;
  background: #00b1b3;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.news-container .news-block .news-details {
  color: #a9a9a9;
  position: relative;
  margin-top: -40px;
  padding: 10px;
  background: #f1f1f1;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-right: 10px;
  margin-left: 10px;
  z-index: 10;
}
.news-container .news-block .news-details .news-title {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #353535;
  min-height: 100px;
}
.news-container .news-block .news-details .simple-share {
  color: #00b1b3;
  font-size: 13px;
  margin: 0 !important;
}
.news-container .news-block .news-details .simple-share .article-btn {
  float: right;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.news-container .news-block .news-details .simple-share .article-btn i {
  font-weight: 600;
  vertical-align: middle;
}

/*signup page css start*/
.signup-section .heading-signup {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #353535;
}
.signup-section label {
  font-weight: 500 !important;
}

/*custom radiobutton*/
.radio {
  margin-bottom: 6px;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #00b1b3;
  border-radius: 100%;
  border: 1px solid #00989a;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #f1f1f1;
  box-shadow: inset 0 0 0 4px #00b1b3;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #f1f1f1;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #00b1b3;
  border-color: #003334;
  background: #003334;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.service_type span {
  color: #00b1b3;
  font-size: 18px;
  font-weight: 600;
  margin-right: 10px;
}

/*# sourceMappingURL=main.css.map */
