:root {
  --green-kb-dark: #1D4A4B;
  --green-kb-dark2: #1d4a4b39;
  --black131313: #131313;
  --blackKeybe: #000000;
  --whiteKeybe: #ffffff;
  --greenKeybe: #49ff9b;
  --greenKeybe2: #03FF90;
  --greenKeybe3: #03FFCF;
  --greenKeybe4: #00FFDC;
  --greenKeybe4hover: #07e7ca;
  --greenKeybeGradient: #00E6B4;
  --blueKeybe: #00ffff;
  --blueKeybe2: #61F5FF;
  --darkblueKeybe: #004261;
  --darkBlueBiky: #003159;
  --redBiky: #FF3169;

  --shade1: #334155;
  --shade2: #0f172a;
  --primaryColor: var(--shade2);
  --backgroundColor: #ffffff;
  --backgroundColorDark: var(--primaryColor);
  --size: 300px;
  --gap: 20px;
  --cardShadow: 0 4px 7px rgb(0 0 0 / 25%);
  --paddingNormal: 120px;
  --paddingSmall: 42px;
  --textColor: var(--shade2);
  --textColorDark: #fff;
  --linkColor: #06c;
  --gradient1: radial-gradient(164.75% 100% at 50% 0,
      var(--shade1) 0,
      var(--shade2) 48.73%);
}

/*** HIRE BIKUY ***/
.hireBiky_wrapper {
  background-color: var(--blackKeybe);
  border-top-left-radius: 30em;
  border-bottom-left-radius: 30em;
  top: 50%;
  right: -100%;
  z-index: 99;
  position: fixed;
  color: var(--whiteKeybe);
  min-height: 50px;
  padding: 0.4%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  transform: translate(30%, 0%);
  transition: transform .15s ease-in-out, opacity .35s ease, right .35s ease;
  transform-origin: right center;
}

.hireBiky_wrapper:hover {
  transform: translate(20%, 0%);
  transition: transform .15s ease-in-out;
  transform-origin: ri;
}

.hireBiky_wrapper:hover a {
  color: var(--greenKeybe2);
  cursor: pointer;
  transition: color .15s ease-in-out;
}

.hireBiky_wrapper a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  transition: color .15s ease-in-out;
  margin: 0;
  width: 100%;
}

img.hirebiky-img {
  width: 40px;
  height: 40px;
  border-radius: 30em;
  margin: 1%;
}

.hireBiky_wrapper a span {
  font-size: 14px;
  padding: 1%;
  margin: 2% 6% 2% 6%;
}

/*** END HIRE BIKUY ***/


/** BKY WIGET B1 **/
#biky_form_wrapper {
  display: none;
}

.biky_form_wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* max-width: 720px; */
  max-width: 370px;
  padding: 2.5% 1.5% 2.5% 1.5%;
  z-index: 999;
  border-radius: 30px;
  min-width: 360px;
  min-height: 320px;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14.4px);
  -webkit-backdrop-filter: blur(14.4px);
  border: 0px solid rgba(0, 0, 0, 0.3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div#biky_widget {
  width: 95%;
}

img.close_bikywg {
  position: absolute;
  background-color: var(--greenKeybe4);
  width: 25px;
  height: 25px;
  padding: 1%;
  border-radius: 30em;
  right: 2%;
  top: 2%;
  transition: transform .35s ease;
}

img.close_bikywg:hover {
  cursor: pointer;
  transform: rotate(15deg) scale(1.1);
  transform-origin: center center;
  transition: transform .35s ease;
}

.bkywg_formgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bkywg_formgroup label {
  color: var(--darkblueKeybe);
  display: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.bkywg_formgroup input {
  background-color: white !important;
  border: 2px solid #F2F2F5;
  border-radius: 30em;
  color: var(--darkBlueBiky);
  font-size: 14px;
  margin-bottom: 1%;
  min-height: 42px;
  padding: 2% 10%;
}

.bkywg_formgroup input:focus,
.bkywg_formgroup input:active {
  outline: none;
}

/* button#letsChatBiky {
  background-color: var(--greenKeybe4);
  color: var(--darkBlueBiky);
  min-height: 42px;
  margin: 6% auto 0% auto;
  display: block;
  border-radius: 30em;
  border: 0;
  padding: 4% 10%;
  color: var(--blackKeybe);
  font-weight: 700;
  font-size: 14px;
  transition: background-color .35s ease;
  text-transform: uppercase;
} */

button#letsChatBiky:before {
  content: "";
  width: 38px;
  height: 38px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  right: -16px;
  border-radius: 5px;
  background: var(--greenKeybe4);
  z-index: 1;
}

button#letsChatBiky:after {
  content: "";
  width: 38px;
  height: 38px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  left: -16px;
  border-radius: 5px;
  background: var(--greenKeybe4);
  z-index: 1;
}

button#letsChatBiky {
  background: var(--greenKeybe4);
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--darkBlueBiky);
  filter: brightness(1);
  transform: translateZ(0);
  max-width: 260px;
  margin: 3% auto 2% auto;
}

