/* Common CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body,
html {
  height: 100%;
}
 
body {
  font-family: 'SF Pro Display';
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1 1 auto;
}

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

a:hover {
  color: #f1646f;
  transition: all 0.4s;
}

.error {
  color: #F1646F;
}

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

/* Input Type Check and Radio */

input[type="checkbox"],
input[type="radio"] {
  opacity: 0;
  position: absolute;
}

input[type="checkbox"]~label,
input[type="radio"]~label {
  position: relative;
  padding-left: 20px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  padding-left: 35px;
}

input[type="checkbox"]~label::before,
input[type="radio"]~label::before {
  content: " ";
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  background: #EDEDED;
  border-radius: 6px;
}

input[type="radio"]~label::before {
  border-radius: 50%;
}

input[type="checkbox"]~label::after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 5px;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

input[type="checkbox"]:checked~label::before {
  background: #00B2BB;
}

input[type="checkbox"]:checked~label::after {
  opacity: 1;
}

input[type="radio"]:checked~label::before {
  background: #00B2BB;
  border: 3px solid #ededed;
}

/* multiselect Select */

.multiselect-native-select .btn-group {
  width: 100%;
}

.multiselect-native-select .btn-group .custom-select {
  width: 100%;
  height: 60px;
}

.multiselect-native-select .btn-group .custom-select .multiselect-selected-text {
  display: inline-block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
}

.multiselect-native-select .multiselect-container {
  width: 100%;
  top: 14px !important;
  padding: 20px 14px;
  max-height: 325px;
  overflow-y: auto;
}

.multiselect-native-select .btn-group.show .custom-select,
.custom-select.select-open {
  background: #fff url("../images/drop-2.svg") right 15px center/26px 26px no-repeat !important;
  border: 1.5px solid #00B2BB;
}

.multiselect-container .multiselect-all:focus,
.multiselect-container .multiselect-all:hover,
.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-all .form-check,
.multiselect-container .multiselect-group:focus,
.multiselect-container .multiselect-group:hover,
.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-group .form-check,
.multiselect-container .multiselect-option:focus,
.multiselect-container .multiselect-option:hover,
.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active {
  background-color: transparent !important;
}

.multiselect-container .multiselect-all .form-check,
.multiselect-container .multiselect-group .form-check,
.multiselect-container .multiselect-option .form-check {
  padding: 0;
}

.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback) {
  background-color: transparent !important;
}

.multiselect-container .dropdown-item {
  padding: 0px !important;
  margin-bottom: 18px;
}

.multiselect-container .dropdown-item:last-child {
  margin-bottom: 0;
}

.multiselect-container .dropdown-item .form-check-label {
  font-weight: normal !important;
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  padding-left: 32px;
}

.multiselect-container .dropdown-item .form-check-label::before {
  border: 1px solid #E1E1E1;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.multiselect-container .form-check input[type="checkbox"]:checked~.form-check-label::before {
  background: #00B2BB;
  border-color: #00B2BB;
  box-shadow: none;
}

.multiselect-container .multiselect-all.dropdown-item {
  display: none;
}

.multiselect-native-select .multiselect-container .multiselect-group.dropdown-item-text {
  font-size: 0;
  background: #E2E2E2;
  width: 98%;
  margin: 0 auto 18px 0;
  padding: 0;
  height: 1px;
  overflow: hidden;
}

.multiselect-native-select .multiselect-container .multiselect-group.dropdown-item-text:nth-child(2) {
  display: none;
}

/*  Start Buttons */

.butn {
  font-weight: 500;
  display: inline-block;
  padding: 12px 40px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 9px;
  position: relative;
  z-index: 3;
  transition: all 0.4s;
  cursor: pointer;
  outline: none !important;
}

.butn:after {
  content: "";
  width: 0;
  height: 100%;
  background: transparent;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 0px;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.4s;
}

.butn-bg {
  background: #00243B;
  border-color: #00243B;
  color: #fff !important;
}

.butn-bg:hover {
  background: transparent;
  border-color: #00243B;
  color: #00243B !important;
}

.butn-bg:hover:after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.butn-bg:after {
  background: #fff;
}

.butn.butn-big {
  height: 60px;
  font-weight: normal;
  font-size: 20px;
}

.butn-bg.butn-pink {
  background: #F1646F;
  border-color: #F1646F;
  color: #fff !important;
}

.butn-bg.butn-pink:hover {
  color: #F1646F !important;
}

.butn-bg.butn-sky {
  background: #00B2BB;
  border-color: #00B2BB;
  color: #fff !important;
}

.butn-bg.butn-sky:hover {
  color: #00B2BB !important;
}

.butn-light {
  background: transparent;
  border-color: #fff;
}

