/**************************************
                   FONT FACES
**************************************/
@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_Thin_250.otf) format('opentype');
}

@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_Regular_400.otf) format('opentype');
}

@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_Medium_500.otf) format('opentype');
}

@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_SemiBold_600.otf) format('opentype');
}

@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_Bold_700.otf) format('opentype');
}

@font-face {
    font-family: 'Montserrat Arabic';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(/assets/fonts/Montserrat-Arabic_Black_900.otf) format('opentype');
}

/**************************************
         GENERAL VAR & CLASSES
**************************************/
:root {
    --tk-color-primary: #15479c;
    --tk-color-primary-light: #2972e4;
    --tk-color-primary-dark: #091c44;
    --tk-color-secondary: #92beff;
    --tk-color-light: #eaf1ff;
    --tk-color-orange: #fcc300;
}

*::-webkit-scrollbar {
    width: 7px;
    background-color: transparent !important;
}

*::-webkit-scrollbar-track {
    background-color: #ccc !important;
}

*::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-clip: content-box;
    background: var(--tk-color-primary-light);
}

*::placeholder {
    font-size: 17px;
    color: var(--tk-color-secondary) !important;
}

input[type=password]::placeholder {
    font-size: 22px;
}

.text-light {
    color: #ddd !important;
}

.text-orange {
    color: var(--tk-color-orange);
}

.text-blue {
    color: var(--tk-color-primary);
}

.text-blue-light {
    color: var(--tk-color-primary-light);
}

.text-blue-dark {
    color: var(--tk-color-primary-dark);
}

.bg-light {
    background-color: var(--tk-color-light) !important;
}

.btn-light.bg-white{
    border: 0!important;
    background-color: #fff !important;
}

.btn-light.bg-white:hover{
    background-color: var(--tk-color-primary-light) !important;
    color: var(--bs-white) !important;
}

.bg-orange {
    background: var(--tk-color-orange);
}

.bg-blue {
    background: var(--tk-color-primary);
}

.bg-blue-light {
    background: var(--tk-color-primary-light) !important;
}

.bg-blue-dark {
    background: var(--tk-color-primary-dark);
}

.btn.bg-blue-dark {
    background: var(--tk-color-primary-light);
}

.btn.bg-blue-dark:hover {
    background: var(--tk-color-primary-dark);
    box-shadow: 0 0 10px RGBa(0, 0, 0, 0.05);
}

.xw-auto {
    max-width: 1320px !important;
}

.text-justify {
    text-align: justify;
}

.fw-bolder {
    font-weight: 800 !important;
}

.ltr {
    direction: ltr !important;
}

.rtl {
    direction: rtl !important;
}

.bounce__me {
    animation: bounceIn 1.5s ease-in-out;
}

.hold__animate {
    opacity: 0;
    animation-name: none !important;
    -webkit-animation-name: none !important;
}

.btn-lg {
    font-size: 15px;
}

.tags {
    display: inline-block;
    border-radius: 10px;
    background-color: var(--bs-white);
    padding: 4px 15px;
    margin: 0 0 10px 3px;
}

.notifyPoint {
    width: 20px;
    height: 20px;
}

.star__svg {
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
    image-rendering: optimizeQuality;
    fill-rule: evenodd;
    clip-rule: evenodd
}

.star__orange .star__svg path {
    fill: var(--tk-color-orange);
}

.star__blue .star__svg path {
    fill: var(--tk-color-primary);
}

.star__dark .star__svg path {
    fill: var(--tk-color-primary-dark);
}

.animated__boxes_area {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated__boxes_area .animated__boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.animated__boxes_area .animated__boxes li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    border-radius: 40%;
    background: var(--tk-color-primary-light);
    animation: animate 25s linear infinite;
    right: -150px;
}