button#letsChatBiky span {
  background-color: transparent;
  filter: brightness(1);
  transform: translateZ(0);
  position: relative;
  z-index: 4;
}

button#letsChatBiky:hover {
  background: var(--greenKeybe4);
  filter: brightness(.9);
  transform: translateZ(0);
}

button#letsChatBiky:hover span {
  filter: brightness(1);
  transform: translateZ(0);
}

.iti--separate-dial-code .iti__selected-flag {
  border-top-left-radius: 30em !important;
  border-bottom-left-radius: 30em !important;
  background-color: transparent !important;
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid var(--green-kb-dark2);
}

html input#phone {
  padding-left: 70px !important;
  width: 100%;
}

html .iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}

html ul#iti-0__country-listbox {
  font-size: 14px;
  border-radius: 10px;
}

.unactiveEL {
  display: none;
  opacity: 0;
  transition: opacity .45s ease;
}

.activatedEL {
  display: block;
  opacity: 1;
  transition: opacity .45s ease;
}

.bkywg_formgroup input::placeholder {
  font-size: 14px;
  color: var(--blackJeybe);
  opacity: 0.7;
}

div#successMessage {
  color: var(--darkBlueBiky) !important;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

select#haveabuget,
select#business_type,
select#daily_chats {
  /* background-color: var(--greenKeybe2); */
  /* border: 0; */
  background-color: white;
  border: 2px solid #F2F2F5;
  border-radius: 30em;
  color: var(--blackKeybe);
  font-size: 14px;
  margin-bottom: 1%;
  min-height: 42px;
  padding: 2% 10%;
  background-image: url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: 94%;
  background-size: 12px;
}

select#haveabuget:focus,
select#business_type:focus,
select#daily_chats:focus,
select#business_type:active,
select#daily_chats:active,
select#business_type:focus-visible,
select#daily_chats:focus-visible {
  outline: none !important;
}

.bikywidget_acds label {
  display: block;
  color: var(--darkblueKeybe);
  font-weight: 400;
  font-size: 13px;
}

.bikywidget_acds label a {
  color: var(--darkBlueBiky);
  margin: 1% 0% 1% 0%;
  font-weight: 700;
  transition: all 0.45s ease;
}

.bikywidget_acds label a:hover {
  color: var(--greenKeybe);
  text-decoration: underline;
  transition: all 0.45s ease;
}

.bikywidget_acds {
  display: flex;
  align-items: center;
}

.bikywidget_acds input {
  margin: 1%;
  min-height: 8px !important;
}

small.error-message {
  display: none;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: white;
  text-align: center;
  transform: translate(0, 0);
  margin: -11px auto 0 auto;
  background-color: #ef5350;
  width: fit-content;
  padding: 2px 6px;
  border-radius: 30em;
  position: relative;
  z-index: 1;
}

html #bikyform input:-internal-autofill-selected,
#bikyform input:-internal-autofill {
  background-color: white !important;
}


.show-animation {
  animation: fadein 0.35s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media only screen and (max-width: 1023px) {

  .hireBiky_wrapper {
    top: 70%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1159px) {
  .hireBiky_wrapper a span {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .goWizardgo {
    display: none !important;
  }
}


/*** bidget field ***/
.bkywg_formgroup label[for="haveabuget"] {
  display: block;
  color: var(--darkblueKeybe);
  font-size: 14px;
}

div#selectBuguet {
  display: grid;
  grid-template-columns: repeat(2, 29%);
  justify-content: center;
}

div#selectBuguet label {
  display: flex;
  margin: 4px 8px;
  /* color: var(--greenKeybe) */
  color: var(--darkblueKeybe);
  font-weight: 500;
}

#selectBuguet .form-item-inner {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

#selectBuguet .form-item-inner input {
  width: 20px;
  height: 20px;
}

a.goWizardgo.biky_ctabtn {
  font-size: 14px;
  font-weight: 700;
  margin: 4% auto 0% auto;
  max-width: 300px;
  text-align: center;
  width: 239px;
}

html a.goWizardgo.biky_ctabtn:hover {
  color: var(--blackKeybe) !important;
  background-color: white;
  background-image: -webkit-linear-gradient(0deg, var(--whiteKeybe) 31%, var(--whiteKeybe) 92%);
}

html a.goWizardgo.biky_ctabtn:hover span {
  color: var(--blackKeybe) !important;
}

[lang="en-US"] .bkywg_formgroup .form-item input,
[lang="en-US"] .bkywg_formgroup .form-item select {
  width: 100%;
}


/*** radio buttons channels ***/
[lang="en-US"] form#bikyform #selectChannel.form-item .form-item-inner label {
  display: flex !important;
  padding: 0 4px;
  align-items: center;
  font-size: 13px;
  line-height: 1;
}

[lang="en-US"] form#bikyform #selectChannel.form-item .form-item-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

[lang="en-US"] form#bikyform #selectChannel.form-item .form-item-inner input {
  padding: 2px;
  transform: scale(0.8);
}