.butn-light:hover {
  border-color: #00243B;
}

.butn-light:hover:after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.butn-light:after {
  background: #00243B;
}

.butn.disabled {
  background: rgba(241, 100, 111, 0.21);
  border-color: transparent;
  color: #F1646F !important;
}

.butn-border {
  border: 1px solid #203e6a;
  color: #203e6a;
}

.butn-border.wt-border {
  border: 1px solid #fff;
  color: #fff;
}

.butn-border:hover {
  border-color: #203e6a;
  color: #fff;
}

.butn-border:hover:after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.butn-border:after {
  background: #203e6a;
}

.butn-border.butn-pink-border {
  border: 1px solid #f1646f;
  color: #f1646f;
}

.butn-border.butn-pink-border::after {
  background: #f1646f;
}

.butn-border.butn-pink-border:hover {
  border-color: #f1646f;
  color: #fff;
}

/* Nav Css */

.navbar-nav .nav-link.signup_butn {
  width: 121px;
  height: 46px;
  line-height: 46px;
  padding: 0;
}

[class*="navbar-expand"] {
  padding: 32px 0;
  ;
}

[class*="navbar-expand"] .navbar-nav .nav-item:not(:last-child) {
  margin: 0 25px;
}

[class*="navbar-expand"] .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #00243B;
  padding: 0 5px;
}

[class*="navbar-expand"] .navbar-brand {
  padding: 0;
}

#nav-icon2 {
  width: 40px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #f1646f;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

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

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 10px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 20px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 16px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 16px;
}

.menu-open .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 9;
}

.menu-open #nav-icon2 span {
  background: #fff;
}

/* Hero */

.hero_banner {
  padding-top: 95px;
}

.hero_banner .hero-content {
  background: #F1646F;
  position: relative;
  height: 98%;
  top: 1%;
  padding: 44px 0 44px 44px;
}

.hero_banner .hero-content {
  background: #F1646F;
  position: relative;
  height: 98%;
  top: 1%;
}

.hero_banner .hero-content::before {
  content: '';
  width: 150px;
  height: 100%;
  right: -150px;
  position: absolute;
  top: 0;
  background: #f1646f;
}

.hero_banner .hero-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: 42px;
  font-family: 'SF UI Display';
}

.hero_banner .hero-content .butn {
  width: 201px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
}

.hero_banner .hero-content .butn.butn-border {
  border-color: #fff;
  color: #fff;
}

.hero_banner .hero-content .butn.butn-border:hover {
  color: #00243b;
}

.hero_banner .hero-content .butn.butn-border::after {
  background: #fff;
}

.hero-center {
  position: relative;
}

.hero-center::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../images/dots.svg);
  left: -60px;
  top: -50px;
  z-index: -1;
}

.hero-center::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../images/dots.svg);
  right: -15px;
  bottom: -100px;
  z-index: -1;
}

.center-hd {
  text-align: center;
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 30px;
}

.center-hd::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 37%;
  max-width: 57px;
  height: 3px;
  background: #000;
}

/* About us */

.theme-sm-heading {
  font-weight: 500;
  font-size: 25px;
  line-height: 47.34px;
}

.about_us p {
  font-weight: normal;
  font-size: 18px;
  line-height: 28.4px;
}

.app-download a {
  display: inline-block;
  width: 100%;
}

/* Users Roles & Features  */

.rf-box {
  width: 240px;
  background: #FFFFFF;
  box-shadow: 1px 10px 62px rgba(0, 0, 0, 0.11);
  border-radius: 14px;
  margin: 0 auto;
  text-align: center;
  padding: 35px 0 25px 0;
  max-width: 100%;
}

.rf-box-img {
  position: relative;
  padding: 0 30px;
}

.rf-box-img img {
  position: relative;
  z-index: 2;
}

.rf-box-img::before {
  content: '';
  position: absolute;
  width: 74px;
  height: 72px;
  left: 20px;
  top: 0;
  background: #F1F1F1;
  border-radius: 50%;
  z-index: 1;
}

.rf-box p {
  font-weight: normal;
  font-size: 24px;
  line-height: 37.87px;
  margin-top: 26px;
}

.rf-center {
  position: relative;
}

.rf-center::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../images/dots.svg);
  left: -40px;
  top: -90px;
  z-index: -1;
}

.rf-center::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../images/dots.svg);
  right: -40px;
  bottom: -80px;
  z-index: -1;
}

.four-box-set p {
  font-weight: normal;
  font-size: 20px;
}

.four-box-set [class*="col-"] img {
  height: 170px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

/* Contact US  */

.contact_details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  align-items: center;
}