.animated__boxes_area .animated__boxes li:nth-child(1) {
    top: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.animated__boxes_area .animated__boxes li:nth-child(2) {
    top: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.animated__boxes_area .animated__boxes li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.animated__boxes_area .animated__boxes li:nth-child(4) {
    top: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.animated__boxes_area .animated__boxes li:nth-child(5) {
    top: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.animated__boxes_area .animated__boxes li:nth-child(6) {
    top: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.animated__boxes_area .animated__boxes li:nth-child(7) {
    top: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.animated__boxes_area .animated__boxes li:nth-child(8) {
    top: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.animated__boxes_area .animated__boxes li:nth-child(9) {
    top: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.animated__boxes_area .animated__boxes li:nth-child(10) {
    top: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

/**************************************
                  PAGE STYLES
**************************************/
HTML, BODY, main {
    margin: 0;
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
}

BODY {
    font-family: 'Montserrat Arabic', serif !important;
    font-size: 14px;
    font-weight: 400;
}

*[role=button] {
    user-select: none;
    cursor: pointer;
}

a {
    color: var(--tk-color-primary);
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--tk-color-primary-dark);
}

section {
    position: relative;
    z-index: 4;
}

label {
    width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus,
textarea {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid var(--tk-color-primary-light) !important;
}

input, .form-control {
    background-color: var(--tk-color-light) !important;
    border-color: var(--tk-color-light) !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
}

.form-control.border-danger {
    border-color: red !important;
}

input[type=password] {
    font-size: 28px;
    line-height: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/**************************************
                HEADER & BARS
**************************************/
.tk__topbar, .tk__topbar a {
    color: var(--bs-white);
    font-size: 12px;
    z-index: 5;
}

.tk__topbar a:hover {
    color: var(--tk-color-orange) !important;
}

.tk__social__links {
    background: var(--tk-color-primary-dark);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    padding: 8px 0;
}

.tk__dropdown__menu {
    display: inline-block;
    position: relative;
    width: 95px;
}

.tk__dropdown__item {
    list-style: none;
    position: relative;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.tk__dropdown__item a, .tk__dropdown__item__current span {
    display: block;
    padding: 7px 0;
    text-align: center;
    font-size: 11px;
}

.tk__dropdown__item:not(.tk__dropdown__item__current) {
    transform: translateY(10px);
    opacity: 0;
    pointer-event: none;
}

ul .tk__dropdown__item:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.4;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item, ul:hover > .tk__dropdown__item {
    transform: translateY(0);
    opacity: 1;
    pointer-event: auto;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item::before, ul:hover > .tk__dropdown__item::before {
    transform: translateX(-50%) scaleX(1);
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(1), ul:hover > .tk__dropdown__item:nth-child(1) {
    transition-delay: 0.165s;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(1)::before, ul:hover > .tk__dropdown__item:nth-child(1)::before {
    transition: all 0.25s 0.3s ease-out;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(2), ul:hover > .tk__dropdown__item:nth-child(2) {
    transition-delay: 0.205s;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(2)::before, ul:hover > .tk__dropdown__item:nth-child(2)::before {
    transition: all 0.25s 0.5s ease-out;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(3), ul:hover > .tk__dropdown__item:nth-child(3) {
    transition-delay: 0.245s;
}

.tk__dropdown__item__current:hover + ul > .tk__dropdown__item:nth-child(3)::before, ul:hover > .tk__dropdown__item:nth-child(3)::before {
    transition: all 0.25s 0.7s ease-out;
}

.tk__dropdown__item__current span {
    position: relative;
    font-size: 12px;
}

.tk__dropdown__item__current span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(calc(-50% + 1px));
    border: 4px solid transparent;
    border-top-color: currentColor;
    border-bottom: none;
}

BODY:lang(ar) .tk__dropdown__item__current span::before {
    right: auto;
    left: 5px;
}

.tk__dropdown__menu:hover .tk__dropdown__item__current span::before {
    transform: translateY(calc(-50% - 1px)) rotate(180deg);
}

.tk__dropdown__menu .dropdown__block__select {
    position: absolute;
    top: 100%;
    left: -10px;
    margin: auto;
    padding: 10px 0;
    width: calc(100% + 20px);
    color: #fff;
    background-color: var(--tk-color-primary-dark);
    z-index: 5;
    transform-origin: center top;
    transform: scaleY(0);
    transition: all 0.25s 0.05s ease-in-out;
}

.tk__dropdown__item__current:hover + .dropdown__block__select, .dropdown__block__select:hover {
    transform: scaleY(1);
    transition-delay: 0s;
}

.account_dropdown{
    display: block;
}

.tk__navbar {
    margin-top: 60px;
    width: 90%;
    box-shadow: 0 0 5px RGBa(0, 0, 0, 0.1);
    transition: 0.25s ease;
    z-index: 2;
    position: absolute;
}

.tk__navbar:hover {
    box-shadow: 0 0 20px RGBa(0, 0, 0, 0.2);
}

.tk__navbar::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--bs-border-radius-xxl);
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: 0.25s linear;
}

.tk__navbar:hover::after {
    width: 0;
    left: 100%;
    opacity: 0;
}

.tk__navbar a {
    color: var(--tk-color-primary-dark);
    display: block;
    min-width: 72px;
    width: auto;
    padding: 8px 0;
    font-weight: 600;
    font-size: 13px;
    transition: 0.25s ease;
    z-index: 2;
}

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

.tk__navbar:hover a:not(:hover) {
    opacity: 0.3;
}

.tk__navbar a span {
    transition: 0.5s ease;
}

.tk__navbar a:hover span {
    background-color: var(--tk-color-orange);
    color: var(--tk-color-primary);
    transform: scale3d(1.2, 1.2, 1.1);
    transition: 0.5s ease;
}

.tk__navbar__full {
    display: none;
    margin-top: 40px;
    background: #fefeff;
}

.tk__navbar__full .tk__dropdown__menu{
    width: 120px;
}

.tk__navbar__full .tk__dropdown__menu .dropdown__block__select{
    width: 120px;
    left: 0!important;
    right: 0!important;
}

.tk__navbar__full .tk__dropdown__menu .dropdown__block__select a{
    color: var(--bs-white);
}

.tk__navbar__full .tk__dropdown__menu .dropdown__block__select a:hover{
    color: var(--tk-color-orange);
}

.tk__nav__items li{
    min-width: 90px;
    width: fit-content;
}

header {
    width: 100vw;
    background-position: center;
    background-image: url('/assets/img/pattern-d.png'), radial-gradient(ellipse at center, var(--tk-color-primary-light) 1%, var(--tk-color-primary) 100%);
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 0;
    padding: 120px 0 35px;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

header:after, .tk__how__order .container:after {
    content: '';
    top: 0;
    transform: translate3d(23px, 24px, 10px);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    animation: slide 5s infinite;
    opacity: 0.2;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1); /* IE6-9 */
}

.header__contents {
    z-index: 1;
    transform: translateY(30px);
}

.header__buttons{
    display: inline-flex;
}

.top__logo {
    display: block;
    margin: 0 auto;
    width: 150px;
}

.heading {
    font-size: 20px;
    color: var(--bs-white);
}

BODY:lang(ar) .heading {
    font-size: 23px;
}

.sub__heading {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bs-white);
}

BODY:lang(ar) .sub__heading {
    font-size: 14px;
    line-height: 1.8;
}

.banner__img {
    max-width: 90%;
    width: 400px;
}

.color__separation {
    display: block;
    width: 100%;
    height: 60px;
    max-height: 60px;
    margin: 0;
    z-index: 4;
    bottom: 0;
    position: absolute;
    left: 0;
    float: left;
}

.color__separation .parallax1 > use {
    transform: translate(85px, 0%);
}

.color__separation .parallax2 > use {
    transform: translate(10px, 10%);
}

.color__separation .parallax3 > use {
    transform: translate(100px, 20%);
}

.color__separation .parallax4 > use {
    transform: translate(65px, 30%);
}

.tk__about__section {
    overflow: hidden;
}

.tk__about__section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/pattern-s.png');
    background-size: cover;
    background-position: center;
}

.tk__coverage__section {
    position: relative;
    align-items: center;
    justify-content: center;
    background: var(--tk-color-light) url("/assets/img/sa-buildings.png") center bottom no-repeat !important;
    background-size: cover;
}

.tk__pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.tk__pricing__item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.tk__pricing .tk__pricing__item {
    min-height: 495px;
    cursor: default;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
}

.tk__pricing .pricing__item__featured::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 120px;
    top: -50px;
    right: 20px;
    background: url(/assets/img/featured.png) center no-repeat;
    background-size: contain;
}

BODY:lang(ar) .tk__pricing .pricing__item__featured::after {
    right: auto;
    left: 20px;
}

.tk__pricing .tk__pricing__decoration {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(135deg, var(--tk-color-primary-light), var(--tk-color-primary-dark));
    padding: 55px 0 170px;
    position: relative;
}

.tk__pricing .pricing__item__featured .tk__pricing__decoration {
    background: linear-gradient(135deg, var(--tk-color-primary-light), var(--tk-color-primary-light));
}

.tk__pricing .tk__pricing__deco__img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.tk__pricing .tk__pricing__deco__layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.tk__pricing .tk__pricing__item:hover .tk__pricing__deco__layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.tk__pricing .tk__pricing__item:hover .tk__pricing__deco__layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.tk__pricing .tk__pricing__title {
    max-width: 80%;
    font-size: 12px;
    margin: 5px auto 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border: 3px solid var(--tk-color-secondary);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
}

BODY:lang(ar) .tk__pricing .tk__pricing__title {
    font-size: 15px;
    letter-spacing: initial;
}

.tk__pricing .tk__pricing__price {
    font-size: 64px;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 0.75;
}

.tk__pricing .tk__pricing__currency {
    font-size: 14px;
    vertical-align: bottom;
}

.tk__pricing .tk__pricing__startfrom {
    font-size: 0.15em;
    vertical-align: top;
    font-weight: normal;
}

.tk__pricing .tk__pricing__feature__list {
    margin: -50px auto 40px;
    z-index: 5;
}

.tk__pricing .tk__pricing__feature {
    font-size: 13px;
    padding: 5px 0;
}

.tk__pricing .tk__pricing__action {
    margin: 0 auto 30px;
    max-width: 80%;
}

.tk__pricing .tk__pricing__item__featured .tk__pricing__decoration {
    padding: 5em 0 8.885em 0;
}

.tk__how__order .container {
    box-shadow: 0 0 20px rgba(46, 59, 125, 0.13);
    max-width: 85%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--tk-color-primary-light), var(--tk-color-primary-light));
}

.tk__how__order .tk__how__main {
    height: 200px;
    background: var(--bs-white);
}

.tk__how__order .tk__how__counter {
    top: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--tk-color-orange);
    color: var(--tk-color-primary-dark);
    border: 5px solid var(--bs-white);
    border-radius: 100%;
    font-size: 35px;
    z-index: 5;
}

.tk__how__order .tk__how__counter ul {
    list-style: none;
    position: relative;
    height: 80px;
    width: 80px;
    margin: auto;
}

.tk__how__order .tk__how__counter ul li {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.tk__how__order .tk__how__counter ul li.active {
    opacity: 1;
}

.tk__how__order .tk__how__counter ul li span {
    line-height: 1.4;
    display: inline-block;
}

.tk__how__order ol {
    list-style: none;
    position: relative;
}

.tk__how__order ol::-webkit-scrollbar {
    display: none;
}

.tk__how__order .tk__how__stationary {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: auto;
}

.tk__how__order .tk__how__stationary img {
    max-width: 185px;
}

.tk__how__order .tk__how__stationary h2 {
    max-width: 80%;
    font-size: 16px;
    line-height: 1.2;
    margin: 20px auto 0;
}

.tk__how__order .tk__how__steps {
    padding: 20px;
    height: 300px;
}

.tk__how__order .tk__how__step__wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
}

.tk__how__order .tk__how__step__wrap.active {
    opacity: 1;
}

.tk__how__order .tk__how__step__wrap p {
    color: var(--bs-white);
    line-height: 2;
}

.tk__how__nav__arrow {
    position: relative;
    z-index: 6;
}

.tk__faq {
    padding: 60px 0;
    margin-top: 80px;
    background: linear-gradient(var(--bs-white), var(--tk-color-light));;
}

.tk__accordion .card {
    border: none;
    margin-bottom: 25px;
}

.tk__accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 10px;
}

.tk__accordion .card .card-header {
    border: none;
    border-radius: 10px;
    padding: 0;
}

.tk__accordion .card .card-header .accordion__button_wrap {
    padding: 0;
}

.tk__accordion .card .card-header .accordion__button_wrap .accordion__button {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-align: start;
    padding: 0 70px 0 30px;
    height: 65px;
    display: block;
    width: 100%;
    background: #fff;
    color: var(--tk-color-primary-dark);
    -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 10px;
    position: relative;
}

BODY:lang(ar) .tk__accordion .card .card-header .accordion__button_wrap .accordion__button {
    padding: 0 30px 0 70px;
}

.tk__accordion .card .card-header .accordion__button_wrap .accordion__button:after {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: var(--tk-color-primary-light);
    text-align: center;
    border: 1px solid var(--tk-color-primary-light);
    border-radius: 50%;
    content: "\2b";
    font-size: 10px;
    line-height: 18px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

BODY:lang(ar) .tk__accordion .card .card-header .accordion__button_wrap .accordion__button:after {
    right: auto;
    left: 30px;
}

.tk__accordion .card .card-header .accordion__button_wrap .accordion__button.expanded:after {
    content: "\2013";
}

.tk__accordion .card .card-body {
    -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 0 0 10px 10px;
    padding: 5px 30px 15px;
    line-height: 30px;
    transition: all 0.25s ease-in;
    display: none;
}

.tk__footer__cta {
    border-bottom: 1px solid #eee;
}

.tk__footer__cta ul, .tk__payment__methods {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.tk__footer__cta ul li, .tk__payment__methods li {
    padding: 5px 50px;
    margin: 10px;
    min-width: 258px;
    flex: 1;
}

.tk__footer__cta ul li a {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.tk__footer__cta ul li a i {
    color: var(--tk-color-orange);
    font-size: 39px;
}

.tk__footer__cta .tk__contact_title {
    font-size: 12px;
    margin-bottom: 7px;
    color: var(--tk-color-primary-dark);
}

.tk__footer__cta span {
    color: var(--tk-color-primary);
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}

.tk__footer__content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.tk__footer__logo {
    margin-bottom: 30px;
}

.tk__footer__logo img {
    max-width: 165px;
}

.tk__footer__text p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

.tk__footer__heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.tk__footer__heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--tk-color-primary-light);
}

BODY:Lang(ar) .tk__footer__heading h3::before {
    left: auto;
    right: 0;
}

.tk__footer .tk__footer__content .tk__footer__content__links ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 10px;
}

BODY:lang(ar) .tk__footer .tk__footer__content .tk__footer__content__links ul li {
    float: right;
}

.tk__footer .tk__footer__content .tk__footer__content__links ul li a {
    color: var(--bs-gray-dark);
    font-size: 14px;
}

.tk__footer .tk__footer__content .tk__footer__content__links ul li a:hover {
    color: var(--tk-color-primary);
}

.tk__payment__methods li {
    padding: 0 !important;
    min-width: max-content;
}

.tk__copyright {
    background: var(--tk-color-primary-dark);
    padding: 25px 0;
}

.tk__copyright p {
    margin: 0;
    font-size: 14px;
    color: var(--bs-white);
}

.tk__copyright p a {
    color: var(--tk-color-primary-light);
}

.TopPage {
    position: fixed;
    bottom: 40px;
    right: 40px;
    transform: translateY(150px);
    width: 45px;
    height: 45px;
    font-size: 27px;
    border: 2px solid var(--tk-color-primary-light);
    background: var(--tk-color-primary-light);
    color: var(--bs-white);
    transition: 180ms;
    z-index: 99;
}

BODY:lang(ar) .TopPage {
    position: fixed;
    bottom: 40px;
    right: auto;
    left: 40px;
}

.TopPage:hover {
    background: var(--tk-color-primary-dark);
}

.TopPage:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -6px;
    right: -5px;
    bottom: -5px;
    border-radius: inherit;
    border: 2px dashed var(--tk-color-primary-light);
    background-color: rgba(0, 0, 0, 0);
    transition: 180ms;
    z-index: 1;
}

.TopPage:hover:before {
    animation: 13s linear infinite spin;
}

.TopPage.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.tk__authenticate__form {
    padding: 50px 0;
    background: var(--tk-color-light);
}

.tk__authenticate__form .container {
    background-color: var(--bs-white);
    padding: 15px 0;
    border-radius: 25px;
    display: flex;
    max-width: 920px;
    width: 90%;
}

.tk__authenticate__form .wrapper {
    display: flex;
    justify-content: center;
}

.tk__authenticate__form form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 30px 0;
    width: 90%;
}

.tk__authenticate__form .main-img {
    min-height: 250px;
    border-radius: 25px;
    background-size: 98%;
    background-repeat: no-repeat;
    background-position: center;
}

.tk__authenticate__form .main-img.login {
    background-image: url('/assets/img/login.jpg');
}

.tk__authenticate__form .main-img.register {
    background-image: url('/assets/img/register.jpg');
}

.tk__authenticate__form .main-img.reset {
    background-image: url('/assets/img/reset.jpg');
}

.tk__authenticate__form .main-img.password {
    background-image: url('/assets/img/password.jpg');
    background-size: 75%;
}

.tk__authenticate__form h1 {
    margin-bottom: 20px;
}

.tk__authenticate__form .wrapper p {
    font-size: 14px;
    margin-bottom: 40px;
}

.tk__authenticate__form .country__code__input {
    width: 100px;
    margin-right: 10px;
}

.tk__authenticate__form .country__code__input input {
    min-width: 40px !important;
    width: 40px !important;
    padding: 0;
    border: 0;
    line-height: 1;
    pointer-events: none !important;
}

.tk__authenticate__form .password__icon {
    display: flex;
    position: relative;
}

.tk__authenticate__form .password__icon i {
    position: absolute;
    align-self: center;
    top: 5px;
    right: 5px;
    border-radius: 5px;
    background: #fff;
    padding: 12px;
    color: var(--tk-color-primary);
    cursor: pointer;
}

BODY:lang(ar) .tk__authenticate__form .password__icon i {
    right: auto;
    left: 5px;
}

.tk__authenticate__form .password__icon i:hover {
    color: var(--tk-color-primary-light);
}

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

.tk__authenticate__form #password {
    margin-bottom: 10px;
}

.tk__authenticate__form #login-btn {
    margin: 20px 0;
    height: 40px;
    border-radius: 15px;
    border: none;
    background-color: #2b2684;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.5s;

}

.tk__authenticate__form span {
    text-align: center;
    position: relative;
}

.tk__authenticate__form hr {
    width: 100%;
    height: 1px;
    background-color: var(--tk-color-secondary);
    border: none;
    align-self: center;
}

.tk__authenticate__form .register {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tk__tabs {
    position: relative;
    width: 85%;
}

.tk__tabs .counter {
    height: max-content;
    line-height: 1.5;
}

.tk__tabs input[name=tk__tabs__control] {
    display: none;
}

.tk__tabs ul li label {
    font-weight: bold;
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
}

.tk__tabs ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.tk__tabs ul li {
    box-sizing: border-box;
    display: flex;
    flex: 1;
    width: 33.333333%;
    position: relative;
    padding: 0 5px;
    text-align: start;
}

.tk__tabs ul li label {
    color: var(--tk-color-primary-dark);
    transition: all 0.3s ease-in-out;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tk__tabs ul li label span {
    font-size: 11px;
    width: 100%;
}

.tk__tabs ul li label br {
    display: initial;
}

.tk__tabs ul li label svg {
    width: 100%;
    height: 20px;
    vertical-align: bottom;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

.tk__tabs .slider {
    display: none;
    position: relative;
    width: 33.333333%;
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tk__tabs .slider .indicator {
    position: relative;
    width: 50px;
    max-width: 100%;
    margin: 0 auto;
    height: 4px;
    background: var(--tk-color-orange);
    border-radius: 1px;
}

.tk__tabs .content {
    margin-top: 20px;
}

.tk__tabs .content section {
    display: none;
    -webkit-animation-name: content;
    animation-name: content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    line-height: 1.4;
}

.tk__tabs .content section h2 {
    color: #428BFF;
    display: none;
}

.tk__tabs .content section h2::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #428BFF;
    margin-top: 5px;
    left: 1px;
}

.tk__tabs input[name=tk__tabs__control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label,
.tk__tabs input[name=tk__tabs__control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label,
.tk__tabs input[name=tk__tabs__control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    color: #428BFF;
    background: var(--tk-color-light);
}

.tk__tabs input[name=tk__tabs__control]:nth-of-type(1):checked ~ .content > section:nth-child(1),
.tk__tabs input[name=tk__tabs__control]:nth-of-type(2):checked ~ .content > section:nth-child(2),
.tk__tabs input[name=tk__tabs__control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block;
}

.grecaptcha-badge {
    display: none !important;
}

.tk__menu__bar {
    width: 550px;
    max-width: 100%;
}

.tk__menu__bar a {
    color: var(--tk-color-primary-dark);
    padding-bottom: 10px;
    position: relative;
    font-weight: bold;
    font-size: 11px;
}

.tk__menu__bar a:hover {
    color: var(--tk-color-primary-light);
}

.tk__menu__bar a:hover:after,
.tk__menu__bar a.active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 5px;
    background: var(--tk-color-orange);
}

.tk__menu__bar a i {
    padding: 10px 0;
    font-size: 20px;
}

.tk__menu__bar a:hover i {
    -webkit-transform-origin: top center;
    transform-origin: bottom center;
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.selector, .property {
    height: 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .1);
}

.selector-item {
    position: relative;
    flex-basis: 100%;
    margin: 0 5px;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service__option {
    appearance: none;
    display: none;
}

.service-data {
    padding: 5px 10px;
}

.property {
    height: inherit;
    box-shadow: 0 0 0;
}

.property .property__options {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property .property__options__item input {
    display: none;
}

.property .property__button {
    margin: 10px 3px;
    width: 100%;
    height: 120px;
    border: 3px solid transparent;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px #40404067;
    cursor: pointer;
    opacity: 0.5;
}

.property .property__button > i {
    color: #ffffff;
    background-color: var(--tk-color-primary-light);
    font-size: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(4);
    border-radius: 50px;
    padding: 3px;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
}

.property .property__button .property__icon {
    height: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.property .property__button .property__icon i {
    color: var(--tk-color-primary-dark);
    line-height: 60px;
    font-size: 40px;
}

.property .property__button .property__icon h3 {
    color: var(--tk-color-primary-dark);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.property .property__options__item {
    height: 100%;
    display: flex;
}

.property .property__options__item input:checked + .property__button {
    border: 3px solid var(--tk-color-primary-light);
    opacity: 1;
}

.property .property__options__item input:checked + .property__button > i {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.cards-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.inspect-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(145, 145, 145, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inspect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.inspect-card-list {
    list-style: none;
    padding: 0;
}

.inspect-card-list li {
    display: flex;
    align-items: center;
    margin: 5px auto;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    z-index: 4;
}

.datepicker table {
    font-size: 12px;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
    background-color: var(--tk-color-primary-light) !important;
    border-color: var(--tk-color-primary-light) !important;
}

.order__status {
    font-size: 10px !important;
}

.items__list .card {
    display: table;
    background-color: var(--bs-white);
    width: 100%;
    margin-bottom: 10px;
    border: 0;
    position: relative
}

.items__list .id {
    display: table-cell;
    width: 50px;
    position: relative;
    text-align: center;
    border-right: 2px dashed #dadde6;
    line-height: 1.2;
}

BODY:lang(ar) .items__list .id {
    border-right: 0;
    border-left: 2px dashed #dadde6
}

.items__list .id:before,
.items__list .id:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1;
    border-radius: 50%
}

.items__list .id:after {
    top: auto;
    bottom: -15px
}

BODY:lang(ar) .items__list .id:before,
BODY:lang(ar) .items__list .id:after {
    right: auto;
    left: -15px;
}

.items__list .id span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: rotate3d(0, 0, -15, 90deg) translate(7%, -400%);
    color: var(--tk-color-primary-light);
    font-weight: 600;
    font-size: 130%;
    width: 175px;
}

.items__list .card-cont {
    display: table-cell;
    width: calc(100% - 50px);
    font-size: 13px;
    padding: 25px 20px;
}

.items__list .card-cont small {
    padding: 3px 15px;
    font-size: 13px;
}

.wpwl-container {
    padding: 0;
}

.wpwl-form {
    max-width: 100%;
    height: 100%;
    padding: 20px 20px 0;
    margin-bottom: 20px !important;
    box-shadow: 0 0 0;
    background: #fff;
    border: 0;
    display: flex;
    flex-flow: wrap;
}

.wpwl-form *:not(button) {
    background-color: transparent !important;
}

.wpwl-form *::placeholder {
    font-size: 16px !important;
    font-weight: 900;
    font-family: mono, serif !important;
}

.wpwl-control, input.wpwl-control {
    background: transparent;
    box-shadow: 0 0 16px rgba(0, 0, 0, .1);
    border: 0 !important;
    border-radius: 0px;
    text-transform: none;
    padding: 10px;
    font-size: 15px;
    height: 50px;
}

.wpwl-group, .wpwl-label-brand, .wpwl-wrapper-brand, .wpwl-wrapper-registration {
    display: inline-block;
}

.wpwl-wrapper-brand {
    display: block;
    width: 100%;
    padding: 0;
    box-shadow: 0 0 16px rgba(0, 0, 0, .1);
}

.wpwl-control-brand, .wpwl-control-brand:focus {
    border: 0 !important;
    z-index: 9;
    opacity: 0;
    position: relative;
    cursor: pointer;
}

.wpwl-brand-card {
    position: absolute;
    margin: 0 15px auto !important;
    z-index: 0;
    top: 0;
    bottom: 0;
    transform: translateY(89%);
}

.wpwl-brand-card.wpwl-brand-VISA, .wpwl-brand-card.wpwl-brand-MASTER {
    transform: translateY(25%);
}

.wpwl-apple-pay-button{
    width: 100%!important;
    border-radius: 7px!important;
    -apple-pay-button-style: black!important;
    padding: 20px!important;
}

.wpwl-label-brand, .wpwl-label, .wpwl-label-cardNumber, .wpwl-label-cvv {
    display: none !important;
}

.wpwl-group-cardNumber {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    width: calc(100% - 135px);
}

BODY:lang(ar) .wpwl-group-cardNumber {
    left: 20px;
    right: auto;
}

.wpwl-control-cardNumber {
    direction: ltr !important;
    text-align: center !important;
    border: 0 !important;
    font-family: monospace !important;
    font-size: 20px !important;
    font-weight: 600;
    z-index: 9;
    position: relative;
    box-shadow: 0 0 0 !important;
}

.wpwl-has-error ~ .wpwl-hint {
    color: red !important;
    text-align: center !important;
    padding: 10px 0 !important;
    width: 335px;
    margin: auto;
    display: flex;
}

.wpwl-group-brand, .wpwl-group-expiry, .wpwl-group-cardHolder {
    height: 80px;
    padding: 0 !important;
}

.wpwl-control-cardHolder {
    text-align: center !important;
}

.wpwl-control-expiry, .wpwl-control-cvv {
    direction: ltr !important;
    text-align: center;
}

.wpwl-group-cvv, .wpwl-group-submit {
    display: inline-block;
}

.wpwl-group-cvv {
    width: 33.33333%;
    margin-bottom: 0;
}

.wpwl-group-submit {
    width: 66.666666%;
    margin-bottom: 0;
}

.wpwl-button-pay, .wpwl-button-pay:hover,
.wpwl-button-pay:focus,
.wpwl-button-pay:active,
.wpwl-button-pay:focus-visible {
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 16px;
    background: var(--tk-color-primary-light);
    border: var(--tk-color-primary-light);
}
.wpwl-apple-pay-button{-webkit-appearance: -apple-pay-button !important;}

.payment__wrapper input[type=text]:focus,
.payment__wrapper input[type=tel]:focus,
.payment__wrapper input[type=number]:focus,
.payment__wrapper input[type=button]:focus,
.payment__wrapper input[type=submit]:focus,
.payment__wrapper select:focus {
    border: 0 !important;
    box-shadow: 0 0 16px rgba(0, 0, 0, .1) !important;
}

.payment__wrapper .wpwl-wrapper > .wpwl-icon {
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.wpwl-popover {
    background-color: var(--bs-white) !important;
    width: 150px;
    text-align: center;
    font-size: 11px;
}

.wpwl-brand-AMEX {
    top: -25px;
}

.toggle-button-cover {
    display: table-cell;
    position: relative;
    width: fit-content;
    box-sizing: border-box;
}

.toggle-button-cover .knobs,
.toggle-button-cover .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.toggle-button-cover .button {
    position: relative;
    width: 50px;
    height: 29px;
    margin: 0 auto;
    overflow: hidden;
}

.toggle-button-cover .button.r,
.toggle-button-cover .button.r .layer {
    border-radius: 100px;
}

.toggle-button-cover .button.b2 {
    border-radius: 2px;
}

.toggle-button-cover .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.toggle-button-cover .knobs {
    z-index: 2;
}

.toggle-button-cover .layer {
    width: 100%;
    background-color: #fcebeb;
    transition: 0.3s ease all;
    z-index: 1;
}

.toggle-button-cover .button .knobs:before {
    content: "\d7";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    line-height: 0.3;
    padding: 9px 4px;
    background-color: #f44336;
    border-radius: 50%;
    transition: 0.3s ease all, right 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

BODY:lang(ar) .toggle-button-cover .button .knobs:before {
    left: 25px;
}

.toggle-button-cover .button .checkbox:active + .knobs:before {
    width: 46px;
    border-radius: 100px;
}

.toggle-button-cover .button .checkbox:checked:active + .knobs:before {
    margin-left: -26px;
}

.toggle-button-cover .button .checkbox:checked + .knobs:before {
    content: "\2713";
    left: 25px;
    background-color: #03a9f4;
}

BODY:lang(ar) .toggle-button-cover .button .checkbox:checked + .knobs:before {
    left: 4px;
}

.toggle-button-cover .button .checkbox:checked ~ .layer {
    background-color: #ebf7fc;
}

.inspection__element {
    border: 1px solid #ebebeb;
}

.inspection__element.collapsed {
    height: 57px !important;
    overflow: hidden;
}

.inspection__element__head {
    height: 40px;
    cursor: pointer;
}

.inspection__element__contents {
    width: 100%;
    display: grid;
}

.inspection__element__contents .nav-tabs {
    display: inline-flex;
    width: 100%;
    overflow-x: auto;
    border-bottom: 0;
    flex-wrap: nowrap;
    font-size: small;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.inspection__element__contents .nav-tabs::-webkit-scrollbar {
    display: none;
}

.inspection__element__contents .nav-tabs li {
    position: relative;
    min-width: fit-content;
    height: 35px;
    font-size: 12px;
    padding: 5px 20px;
    margin: 10px 5px;
    background-color: #efefef;
    transition-duration: .5s;
    transition-property: transform, box-shadow;
    transform: none;
    cursor: pointer;
    text-align: center;
    align-items: center;
    align-content: center;
    user-select: none;
}

.inspection__element__contents .nav-tabs li.active,
.inspection__element__contents .nav-tabs li:hover {
    background: var(--tk-color-primary-light);
    color: var(--bs-white);
}

.inspection__element__contents .nav-tabs li.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 1px;
    border-top: 10px solid var(--tk-color-primary-light);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: 0.2s;
    opacity: 1;
}

.inspection__element__contents .nav-tabs li:first-child,
.inspection__element__contents .nav-tabs li:first-child:hover,
.newNote,
.addElementButton,
.card__image label,
.image__item {
    box-shadow: 0 0 0;
    background: transparent;
    border: 1px dashed var(--tk-color-primary-light);
    color: var(--tk-color-primary-light);
    font-size: 12px;
    padding: 8px 12px;
}

.inspection__element__contents .nav-tabs li:first-child:hover,
.newNote:hover,
.card__image label:hover {
    background: var(--tk-color-primary-light);
    border: 1px dashed var(--bs-white);
    color: var(--bs-white);
}

.inspection__element__contents .nav-tabs li:first-child:after {
    display: none !important;
}

.inspection__element__contents .tab-pane {
    position: relative;
    margin: 15px auto 0;
    padding: 10px 0;
}

.inspection__element__contents .tab-content {
    padding: 20px
}

.rate__wrapper {
    height: 75px;
}

.rate__range {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    z-index: -1;
}

.rate__steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 20px);
    height: 50px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    user-select: none;
}

.rate__steps .rate__step {
    position: relative;
    display: block;
    width: 9%;
    height: 50px;
    cursor: pointer;
    color: var(--bs-secondary);
    font-size: xx-small;
    text-align: center;
}

.rate__steps .rate__step.active {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    color: var(--tk-color-primary-dark);
}

.rate__steps .rate__step:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    background: var(--tk-color-primary-light);
    width: 100%;
    height: 7px;
    border-radius: 3px;
    cursor: pointer;
}

.rate__steps .rate__step.active:after {
    position: absolute;
    content: '';
    -webkit-appearance: none;
    right: 0;
    left: 0;
    margin: 38px auto 0;
    width: 1px;
    height: 1px;
    border-bottom: 10px solid var(--tk-color-primary-light);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: 0.2s;
    border-radius: 5px;
    z-index: 5;
}

.rate__step[data-value="1"]:before {
    background-color: #ff0000; /* Red */
}

.rate__step[data-value="2"]:before {
    background-color: #ff3e3e; /* Light Red */
}

.rate__step[data-value="3"]:before {
    background-color: #ff7e7e; /* Lighter Red */
}

.rate__step[data-value="4"]:before {
    background-color: #ffb3b3; /* Very Light Red */
}

.rate__step[data-value="5"]:before {
    background-color: #ffeb80; /* Light Yellow */
}

.rate__step[data-value="6"]:before {
    background-color: #ffff80; /* Pale Yellow */
}

.rate__step[data-value="7"]:before {
    background-color: #d4ff80; /* Light Green */
}

.rate__step[data-value="8"]:before {
    background-color: #a3ff80; /* Green */
}

.rate__step[data-value="9"]:before {
    background-color: #80ff80; /* Dark Green */
}

.rate__step[data-value="10"]:before {
    background-color: #219d21; /* Dark Green */
}

.counter__item {
    position: relative;
    text-align: center;
}

.counter__item::before {
    content: counter(divCount);
    counter-increment: divCount;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: black;
    background: #f1f2f6;
    border-radius: 100%;
}

BODY:lang(ar) .counter__item::before {
    left: auto;
    right: 0;
}

.notes__wrapper,
.submission_errors {
    counter-reset: divCount;
}

.submission_errors .counter__item::before {
    background: var(--bs-danger-bg-subtle);
    color: var(--bs-danger);
}

.image__item {
    height: 260px;
    background-color: #eaf1ff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.image__item.progress:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(255 255 255 / 70%);
    z-index: 1;
}

.image__item i {
    z-index: 3;
}

.btn-whatsapp-pulse {
	background: #25d366;
    color: white;
    position: fixed;
    bottom: 80px;
    left: 20px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    z-index: 99;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

BODY:lang(ar) .btn-whatsapp-pulse {
    left: auto;
    right: 20px;
}

/**************************************
                ANIMATIONS
**************************************/
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.01);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes animate {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: .2;
        border-radius: 0;
    }
    100% {
        transform: translateX(-100vw) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

/**************************************
                MEDIA QUERIES
**************************************/
@media (min-width: 769px) {
    .text-lg-justify {
        text-align: justify !important;
    }

    .w-lg-25 {
        width: 25% !important
    }

    .w-lg-50 {
        width: 50% !important
    }

    .w-lg-75 {
        width: 75% !important
    }

    .w-lg-100 {
        width: 100% !important
    }

    .tk__navbar {
        margin-top: -80px;
        width: 365px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        z-index: 7;
        position: fixed;
    }
    .tk__navbar.show {
        margin-top: -3px;
    }

    .tk__navbar .line {
        display: none;
        position: absolute;
        width: 90%;
        height: 100%;
        border-bottom: 3px solid var(--tk-color-orange);
        bottom: 0;
        left: 20px;
        right: 20px;
        margin: auto;
        transition: 0.25s ease;
        pointer-events: none;
        z-index: 3;
    }

    .tk__navbar a:nth-child(1):hover ~ .line {
        left: -220px;
    }

    BODY:lang(ar) .tk__navbar a:nth-child(1):hover ~ .line {
        left: auto;
        right: 25px;
    }

    .tk__navbar a:nth-child(2):hover ~ .line {
        left: -59px;
    }

    BODY:lang(ar) .tk__navbar a:nth-child(2):hover ~ .line {
        left: auto;
        right: 105px;
    }

    .tk__navbar a:nth-child(3):hover ~ .line {
        left: 97px;
    }

    BODY:lang(ar) .tk__navbar a:nth-child(3):hover ~ .line {
        left: auto;
        right: 183px;
    }

    .tk__navbar a:nth-child(4):hover ~ .line {
        left: 259px;
    }

    BODY:lang(ar) .tk__navbar a:nth-child(4):hover ~ .line {
        left: auto;
        right: 262px;
    }

    .tk__navbar:hover .line {
        display: block;
        width: 80px;
    }

    .tk__navbar a:hover span {
        background: transparent;
    }

    .account_dropdown{
        display: none;
    }

    .tk__navbar__full{
        display: block;
    }

    header {
        padding: 0 0 20px;
    }

    .header__contents {
        transform: translateY(0);
    }

    .top__logo {
        width: 120px;
    }

    .heading {
        font-size: 36px;
    }

    BODY:lang(ar) .heading {
        font-size: 34px;
    }

    .sub__heading {
        font-size: 20px;
    }

    BODY:lang(ar) .sub__heading {
        font-size: 20px;
        line-height: 1.8;
    }

    .tk__pricing .tk__pricing__item {
        margin: 1em -0.5em;
    }

    .tk__pricing .pricing__item__featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    }

    .tk__how__order .container {
        max-width: 980px;
    }

    .tk__how__order .tk__how__main {
        height: 300px;
    }

    .tk__how__order .tk__how__counter {
        left: calc(100% - 30px);
        right: auto;
        top: calc(50% - 30px);
    }

    BODY:lang(ar) .tk__how__order .tk__how__counter {
        left: auto;
        right: calc(100% - 30px);
    }

    .tk__how__order .tk__how__steps {
        padding: 15px 30px 15px 70px;
    }

    BODY:lang(ar) .tk__how__order .tk__how__steps {
        padding: 15px 70px 15px 30px;
    }

    .tk__footer__cta ul li, .tk__payment__methods li {
        padding: 25px 50px;
    }

    .tk__authenticate__form {
        padding: 70px 0;
    }

    .tk__tabs {
        width: 90%;
    }

    .tk__tabs ul li label {
        padding: 0;
        border-radius: 0;
    }

    .tk__tabs ul li label span {
        font-size: 15px;
    }

    .tk__tabs ul li label br {
        display: none;
    }

    .tk__tabs ul li label svg {
        height: 25px;
    }

    .tk__tabs input[name=tk__tabs__control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label,
    .tk__tabs input[name=tk__tabs__control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label,
    .tk__tabs input[name=tk__tabs__control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
        background: var(--bs-white);
    }

    .tk__tabs .slider {
        display: block;
    }

    .tk__tabs input[name=tk__tabs__control]:nth-of-type(1):checked ~ .slider {
        transform: translateX(0%);
    }

    .tk__tabs input[name=tk__tabs__control]:nth-of-type(2):checked ~ .slider {
        transform: translateX(100%);
    }

    BODY:lang(ar) .tk__tabs input[name=tk__tabs__control]:nth-of-type(2):checked ~ .slider {
        transform: translateX(-100%);
    }

    .tk__tabs input[name=tk__tabs__control]:nth-of-type(3):checked ~ .slider {
        transform: translateX(200%);
    }

    BODY:lang(ar) .tk__tabs input[name=tk__tabs__control]:nth-of-type(3):checked ~ .slider {
        transform: translateX(-200%);
    }

    .tk__tabs .content {
        margin-top: 20px;
    }

    .tk__menu__bar a {
        font-size: 13px;
    }

    .items__list .card-cont {
        padding: 25px 30px;
    }
}
