@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300,100,900);
/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
 
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  border: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  vertical-align: calc();
}
html,
body {
  height: 100%;
}
.bodyFont {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #333333;
}
p {
  margin-bottom: 20px;
  color: #333333;
  font-size: 16px;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #48a9ea;
  font-weight: normal;
}
h1 {
  font-size: 36px;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
  }
}
h2 {
  font-size: 18px;
  margin-bottom: 0.3em;
}
h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align:center;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  h3 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}
h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.button {
  border: 0;
  background: #ea0223;
  background: -moz-linear-gradient(270deg, #ea0223 0%, #ca021f 100%);
  background: -webkit-gradient(linear, 270deg top, right top, color-stop(0%, #ea0223), color-stop(100%, #ca021f));
  background: -webkit-linear-gradient(270deg, #ea0223 0%, #ca021f 100%);
  background: -o-linear-gradient(270deg, #ea0223 0%, #ca021f 100%);
  background: -ms-linear-gradient(270deg, #ea0223 0%, #ca021f 100%);
  background: linear-gradient(to 270deg, #ea0223 0%, #ca021f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ea0223, endColorstr=#ca021f, GradientType=1);
  color: #ffffff;
  font-size: 18px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button:hover {
  background: #ca021f;
  background: -moz-linear-gradient(270deg, #ca021f 0%, #ea0223 100%);
  background: -webkit-gradient(linear, 270deg top, right top, color-stop(0%, #ca021f), color-stop(100%, #ea0223));
  background: -webkit-linear-gradient(270deg, #ca021f 0%, #ea0223 100%);
  background: -o-linear-gradient(270deg, #ca021f 0%, #ea0223 100%);
  background: -ms-linear-gradient(270deg, #ca021f 0%, #ea0223 100%);
  background: linear-gradient(to 270deg, #ca021f 0%, #ea0223 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ca021f, endColorstr=#ea0223, GradientType=1);
  transform: scale(0.95);
}
@media only screen and (max-width: 767px) {
.button {
  padding: 10px;
}
}
hr {
  border: none;
  height: 1px;
  background-color: #d5dae7;
}
body {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}
body a {
  color: #494949;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body a:hover {
  color: #333333;
}
.container {
  max-width: 1140px;
  width: 96%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .container {
    width: 96%;
  }
}
header {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
header:before,
header:after {
  content: "";
  display: table;
}
header:after {
  clear: both;
}
header .col {
  width: 50%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  padding: 23px 0 22px 0;
}
header .col:last-child {
  margin-right: 0;
}
header .col:last-child {
  text-align: right;
  padding: 53px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  header .col:last-child {
    padding: 54px 0 0;
  }
}
header .col:last-child .account {
  color: #0060a0;
  font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  header .col:last-child .account {
    display: inline-block;
  }
}
header .col:last-child .account span {
  display: inline-block;
  margin-right: 10px;
  vertical-align: -8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .col:last-child .account:hover {
  color: #29abe2;
}
header .col:last-child .account:hover i {
  transform: scale(1.15);
  color: #29abe2;
  border-color: #29abe2;
}
/*nav {
    font-size: 17px;
    text-transform: uppercase;
    .gradientTwo (@xy: 270deg);
    line-height: 60px;
    -webkit-box-shadow: 0 5px 4px 1px @color9;
    box-shadow: 0 3px 2px 1px @color9;
    position: relative;

    ul {
        list-style: none;

        li {
            display: inline-block;
            position: relative;
        }

        a {
            display: inline-block;
            padding: 0 17px;
            color: @color10;
            .transitionAll(@ms: 0.05s);

            i {
                font-size: 30px !important;
                vertical-align: -4px;
            }

            span {
                padding-left: 8px;

                i {
                    vertical-align: 2px;
                    font-size: 16px !important;
                }
            }


            &:hover, &.active {
                color: @color1;
                .gradientTwo (@xy: 270deg, @a:@color7, @b:@color8);
            }
        }
    }

    .submenu {
        .Row;
        background: @color1;
        left: 0;
        min-width: 160px;
        position: absolute;
        white-space: nowrap;
        z-index: 10;
        width: 900px;
        padding: 35px 25px;
        -webkit-box-shadow: 0px 10px 10px 0px @color9;
        box-shadow: 0px 10px 10px 0px @color9;

        .col {
            .Cols(@colspan:4,@gutter:6);

            h1 {
                color: @color10;
                font-size: 17px;
                font-weight: normal;
                padding-bottom: 15px;
                text-transform: uppercase;
                border-bottom: solid 1px fade(@color20,40%);
                line-height: 1;
            }

            ul {
                margin: 7px 0 37px;
                display: table;

                li {
                    width: 100%;
                    float: left;
                    line-height: normal;

                    a {
                        color: @color12;
                        padding: 0;
                        font-size: 15px;
                        text-transform: capitalize;
                        line-height: 22px;

                        &:hover {
                            background: none;
                            color: darken(@color12,20%);
                        }
                    }
                }

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}*/
.banner {
  background: rgba(0, 0, 0, 0) url("../../images/banner-bg.jpg") no-repeat scroll center center / cover;
  padding: 0;
  position: relative;
}
.banner .bannerMain {
  left: 200px;
  position: relative;
  width: 75%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .banner .bannerMain {
    width: 100%;
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .banner {
    padding-bottom: 20px;
  }
}
.banner .bannerImg img {
  display: block;
}
.bannerBox {
  width:100%;
  background-color: #045a9b;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: solid 4px rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 4px 10px -2px #899ea7;
  box-shadow: 0px 4px 10px -2px #6c8691;
  padding:12px 20px;
  color: #ffffff;
  position: relative;
  top:0px;
  height:130px;
  margin-bottom:25px;
}
@media only screen and (min-width:280px) and (max-width:767px) {
.bannerBox {
  width:100% !important;
  background-color: #045a9b;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: solid 4px rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 4px 10px -2px #899ea7;
  box-shadow: 0px 4px 10px -2px #6c8691;
  padding:12px 20px;
  color: #ffffff;
  position: relative;
  top:0px;
  height: auto;
  margin-bottom:25px;
}
.bannerBox .registrationStep {
  width:1000%;
  margin: 0 auto;
  padding: 0;
  padding-left:0px;
  margin-bottom: 6px;
  float:none;
}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .bannerBox {
    width: 100%;
  }
}
.bannerBox h1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #ffffff!important;
  margin-bottom: 21px;
}
.bannerBox .registrationStep {
  width:32%;
  margin: 0 auto;
  padding: 0;
  padding-left:0px;
  margin-bottom: 6px;
  float: left;
}
.bannerBox .registrationStep:before,
.bannerBox .registrationStep:after {
  content: "";
  display: table;
}
.bannerBox .registrationStep:after {
  clear: both;
}
.bannerBox .registrationStep span {
  height: 42px;
  width: 42px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #29abe2;
  text-align: center;
  line-height: 55px;
  float: left;
  margin-right:20px;
  margin-bottom:10px;
}
.bannerBox .registrationStep span img {
  width: 60%;
}
.bannerBox .registrationStep p {
  font-size: 16px;
  float:none ;
  margin: 5px 0 0 14px;
  color: #ffffff;
}

@media only screen and (min-width:280px) and (max-width:767px) {
.bannerBox .registrationStep {
  width:100%;
  margin: 0 auto;
  padding: 0;
  padding-left:0px;
  margin-bottom: 6px;
  float:none;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .bannerBox .registrationStep {
    float: left;
    width: 33.3%;
  }
}
.bannerBox .medicalInfo {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding: 15px 0 0 10px;
  display: table;
}
.bannerBox .medicalInfo:before,
.bannerBox .medicalInfo:after {
  content: "";
  display: table;
}
.bannerBox .medicalInfo:after {
  clear: both;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .bannerBox .medicalInfo {
    padding-left: 0;
  }
}
.bannerBox .medicalInfo .col {
  width: 50%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
.bannerBox .medicalInfo .col:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .bannerBox .medicalInfo .col {
    width: 50%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    text-align: right;
    padding: 0 10px;
  }
  .bannerBox .medicalInfo .col:last-child {
    margin-right: 0;
  }
  .bannerBox .medicalInfo .col:last-child {
    width: 50%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    text-align: left;
    padding: 0 10px;
  }
  .bannerBox .medicalInfo .col:last-child:last-child {
    margin-right: 0;
  }
}
.bannerBox .medicalInfo .col h2 {
  color: #cce4f5;
  font-size: 15px;
  font-weight: bold;
  line-height: 14px;
}
.bannerBox .medicalInfo .col p {
  font-size: 8px;
  color: #ffffff;
}
.bannerBox .medicalInfo .col:last-child h2 {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  border-bottom: solid 1px rgba(255, 255, 255, 0.7);
  padding-bottom: 5px;
}
.onlinedoctorinsRow {
  background: #c7ecfd;
  background: -moz-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -webkit-gradient(linear, 270deg top, right top, color-stop(0%, #c7ecfd), color-stop(100%, #8bd4f5));
  background: -webkit-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -o-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -ms-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: linear-gradient(to 270deg, #c7ecfd 0%, #8bd4f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c7ecfd, endColorstr=#8bd4f5, GradientType=1);
  -webkit-box-shadow: 0 5px 4px 1px #a6b6bd;
  box-shadow: 0 3px 2px 1px #a6b6bd;
  position: relative;
  color: #045a9b;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .onlinedoctorinsRow {
    padding-bottom: 0;
  }
}
.onlinedoctorinsRow .onlinedoctorinsBox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.onlinedoctorinsRow .onlinedoctorinsBox:before,
.onlinedoctorinsRow .onlinedoctorinsBox:after {
  content: "";
  display: table;
}
.onlinedoctorinsRow .onlinedoctorinsBox:after {
  clear: both;
}
.onlinedoctorinsRow .onlinedoctorinsBox .col {
  width: 17.2%;
  float: left;
  padding: 0;
  margin: 0 3.5% 0 0;
  padding-right: 0;
}
.onlinedoctorinsRow .onlinedoctorinsBox .col:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  .onlinedoctorinsRow .onlinedoctorinsBox .col {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .onlinedoctorinsRow .onlinedoctorinsBox .col {
    width: 33.33333333%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding-right: 40px;
    margin-bottom: 20px;
    min-height: 50px;
  }
  .onlinedoctorinsRow .onlinedoctorinsBox .col:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .onlinedoctorinsRow .onlinedoctorinsBox .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 15px;
  }
  .onlinedoctorinsRow .onlinedoctorinsBox .col:last-child {
    margin-right: 0;
  }
  .onlinedoctorinsRow .onlinedoctorinsBox .col:last-child {
    margin-bottom: 0;
  }
  .onlinedoctorinsRow .onlinedoctorinsBox .col span {
    line-height: 26px;
  }
}
.onlinedoctorinsRow .onlinedoctorinsBox .col img {
  display: block;
  float: left;
  margin-right: 20px;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .onlinedoctorinsRow .onlinedoctorinsBox .col img {
    margin-top: 2px;
  }
}
.aboutText {
  text-align: center;
  padding: 20px 0;
  color: #29abe2;
  font-size: 17px;
  background-color: #f2f5fc;
  line-height: 24px;
}
.aboutText .container {
  max-width: 730px;
}
.informationText {
  text-align: left;
  padding: 20px 0;
  color: #29abe2;
  font-size: 17px;
  background-color: #f2f5fc;
  line-height: 24px;
}
.informationText .container {
  max-width: 730px;
}
.regiBox {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding: 30px 0;
  max-width: 680px;
}
.regiBox:before,
.regiBox:after {
  content: "";
  display: table;
}
.regiBox:after {
  clear: both;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .regiBox {
    padding: 30px 0;
    max-width: 100%;
  }
}
.regiBox .col {
  width: 33.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.regiBox .col:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .regiBox .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  .regiBox .col:last-child {
    margin-right: 0;
  }
  .regiBox .col:last-child {
    margin-bottom: 0;
  }
}
.regiBox .col:after {
  content: '';
  border-bottom: 3px dotted #e1e1e1;
  position: absolute;
  top: 70px;
  height: 1px;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .regiBox .col:after {
    width: 0;
  }
}
.regiBox .col:last-child {
  padding: 0 0px;
}
.regiBox .col:last-child:after {
  border: 0;
}
.regiBox .regIcon {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #29abe2;
  text-align: center;
  line-height: 140px;
}
.regiBox h2 {
  color: #29abe2;
  line-height: 18px;
  margin-top: 8px;
}
.regiBox p {
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  padding-top: 8px;
}
.titleBg {
  text-align: center;
  position: relative;
}
.titleBg:after {
  content: '';
  height: 1px;
  width: 100%;
  border-bottom: #29abe2 1px solid;
  position: absolute;
  top: 23px;
  left: 0;
  z-index: 1;
}
.titleBg .title {
  height: 48px;
  line-height: 48px;
  background: #c7ecfd;
  background: -moz-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -webkit-gradient(linear, 270deg top, right top, color-stop(0%, #c7ecfd), color-stop(100%, #8bd4f5));
  background: -webkit-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -o-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: -ms-linear-gradient(270deg, #c7ecfd 0%, #8bd4f5 100%);
  background: linear-gradient(to 270deg, #c7ecfd 0%, #8bd4f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c7ecfd, endColorstr=#8bd4f5, GradientType=1);
  border: #29abe2 1px solid;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 0 35px;
  font-size: 17px;
  color: #0060a0;
  display: inline-block;
  position: relative;
  -webkit-box-shadow: 0 1px 2px 1px #a6b6bd;
  box-shadow: 0 1px 2px 1px #a6b6bd;
  z-index: 9;
}
.titleBg .title:before {
  content: '';
  height: 5px;
  width: 5px;
  background-color: #ffffff;
  border: #29abe2 1px solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 10px;
  -webkit-box-shadow: inset 0 1px 1px 1px #a6b6bd;
  box-shadow: inset 0 1px 1px 1px #a6b6bd;
}
.titleBg .title:after {
  content: '';
  height: 5px;
  width: 5px;
  background-color: #ffffff;
  border: #29abe2 1px solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 10px;
  -webkit-box-shadow: inset 0 1px 1px 1px #a6b6bd;
  box-shadow: inset 0 1px 1px 1px #a6b6bd;
}
.titleBg .title span:before {
  content: '';
  height: 1px;
  width: 13px;
  border-top: #29abe2 1px solid;
  position: absolute;
  top: 23px;
  left: 0px;
}
.titleBg .title span:after {
  content: '';
  height: 1px;
  width: 13px;
  border-top: #29abe2 1px solid;
  position: absolute;
  top: 23px;
  right: 0px;
  z-index: 1;
}
.treatmentBox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding: 30px 0;
}
.treatmentBox:before,
.treatmentBox:after {
  content: "";
  display: table;
}
.treatmentBox:after {
  clear: both;
}
.treatmentBox .col {
  position: relative;
  display: block;
  width: 24.25%;
  float: left;
  padding: 0;
  margin: 0 1% 0 0;
  margin-bottom: 10px;
  border: #e1e1e1 1px solid;
  overflow: hidden;
}
.treatmentBox .col:last-child {
  margin-right: 0;
}
.treatmentBox .col:nth-child(4n+4) {
  margin-right: 0px;
}
@media only screen and (max-width: 767px) {
  .treatmentBox .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 15px;
  }
  .treatmentBox .col:last-child {
    margin-right: 0;
  }
}
.treatmentBox .col .treatmentImg {
  display: block;
}
.treatmentBox .col .treatmentImg img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.treatmentBox .col .tretmentText {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(1, 151, 218, 0.8);
  color: #ffffff;
  width: 100%;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .treatmentBox .col .tretmentText {
    padding: 10px;
  }
}
.treatmentBox .col .tretmentText i {
  float: right;
  padding-top: 2px;
}
.treatmentBox .col:hover .treatmentImg img {
  transform: scale(1.1);
}
.treatmentBox .col:hover .tretmentText {
  background-color: #29abe2;
}
.treatmentBtn {
  text-align: center;
  margin-bottom: 40px;
}
.reviewsBox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 1006px;
  padding: 80px 0 70px;
}
.reviewsBox:before,
.reviewsBox:after {
  content: "";
  display: table;
}
.reviewsBox:after {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .reviewsBox {
    padding: 20px 0 70px;
  }
}
.reviewsBox .col {
  position: relative;
  width: 30.66666667%;
  float: left;
  padding: 0;
  margin: 0 4% 0 0;
  text-align: center;
}
.reviewsBox .col:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  .reviewsBox .col:last-child {
    margin-right: 0;
  }
  .reviewsBox .col:last-child {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col.colBorder {
    border-top: solid 3px #f3f1ed;
    border-bottom: solid 1px #f3f1ed;
    padding: 20px 0;
  }
}
.reviewsBox .col.colBorder:after,
.reviewsBox .col.colBorder:before {
  position: absolute;
  top: -20px;
  height: 350px;
  width: 2px;
  right: -15px;
  border-left: solid 2px #f3f1ed;
  content: "";
}
.reviewsBox .col.colBorder:before {
  left: -15px;
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col.colBorder:after,
  .reviewsBox .col.colBorder:before {
    border: none;
    display: none;
  }
}
.reviewsBox .col:last-child {
  text-align: left;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col:last-child {
    padding: 0 7px;
  }
  .reviewsBox .col:last-child .flexslider {
    margin-bottom: 30px;
  }
  .reviewsBox .col:last-child .flex-control-nav {
    text-align: left;
  }
}
.reviewsBox .col .reviewsCount span {
  display: block;
  font-size: 94px;
  color: #29abe2;
  font-weight: 300;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reviewsBox .col .reviewsCount span {
    font-size: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col .reviewsCount span {
    font-size: 44px;
  }
}
.reviewsBox .col .reviewsCount p {
  font-size: 18px;
  color: #29abe2;
  font-weight: 300;
  text-transform: uppercase;
}
.reviewsBox .col .reviewRating {
  margin-top: 55px;
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col .reviewRating {
    margin-top: 20px;
  }
}
.reviewsBox .col .reviewRating i {
  font-size: 44px;
  color: #d70221;
  margin-right: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reviewsBox .col .reviewRating i {
    font-size: 35px;
  }
}
.reviewsBox .col .reviewRating span {
  display: block;
  font-size: 18px;
  color: #999999;
  font-weight: 300;
  text-transform: uppercase;
}
.reviewsBox .col .reviewLinks {
  padding: 0 0 65px;
}
@media only screen and (max-width: 767px) {
  .reviewsBox .col .reviewLinks {
    padding-bottom: 35px;
  }
  .reviewsBox .col .reviewLinks:last-child {
    padding-bottom: 0px;
  }
}
.reviewsBox .col .reviewLinks:first-child {
  padding-top: 0px;
}
.reviewsBox .col .reviewLinks span {
  display: block;
  font-size: 15px;
  color: #999999;
  font-weight: 300;
  text-transform: uppercase;
}
.reviewsBox .col .reviewLine {
  font-size: 14px;
  font-style: italic;
  color: #757575;
  padding-bottom: 50px;
}
.reviewsBox .col .reviewLine i {
  height: 40px;
  float: left;
  padding-right: 5px;
}
.reviewsBox .col .reviewLine i:before {
  color: #29abe2;
}
.reviewsBox .col .reviewAuthore {
  font-size: 14px;
  color: #1a1a1a;
}
.reviewsBox .col .reviewTime {
  color: #757575;
  padding: 10px 0 0;
  font-size: 14px;
}
.reviewsBox .col .feefoLink {
  font-style: italic;
  padding-bottom: 25px;
}
.reviewsBox .col .feefoLink a {
  color: #29abe2;
  padding: 0 5px;
}
.reviewsBox .col .readBtn .button {
  font-size: 13px;
  padding: 14px 15px;
}
.box_shedow {
  position: relative;
}
.box_shedow:after,
.box_shedow:before {
  content: "";
  height: 57px;
  position: absolute;
  top: -57px;
  width: 100%;
  background-color: #f2f5fc;
  border-top: solid 1px #29abe2;
}
.box_shedow:before {
  -webkit-box-shadow: 0 0 3px 2px #bcbcbc;
  box-shadow: 0 0 3px 2px #bcbcbc;
  height: auto;
  z-index: 999;
  top: -55px;
  border: 0;
}
footer .footerTop {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  padding: 18px 0;
  position: relative;
  display: table;
}
footer .footerTop:before,
footer .footerTop:after {
  content: "";
  display: table;
}
footer .footerTop:after {
  clear: both;
}
footer .footerTop .col {
  width: 25%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
footer .footerTop .col:last-child {
  margin-right: 0;
}
footer .footerTop .col.socialMedia a {
  background-color: rgba(4, 90, 155, 0.9);
  color: #ffffff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  font-size: 30px;
  margin-right: 30px;
}
footer .footerTop .col.socialMedia a:last-child {
  margin: 0;
}
footer .footerTop .col.socialMedia a:hover {
  background-color: rgba(4, 90, 155, 0.7);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  footer .footerTop .col.socialMedia a {
    margin-right: 10px;
  }
}
footer .footerTop .col:last-child {
  width: 75%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  font-weight: bold;
  color: #045a9b;
  padding-left: 77px;
}
footer .footerTop .col:last-child:last-child {
  margin-right: 0;
}
footer .footerTop .col:last-child span {
  display: inline-block;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  footer .footerTop .col:last-child span {
    width: 100%;
    text-align: center;
  }
}
footer .footerTop .col:last-child strong {
  padding: 0 40px;
  font-size: 26px;
  vertical-align: 10px;
}
@media only screen and (max-width: 767px) {
  footer .footerTop .col:last-child strong {
    width: 100%;
    display: inline-block;
    padding: 20px 0;
    text-align: center;
  }
}
footer .footerTop .col:last-child strong span {
  color: #29abe2;
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  footer .footerTop .col:last-child strong span {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  footer .footerTop .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  footer .footerTop .col:last-child {
    margin-right: 0;
  }
  footer .footerTop .col.socialMedia {
    margin-bottom: 20px;
    text-align: center;
  }
  footer .footerTop .col:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  footer .footerTop .col:last-child:last-child {
    margin-right: 0;
  }
}
footer .footerMiddle {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #045a9b;
  padding: 50px 0 45px;
  color: rgba(255, 255, 255, 0.9);
}
footer .footerMiddle:before,
footer .footerMiddle:after {
  content: "";
  display: table;
}
footer .footerMiddle:after {
  clear: both;
}
footer .footerMiddle .col {
  width: 32%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
footer .footerMiddle .col:last-child {
  margin-right: 0;
}
footer .footerMiddle .col:first-child {
  width: 23.5%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
footer .footerMiddle .col:first-child:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  footer .footerMiddle .col:first-child {
    width: 23.5%;
    float: left;
    padding: 0;
    margin: 0 2% 0 0;
  }
  footer .footerMiddle .col:first-child:last-child {
    margin-right: 0;
  }
}
footer .footerMiddle .col:last-child {
  width: 40.5%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
footer .footerMiddle .col:last-child:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  footer .footerMiddle .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  footer .footerMiddle .col:last-child {
    margin-right: 0;
  }
  footer .footerMiddle .col:first-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  footer .footerMiddle .col:first-child:last-child {
    margin-right: 0;
  }
  footer .footerMiddle .col:last-child {
    margin-bottom: 0;
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  footer .footerMiddle .col:last-child:last-child {
    margin-right: 0;
  }
}
footer .footerMiddle .col h1 {
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
footer .footerMiddle .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footerMiddle .col ul li a {
  color: #cce4f5;
  font-size: 14px;
  line-height: 20px;
}
footer .footerMiddle .col ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .footerMiddle .col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
footer .footerMiddle .col p a {
  color: #ffffff;
}
footer .footerMiddle .col p a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .footerBottom {
  /*background-color: darken(@color11,10.5%);*/
  padding: 42px 0;
  background-color: #004182;
}
@media only screen and (max-width: 767px) {
  footer .footerBottom {
    padding: 15px 0;
  }
}
footer .footerBottom ul {
  list-style: none;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  footer .footerBottom ul {
    margin-bottom: 20px;
  }
}
footer .footerBottom ul li {
  display: inline-block;
  line-height: 10px;
  padding: 0 10px;
  border-left: solid 1px rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 767px) {
  footer .footerBottom ul li {
    width: 100%;
    border: none;
    padding: 0;
    line-height: 30px;
    text-align: center;
  }
}
footer .footerBottom ul li:first-child {
  padding-left: 0;
  border: none;
}
footer .footerBottom ul li a {
  color: #cce4f5;
  font-size: 14px;
  vertical-align: 4px;
}
footer .footerBottom ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .footerBottom p {
  font-size: 12px;
  color: #cce4f5;
}
@media only screen and (max-width: 767px) {
  footer .footerBottom p {
    text-align: center;
  }
}
.treatmentMain {
  background-color: #f2f5fc;
/*  padding-bottom: 57px;*/
}
.treatmentMain .breatcum {
  padding: 40px 0 30px;
}
.treatmentMain .breatcum a {
  color: #0060a0;
  font-size: 15px;
}
.treatmentMain .treatmentBoxIn {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 4px 1px #a6b6bd;
  box-shadow: 0 3px 2px 1px #a6b6bd;
  padding: 32px 18px;
}





.treatmentMain .treatmentBoxIn .input-wrapper {
    position: relative;
    width: 16%;
    font-size: 14px;
    float: left;
	margin-top:10px;
	margin-right:30px;
}
.treatmentMain .treatmentBoxIn .input-wrapper .input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: #333333;
    border: none;
    border-radius: 5px;
    position: relative;
	 border: solid 1px #d5dae7;
    z-index: 9;
    width: 100%;
    padding-left: 10px;
    height: 36px;
}
.treatmentMain .treatmentBoxIn .label {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: #333333;
    border: none;
    position: relative;
    z-index: 9;
	float:left;
	margin-top:18px;
	width:100px;
}
.inputmain { float:left; width:80%; }

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .treatmentMain .treatmentBoxIn .input-wrapper {
    width: 100%;
	}
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
	.treatmentMain .treatmentBoxIn .input-wrapper {
    position: relative;
    width: 50%;
    border: solid 1px #d5dae7;
    height: 38px;
    border-radius: 5px;
    font-size: 14px;
    float: none;
	margin:10px auto 0 auto;
}
.treatmentMain .treatmentBoxIn .label {
 	float:none;
	margin-top:18px;
	width:100%;
}
.treatmentMain .treatmentBoxIn .input-wrapper .input { text-align:center;  }
.inputmain { float:none; margin-right:0px; margin-top:10px; text-align:center; }
}

.treatmentMain .treatmentBoxIn:before,
.treatmentMain .treatmentBoxIn:after {
  content: "";
  display: table;
}
.treatmentMain .treatmentBoxIn:after {
  clear: both;
}
.treatmentMain .treatmentBoxIn .treatmentText {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.treatmentMain .treatmentBoxIn .treatmentText:before,
.treatmentMain .treatmentBoxIn .treatmentText:after {
  content: "";
  display: table;
}
.treatmentMain .treatmentBoxIn .treatmentText:after {
  clear: both;
}
.treatmentMain .treatmentBoxIn .treatmentText .col {
  width: 57.08333333%;
  float: left;
  padding: 0;
  margin: 0 3% 0 0;
}
.treatmentMain .treatmentBoxIn .treatmentText .col:last-child {
  margin-right: 0;
}
.treatmentMain .treatmentBoxIn .treatmentText .col h1 {
  color: #0060a0;
  font-weight: normal;
  margin-bottom: 26px;
}
.treatmentMain .treatmentBoxIn .treatmentText .col h3 {
  color: #48a9ea;
  margin-bottom: 27px;
}
.treatmentMain .treatmentBoxIn .treatmentText .col p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 22px;
}
.treatmentMain .treatmentBoxIn .treatmentText .col p:last-child {
  margin-bottom: 0;
}
.treatmentMain .treatmentBoxIn .treatmentText .col:last-child {
  width: 39.91666667%;
  float: left;
  padding: 0;
  margin: 0 3% 0 0;
}
.treatmentMain .treatmentBoxIn .treatmentText .col:last-child:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .treatmentMain .treatmentBoxIn .treatmentText .col:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .treatmentMain .treatmentBoxIn .treatmentText .col:last-child:last-child {
    margin-right: 0;
  }
  .treatmentMain .treatmentBoxIn .treatmentText .col:last-child img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .treatmentMain .treatmentBoxIn .treatmentText .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 20px;
  }
  .treatmentMain .treatmentBoxIn .treatmentText .col:last-child {
    margin-right: 0;
  }
}
.treatmentMain .treatmentBoxIn .boxTreatment {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 60px;
}
.treatmentMain .treatmentBoxIn .boxTreatment:before,
.treatmentMain .treatmentBoxIn .boxTreatment:after {
  content: "";
  display: table;
}
.treatmentMain .treatmentBoxIn .boxTreatment:after {
  clear: both;
}
.treatmentMain .treatmentBoxIn .boxTreatment .treatmentBox {
  padding: 0;
}
.treatmentMain .treatmentBoxIn .boxTreatment h3 {
  color: #48a9ea;
  margin-bottom: 12px;
}
.treatmentMain .treatmentBoxIn .productText {
  margin-top: 46px;
}
.treatmentMain .treatmentBoxIn .productText h3 {
  color: #48a9ea;
  margin-bottom: 30px;
}
.treatmentMain .treatmentBoxIn .productText .col {
  width: 48.5%;
  float: left;
  padding: 0;
  margin: 0 3% 0 0;
}
.treatmentMain .treatmentBoxIn .productText .col:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .treatmentMain .treatmentBoxIn .productText .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 20px;
  }
  .treatmentMain .treatmentBoxIn .productText .col:last-child {
    margin-right: 0;
  }
}
.treatmentMain .treatmentBoxIn .productText .col .feildText {
  margin: 30px 0 0;
}
.treatmentMain .treatmentBoxIn .productText .col .feildText ul {
  margin-top: 10px;
  padding-left: 30px;
}
.treatmentMain .treatmentBoxIn.treatmentBoxInPadding {
  padding: 32px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .treatmentMain .treatmentBoxIn.treatmentBoxInPadding {
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .treatmentMain .treatmentBoxIn.treatmentBoxInPadding {
    padding: 32px 10px;
  }
}
.productDetailsMain {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-bottom: solid 1px #d5dae7;
  padding-bottom: 20px;
  margin-bottom:0px;
}
.productDetailsMain:before,
.productDetailsMain:after {
  content: "";
  display: table;
}
.productDetailsMain:after {
  clear: both;
}
.productDetailsMain .col {
  width: 50%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
.productDetailsMain .col:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .productDetailsMain .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .productDetailsMain .col:last-child {
    margin-right: 0;
  }
}
.productDetailsMain .col.productImg {
  text-align: center;
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .productDetailsMain .col.productImg {
    padding: 100px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .productDetailsMain .col.productImg {
    padding: 0 0 30px 0;
  }
}
.productDetailsMain .col h1 {
  color: #0060a0;
  margin-bottom: 3px;
}
.productDetailsMain .col h4 {
  margin-bottom: 10px;
}
.productDetailsMain .col .ratingMain {
  border-top: solid 1px #d5dae7;
  border-bottom: solid 1px #d5dae7;
  padding: 12px 0;
}
.productDetailsMain .col .ratingMain span {
  float: left;
  padding-right: 12px;
}
@media only screen and (max-width: 767px) {
  .productDetailsMain .col .ratingMain span {
    padding: 0 0 15px 0;
    width: 100%;
  }
}
.productDetailsMain .col .ratingMain span i {
  color: #d70221;
  font-size: 26px;
}
.productDetailsMain .col .ratingMain p {
  line-height: 24px;
}
.productDetailsMain .col .ratingMain p.includePrice {
  line-height: 40px;
}
.productDetailsMain .col .ratingMain big {
  float: left;
  font-size: 36px;
  font-weight: 300;
  color: #0060a0;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .productDetailsMain .col .ratingMain big {
    width: 100%;
  }
}
.productDetailsMain .col .feildMain {
  padding: 12px 0;
}
.productDetailsMain .col .feildMain .feild {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 12px;
}
.productDetailsMain .col .feildMain .feild:before,
.productDetailsMain .col .feildMain .feild:after {
  content: "";
  display: table;
}
.productDetailsMain .col .feildMain .feild:after {
  clear: both;
}
.productDetailsMain .col .feildMain .feild:last-child {
  margin-bottom: 0;
}
.productDetailsMain .col .feildMain .feild span {
  width: 167px;
  float: left;
  line-height: 38px;
}
.productDetailsMain .col .feildMain .feild .select-wrapper {
  position: relative;
  width: 296px;
  border: solid 1px #d5dae7;
  height: 38px;
  border-radius: 5px;
  font-size: 14px;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .productDetailsMain .col .feildMain .feild .select-wrapper {
    width: 100%;
  }
}
.productDetailsMain .col .feildMain .feild .select-wrapper .select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #333333;
  border: none;
  position: relative;
  z-index: 9;
  width: 100%;
  padding-left: 10px;
  height: 36px;
}
@media only screen and (max-width: 767px) {
  .productDetailsMain .col .feildMain .feild .select-wrapper .select {
    width: 100%;
  }
}
.productDetailsMain .col .feildMain .feild .select-wrapper .select option {
  padding: 5px 10px;
}
.productDetailsMain .col .feildMain .feild .select-wrapper:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333333;
  position: absolute;
  right: 10px;
  top: 15px;
  pointer-events: none;
  z-index: 99;
}
.productDetailsMain .col .feildMain .feild select::-ms-expand {
  display: none;
}
.productDetailsMain .col .feildMain .feild i {
  margin: 10px 0 0 -20px;
  position: absolute;
}
.productDetailsMain .col .buytreatment {
  padding-top: 20px;
}
.productDetailsMain .col .buytreatment .button {
  float: left;
}
.productDetailsMain .col .buytreatment .deliveryDate {
  float: left;
  margin-left: 30px;
  padding: 5px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .productDetailsMain .col .buytreatment .deliveryDate {
    width: 100%;
    margin-left: 0;
  }
}
.productDetailsMain .col .buytreatment .deliveryDate a {
  color: #0060a0;
  margin: 7px 0 0;
  display: block;
}
.productDetailsMain .col .buytreatment .deliveryDate a:hover {
  text-decoration: underline;
}
.priceDetails {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.priceDetails:before,
.priceDetails:after {
  content: "";
  display: table;
}
.priceDetails:after {
  clear: both;
}
.priceDetails .col {
  width: 66.66666667%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
.priceDetails .col:last-child {
  margin-right: 0;
}
.priceDetails .col:last-child {
  width: 80%;
  float: none;
  padding: 0;
  margin:0 10%;
}
.priceDetails .col:last-child:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .priceDetails .col:last-child {
    text-align: center;
  }
}
.priceDetails .col:last-child.DetailBox .bannerBox {
  width: 320px;
  float: right;
  box-shadow: none;
  border: none;
  position: relative;
  top: auto;
}
@media only screen and (max-width: 767px) {
  .priceDetails .col:last-child.DetailBox .bannerBox {
    float: none;
    display: inline-block;
    width: 280px;
    border: solid 4px rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0px 0px 10px 2px #899ea7;
    box-shadow: 0px 0px 10px 2px #6c8691;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .priceDetails .col:last-child.DetailBox .bannerBox {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .priceDetails .col:last-child.DetailBox .bannerBox .registrationStep {
    float: none;
    width: 33%;
    display: inline-block;
    text-align: left;
  }
  .priceDetails .col:last-child.DetailBox .bannerBox .registrationStep p {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .priceDetails .col:last-child.DetailBox .bannerBox .registrationStep {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .priceDetails .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  .priceDetails .col:last-child {
    margin-right: 0;
  }
  .priceDetails .col:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  .priceDetails .col:last-child:last-child {
    margin-right: 0;
  }
  .priceDetails .col:last-child .bannerBox {
    padding: 20px 13px;
  }
}
@media only screen and (max-width: 767px) {
  .priceDetails .DataTable {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.priceDetails .DataTable table {
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .priceDetails .DataTable table {
    margin-bottom: 0;
  }
}
.priceDetails .DataTable table th {
  background-color: #48a9ea;
  color: #ffffff;
  padding: 9px 20px;
  text-align: center;
}
.priceDetails .DataTable table th:first-child {
  text-align: left;
}
.priceDetails .DataTable table td {
  border-right: solid 1px #d5dae7;
  border-bottom: solid 1px #d5dae7;
  padding: 9px 20px;
  text-align: center;
}
.priceDetails .DataTable table td:first-child {
  text-align: left;
  border-left: solid 1px #d5dae7;
}
.priceDetails .tabMain {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .priceDetails .tabMain {
    margin-bottom: 40px;
  }
  .priceDetails .tabMain .DataTable {
    margin-bottom: 30px;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
  }
}
.priceDetails .tabMain table th,
.priceDetails .tabMain table td {
  text-align: left;
  padding: 9px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .priceDetails .tabMain table th,
  .priceDetails .tabMain table td {
    padding: 9px 15px;
  }
}
.priceDetails .tabMain:last-child {
  margin-bottom: 0;
}
.priceDetails .tabMain .tabcontentText {
  background-color: #f2f5fc;
  padding: 40px 30px !important;
  border: solid 1px #48a9ea;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .priceDetails .tabMain .tabcontentText {
    padding: 15px !important;
  }
}
.priceDetails .tabMain .TabmenuPadding {
  padding: 0 12px;
  border: none;
}
.priceDetails .tabMain .TabmenuPadding li {
  margin-right: 1px;
}
.priceDetails .tabMain .TabmenuPadding li a {
  border: solid 1px #d9dde9;
  border-radius: 10px 10px 0 0;
  padding: 17px 55px;
}
.priceDetails .tabMain .TabmenuPadding li.active a {
  background-color: #48a9ea;
  color: #ffffff;
  border-color: #48a9ea;
}
.BuytreatmentPadding {
  padding: 32px 30px;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding {
    padding: 32px 10px !important;
  }
}
.BuytreatmentPadding h1 {
  color: #0060a0;
  margin-bottom:15px;
  font-size:30px;
}
@media only screen and (max-width: 767px) {
.BuytreatmentPadding h1 {
  font-size:20px;
}
}
.BuytreatmentPadding .medicalSubTitle {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: solid 1px #dcdcdc;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(220, 220, 220, 0.35);
  margin-bottom: 30px;
}
.BuytreatmentPadding .medicalSubTitle:before,
.BuytreatmentPadding .medicalSubTitle:after {
  content: "";
  display: table;
}
.BuytreatmentPadding .medicalSubTitle:after {
  clear: both;
}
.BuytreatmentPadding .medicalSubTitle p {
  float: left;
  margin-bottom: 0;
  line-height: 41px;
  padding-left: 5px;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .medicalSubTitle p {
    line-height: normal;
  }
}
.BuytreatmentPadding .medicalSubTitle .button {
  font-size: 16px;
/*  padding: 10px 35px;*/
  float: right;
  font-weight: bold;
}
.BuytreatmentPadding .medicalSubTitle a.button {
  font-size: 16px;
/*  padding: 10px 35px;*/
  float: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .medicalSubTitle .button {
    display: block;
    margin: 15px 0 0;
    white-space: normal;
    width: 100%;
  }
}
.BuytreatmentPadding .aboutBlock {
  border: solid 1px #dcdcdc;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock {
    border: 0;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild {
  border-bottom: solid 1px #dcdcdc;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.BuytreatmentPadding .aboutBlock .aboutFeild:before,
.BuytreatmentPadding .aboutBlock .aboutFeild:after {
  content: "";
  display: table;
}
.BuytreatmentPadding .aboutBlock .aboutFeild:after {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild {
    margin-bottom: 20px;
    border: solid 1px #dcdcdc;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild .aboutTitle {
  padding: 10px 15px;
  background-color: rgba(220, 220, 220, 0.35);
  font-weight: 700;
  border-bottom: solid 1px #dcdcdc;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col {
  width: 83.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  padding: 20px 15px 35px 15px;
  border-right: solid 1px #dcdcdc;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col {
    width: 75%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 20px 15px 35px 15px;
  }
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 20px 15px 0;
    border-right: none;
    background-color: rgba(220, 220, 220, 0.1);
  }
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
    margin-right: 0;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col p {
    text-align: center;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col ul {
  padding: 10px 0 0 40px;
  display: table-cell;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col ul {
    padding: 20px 0 0 15px;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col ul li {
/*	list-style: none;
  font-size: 12px;
  color: rgba(51, 51, 51, 0.5);*/
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
  width: 16.66666667%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  padding: 15px 15px 0;
  border: 0;
  text-align: center;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
    width: 25%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 15px 15px 0;
  }
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 20px 15px;
  }
  .BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child:last-child {
    margin-right: 0;
  }
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child .choesefeild {
  display: inline-block;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child .choesefeild input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child .choesefeild label {
  display: block;
  position: relative;
  font-size: 15px;
  padding: 12px 5px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  text-align: center;
  border: solid 1px rgba(51, 51, 51, 0.45);
  border-radius: 5px;
  min-width: 50px;
}
.BuytreatmentPadding .aboutBlock .aboutFeild .col:last-child .choesefeild input[type=radio]:checked ~ label {
  background-color: #0060a0;
  color: #ffffff;
}
.BuytreatmentPadding .checkbox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding: 0 0 25px;
  margin: 35px 0 0;
}
.BuytreatmentPadding .checkbox:before,
.BuytreatmentPadding .checkbox:after {
  content: "";
  display: table;
}
.BuytreatmentPadding .checkbox:after {
  clear: both;
}
.BuytreatmentPadding .checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 15px;
  font-size: 13px;
}
.BuytreatmentPadding .checkbox label:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: -10px;
  border: solid 1px rgba(41, 171, 226, 0.5);
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
}
.BuytreatmentPadding .checkbox label:before {
  border-radius: 7px;
}
.BuytreatmentPadding .checkbox input[type=radio],
.BuytreatmentPadding .checkbox input[type=checkbox] {
  display: none;
}
.BuytreatmentPadding .checkbox input[type=checkbox]:checked + label:before {
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 25px;
  color: #f3f3f3;
  text-align: center;
  line-height: 32px;
  background-color: #0060a0;
  font-weight: bold;
}
.BuytreatmentPadding .checkbox span {
  font-size: 18px;
  color: #0060a0;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .BuytreatmentPadding .checkbox span {
    margin: -30px 0 0 48px;
    float: left;
    line-height: normal;
  }
}
.BuytreatmentPadding .checkbox span a {
  font-weight: bold;
  text-decoration: underline;
  color: #e80223;
}
.BuytreatmentPadding .checkbox span a:hover {
  text-decoration: none;
}
.menu_row {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.menu_row:before,
.menu_row:after {
  content: "";
  display: table;
}
.menu_row:after {
  clear: both;
}
.menu_row .col {
  width: 30.66666667%;
  float: left;
  padding: 0;
  margin: 0 4% 0 0;
}
.menu_row .col:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .menu_row .col {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .menu_row .col:last-child {
    margin-right: 0;
  }
}
.menu_row .col div ul {
  margin-bottom: 40px;
  display: table;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
  .menu_row .col div ul {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tabs-wrapper ul.tab-nav li a {
    padding: 12px 3px !important;
  }
  .priceDetails .tabMain .TabmenuPadding li a {
    padding: 17px 32px !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 50000px) {
  .navigation {
    overflow: visible !important;
  }
}

.warning {margin-top: 10px; color: #ca021f; clear: both;}
.togglewarning {margin-top: 10px; display: none; clear: both;}
.togglewarning>p {color: #ca021f;}

.informationText ul {list-style: none;}

tr > td {padding: 0.3em;}