:root {
  /* Colors */
  --tk-primary-color: #007AFF;
  --tk-white: #ffffff;
  --tk-black: #000000;

  /* Border colors */
  --tk-primary-border-color: #b7b7b7;
  --tk-placeholder-color: #b7b7b7;
}

body {
  font-family: "Open Sans", sans-serif !important;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

button,
a {
  cursor: pointer;
}

a {
  color: var(--tk-primary-color);
}

.error-mgs {
  display: block;
  color: red !important;
  font-size: 12px !important;
}

.custom-form-control {
  padding: 8px 18px !important;
  font-size: 14px !important;
  font-weight: 400;
  background-color: var(--tk-white) !important;
  background-clip: padding-box;
  /* border: 1px solid var(--tk-primary-border-color) !important; */
  border-radius: 10px !important;
  box-sizing: border-box;
}

.form-icon {
  padding: 8px 45px 8px 18px !important;
}

.custom-form-control:focus,
.form-select:focus {
  /* outline: 0 !important; */
  outline: 1px solid #000 !important;
  box-shadow: none !important;
}

.custom-form-control

.form-control:disabled {
  background-color: #ffffff !important;
}

.form-select {
  border-radius: 10px !important;
}

.custom-btn-primary {
  color: #fff;
  background-color: var(--tk-primary-color) !important;
  border-color: var(--tk-primary-color) !important;
}

.form-select {
  border: 1px solid var(--tk-primary-border-color) !important;
}

.btn {
  display: inline-block;
  padding: 4px 48px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: var(--tk-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 1px solid transparent !important;
  border-radius: 20px !important;
}

input::placeholder {
  color: var(--tk-placeholder-color) !important;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.5;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-50px {
  margin-bottom: 50px;
}

.button-style-remove {
  text-decoration: none;
  border: none;
  font-size: 13px;
  background-color: white;
}

#loader {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

#loader::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: black;
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

span#error-email {
  position: absolute;
  font-size: 13px;
  color: red;
  padding: 5px 10px;
}

/* language css */
.dropdown-l button {
  background-color: transparent;
  min-width: 100px;
  width: max-content;
  height: 60px;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  justify-content: space-evenly;
}
.dropdown-l button img {
  margin: 0 5px 0 0;
}
.dropdown-l button img,
.dropdown-content-l li img {
  width: 28px;
}
.dropdown-l button,
.dropdown-content-l li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
.arrow-down {
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
  margin: 0 0 0 5px;
}

.dropdown-menu{
  box-shadow: 0px 8px 24px 0px #00000040;
}

.dropdown-l button:hover {
  cursor: pointer;
  background-color: #f2f2f2;
}
/* Style for the dropdown content */
.floating-language{
  position: absolute;
  top: 20px;
  right: 20px;
}
.dropdown-content-l {
  display: none;
  position: absolute;
  margin: 1px 0 0 0;
  right: 0;
  padding: 0;
  background-color: #FFF;
  min-width: 100px;
  box-shadow: 0px 8px 24px 0px #00000040;
  z-index: 1;
  border-radius: 5px;
  overflow-y: auto;
  max-height: 315px;
}
/* Style for the dropdown content items */
.dropdown-content-l li {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  justify-content: start;
}
.dropdown-content-l li img {
  margin: 0 20px 0px 0px;
}
/* Style for the dropdown content items on hover */
.dropdown-content-l li:hover {
  background-color: #f1f1f1;
  cursor: pointer;
  color: blue;
  border-radius: 5px;
}
/* Show the dropdown content when the dropdown button is clicked */
.dropdown-l:focus-within .dropdown-content-l {
  display: block;
}
/* Animate the dropdown content */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-content {
  animation: slideIn 0.3s ease-out;
}
/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #c2c9d2;
}

/* ........ */

.copyright-kryoni-text{
  color: #fff !important;
}