@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap");
html {
  max-height: 100%;
  height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  height: 100%;
}

::selection {
  color: #fff;
  background-color: #AE7F1A;
}

::-moz-selection {
  color: #fff;
  background-color: #AE7F1A;
}

.mainHeaderSection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.mainHeaderSection .miniHeader {
  position: relative;
  background-color: #3e3e3f;
  padding: 6px 0;
  transition: all 0.5s ease;
}
.mainHeaderSection .miniHeader .miniHeaderSection {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainHeaderSection .miniHeader .miniHeaderSection .mainLogoSection {
  position: relative;
}
.mainHeaderSection .miniHeader .miniHeaderSection .mainLogoSection img {
  width: 120px;
}
.mainHeaderSection .miniHeader .miniHeaderSection .EmailSection,
.mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .mainHeaderSection .miniHeader .miniHeaderSection .EmailSection,
.mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection {
    display: none;
  }
}
.mainHeaderSection .miniHeader .miniHeaderSection .EmailSection span,
.mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection span {
  margin-right: 10px;
  font-size: 14px;
  color: #FFFFFF;
}
.mainHeaderSection .miniHeader .miniHeaderSection .EmailSection a,
.mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection a {
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.5s ease;
}
.mainHeaderSection .miniHeader .miniHeaderSection .EmailSection a:hover,
.mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection a:hover {
  transition: all 0.5s ease;
  color: #AE7F1A;
  text-decoration: none;
}
.mainHeaderSection .miniHeader .miniHeaderSection .loginSection {
  position: relative;
}
.mainHeaderSection .miniHeader .miniHeaderSection .loginSection a {
  color: #FFFFFF;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.5s ease;
}
.mainHeaderSection .miniHeader .miniHeaderSection .loginSection a:hover {
  transition: all 0.5s ease;
  text-decoration: none;
  color: #AE7F1A;
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection {
  position: relative;
}
@media (max-width: 767px) {
  .mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection {
    display: none;
  }
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection ul li {
  margin-right: 10px;
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection ul li:last-child {
  margin-right: 0;
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection ul li a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: solid 1px #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #AE7F1A; */
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.mainHeaderSection .miniHeader .miniHeaderSection .socailMediaSection ul li a:hover {
  transition: all 0.5s ease;
  color: #FFFFFF;
  background-color: #AE7F1A;
  text-decoration: none;
}
.mainHeaderSection header {
  position: relative;
  background-color: transparent;
  padding: 10px 0;
}
.mainHeaderSection header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #AE7F1A;
  opacity: 0.8;
}
.mainHeaderSection header .navbar {
  padding: 0 !important;
}
.mainHeaderSection header .navbar .navbar-brand img {
  width: 220px;
}
.mainHeaderSection header .navbar .navbar-toggler {
  background-color: #FFFFFF;
  color: #AE7F1A;
}
.mainHeaderSection header .navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.mainHeaderSection header .navbar .navbar-collapse ul li {
  margin: 0 20px;
}
.mainHeaderSection header .navbar .navbar-collapse ul li:last-child {
  margin-right: 0 !important;
}
.mainHeaderSection header .navbar .navbar-collapse ul li a {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 0 !important;
}

.mainHeaderSection.sticky {
  top: 0;
}
.mainHeaderSection.sticky .miniHeader {
  display: none;
  transition: all 0.5s ease;
}
.mainHeaderSection.sticky header {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.mainHeaderSection.sticky header::before {
  opacity: 1;
}

.navbar-collapse.collapse.show {
  background-color: #AE7F1A;
  margin-top: 16px;
}
.navbar-collapse.collapse.show ul li {
  margin: 10px 20px !important;
}

.mainBannerSection {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/bannerImages.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .mainBannerSection {
    height: 460px;
  }
}
.mainBannerSection form {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  max-width: 600px;
  margin: auto;
}
@media (max-width: 767px) {
  .mainBannerSection form {
    flex-direction: column;
    padding: 0 20px;
  }
}
.mainBannerSection form input {
  width: calc(100% - 150px);
  height: 50px;
  border: solid 2px #AE7F1A;
  border-radius: 6px 0 0 6px;
  background-color: rgba(225, 225, 225, 0.8);
  padding: 0 15px;
}
@media (max-width: 767px) {
  .mainBannerSection form input {
    width: 100%;
    border-radius: 6px;
  }
}
.mainBannerSection form input:focus {
  box-shadow: none;
  outline: none;
}
.mainBannerSection form button {
  width: 150px;
  height: 50px;
  border: solid 2px #AE7F1A;
  border-radius: 0 6px 6px 0;
  background-color: #AE7F1A;
  color: rgba(225, 225, 225, 0.8);
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 767px) {
  .mainBannerSection form button {
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
  }
}
.mainBannerSection form button:focus {
  box-shadow: none;
  outline: none;
}

.aboutUsSection {
  position: relative;
  width: 100%;
  height: 550px;
  padding: 0;
}
@media (max-width: 991px) {
  .aboutUsSection {
    height: auto;
  }
}
.aboutUsSection .aboutUsTextContent {
  position: absolute;
  left: 0;
  right: auto;
  top: 70px;
  width: 50%;
  background-color: #f6f6f6;
  height: 400px;
  z-index: 2;
  padding: 30px 100px;
}
@media (max-width: 1024px) {
  .aboutUsSection .aboutUsTextContent {
    padding: 30px 50px;
    height: 450px;
  }
}
@media (max-width: 991px) {
  .aboutUsSection .aboutUsTextContent {
    position: relative;
    width: 100%;
    height: auto;
  }
  .mainHeaderSection .miniHeader .miniHeaderSection .EmailSection span, 
  .mainHeaderSection .miniHeader .miniHeaderSection .whatAppSection span {
      margin-right: 7px;
      font-size: 12px;
  }
}
.aboutUsSection .aboutUsTextContent h2 {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
  color: #414042;
}
@media (max-width: 767px) {
  .aboutUsSection .aboutUsTextContent h2 {
    font-size: 30px;
  }
}
.aboutUsSection .aboutUsTextContent h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 3px;
  border-radius: 30px;
  background-color: #AE7F1A;
}
.aboutUsSection .aboutUsImages {
  position: absolute;
  left: auto;
  right: 0;
  width: 50%;
  height: 550px;
}
@media (max-width: 991px) {
  .aboutUsSection .aboutUsImages {
    position: relative;
    width: 100%;
  }
}
.aboutUsSection .aboutUsImages img {
  width: 100%;
  height: 100%;
}

.serviceSection {
  position: relative;
  padding: 100px 0 0 0;
  background-image: url("../images/serviceBackground_img.png");
  background-position: center;
  background-size: cover;
}
.serviceSection .ServiceHeading {
  position: relative;
  text-align: center;
}
.serviceSection .ServiceHeading h2 {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
  color: #414042;
}
@media (max-width: 767px) {
  .serviceSection .ServiceHeading h2 {
    font-size: 30px;
  }
}
.serviceSection .ServiceHeading h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 3px;
  border-radius: 30px;
  background-color: #AE7F1A;
}
.serviceSection .ServiceHeading h4 {
  font-size: 26px;
  font-weight: 400;
  color: #414042;
  margin: -10px 0 20px 0;
}
.serviceSection .ServiceHeading p {
  max-width: 910px;
  margin: 0 auto 40px;
}
.serviceSection .serviceCard {
  position: relative;
  transition: all 0.5s ease;
  margin-bottom: 20px;
}
.serviceSection .serviceCard:hover {
  transition: all 0.5s ease;
}
.serviceSection .serviceCard:hover .serviceImages img {
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.serviceSection .serviceCard .serviceImages {
  position: relative;
  overflow: hidden;
}
.serviceSection .serviceCard .serviceImages::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  width: 90%;
  height: 90%;
  border: solid 2px #AE7F1A;
  background-color: transparent;
  z-index: 2;
  border-radius: 5px;
}
.serviceSection .serviceCard .serviceImages img {
  width: 100%;
  height: 225px;
  transition: all 0.5s ease;
  border-radius: 5px;
}
.serviceSection .serviceCard .ttm-icon-box{
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}
.serviceSection .serviceCard .ttm-icon-box a{
  width: 100px;
  height: 38px;
  border-radius: 5px;
  /* border: solid 2px #AE7F1A; */
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: bold;
  background-color: #AE7F1A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
}
.serviceSection .serviceCard:hover .ttm-icon-box a{
  opacity: 1;
  transition: all 0.5s ease;
}
.serviceSection .serviceCard a{
  text-decoration: none;
}
.serviceSection .serviceCard h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #AE7F1A;
  margin-top: 20px;
}
.serviceSection .viewMoreButton {
  margin: 40px 0;
  text-align: center;
}
.serviceSection .viewMoreButton a {
  font-size: 20px;
  text-transform: uppercase;
  color: #414042;
  transition: all 0.5s ease;
}
.serviceSection .viewMoreButton a:hover {
  transition: all 0.5s ease;
  color: #AE7F1A;
  text-decoration: none;
}

footer {
  position: relative;
  background-color: #e6e6e6;
  padding: 50px 0;
}
footer .miniFooterLogo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .miniFooterLogo img{
  width: 200px;
}
footer .footerHeading {
  position: relative;
}
footer .footerHeading h2 {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
  color: #414042;
}
@media (max-width: 767px) {
  footer .footerHeading h2 {
    font-size: 30px;
  }
}
footer .footerHeading h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 3px;
  border-radius: 30px;
  background-color: #AE7F1A;
}
footer .footerHeading .footerLogoSection {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 70px;
}
@media (max-width: 767px) {
  footer .footerHeading .footerLogoSection {
    flex-direction: column;
  }
}
footer .footerHeading .footerLogoSection img {
  width: 130px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  footer .footerHeading .footerLogoSection img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
footer .footerHeading .footerLogoSection .footerLogoContent {
  position: relative;
  width: 650px;
}
@media (max-width: 767px) {
  footer .footerHeading .footerLogoSection .footerLogoContent {
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }
}
footer .footerHeading .footerLogoSection .footerLogoContent h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
footer .footerHeading .footerLogoSection .footerLogoContent p {
  color: #414042;
  font-size: 14px;
}
footer .footerMenuSection {
  position: relative;
  border-top: solid 1px #414042;
  border-bottom: solid 1px #414042;
  padding: 40px 0 40px 0;
}
footer .footerMenuSection .footerMenuContent {
  position: relative;
  margin-bottom: 20px;
}
footer .footerMenuSection .footerMenuContent p {
  font-size: 18px;
  font-weight: 600;
  color: #414042;
  margin: 0;
}
footer .footerMenuSection .footerMenuContent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footerMenuSection .footerMenuContent ul li {
  margin-bottom: 15px;
}
footer .footerMenuSection .footerMenuContent ul li a {
  font-size: 14px;
  color: #414042;
  transition: all 0.5s ease;
}
footer .footerMenuSection .footerMenuContent ul li a:hover {
  transition: all 0.5s ease;
  color: #AE7F1A;
  text-decoration: none;
}
footer .supportSections {
  position: relative;
  margin-bottom: 25px;
}

#suggesstion-area{
    position: absolute;
    top: 5rem;
    width: 100%;
    z-index: 100;
    background-color: #e4e6e8;
    color: #fff!important;
 }