.contact_details li {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.contact_details li:not(:first-child) {
  border-left: 2px solid #D2D2D2;
  padding-left: 100px;
}

.contact_details li h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 25px;
}

.contact_details li p {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 0;
}

/* footer */

footer {
  background: #00243B;
}

footer p {
  margin: 0;
  padding: 15px 0;
  color: #fff;
  font-weight: normal;
  font-size: 18px;
}

/* login  */

.login-signup .ls-left {
  background-image: url('../images/login-img.png');
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0 50px 129px;
  background-repeat: no-repeat;
  background-size: cover;
}

.close {
  float: right;
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.ls-content {
  position: relative;
}

.ls-content::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../images/login-dots.svg);
  left: -60px;
  top: -50px;
}

.ls-content h2 {
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 49.79px;
}

.ls-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-form {
  width: 395px;
  max-width: 100%;
  padding: 50px 15px;
  font-family: 'SF Pro Display';
}

.form-hd {
  font-weight: 500;
  font-size: 36px;
  line-height: 42.96px;
  margin-bottom: 40px;
}

.social-signup a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
}

.social-signup a img {
  margin-right: 30px;
}

.social-signup a.apple_signup,
.social-signup a.apple_signup:hover {
  background: #000;
  color: #fff;
}

.social-signup a.google_signup,
.social-signup a.google_signup:hover {
  background: #fff;
  color: #7D7D7D;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.09) !important;
}

.theme-from .or-logins {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  text-align: center;
}

.theme-from .form-group {
  position: relative;
}

.theme-from .form-group .form-control {
  padding: 10px 14px;
  height: 60px;
  background: #FFFFFF;
  border: 1.5px solid #E1E1E1;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #222224;
}

.theme-from .form-group textarea.form-control,
.theme-from .form-group textarea.form-control:focus {
  height: auto;
  box-shadow: inset -1px 3px 7px rgba(0, 0, 0, 0.1) !important;
  border: 0;
  border-radius: 0;
}

.theme-from .form-group #floatingInput,
.theme-from .form-group #floatingPassword,
.theme-from .form-group #floatingTextarea,
.theme-from .form-group .floatingInput-id {
  padding: 14px 14px 0 14px;
}

.theme-from .form-group .form-control-icon {
  position: absolute;
  right: 15px;
  top: 18px;
}

.theme-from .form-group select.form-control {
  padding: 0 14px;
}

.theme-from .form-group.form-social .form-control {
  padding-left: 50px !important;
}

.theme-from .form-group.form-floating img {
  position: absolute;
  height: 20px;
  top: 20px;
  left: 14px;
}

.forgot-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #00B2BB;
  display: inline-block;
  width: 100%;
}

.registered-not {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #4d4d4d;
}

.registered-not a {
  color: #f5939a;
}

.registered-not a:hover {
  color: #f1646f;
}

/* register */

.back_butn {
  display: inline-block;
  width: 100%;
}