[lang="en-US"] form#bikyform #selectChannel.form-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0px;
  padding-top: 0;
  margin-bottom: 2%;
}

[lang="en-US"] form#bikyform .form-item input[type="radio"] {
  /* -webkit-appearance: none;
  appearance: none; */
  background-color: transparent;
  margin: 0;
  color: var(--buttonPrimaryColorHover);
  width: 25px;
  height: 25px;
  border: 2px solid var(--inputBorderColor);
  border-radius: 50%;
  /* transform: translateY(-0.075em); */
  display: grid;
  place-content: center;
  justify-content: center;
  align-items: center;
}

[lang="en-US"] form#bikyform .form-item input[type="radio"]:hover {
  cursor: pointer;
}

[lang="en-US"] form#bikyform .form-item input[type="radio"]::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--buttonPrimaryColorHover);
}

[lang="en-US"] form#bikyform .form-item input[type="radio"]:checked::before {
  transform: scale(0.9);
}

[lang="en-US"] span.labelform {
  color: var(--darkBlueBiky);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  margin: 10px auto;
}



/*** TALK WITH SALES FORM ***/
.wrapper_modal_overlay {
  display: none;
}

.wrapper_modal_overlay:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


button.letsChatBiky:before {
  content: "";
  width: 38px;
  height: 38px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  right: -16px;
  border-radius: 5px;
  background: var(--greenKeybe4);
  z-index: 1;
}

button.letsChatBiky:after {
  content: "";
  width: 38px;
  height: 38px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  left: -16px;
  border-radius: 5px;
  background: var(--greenKeybe4);
  z-index: 1;
}

button.letsChatBiky {
  background: var(--greenKeybe4);
  border: 0;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--darkBlueBiky);
  filter: brightness(1);
  transform: translateZ(0);
  max-width: 260px;
  margin: 3% auto 2% auto;
}

button.letsChatBiky span {
  background-color: transparent;
  filter: brightness(1);
  transform: translateZ(0);
  position: relative;
  z-index: 4;
}

button.letsChatBiky:hover {
  background: var(--greenKeybe4);
  cursor: pointer;
  filter: brightness(.9);
  transform: translateZ(0);
}

button.letsChatBiky:hover span {
  filter: brightness(1);
  transform: translateZ(0);
}

button.letsChatBiky:focus,
button.letsChatBiky:active,
button.letsChatBiky:focus-visible {
  outline: none !important;
}

.talksales_closeChat {
  width: 18px;
  position: absolute;
  top: 3.5%;
  right: 3.5%;
  cursor: pointer;
  opacity: .4;
  transition: opacity .25s ease-in;
}

button#talksales_letsTalks {
  margin: 3% auto 0 auto;
}

div.biky_widget {
  margin: 0 auto;
}

.talksales_closeChat:hover {
  opacity: 1;
  transition: opacity .25s ease-in;
}

.bikywidget_acds {
  margin: 3% 0;
}

input#talksales_phone {
  width: 100%;
}

html ul#iti-0__country-listbox {
  z-index: 10;
}

span#talksales_successPhone, span#talksales_successName {
  font-weight: 700;
}

div#talksales_successMessage {
  font-size: 15px;
  line-height: 1.5;
}

@media only screen and (max-width: 1024px) {
  div#talkwithsales_form {
    padding: 40px 30px;
  }
}


/*** radio buttons channels ***/
form#talkwithsales #selectChannel.form-item .form-item-inner label {
  display: flex !important;
  padding: 0 4px;
  align-items: center;
  font-size: 13px;
  font-weight: 400;;
  line-height: 1;
}

form#talkwithsales #selectChannel.form-item .form-item-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 25px;;
}

form#talkwithsales #selectChannel.form-item .form-item-inner input {
  padding: 2px;
  transform: scale(0.8);
}

form#talkwithsales #selectChannel.form-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0px;
  padding-top: 0;
  margin-bottom: 0%;
}

form#talkwithsales .form-item input[type="radio"] {
  /* -webkit-appearance: none;
  appearance: none; */
  background-color: transparent;
  margin: 0;
  color: var(--buttonPrimaryColorHover);
  width: 25px;
  height: 25px;
  border: 2px solid var(--inputBorderColor);
  border-radius: 50%;
  /* transform: translateY(-0.075em); */
  display: grid;
  place-content: center;
  justify-content: center;
  align-items: center;
}

form#talkwithsales .form-item input[type="radio"]:hover {
  cursor: pointer;
}

form#talkwithsales .form-item input[type="radio"]::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--buttonPrimaryColorHover);
}

form#talkwithsales .form-item input[type="radio"]:checked::before {
  transform: scale(0.9);
}

form#talkwithsales span.labelform {
  color: var(--darkBlueBiky);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  margin: 10px auto;
}

form#talkwithsales .bikywidget_acds label a:hover {
  color: black;
}

form#talkwithsales .SelectChannelBox.talksales .labelform {
  margin-top: 0 !important;
}

form#talkwithsales .bikywidget_acds label a:hover {
  color: black;
}
/*** TALK WITH SALES FORM ***/