footer .supportSections p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #414042;
}
footer .supportSections a {
  color: #414042;
}
footer .supportSections a:hover {
  text-decoration: none;
  color: #AE7F1A;
}
footer .supportSections img {
  width: 130px;
}
footer .copyRightSection {
  position: relative;
  padding-top: 15px;
}
footer .copyRightSection p {
  margin: 0;
  font-size: 12px;
  color: #414042;
}
.downloadAppSection {
  position: relative;
  padding: 100px 0 130px 0;
  /* background-image: url("../images/app-bg.jpg"); */
  background-image: url("../../assets/images/bannerImages.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.downloadAppSectionOverlay{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #AE7F1A;
  opacity: 0.8;
}
.downloadAppSection::before {
  display: none;
}
.downloadAppSection .commonHeading {
  margin-bottom: 20px;
}
.downloadAppSection .commonHeading h2 {
  color: #FFFFFF;
  font-weight: 400;
}
.downloadAppSection .commonHeading h2::before {
  background-color: #FFFFFF;
}
.downloadAppSection .commonHeading p {
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .downloadAppSection .commonHeading p {
    max-width: 100%;
    padding: 0 20px;
  }
}
.downloadAppSection .moveArrowTesti {
  position: absolute;
  left: auto;
  right: 100px;
  top: 70px;
}
@media (max-width: 991px) {
  .downloadAppSection .moveArrowTesti {
    right: 100px;
    top: 40px;
  }
}
@media (max-width: 767px) {
  .downloadAppSection .moveArrowTesti {
    display: none;
  }
}
.downloadAppSection .moveArrowTesti img {
  width: 100%;
  max-width: 60px;
}
.downloadAppSection .paySection {
  position: relative;
  margin-top: 40px;
}
.downloadAppSection .paySection ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .downloadAppSection .paySection ul {
    flex-direction: column;
  }
}
.downloadAppSection .paySection ul li {
  margin: 0 20px;
}
@media (max-width: 767px) {
  .downloadAppSection .paySection ul li {
    margin: 10px 0;
  }
}
.downloadAppSection .paySection ul li a {
  padding: 12px 40px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media (max-width: 420px) {
  .downloadAppSection .paySection ul li a {
    padding: 10px 0px;
    width: 288px;
  }
}
.downloadAppSection .paySection ul li a:hover {
  transition: all 0.5s ease;
  background-color: #FFFFFF;
}
.downloadAppSection .paySection ul li a:hover svg {
  fill: #AE7F1A;
}
.downloadAppSection .paySection ul li a:hover svg g g {
  fill: #AE7F1A;
}
.downloadAppSection .paySection ul li a:hover span {
  color: #AE7F1A;
}
.downloadAppSection .paySection ul li a svg {
  fill: #FFFFFF;
  margin-right: 20px;
  width: 35px;
  height: 40px;
}
.downloadAppSection .paySection ul li a svg g g {
  fill: #FFFFFF;
}
.downloadAppSection .paySection ul li a span {
  color: #FFFFFF;
}
.paymentSystemSection{
  position: relative;
  padding: 100px 0 50px 0;
}
.paymentSystemSection .paymentImg{
  position: relative;
  text-align: center;
}
.paymentSystemSection .paymentImg img{
  width: 540px;
  margin: 0 auto 50px;
}
@media (max-width: 1024px) {.paymentSystemSection .paymentImg img {width: 100%;}}
.paymentSystemSection .paymentContents{
  position: relative;
  margin-bottom: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.paymentSystemSection .paymentContents span{
  font-size: 20px;
  text-align: left;
  color: #AE7F1A;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}
.paymentSystemSection .paymentContents h2{
  font-size: 32px;
  color: #4d4d4d;
  margin: 4px 0 20px 0;
  font-weight: 600;
}
.paymentSystemSection .paymentContents p{
  font-size: 16px;
  margin: 0 0 20px 0;
  text-align:center;
}
.selectLanguageSection i{
  color: #FFFFFF;
}
.myFlex.allServiceSection ._aside{
  position: relative;
  border: solid 1px #AE7F1A;
  border-radius: 5px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  margin-bottom: 30px;
}
.myFlex.allServiceSection ._aside h5{
  font-size: 22px;
  color: #FFFFFF;
  background-color: #AE7F1A;
  text-align: left;
  padding: 10px 20px;
  margin: 0;
}
.myFlex.allServiceSection ._aside .custom-checkbox{
  padding: 0px 20px 20px 20px;
}
.myFlex.allServiceSection ._aside .custom-checkbox .form-check.mt-2 {
  padding-left: 0 !important;
}
.myFlex.allServiceSection ._aside .custom-checkbox label{
  cursor: pointer;
  font-size: 16px;
}
.myFlex.allServiceSection ._aside .custom-checkbox input[type="checkbox"] { display: none; }

.myFlex.allServiceSection ._aside .custom-checkbox input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.myFlex.allServiceSection ._aside .custom-checkbox input[type="checkbox"] + label:last-child { margin-bottom: 0; }

.myFlex.allServiceSection ._aside .custom-checkbox input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #AE7F1A;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.myFlex.allServiceSection ._aside .custom-checkbox input[type="checkbox"]:checked + label:before {
  width: 8px;
    top: 5px;
    left: 0px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.userAccountRightSection .userProfileContent .MainUserProfileImg img{
  width: 180px;
  height: 180px;
}
/*# sourceMappingURL=style.css.map */


/*.cartPage .card>div {*/
/*    flex: 0 0 25%;*/
/*    max-width: 25%;*/
/*    min-width: 25%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*} by ram */

._countActions .counter {
    display: flex;
    align-items: center;
}

._countActions input[type="button"] {
    background: #AE7F1A;
    border: 1px solid #AE7F1A;
    min-width: 32px;
    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
}

._countActions input[type="text"] {
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    max-width: 45px;
} 

.ProdcutInformation .detailsProdcut{
  position: relative;
  margin-bottom: 20px;
  background-color: #f1f1f2;
  padding: 10px;
  border-radius: 5px;
}
.ProdcutInformation .detailsProdcut .productImages{
  display: flex;
}
.ProdcutInformation .detailsProdcut .productImages p{
  margin-right: 20px;
  margin-bottom: 0;
}
.ProdcutInformation .detailsProdcut .productImages img{
  width: 60px;
}
.ProdcutInformation .detailsProdcut .ProductInformation{
  position: relative;
}
.ProdcutInformation .detailsProdcut .ProductInformation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ProdcutInformation .detailsProdcut .ProductInformation ul li{
  padding: 2px 10px;
  border-bottom: solid 1px #ccc;
  font-size: 14px;
}
.ProdcutInformation .detailsProdcut .ProductInformation ul li span{
  font-weight: bold;
  padding-left: 20px;
}
.ProdcutInformation .detailsProdcut .productButtons{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ProdcutInformation .detailsProdcut .productButtons button{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #FFFFFF;
  color: #915c84;
  padding: 3px 6px;
  margin-top: 10px;
  margin-left: 60px;
  border-radius: 5px;
}
.ProdcutInformation .detailsProdcut .productButtons span{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  padding: 2px 10px;
  color: #915c84;
  border: solid 2px #915c84;
  margin-top: 10px;
  border-radius: 5px;
  margin-left: 10px;
}
.ProdcutInformation .productFinalTable{
  position: relative;
}
.ProdcutInformation .productFinalTable table{
  border: solid 1px #AE7F1A;
  border-radius: 5px;
  font-size: 14px;
}
.ProdcutInformation .productFinalTable table tr td{
  padding: 8px 20px;
  border: solid 1px #AE7F1A;
  width: 60%;
  border-left: none;
  border-right: none;
}
.ProdcutInformation .productFinalTable table tr td:nth-child(2){
  width: 40%;
}
.ProdcutInformation .productFinalTable .themesColored{
  color: #915c84;
  font-weight: 600;
}
.ProdcutInformation .productFinalTable .textWithBold{
  color: #000;
  font-weight: bold;
}
.ProdcutInformation .productFinalTable button{
  width: 100%;
  padding: 6px 10px;
  background-color: #915c84;
  color: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}
.ProdcutInformation .productFinalTable button:focus{
  box-shadow: none;
  outline: none;
}
.payBuyOptions{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px;
    margin-bottom: 20px;
}
.payBuyOptions input[type="radio"] {
	display: none;
}
.payBuyOptions label {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    width: 350px;
    border: solid 1px #ccc;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: rgba(77,77,77,0.5);
}
@media(max-width: 1199px){
    .payBuyOptions label{
        width: 300px;
    }
}
@media(max-width: 991px){
    .payBuyOptions label{
        width: 250px;
    }
}
@media(max-width: 850px){
    .payBuyOptions{
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }
    .payBuyOptions .customRadioButton{
        margin-bottom: 20px;
        width: 100%;
    }
    .payBuyOptions label{
        width: 100%;
    }
}
.payBuyOptions label::before,
.payBuyOptions label::after {
	position: absolute;
	content: '';
	top: 50%;
    left: auto !important;
    right: 20px !important;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.payBuyOptions label::before {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
.payBuyOptions label:hover::before {
	background: #fff;
}
.payBuyOptions label::after {
	opacity: 0;
	left: 4px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	background: #E093B7;
	-webkit-transform: scale(2);
	transform: scale(2);
}
.payBuyOptions input[type="radio"]:checked  label::before {
	background: #fff;
	border: 1px solid #E093B7;
}
.payBuyOptions input[type="radio"]:checked  label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
    left: auto !important;
    right: 24px !important;
 }


.booking-scroller{
     overflow: auto;
    /*border: 3px solid red;*/
    max-height: 790px;
    padding: 15px 10px;   
}
@media (max-width: 480px) {
  .serviceSection .serviceCard .serviceImages::before {
    left: 5px;
    top: 7px;
  }  
  .serviceSection .serviceCard .serviceImages img {height: 145px;}
    
}