.text-radio label {
  display: flex;
  align-items: center;
  padding: 25px 28px 25px 103px !important;
  margin: 0;
  color: #00243B;
  background: #FFFFFF;
  box-shadow: 0px 2px 29px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.text-radio label::before {
  display: none;
}

.text-radio label::after {
  display: none;
}

.text-radio [type="radio"]:checked+label {
  background: rgba(0, 178, 187, 0.1);
  border: 1.5px solid #00B2BB;
  box-sizing: border-box;
  border-radius: 5px;
}

.text-radio [type="radio"]{
  background: '';
  border: '';
  box-sizing: '';
  border-radius: '';
}

.text-radio [type="radio"]:checked+label svg path {
  fill: #00B2BB;
}

.text-radio-img {
  position: absolute;
  left: 0;
  width: 103px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-radio-content h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 8px;
}

.text-radio-content p {
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
}

.steps-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.steps-left {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 80px;
}

.steps-right {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.theme-from .otp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-from .otp .form-group .form-control {
  padding: 0 4px;
  text-align: center;
}

.theme-from .otp li {
  width: 40.34px;
  height: 60px;
}

.theme-from .otp li.otp-dash {
  position: relative;
}

.theme-from .otp li.otp-dash::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.form-upload input[type="file"] {
  z-index: -1;
  position: absolute;
  opacity: 0;
}

.upload-content p {
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  margin-bottom: 10px;
}
.upload-content p a{
  color: #7D7D7D;
  text-decoration: underline;
}

.upload-content #file-upload-filename {
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #F1646F;
  display: flex;
  align-items: center;
}

.upload-content span {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#clear-upload-input {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../images/close.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
}

.from-steps-count {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.from-steps-count li {
  margin-bottom: 40px;
  position: relative;
}

.from-steps-count li:not(:last-child) {
  margin-bottom: 96px;
}

.from-steps-count li:not(:last-child)::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 44px;
  background: #EDEDED;
  border-radius: 50%;
  left: 22.5px;
  top: 48px;
}

.from-steps-count li p {
  position: relative;
  padding-left: 70px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.05em;
  color: #A1A1A1;
  text-transform: uppercase;
}

.from-steps-count li p::before {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  background: #EDEDED;
  left: 0;
  border-radius: 50%;
}

.from-steps-count li.step-complete p::before {
  background: #00B2BB;
}

.from-steps-count li.step-complete p::after {
  content: '';
  background-image: url(../images/check.png);
  position: absolute;
  left: 13px;
  top: 3px;
  width: 20px;
  height: 20px;
  z-index: 2;
  background-size: 100% 100%;
}

.from-steps-count li.step-active p::before {
  background: #00B2BB;
  border: 7px solid #ededed;
}

.step-content {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
}

.ans-radio .ans-label {
  min-width: 53px;
  height: 45px;
  background: #FFFFFF;
  border: 1.5px solid #E1E1E1;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  padding: 8px 14px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  cursor: pointer;
}

.ans-radio .ans-label::before,
.ans-radio .ans-label::after {
  display: none;
}

.ans-radio [type="radio"]:checked+label {
  background: rgba(0, 178, 187, 0.1);
  border: 1.5px solid #00B2BB;
  box-sizing: border-box;
  border-radius: 5px;
}

.text-checkboxes .tc-label {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border: 1.5px solid #E1E1E1;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding: 0 15px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  cursor: pointer;
  padding-right: 50px;
}

.text-checkboxes .tc-label::before,
.ans-radio .tc-label::after {
  display: none;
}

.text-checkboxes [type="checkbox"]:checked+label {
  background: rgba(0, 178, 187, 0.1);
  border: 1.5px solid #00B2BB;
  box-sizing: border-box;
  border-radius: 5px;
}

.text-checkboxes [type="checkbox"]:checked+label::after {
  display: block;
  background-image: url('../images/check-green.svg');
  border: 0;
  background-color: transparent;
  width: 21px;
  height: 21px;
  transform: none;
  left: auto;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.text-pink {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.01em;
  color: #F1646F;
}

/* product */

.product-img {
  width: 100%;
  padding-bottom: 100%;
  border: 1.5px solid #E1E1E1;
  border-radius: 5px;
  position: relative;
  margin-bottom: 16px;
}

.product-img img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 15px;
}

.product-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-title-price {
  padding-right: 10px;
  margin-bottom: 18px
}

.product-title-price .pt {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  margin-bottom: 10px;
}

.product-title-price .pp {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #00B2BB;
}

.add-butn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: #00B2BB;
  border-radius: 7px;
  margin-bottom: 18px
}

.add-butn.active {
  background: rgba(241, 100, 111, 0.21);
}

.add-butn.active svg {
  transform: rotate(45deg);
  transition: all 0.4s;
}

.add-butn.active svg path {
  fill: #F1646F;
}

/* Order Summary */

.total_price {
  border-top: 1px solid #E8E8E8;
  padding-top: 40px;
  margin-top: 22px;
}

.price-text {
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.01em;
  color: #00B2BB;
}

.col-border-row .border-right-col {
  border-right: 1px solid #E8E8E8;
}

.product-content .form-control {
  width: 133px;
  height: 60px;
}

.about-textarea {
  font-size: 9px;
  line-height: 11px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.err {
  color: #F1646F;
}

.er {
  color: #F1646F;
}

.otp_err {
  color: #F1646F;
}

.eyeicon, .eyeicon1 {
  position: absolute;
  height: 20px;
  top: 20px;
  right: 14px;
}

.eyeicon2 {
    position: absolute;
    height: 20px;
    top: 40px;
    right: 25px;
}

.register .text-radio label {
  padding: 15px 28px 15px 103px !important;
}
.btn-toggle {
  margin-right:20px;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  flex: 0 0 50px;
  border-radius: 1.5rem;
  display: block;
  background: #EDEDED;
  max-width: 50px;
}
.btn-toggle > .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #00B2BB;
  transition: left 0.25s;
}
.btn-toggle.active > .handle {
  left: 1.6875rem;
  transition: left 0.25s;
}
/*contact form*/

.contact-main-wrap {
  background: #ffff;
  padding: 50px;
  box-shadow: 1px 10px 62px rgb(0 0 0 / 11%);
}
.form-group input#fname {
  width: 100%;
}
.google-play-btn{
  margin-top: 5px;
  display: block;
}
.google-play-btn img{
  height: 64px;
  max-width: 200px;
  width: 100%;
}
