/*
//  * _mixins.scss
 */
@keyframes more {
    0% {
        margin-left: 0px;
    }
    25% {
        margin-left: -5px;
    }
    50% {
        margin-left: -2px;
    }
    75% {
        margin-left: -5px;
    }
    100% {
        margin-left: 0px;
    }
}
@keyframes arrow {
    0% {
        top: 45%;
    }
    25% {
        top: 46%;
    }
    50% {
        top: 43%;
    }
    75% {
        top: 46%;
    }
    100% {
        top: 45%;
    }
}
@keyframes downArrow {
    0% {
        margin-bottom: 0px;
    }
    25% {
        margin-bottom: -5px;
    }
    50% {
        margin-bottom: 0px;
    }
    75% {
        margin-bottom: -5px;
    }
    100% {
        margin-bottom: 0px;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}
@keyframes cursorMove1 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.7);
    }
}
@keyframes cursorMove2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.4);
    }
}
@keyframes cursorMove3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes DropAnimation {
    from {
        opacity: 0;
        transform: translateY(-1em);
    }
    to {
        opacity: 1;
        transform: translateY(1.5em);
    }
}
@keyframes btnHover {
    0% {
        left: -15%;
    }
    25% {
        left: 25%;
    }
    50% {
        left: 50%;
    }
    75% {
        left: 75%;
    }
    100% {
        left: 115%;
    }
}
/* line 196, ../sass/partial/_mixins.scss */
.line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 8px;
    background: #1b55d2;
}

/* line 209, ../sass/partial/_mixins.scss */
.center-line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 8px;
    background: #1b55d2;
    margin: auto;
}

/* line 222, ../sass/partial/_mixins.scss */
.no-line,
h1.h2-intro.no-line {
    padding-bottom: 0;
}
/* line 226, ../sass/partial/_mixins.scss */
.no-line:before,
h1.h2-intro.no-line:before {
    display: none;
}

/* line 232, ../sass/partial/_mixins.scss */
.opacity:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

/* line 317, ../sass/partial/_mixins.scss */
.btn {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    font-size: 18px;
    box-sizing: border-box;
    z-index: 1;
    color: #fff !important;
    background: #0067ce;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 103, 206, 0.24);
}
/* line 329, ../sass/partial/_mixins.scss */
.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid #0067ce;
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 0.8s ease-out;
    z-index: -1;
}
/* line 345, ../sass/partial/_mixins.scss */
.btn:hover {
    color: #0067ce !important;
}
/* line 348, ../sass/partial/_mixins.scss */
.btn:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    /* line 317, ../sass/partial/_mixins.scss */
    .btn {
        width: 100%;
    }
}

/* line 359, ../sass/partial/_mixins.scss */
.btn-white {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    font-size: 18px;
    box-sizing: border-box;
    z-index: 1;
    color: #0067ce;
    background: #fff;
    border: 1px solid #0067ce;
    border-radius: 8px;
}
/* line 371, ../sass/partial/_mixins.scss */
.btn-white:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid #0067ce;
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 0.8s ease-out;
    z-index: -1;
}
/* line 387, ../sass/partial/_mixins.scss */
.btn-white:hover {
    color: #0067ce;
}
/* line 390, ../sass/partial/_mixins.scss */
.btn-white:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    /* line 359, ../sass/partial/_mixins.scss */
    .btn-white {
        width: 100%;
    }
}

/* line 401, ../sass/partial/_mixins.scss */
.btn-red {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    font-size: 18px;
    box-sizing: border-box;
    z-index: 1;
    color: #ff3a44 !important;
    background: #fff;
    border: 1px solid #ff3a44;
    border-radius: 8px;
}
/* line 413, ../sass/partial/_mixins.scss */
.btn-red:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid #ff3a44;
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 0.8s ease-out;
    z-index: -1;
}
/* line 429, ../sass/partial/_mixins.scss */
.btn-red:hover {
    color: #ff3a44;
}
/* line 432, ../sass/partial/_mixins.scss */
.btn-red:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    /* line 401, ../sass/partial/_mixins.scss */
    .btn-red {
        width: 100%;
    }
}
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal/Tajawal-Regular.ttf');
}

@font-face {
    font-family: 'bold';
    src: url('../fonts/OpenSans-Bold.ttf');
}
@font-face {
    font-family: 'regular';
    src: url('../fonts/OpenSans-Regular.ttf');
}
/* line 11, ../sass/views/_layout.scss */
a:focus,
a:hover,
button:focus,
button:hover {
    text-decoration: none;
}

/* line 19, ../sass/views/_layout.scss */
.hidden,
.hide {
    display: none;
}

/* line 24, ../sass/views/_layout.scss */
.btn,
a,
button,
input,
select,
textarea,
.form-control {
    outline: none !important;
}

/* line 34, ../sass/views/_layout.scss */
input,
.form-control {
    border: 1px solid #c2dbf3 !important;
    border-radius: 8px;
}
/* line 39, ../sass/views/_layout.scss */
input:active,
input:focus,
.form-control:active,
.form-control:focus {
    outline: none;
    box-shadow: none !important;
    border-color: #c2dbf3;
}

/* line 47, ../sass/views/_layout.scss */
.border {
    border: 1px solid #c2dbf3 !important;
    border-radius: 8px;
}

/* line 52, ../sass/views/_layout.scss */
a {
    cursor: pointer;
    font-family: 'Open Sans';
    font-size: 24px;
    text-decoration: none;
}

/* line 62, ../sass/views/_layout.scss */
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* line 73, ../sass/views/_layout.scss */
.clear:after,
.social:after,
.company-social:after,
.clear:before,
.social:before,
.company-social:before {
    display: table;
    content: ' ';
}
/* line 79, ../sass/views/_layout.scss */
.clear:after,
.social:after,
.company-social:after {
    clear: both;
}

/* line 84, ../sass/views/_layout.scss */
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
}

/* line 92, ../sass/views/_layout.scss */
li.list-group-item {
    border: none;
    font-size: 16px;
}
@media (max-width: 768px) {
    /* line 92, ../sass/views/_layout.scss */
    li.list-group-item {
        font-size: 14px;
    }
}

/* line 101, ../sass/views/_layout.scss */
.popover {
    position: relative;
    padding: 15px;
}

/* line 112, ../sass/views/_layout.scss */
section {
    padding-bottom: 60px;
}
@media (max-width: 992px) {
    /* line 112, ../sass/views/_layout.scss */
    section {
        padding-bottom: 30px;
    }
}

/* line 121, ../sass/views/_layout.scss */
h1 {
    font-size: 44px;
    color: #ffffff;
    text-transform: none;
}
@media (max-width: 768px) {
    /* line 121, ../sass/views/_layout.scss */
    h1 {
        font-size: 22px;
    }
}

/* line 131, ../sass/views/_layout.scss */
h1,
h2,
h3,
h4 {
    font-family: 'Open Sans';
    font-family: 'regular';
    display: inline-block;
}

/* line 141, ../sass/views/_layout.scss */
h3 {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 24px;
}

/* line 154, ../sass/views/_layout.scss */
h5 {
    font-size: 18px;
}

/* line 158, ../sass/views/_layout.scss */
h6 {
    font-size: 18px;
    line-height: 25px;
}
@media (max-width: 768px) {
    /* line 158, ../sass/views/_layout.scss */
    h6 {
        font-size: 13px;
        line-height: 19px;
    }
}

/* line 168, ../sass/views/_layout.scss */
p {
    margin: 0;
    font-family: 'regular';
    font-size: 16px;
    line-height: 22px;
}
@media (max-width: 768px) {
    /* line 168, ../sass/views/_layout.scss */
    p {
        font-size: 12px;
        line-height: 16px;
    }
}

/* line 180, ../sass/views/_layout.scss */
small {
    font-size: 12px;
}

/* line 184, ../sass/views/_layout.scss */
.card,
a,
dl,
input,
label,
li,
p {
    font-family: 'regular';
}

/* line 194, ../sass/views/_layout.scss */
.text-blue {
    color: #0067ce;
}

/* line 198, ../sass/views/_layout.scss */
.text-light-blue {
    color: #c2dbf3;
}

/* line 202, ../sass/views/_layout.scss */
.text-black {
    color: #000000 !important;
}

/* line 206, ../sass/views/_layout.scss */
.text-red {
    color: #ff3a44 !important;
}

/* line 210, ../sass/views/_layout.scss */
.nav-link:focus,
.nav-link:hover {
    color: #0067ce;
}

/* line 226, ../sass/views/_layout.scss */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #ffffff;
    z-index: 9999999;
}
/* line 236, ../sass/views/_layout.scss */
.preloader > div {
    margin: auto;
    text-align: center;
}
/* line 240, ../sass/views/_layout.scss */
.preloader > div img {
    display: block;
    margin: 50px auto;
    max-height: 100px;
}
/* line 249, ../sass/views/_layout.scss */
.preloader .spinner-border {
    color: #0067ce;
    text-align: center;
}
/* line 254, ../sass/views/_layout.scss */
.preloader p {
    color: #0067ce;
}

/* line 260, ../sass/views/_layout.scss */
html {
    scroll-behavior: smooth;
}

/* line 264, ../sass/views/_layout.scss */
body {
    overflow-x: hidden !important;
    font-size: 17px;
    position: relative;
    text-transform: capitalize;
}

/* line 272, ../sass/views/_layout.scss */
::selection {
    color: #ffffff;
    background: #0067ce;
}

/* line 277, ../sass/views/_layout.scss */
.overflow-body {
    margin-top: 35%;
    margin-right: 0;
    margin-left: 35%;
    transition: all 0.3s;
    box-shadow: 8px 8px 16px rgba(167, 167, 167, 0.24);
    background-color: #0067ce;
}

/* line 291, ../sass/views/_layout.scss */
.main-container {
    background: #ffffff;
    border-radius: 24px;
}
/* line 295, ../sass/views/_layout.scss */
.main-container .main-card {
    z-index: 1 !important;
}

/* line 300, ../sass/views/_layout.scss */
.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
/* line 306, ../sass/views/_layout.scss */
.title h2 {
    position: relative;
    color: #c2dbf3;
    font-weight: 600;
    font-size: 64px;
    text-transform: capitalize;
}
/* line 313, ../sass/views/_layout.scss */
.title h2 span {
    position: absolute;
    color: #0067ce;
    font-size: 32px;
    top: 70%;
    left: 50%;
    text-transform: capitalize;
    white-space: nowrap;
}
/* line 325, ../sass/views/_layout.scss */
.title img {
    object-fit: contain;
}
@media (max-width: 768px) {
    /* line 300, ../sass/views/_layout.scss */
    .title {
        margin-bottom: 16px;
    }
}

/* line 334, ../sass/views/_layout.scss */
.back {
    background-image: url(../images/icons/back.svg);
    border: 1px solid #c2dbf3;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 23px;
    margin-bottom: 5px;
    border-radius: 8px;
    margin-left: 0;
    margin-right: 24px;
}
@media (max-width: 768px) {
    /* line 334, ../sass/views/_layout.scss */
    .back {
        margin-right: 12px;
    }
}

@media (max-width: 992px) {
    /* line 352, ../sass/views/_layout.scss */
    .reservation-times-title {
        display: block;
    }
}

/* line 360, ../sass/views/_layout.scss */
.escape-games-title h2 span {
    left: 75%;
}

/* line 369, ../sass/views/_layout.scss */
.company-title .company-title-h2 span {
    left: 85%;
}

/* pagination */
/* line 378, ../sass/views/_layout.scss */
.pagination-nav {
    margin-top: 48px;
}
/* line 381, ../sass/views/_layout.scss */
.pagination-nav .pagination {
    justify-content: center;
}
/* line 385, ../sass/views/_layout.scss */
.pagination-nav .page-item {
    margin: 0 8px;
}
/* line 388, ../sass/views/_layout.scss */
.pagination-nav .page-item .page-link {
    border: 1px solid #c4c4c4;
    color: #c4c4c4;
    padding: 3px 15px;
    border-radius: 8px;
    font-size: 24px;
    background: transparent;
}
/* line 396, ../sass/views/_layout.scss */
.pagination-nav .page-item .page-link:focus {
    box-shadow: none;
    background: transparent;
}
/* line 401, ../sass/views/_layout.scss */
.pagination-nav .page-item .page-link:hover {
    border: 1px solid #0067ce;
    color: #0067ce;
    background: transparent;
}
/* line 410, ../sass/views/_layout.scss */
.pagination-nav .active .page-link {
    border: 1px solid #0067ce;
    color: #0067ce;
    background: transparent;
}
/* line 419, ../sass/views/_layout.scss */
.pagination-nav .previous-page .page-link,
.pagination-nav .next-page .page-link {
    border: 1px solid #0067ce;
    color: #0067ce;
}
/* line 426, ../sass/views/_layout.scss */
.pagination-nav .disable .page-link {
    border: 1px solid #c4c4c4;
    color: #c4c4c4;
}
@media (max-width: 768px) {
    /* line 378, ../sass/views/_layout.scss */
    .pagination-nav {
        margin-top: 24px;
    }
}

/* end pagination */
/* Custom Scrollbars */
/* line 443, ../sass/views/_layout.scss */
::-webkit-scrollbar {
    width: 10px;
}
@media (max-width: 768px) {
    /* line 443, ../sass/views/_layout.scss */
    ::-webkit-scrollbar {
        width: 5px;
    }
}

/* line 451, ../sass/views/_layout.scss */
::-webkit-scrollbar-track {
    border-radius: 0px;
    box-shadow: none;
    border: 0;
    background: white;
}

/* line 458, ../sass/views/_layout.scss */
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: none;
    border: 0;
    background-color: #c2dbf3;
}
/* line 464, ../sass/views/_layout.scss */
::-webkit-scrollbar-thumb:hover {
    background-color: #c2dbf3;
}

/* end Custom Scrollbars */
/* responsive */
@media (max-width: 768px) {
    /* line 477, ../sass/views/_layout.scss */
    .title h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    /* line 481, ../sass/views/_layout.scss */
    .title h2 span {
        font-size: 16px;
    }
    /* line 486, ../sass/views/_layout.scss */
    .title img {
        max-width: 100px !important;
        height: auto;
    }
}
/* end responsive */
/* modal */
/* line 499, ../sass/views/_layout.scss */
.modal {
    border-radius: 18px;
}

/* line 503, ../sass/views/_layout.scss */
.modal-header {
    border: 0;
}

/* line 507, ../sass/views/_layout.scss */
.modal-header .btn-close {
    margin: 0;
}
/* line 510, ../sass/views/_layout.scss */
.modal-header .btn-close:focus {
    box-shadow: none;
}

/* line 515, ../sass/views/_layout.scss */
.modal-footer {
    border: 0;
    justify-content: center;
}

/* line 522, ../sass/views/_layout.scss */
.relative-modal .title h2 {
    font-size: 32px;
    margin-bottom: 24px;
}
/* line 526, ../sass/views/_layout.scss */
.relative-modal .title h2 span {
    font-size: 16px;
}
/* line 532, ../sass/views/_layout.scss */
.relative-modal .btn-close {
    background-image: url('../images/icons/cancel.svg');
    background-color: transparent;
}
/* line 537, ../sass/views/_layout.scss */
.relative-modal .btn-close:focus {
    box-shadow: none;
}

/* line 545, ../sass/views/_layout.scss */
.modal .input-group * {
    color: #000000 !important;
}
/* line 550, ../sass/views/_layout.scss */
.modal .time-input {
    background-position: right 5px bottom 8px;
}

/* end modal */
/* line 609, ../sass/views/_layout.scss */
.stars {
    display: none;
}

/* line 1, ../sass/views/_home.scss */
.services-card {
    float: left;
    display: inline-block;
    position: relative;
    width: 50%;
}
/* line 7, ../sass/views/_home.scss */
.services-card:nth-child(-n + 7) {
    margin-bottom: 48px;
}
/* line 11, ../sass/views/_home.scss */
.services-card:nth-child(1),
.services-card:nth-child(4),
.services-card:nth-child(6) {
    padding-right: 24px;
    padding-left: 0;
}
/* line 18, ../sass/views/_home.scss */
.services-card:nth-child(2),
.services-card:nth-child(3),
.services-card:nth-child(5),
.services-card:nth-child(7) {
    padding-left: 24px;
    padding-right: 0;
}
/* line 27, ../sass/views/_home.scss */
.services-card:nth-child(1) .card {
    height: 520px;
}
/* line 30, ../sass/views/_home.scss */
.services-card:nth-child(1) .card .mob-img {
    margin: 39px auto auto;
    width: 262px;
}
/* line 37, ../sass/views/_home.scss */
.services-card:last-child {
    width: 100%;
}
/* line 41, ../sass/views/_home.scss */
.services-card:last-child .card .card-img-overlay {
    background: transparent;
}
/* line 44, ../sass/views/_home.scss */
.services-card:last-child .card .card-img-overlay p {
    font-size: 24px;
}
@media (max-width: 768px) {
    /* line 52, ../sass/views/_home.scss */
    .services-card:nth-child(1) {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    /* line 57, ../sass/views/_home.scss */
    .services-card:nth-child(1) .card {
        height: 358px;
    }
    /* line 62, ../sass/views/_home.scss */
    .services-card:nth-child(-n + 7) {
        margin-bottom: 16px;
    }
    /* line 66, ../sass/views/_home.scss */
    .services-card:nth-child(2),
    .services-card:nth-child(4),
    .services-card:nth-child(6) {
        padding-right: 8px;
        padding-left: 0;
    }
    /* line 73, ../sass/views/_home.scss */
    .services-card:nth-child(3),
    .services-card:nth-child(5),
    .services-card:nth-child(7) {
        padding-left: 8px;
        padding-right: 0;
    }
    /* line 82, ../sass/views/_home.scss */
    .services-card:last-child .card .card-img-overlay {
        position: absolute;
        justify-content: space-between;
    }
    /* line 86, ../sass/views/_home.scss */
    .services-card:last-child .card .card-img-overlay p {
        display: block;
        font-size: 16px;
    }
}

/* line 96, ../sass/views/_home.scss */
.services-card-link {
    height: 100%;
}

/* line 100, ../sass/views/_home.scss */
.card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    height: 236px;
    box-shadow: 0px 8px 16px rgba(112, 112, 112, 0.24);
}
/* line 110, ../sass/views/_home.scss */
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: 1s transform;
    border-radius: 16px;
}
.card:hover img {
    transform: scale(1.1);
}
/* line 119, ../sass/views/_home.scss */
.card .web-img {
    display: block;
}
/* line 123, ../sass/views/_home.scss */
.card .mob-img {
    display: none;
    margin: auto;
    width: auto;
    height: auto;
}
/* line 132, ../sass/views/_home.scss */
.card .card-img-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    top: auto;
    padding: 30px 24px;
    border-radius: 0px 0px 16px 16px;
}
/* line 141, ../sass/views/_home.scss */
.card .card-img-overlay a,
.card .card-img-overlay h4 {
    font-size: 24px;
    color: white;
    transition: all 0.2s;
}
/* line 147, ../sass/views/_home.scss */
.card .card-img-overlay a:hover,
.card .card-img-overlay h4:hover {
    color: white;
    text-shadow: 0.5px 0px #fff;
}
/* line 153, ../sass/views/_home.scss */
.card .card-img-overlay p {
    font-size: 16px;
    color: white;
}
@media (min-width: 768px) and (max-width: 992px) {
    /* line 162, ../sass/views/_home.scss */
    .card .card-img-overlay a,
    .card .card-img-overlay h4 {
        font-size: 16px;
    }
    /* line 167, ../sass/views/_home.scss */
    .card .card-img-overlay p {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    /* line 100, ../sass/views/_home.scss */
    .card {
        box-shadow: 0px 8px 16px rgba(112, 112, 112, 0.24);
        height: 171px;
    }
    /* line 177, ../sass/views/_home.scss */
    .card .web-img {
        display: none;
    }
    /* line 181, ../sass/views/_home.scss */
    .card .mob-img {
        display: block;
    }
    /* line 185, ../sass/views/_home.scss */
    .card .card-img-overlay {
        padding: 12px;
        justify-content: center;
        background: #0067ce;
        position: relative;
    }
    /* line 191, ../sass/views/_home.scss */
    .card .card-img-overlay a,
    .card .card-img-overlay h4 {
        font-size: 16px;
        font-weight: 600;
    }
    /* line 197, ../sass/views/_home.scss */
    .card .card-img-overlay p {
        display: none;
    }
}

/* line 204, ../sass/views/_home.scss */
.drawn-card {
    position: relative;
    text-align: center;
    height: 345.57px;
}
@media (max-width: 768px) {
    /* line 204, ../sass/views/_home.scss */
    .drawn-card {
        height: 190px;
    }
}
/* line 213, ../sass/views/_home.scss */
.drawn-card:before {
    content: '';
    background: url('../images/demo/home/vector-1.png') center no-repeat;
    background-size: 85% 95%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
/* line 227, ../sass/views/_home.scss */
.drawn-card:after {
    content: '';
    background: url('../images/demo/home/vector-2.png') center no-repeat;
    background-size: 90% 108%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 7%;
    right: 0;
    left: -3%;
    bottom: 0px;
    z-index: -2;
}
/* line 241, ../sass/views/_home.scss */
.drawn-card img {
    margin-bottom: 24px;
    width: 114px;
    height: 114px;
}
@media (max-width: 768px) {
    /* line 241, ../sass/views/_home.scss */
    .drawn-card img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
}
/* line 253, ../sass/views/_home.scss */
.drawn-card h6,
.drawn-card p,
.drawn-card .drawn-card-link {
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    /* line 253, ../sass/views/_home.scss */
    .drawn-card h6,
    .drawn-card p,
    .drawn-card .drawn-card-link {
        margin-bottom: 11px;
    }
}
/* line 263, ../sass/views/_home.scss */
.drawn-card .drawn-card-link {
    color: #0067ce;
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 768px) {
    /* line 263, ../sass/views/_home.scss */
    .drawn-card .drawn-card-link {
        font-size: 12px;
    }
}
/* line 273, ../sass/views/_home.scss */
.drawn-card img.vector {
    width: 22px;
    height: 15px;
}
@media (max-width: 768px) {
    /* line 273, ../sass/views/_home.scss */
    .drawn-card img.vector {
        display: none;
    }
}
/* line 283, ../sass/views/_home.scss */
.drawn-card small {
    line-height: 16px;
    display: block;
    width: 65%;
    margin: auto;
}
@media (max-width: 768px) {
    /* line 283, ../sass/views/_home.scss */
    .drawn-card small {
        height: 50px;
        overflow: hidden;
    }
}

/* line 296, ../sass/views/_home.scss */
.client-card {
    height: 387px;
}
@media (max-width: 768px) {
    /* line 296, ../sass/views/_home.scss */
    .client-card {
        height: 190px;
    }
}

/* line 306, ../sass/views/_home.scss */
.sports-card-wrapper .card img {
    width: auto;
    height: auto;
    margin: 16px 0;
}
/* line 312, ../sass/views/_home.scss */
.sports-card-wrapper .card .card-img-overlay {
    padding: 12px;
    justify-content: center;
    background: #0067ce;
    position: relative;
}
/* line 318, ../sass/views/_home.scss */
.sports-card-wrapper .card .card-img-overlay h4 {
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 768px) {
    /* line 326, ../sass/views/_home.scss */
    .sports-card-wrapper .card {
        height: auto;
    }
}

/* line 338, ../sass/views/_home.scss */
.partners-carousel .item {
    /* background-color: #f8f9fa; */
    align-items: center;
    display: flex;
    justify-content: center;
    width: 225px;
    height: 225px;
    margin: auto;
    border: 1px solid #0067ce;
    border-radius: 10px;
    /* clip-path: path(
        'M0.0389596 36.4647C2.05143 81.9833 3.38894 106.782 7.74355 144.211C11.4272 158.523 15.3238 164.445 27.9681 168.485C78.3237 181.178 113.648 191.34 154.612 200C171.291 199.647 177.237 195.81 182.541 187.224C191.606 156.939 193.301 123.78 199.877 81.6072C200.758 65.343 197.112 58.7374 182.541 51.7961C129.159 32.0013 51.5634 4.95008 51.5634 4.95008C51.5634 4.95008 36.7311 -1.35197 27.9681 0.265471C17.7194 3.10347 13.2608 6.24586 7.74355 12.6158C1.3785 20.1318 -0.2886 25.3581 0.0389596 36.4647Z'
    ); */
}

.partners-carousel .item img {
    width: 200px;
    height: 200px;
    /* margin-right: 25px; */
}
@media (min-width: 992px) and (max-width: 1400px) {
    .main-section .main-filter .age-input,
    .main-section .main-filter .form-select,
    .main-section .main-filter .date-input {
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    /* line 338, ../sass/views/_home.scss */
    .partners-carousel .item {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 768px) {
    /* line 338, ../sass/views/_home.scss */
    .partners-carousel .item {
        width: 80px;
        height: 80px;
    }
}
/* line 354, ../sass/views/_home.scss */
.partners-carousel .owl-stage-outer {
    margin-bottom: 24px;
}
/* line 358, ../sass/views/_home.scss */
.partners-carousel .owl-dots {
    text-align: center;
}
/* line 361, ../sass/views/_home.scss */
.partners-carousel .owl-dots span {
    width: 24px;
    height: 7px;
    margin: 5px;
    background: #c2dbf3;
    display: block;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
/* line 373, ../sass/views/_home.scss */
.partners-carousel .owl-dot.active span {
    background: #0067ce;
}

/* line 385, ../sass/views/_home.scss */
.sports-carousel .item {
    margin: auto;
    height: 400px;
}
/* line 389, ../sass/views/_home.scss */
.sports-carousel .item img {
    border-radius: 16px;
    height: 100%;
}
/* line 395, ../sass/views/_home.scss */
.sports-carousel .owl-stage-outer {
    margin-bottom: 24px;
}
/* line 399, ../sass/views/_home.scss */
.sports-carousel .owl-nav {
    display: block !important;
}
/* line 402, ../sass/views/_home.scss */
.sports-carousel .owl-nav span {
    font-size: 30px;
}
/* line 406, ../sass/views/_home.scss */
.sports-carousel .owl-nav .owl-prev {
    float: left;
}
/* line 410, ../sass/views/_home.scss */
.sports-carousel .owl-nav .owl-next {
    float: right;
}
/* line 414, ../sass/views/_home.scss */
.sports-carousel .owl-nav .owl-next:hover,
.sports-carousel .owl-nav .owl-prev:hover {
    color: #0067ce;
}
/* line 420, ../sass/views/_home.scss */
.sports-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -15%;
    width: 70px;
    margin: auto;
}

/* line 431, ../sass/views/_home.scss */
.download-app {
    background: url('../images/demo/home/download-bg.png') #e0ecf9 right 15% top
        1em no-repeat;
    background-size: contain;
    border-radius: 16px;
    padding: 50px;
}
@media (max-width: 768px) {
    /* line 431, ../sass/views/_home.scss */
    .download-app {
        padding: 24px;
        background: url('../images/demo/home/download-bg.png') #e0ecf9 right 10%
            top 1em no-repeat;
        background-size: contain;
    }
}
/* line 443, ../sass/views/_home.scss */
.download-app a {
    margin: 0 7px;
}
/* line 447, ../sass/views/_home.scss */
.download-app a img {
    width: 163px;
}
@media (max-width: 768px) {
    /* line 447, ../sass/views/_home.scss */
    .download-app a img {
        width: 81px;
    }
}

/* line 456, ../sass/views/_home.scss */
.main-section {
    text-align: center;
}
/* line 460, ../sass/views/_home.scss */
.main-section .card.main-card {
    height: auto;
    box-shadow: none;
    z-index: -1;
}
/* line 465, ../sass/views/_home.scss */
.main-section .card.main-card img {
    max-height: 350px;
}
/* line 469, ../sass/views/_home.scss */
.main-section .card.main-card .card-img-overlay {
    background: none;
    padding: 0 30px;
    top: 0;
    bottom: 0;
    text-align: start;
}
@media (max-width: 768px) {
    /* line 460, ../sass/views/_home.scss */
    .main-section .card.main-card {
        height: auto;
    }
    /* line 481, ../sass/views/_home.scss */
    .main-section .card.main-card .card-img-overlay {
        padding: 0 12px;
        position: absolute;
        justify-content: flex-start;
    }
}
/* line 489, ../sass/views/_home.scss */
.main-section .main-filter {
    display: inline-block;
    margin-top: -4%;
    text-align: center;
    background: #ffffff;
    padding: 24px;
    box-shadow: 8px 8px 16px rgba(167, 167, 167, 0.24);
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
}
/* line 502, ../sass/views/_home.scss */
.main-section .main-filter .main-filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* line 510, ../sass/views/_home.scss */
.main-section .main-filter small {
    display: block;
    text-align: start;
    padding: 0 16px;
}
@media (max-width: 768px) {
    /* line 489, ../sass/views/_home.scss */
    .main-section .main-filter {
        padding: 16px;
    }
}
@media (max-width: 992px) {
    /* line 489, ../sass/views/_home.scss */
    .main-section .main-filter {
        width: 90%;
    }
    /* line 524, ../sass/views/_home.scss */
    .main-section .main-filter .main-filter-inner {
        display: block;
    }
}

/* line 531, ../sass/views/_home.scss */
#company-filter {
    display: none;
}

/* line 543, ../sass/views/_home.scss */
.leave {
    position: relative;
}

/* line 547, ../sass/views/_home.scss */
.leave:after {
    content: '';
    position: absolute;
    background-image: url('../images/icons/leave.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    left: 27%;
    right: 0;
    top: 45%;
}
@media (max-width: 768px) {
    /* line 547, ../sass/views/_home.scss */
    .leave:after {
        width: 13px;
        height: 13px;
    }
}

/* line 566, ../sass/views/_home.scss */
.reservation-times li:not(:last-child) {
    margin-right: 48px;
    margin-left: 0;
}
@media (max-width: 992px) {
    /* line 565, ../sass/views/_home.scss */
    .reservation-times {
        justify-content: space-between;
    }
    /* line 574, ../sass/views/_home.scss */
    .reservation-times li:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
    }
}

/* line 582, ../sass/views/_home.scss */
.company-nav .nav.nav-pills {
    justify-content: space-between;
}
/* line 585, ../sass/views/_home.scss */
.company-nav .nav.nav-pills .nav-item {
    width: 20%;
}
/* line 589, ../sass/views/_home.scss */
.company-nav .nav.nav-pills .nav-link {
    border: 1px solid #0067ce;
    border-radius: 12px;
    width: 100%;
    color: #0067ce;
}
/* line 595, ../sass/views/_home.scss */
.company-nav .nav.nav-pills .nav-link.active {
    background: #0067ce;
    color: #ffffff;
}
@media (max-width: 992px) {
    /* line 603, ../sass/views/_home.scss */
    .company-nav .nav.nav-pills .nav-item {
        width: auto;
    }
}
@media (max-width: 450px) {
    /* line 609, ../sass/views/_home.scss */
    .company-nav .nav-link {
        font-size: 12px;
    }
}

/* custom-select */
/* line 620, ../sass/views/_home.scss */
select.form-select {
    border: 0;
    background-image: url('../images/icons/down.svg');
    background-size: 16px 22px;
    background-position: right top 5px;
    cursor: pointer;
}
/* line 627, ../sass/views/_home.scss */
select.form-select option {
    padding: 10px;
}
/* line 630, ../sass/views/_home.scss */
select.form-select option:hover {
    background: #0067ce;
}
/* line 635, ../sass/views/_home.scss */
select.form-select:focus {
    box-shadow: none;
}

/* line 640, ../sass/views/_home.scss */
.governorate {
    width: auto;
}
@media (max-width: 992px) {
    /* line 640, ../sass/views/_home.scss */
    .governorate {
        width: 100%;
    }
}

/* final custom-select */
/* end final custom-select */
/* end custom-select */
/* time picker */
/* line 913, ../sass/views/_home.scss */
.time-input {
    border: none !important;
    padding: 8px 16px;
    color: #000000;
    cursor: pointer;
    background-image: url('../images/icons/down.svg');
    background-position: right top 5px;
    background-repeat: no-repeat;
    background-size: 16px 22px;
    width: 100%;
    position: relative;
    text-align: -webkit-match-parent;
    font-size: 1rem;
}

/* line 930, ../sass/views/_home.scss */
input[type='time']::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

/* end time picker */
/* date picker */
/* line 943, ../sass/views/_home.scss */
.date-input {
    border: none !important;
    padding: 8px 16px 0;
    color: #000000;
    cursor: pointer;
    background-image: url('../images/icons/down.svg');
    background-position: right top 5px;
    background-repeat: no-repeat;
    background-size: 16px 22px;
    width: 100%;
    position: relative;
    font-size: 1rem;
}
@media (max-width: 992px) {
    /* line 943, ../sass/views/_home.scss */
    .date-input {
        margin-bottom: 24px;
    }
}

/* line 978, ../sass/views/_home.scss */
input[type='date'] {
    position: relative;
    padding: 10px;
}

/* line 983, ../sass/views/_home.scss */
input[type='date']::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
    display: none;
}

/* end date picker */
/* line 1, ../sass/views/_rtl.scss */
html.rtl {
    /* form */
    /* end form */
    /* sign page */
    /* end sign page */
    /* my profile page */
    /* my profile page */
}
/* line 3, ../sass/views/_rtl.scss */
html.rtl body,
html.rtl * {
    direction: rtl;
    font-family: Tajawal;
}
/* line 8, ../sass/views/_rtl.scss */
html.rtl .overflow-body {
    margin-left: 0;
    margin-right: 35%;
}
/* line 14, ../sass/views/_rtl.scss */
html.rtl .search input {
    background-position: 10px;
}
/* line 21, ../sass/views/_rtl.scss */
html.rtl .title h2 span {
    left: 0%;
    right: 50%;
}
/* line 31, ../sass/views/_rtl.scss */
html.rtl .escape-games-title h2 span {
    left: 0%;
    right: 75%;
}
/* line 40, ../sass/views/_rtl.scss */
html.rtl .company-title .company-title-h2 span {
    left: 0%;
    right: 85%;
}
/* line 47, ../sass/views/_rtl.scss */
html.rtl .back {
    margin-right: 0;
    margin-left: 24px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
@media (max-width: 768px) {
    /* line 47, ../sass/views/_rtl.scss */
    html.rtl .back {
        margin-left: 12px;
    }
}
/* line 58, ../sass/views/_rtl.scss */
html.rtl .services-card {
    float: right;
}
/* line 61, ../sass/views/_rtl.scss */
html.rtl .services-card:nth-child(1),
html.rtl .services-card:nth-child(4),
html.rtl .services-card:nth-child(6) {
    padding-left: 24px;
    padding-right: 0;
}
/* line 68, ../sass/views/_rtl.scss */
html.rtl .services-card:nth-child(2),
html.rtl .services-card:nth-child(3),
html.rtl .services-card:nth-child(5),
html.rtl .services-card:nth-child(7) {
    padding-right: 24px;
    padding-left: 0;
}
@media (max-width: 768px) {
    /* line 77, ../sass/views/_rtl.scss */
    html.rtl .services-card:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }
    /* line 82, ../sass/views/_rtl.scss */
    html.rtl .services-card:nth-child(2),
    html.rtl .services-card:nth-child(4),
    html.rtl .services-card:nth-child(6) {
        padding-left: 8px;
        padding-right: 0;
    }
    /* line 89, ../sass/views/_rtl.scss */
    html.rtl .services-card:nth-child(3),
    html.rtl .services-card:nth-child(5),
    html.rtl .services-card:nth-child(7) {
        padding-right: 8px;
        padding-left: 0;
    }
}
/* line 99, ../sass/views/_rtl.scss */
html.rtl .drawn-card:after {
    right: 3%;
    left: 0;
}
/* line 105, ../sass/views/_rtl.scss */
html.rtl .owl-carousel .owl-stage-outer {
    direction: ltr;
}
/* line 111, ../sass/views/_rtl.scss */
html.rtl .sports-carousel .owl-nav .owl-prev {
    float: right;
}
/* line 115, ../sass/views/_rtl.scss */
html.rtl .sports-carousel .owl-nav .owl-next {
    float: left;
}
/* line 121, ../sass/views/_rtl.scss */
html.rtl .download-app {
    background: url('../images/demo/home/download-bg.png') #e0ecf9 left 15% top
        1em no-repeat;
    background-size: contain;
}
/* line 127, ../sass/views/_rtl.scss */
html.rtl footer .mobile-number {
    margin-left: 24px;
    margin-right: 0;
}
/* line 132, ../sass/views/_rtl.scss */
html.rtl footer .mobile-number,
html.rtl footer .mail {
    padding-right: 30px;
    padding-left: 0;
    background-position: right;
}
/* line 142, ../sass/views/_rtl.scss */
html.rtl .social li:not(:last-child) a {
    margin-left: 24px;
    margin-right: 0;
}
/* line 151, ../sass/views/_rtl.scss */
html.rtl .company-social li:not(:last-child) a {
    margin-left: 16px;
    margin-right: 0;
}
/* line 159, ../sass/views/_rtl.scss */
html.rtl .main-section .leave:after {
    right: 37%;
    left: 0;
}
/* line 165, ../sass/views/_rtl.scss */
html.rtl .custom-select:after {
    left: -5%;
    right: auto;
}
@media (max-width: 992px) {
    /* line 165, ../sass/views/_rtl.scss */
    html.rtl .custom-select:after {
        left: 10px;
    }
}
/* line 174, ../sass/views/_rtl.scss */
html.rtl .navbar-toggler {
    margin-left: 12px;
    margin-right: 0;
}
/* line 179, ../sass/views/_rtl.scss */
html.rtl .logo {
    margin-left: 30px;
    margin-right: 0;
}
@media (max-width: 768px) {
    /* line 179, ../sass/views/_rtl.scss */
    html.rtl .logo {
        margin-left: auto;
    }
}
/* line 188, ../sass/views/_rtl.scss */
html.rtl .language,
html.rtl .cart,
html.rtl .login,
html.rtl .mobile-search,
html.rtl .code {
    margin-right: 20px;
    margin-left: 0;
}
/* line 197, ../sass/views/_rtl.scss */
html.rtl .menu-user {
    margin-left: 20px;
    margin-right: 0px;
}
/* line 201, ../sass/views/_rtl.scss */
html.rtl .menu-user img {
    margin-right: 4px;
    margin-left: 0;
}
/* line 207, ../sass/views/_rtl.scss */
html.rtl .icon {
    margin-right: 0;
    margin-left: 12px;
}
/* line 212, ../sass/views/_rtl.scss */
html.rtl .icons {
    padding-right: 30px;
    padding-left: 0;
    background-position: right;
}
/* line 218, ../sass/views/_rtl.scss */
html.rtl .offcanvas.show {
    background-position: right;
}
/* line 222, ../sass/views/_rtl.scss */
html.rtl .date-input {
    background-position: left 5px bottom 3px;
}
/* line 227, ../sass/views/_rtl.scss */
html.rtl .calendar-table .prev span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
/* line 232, ../sass/views/_rtl.scss */
html.rtl .calendar-table .next span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
/* line 238, ../sass/views/_rtl.scss */
html.rtl .time-input {
    background-position: left 5px bottom 3px;
}
/* line 244, ../sass/views/_rtl.scss */
html.rtl .modal .time-input {
    background-position: left 5px bottom 8px;
}
/* line 251, ../sass/views/_rtl.scss */
html.rtl .reservation-times li:not(:last-child) {
    margin-left: 48px;
    margin-right: 0;
}
@media (max-width: 992px) {
    /* line 257, ../sass/views/_rtl.scss */
    html.rtl .reservation-times li:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
    }
}
/* line 265, ../sass/views/_rtl.scss */
html.rtl .times-row .times-wraper {
    margin-left: 12px;
    margin-right: 0;
}
/* line 272, ../sass/views/_rtl.scss */
html.rtl .sale:before {
    right: auto;
    left: -13px;
    top: -13px;
    transform: rotate(0deg);
}
/* line 291, ../sass/views/_rtl.scss */
html.rtl .reserve {
    padding: 12px 7% 12px 9%;
}
/* line 295, ../sass/views/_rtl.scss */
html.rtl .plus {
    background-position: left;
}
/* line 300, ../sass/views/_rtl.scss */
html.rtl .fav-input[type='checkbox'] {
    margin-left: 12px;
    margin-right: 0;
}
/* line 305, ../sass/views/_rtl.scss */
html.rtl .fav-label {
    margin-left: 0;
    margin-right: auto;
}
/* line 310, ../sass/views/_rtl.scss */
html.rtl .company-sport-card {
    margin: 4% 0 0 4%;
}
@media (max-width: 768px) {
    /* line 310, ../sass/views/_rtl.scss */
    html.rtl .company-sport-card {
        margin: 4% 0 0 0;
    }
}
/* line 323, ../sass/views/_rtl.scss */
html.rtl .input-group input.form-control {
    border-right: 1px solid #c2dbf3 !important;
    border-left: 0 !important;
}
/* line 328, ../sass/views/_rtl.scss */
html.rtl .input-group .form-select,
html.rtl .input-group .date-input,
html.rtl .input-group .time-input {
    border-right: 1px solid #c2dbf3 !important;
    border-left: 0 !important;
}
/* line 335, ../sass/views/_rtl.scss */
html.rtl .input-group .icons {
    padding: 0;
}
/* line 339, ../sass/views/_rtl.scss */
html.rtl .input-group .custom-select:after {
    left: 0;
    right: auto;
}
/* line 350, ../sass/views/_rtl.scss */
html.rtl .wallet-icon {
    float: right;
    height: 21px;
    padding-right: 22px;
}
/* line 356, ../sass/views/_rtl.scss */
html.rtl .right-icon {
    background-image: url('../images/icons/left.svg');
    padding-right: 13px;
    float: left;
}
/* line 365, ../sass/views/_rtl.scss */
html.rtl .profile-link .people,
html.rtl .profile-link .location {
    float: right;
    height: 24px;
}
/* line 372, ../sass/views/_rtl.scss */
html.rtl .red,
html.rtl .green,
html.rtl .yellow {
    padding: 15px 25px 15px 15px;
}
/* line 377, ../sass/views/_rtl.scss */
html.rtl .red:after,
html.rtl .green:after,
html.rtl .yellow:after {
    right: 0px;
    left: auto;
    border-radius: 0px 16px 16px 0px;
}
/* line 387, ../sass/views/_rtl.scss */
html.rtl .form-check {
    padding-left: 0;
    padding-right: 39px;
}
/* line 392, ../sass/views/_rtl.scss */
html.rtl .date-input,
html.rtl .time-input,
html.rtl select.form-select {
    background-position: left top 5px;
}

/* header */
/* line 3, ../sass/views/_header.scss */
.offcanvas-body.mobile {
    display: none !important;
}
@media (max-width: 767px) {
    /* line 3, ../sass/views/_header.scss */
    .offcanvas-body.mobile {
        display: block !important;
    }
}

/* line 11, ../sass/views/_header.scss */
.offcanvas-body.web {
    display: flex !important;
}
@media (max-width: 768px) {
    /* line 11, ../sass/views/_header.scss */
    .offcanvas-body.web {
        display: none !important;
    }
}

/* line 19, ../sass/views/_header.scss */
header {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* line 24, ../sass/views/_header.scss */
.logo {
    margin-right: 30px;
    margin-left: 0;
}
/* line 28, ../sass/views/_header.scss */
.logo img {
    width: 86px;
    height: 24px;
}
@media (max-width: 768px) {
    /* line 24, ../sass/views/_header.scss */
    .logo {
        margin-right: auto;
    }
}

/* line 38, ../sass/views/_header.scss */
.search {
    width: 100%;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}
/* line 50, ../sass/views/_header.scss */
.search .search-input {
    border: none !important;
}
/* line 54, ../sass/views/_header.scss */
.search .search-btn {
    border: none;
    background: none;
    padding: 3px 15px 6px;
}

/* line 63, ../sass/views/_header.scss */
.mobile-search {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}

/* line 68, ../sass/views/_header.scss */
.language,
.cart,
.login,
.user,
.mobile-search,
.code {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-left: 20px;
    margin-right: 0;
}
/* line 79, ../sass/views/_header.scss */
.language .nav-link,
.cart .nav-link,
.login .nav-link,
.user .nav-link,
.mobile-search .nav-link,
.code .nav-link {
    padding: 7px 10px !important;
}
/* line 82, ../sass/views/_header.scss */
.language .nav-link img,
.cart .nav-link img,
.login .nav-link img,
.user .nav-link img,
.mobile-search .nav-link img,
.code .nav-link img {
    width: 20px;
    height: 20px;
}

/* line 89, ../sass/views/_header.scss */
.form-control::placeholder {
    color: #c4c4c4;
}

/* line 93, ../sass/views/_header.scss */
.navbar-toggler {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-right: 12px;
    margin-left: 0;
}
/* line 99, ../sass/views/_header.scss */
.navbar-toggler:focus {
    box-shadow: none;
}

/* line 104, ../sass/views/_header.scss */
.navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 20px;
}

/* line 111, ../sass/views/_header.scss */
.offcanvas-backdrop {
    width: 0;
    height: 0;
}

/* line 116, ../sass/views/_header.scss */
.offcanvas.show {
    background-image: url('../images/bg-menu.jpg');
    background-color: #0067ce;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    opacity: 0.88;
    width: 100%;
    padding: 40px 20px;
    transition: all 0.1s;
}

/* line 136, ../sass/views/_header.scss */
.offcanvas-header {
    padding: 0;
}

/* line 140, ../sass/views/_header.scss */
.offcanvas-body.mobile {
    color: #ffffff !important;
    padding: 0;
    opacity: 1;
}
/* line 145, ../sass/views/_header.scss */
.offcanvas-body.mobile h6 {
    font-size: 18px !important;
}
/* line 149, ../sass/views/_header.scss */
.offcanvas-body.mobile p {
    font-size: 14px !important;
}
/* line 153, ../sass/views/_header.scss */
.offcanvas-body.mobile a {
    color: #ffffff !important;
    font-size: 16px;
}
/* line 159, ../sass/views/_header.scss */
.offcanvas-body.mobile ul li {
    margin-bottom: 30px;
}

/* line 167, ../sass/views/_header.scss */
.mobile-nav {
    display: none;
}
@media (max-width: 768px) {
    /* line 167, ../sass/views/_header.scss */
    .mobile-nav {
        display: flex;
        flex-direction: row;
    }
}

/* line 176, ../sass/views/_header.scss */
.menu-user {
    margin-left: 0;
    margin-right: 20px;
    position: relative;
    text-align: center;
}
/* line 184, ../sass/views/_header.scss */
.menu-user img {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 0;
}
/* line 192, ../sass/views/_header.scss */
.menu-user:before {
    content: '';
    position: absolute;
    background-image: url('../images/menu-user-wrapper.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 64px;
    height: 64px;
    top: -3px;
    left: 0;
    right: 0;
}

/* line 237, ../sass/views/_header.scss */
.btn-close {
    opacity: 1;
    background-image: url('../images/icons/back-arrow.svg');
    background-color: #1f79d4;
    background-size: 20px;
    padding: 15px !important;
    margin-bottom: 5px;
}

/* line 246, ../sass/views/_header.scss */
.dropdown-menu {
    background: transparent;
    border: none;
    margin-top: 15px;
}
/* line 251, ../sass/views/_header.scss */
.dropdown-menu li {
    margin-bottom: 15px !important;
}
/* line 254, ../sass/views/_header.scss */
.dropdown-menu li a.dropdown-item {
    font-size: 14px;
}
/* line 258, ../sass/views/_header.scss */
.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}
/* line 262, ../sass/views/_header.scss */
.dropdown-menu li:active,
.dropdown-menu li:focus-visible,
.dropdown-menu li:focus {
    outline: none;
    background: transparent;
}

/* line 271, ../sass/views/_header.scss */
.mobile-dropdown {
    position: relative;
    width: 50%;
}
.user.dropdown .dropdown-menu {
    background: #ffffff;
}
.user.dropdown .dropdown-item {
    color: #0067ce;
}
.user.dropdown .dropdown-item:active {
    color: #ffffff;
}

/* line 280, ../sass/views/_header.scss */
.icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
}

/* line 291, ../sass/views/_header.scss */
.home-menu-icon {
    background-image: url('../images/icons/home.svg');
}

/* line 295, ../sass/views/_header.scss */
.categories-menu-icon {
    background-image: url('../images/icons/categories.svg');
}

/* line 299, ../sass/views/_header.scss */
.store-menu-icon {
    background-image: url('../images/icons/cart-white.svg');
}

/* line 303, ../sass/views/_header.scss */
.arabic-menu-icon {
    background-image: url('../images/icons/arabic.svg');
}

/* line 307, ../sass/views/_header.scss */
.logout-menu-icon {
    background-image: url('../images/icons/logout.svg');
}

.login-menu-icon {
    background-image: url('../images/icons/login.svg');
}
/* line 311, ../sass/views/_header.scss */
.search-wrapper {
    background: #ffffff;
    box-shadow: 0px 12px 56px rgba(167, 167, 167, 0.12);
    border-radius: 8px;
    border: 1px solid #c2dbf3;
    padding: 15px;
}

/* End header */
/* footer */
/* line 3, ../sass/views/_footer.scss */
footer {
    padding: 50px;
    border: 1px solid #c2dbf3;
    border-radius: 16px;
    margin: 60px 0;
}
/* line 9, ../sass/views/_footer.scss */
footer div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* line 14, ../sass/views/_footer.scss */
footer div:first-child {
    margin-bottom: 35px;
}
/* line 19, ../sass/views/_footer.scss */
footer .footer-line {
    height: 1px;
    color: #c2dbf3;
    opacity: 1;
    flex-grow: 1 !important;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 25px;
}
/* line 31, ../sass/views/_footer.scss */
footer h6 {
    margin-bottom: 15px;
}
/* line 35, ../sass/views/_footer.scss */
footer .mobile-number,
footer .mail {
    background-size: 20px;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 0;
    display: block;
    margin-bottom: 15px;
}
/* line 46, ../sass/views/_footer.scss */
footer .mobile-number {
    background-image: url('../images/icons/phone.svg');
    margin-right: 24px;
    margin-left: 0;
}
/* line 52, ../sass/views/_footer.scss */
footer .mail {
    background-image: url('../images/icons/email-icon.svg');
}
@media (min-width: 768px) and (max-width: 992px) {
    /* line 57, ../sass/views/_footer.scss */
    footer .footer-line {
        width: 20%;
    }
}
@media (max-width: 768px) {
    /* line 3, ../sass/views/_footer.scss */
    footer {
        padding: 24px;
        margin: 30px 0;
    }
    /* line 66, ../sass/views/_footer.scss */
    footer div {
        display: block;
    }
    /* line 69, ../sass/views/_footer.scss */
    footer div h6 {
        font-size: 16px;
    }
    /* line 73, ../sass/views/_footer.scss */
    footer div:first-child {
        margin-bottom: 20px;
    }
    /* line 78, ../sass/views/_footer.scss */
    footer .footer-line {
        display: none;
    }
}

/* line 88, ../sass/views/_footer.scss */
.social li {
    display: inline-block;
}
/* line 94, ../sass/views/_footer.scss */
.social li a {
    display: block;
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    transition: all 0.3s;
}
/* line 102, ../sass/views/_footer.scss */
.social li a span {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* line 113, ../sass/views/_footer.scss */
.social li:not(:last-child) a {
    margin-right: 24px;
    margin-left: 0;
}
/* line 119, ../sass/views/_footer.scss */
.social li .facebook span {
    background-image: url('../images/icons/facebook.svg');
}
/* line 124, ../sass/views/_footer.scss */
.social li a.facebook:hover {
    border: 1px solid #3b5998;
}
/* line 130, ../sass/views/_footer.scss */
.social li .twitter span {
    background-image: url('../images/icons/twitter.svg');
}
/* line 135, ../sass/views/_footer.scss */
.social li a.twitter:hover {
    border: 1px solid #55acee;
}
/* line 141, ../sass/views/_footer.scss */
.social li .instagram span {
    background-image: url('../images/icons/instagram.svg');
}
/* line 146, ../sass/views/_footer.scss */
.social li a.instagram:hover {
    border: 1px solid #c33cbe;
}
/* line 153, ../sass/views/_footer.scss */
.social li .youtube span {
    background-image: url('../images/icons/youtube.svg');
}
/* line 158, ../sass/views/_footer.scss */
.social li a.youtube:hover {
    border: 1px solid #c31a1e;
}

/* End footer */
/* line 1, ../sass/views/_cards.scss */
.normal-card,
.search-card {
    border: 1px solid #c2dbf3;
    padding: 15px;
    display: flex;
    border-radius: 16px;
}
/* line 8, ../sass/views/_cards.scss */
.normal-card h5,
.normal-card p,
.search-card h5,
.search-card p {
    margin-bottom: 12px;
}
/* line 13, ../sass/views/_cards.scss */
.normal-card p,
.search-card p {
    font-size: 14px;
}
/* line 16, ../sass/views/_cards.scss */
.normal-card p:last-child,
.search-card p:last-child {
    margin-bottom: 0;
}

/* line 22, ../sass/views/_cards.scss */
.search-card-wrapper {
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #c2dbf3;
}

/* line 29, ../sass/views/_cards.scss */
.search-card:not(:last-child) {
    margin-bottom: 15px;
}

/* line 33, ../sass/views/_cards.scss */
.normal-card-img,
.search-card-img,
.sports-card-img {
    width: 84px;
    height: 84px;
    border-radius: 12px;
}

/* line 41, ../sass/views/_cards.scss */
.sports-card {
    border: 1px solid #c2dbf3;
    padding: 15px;
    border-radius: 16px;
}
/* line 46, ../sass/views/_cards.scss */
.sports-card h5,
.sports-card p {
    margin-bottom: 12px;
}
/* line 51, ../sass/views/_cards.scss */
.sports-card p {
    font-size: 14px;
}
/* line 54, ../sass/views/_cards.scss */
.sports-card p:last-child {
    margin-bottom: 0;
}
/* line 59, ../sass/views/_cards.scss */
.sports-card .sports-card-img-wrapper {
    cursor: pointer;
    position: relative;
}
/* line 63, ../sass/views/_cards.scss */
.sports-card .sports-card-img-wrapper:before {
    content: url('../images/icons/vector-1.png');
    position: absolute;
    top: 60px;
    left: 0%;
    right: 0;
    text-align: center;
}

/* line 77, ../sass/views/_cards.scss */
.sports-card:not(.football-card) {
    cursor: pointer;
}

/* line 81, ../sass/views/_cards.scss */
.company-card {
    display: flex;
}
/* line 84, ../sass/views/_cards.scss */
.company-card .company-card-img-wrapper {
    width: 260px;
    width: 260px;
    height: 260px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
}
.company-card .company-card-img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    /* line 81, ../sass/views/_cards.scss */
    .company-card {
        display: block;
    }
    /* line 92, ../sass/views/_cards.scss */
    .company-card .company-card-img-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* line 99, ../sass/views/_cards.scss */
.fav-input[type='checkbox'] {
    background-image: url('../images/icons/fav-white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 12px;
    position: relative;
    width: 24px;
    height: 24px;
    border: none !important;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: all 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
/* line 114, ../sass/views/_cards.scss */
.fav-input[type='checkbox']:checked {
    background-image: url('../images/icons/fav-blue.svg');
}

/* line 119, ../sass/views/_cards.scss */
.fav-label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 12px 0px;
    margin-left: auto;
    margin-top: 23px;
    font-size: 18px;
    box-sizing: border-box;
    z-index: 1;
    color: #0067ce;
    background: #fff;
    border: 1px solid #0067ce;
    border-radius: 12px;
}
@media (max-width: 992px) {
    /* line 119, ../sass/views/_cards.scss */
    .fav-label {
        width: 100%;
    }
}

/* line 145, ../sass/views/_cards.scss */
.company-social li {
    display: inline-block;
}
/* line 151, ../sass/views/_cards.scss */
.company-social li a {
    display: block;
    padding: 8px;
    background-color: #ebf3fb;
    border-radius: 8px;
    transition: all 0.3s;
}
/* line 159, ../sass/views/_cards.scss */
.company-social li a span {
    display: block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* line 170, ../sass/views/_cards.scss */
.company-social li:not(:last-child) a {
    margin-right: 16px;
    margin-left: 0;
}
/* line 176, ../sass/views/_cards.scss */
.company-social li .vector-3 span {
    background-image: url('../images/icons/vector-3.svg');
}
/* line 180, ../sass/views/_cards.scss */
.company-social li .vector-4 span {
    background-image: url('../images/icons/vector-4.svg');
}
/* line 184, ../sass/views/_cards.scss */
.company-social li .vector-5 span {
    background-image: url('../images/icons/vector-5.svg');
}
/* line 188, ../sass/views/_cards.scss */
.company-social li .vector-6 span {
    background-image: url('../images/icons/vector-6.svg');
}
/* line 192, ../sass/views/_cards.scss */
.company-social li .facebook span {
    background-image: url('../images/icons/facebook.svg');
}
/* line 196, ../sass/views/_cards.scss */
.company-social li .instagram span {
    background-image: url('../images/icons/instagram.svg');
}
/* line 200, ../sass/views/_cards.scss */
.company-social li .whatsapp span {
    background-image: url('../images/icons/whatsapp.svg');
}

/* line 206, ../sass/views/_cards.scss */
.sports-card-wrapper .company-location-card {
    height: auto;
}
/* line 209, ../sass/views/_cards.scss */
.sports-card-wrapper .company-location-card .card-img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

/* line 217, ../sass/views/_cards.scss */
.company-sport-card {
    display: none;
    width: 46%;
    margin-bottom: 4%;
    margin-right: 4%;
    margin: 4% 4% 0 0;
}
@media (max-width: 768px) {
    /* line 217, ../sass/views/_cards.scss */
    .company-sport-card {
        width: 100%;
        margin: 4% 0 0 0;
    }
}

/* line 237, ../sass/views/_cards.scss */
.times-row {
    display: flex;
    margin-top: 16px;
}
/* line 241, ../sass/views/_cards.scss */
.times-row .times-wraper {
    padding: 12px;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-right: 12px;
    margin-left: 0;
    cursor: pointer;
}
/* line 249, ../sass/views/_cards.scss */
.times-row .times-wraper .available-time,
.times-row .times-wraper .waiting-time,
.times-row .times-wraper .reserved-time,
.times-row .times-wraper .un-available-time {
    background-size: contain;
}

/* line 258, ../sass/views/_cards.scss */
.overflow-x {
    overflow-x: hidden;
    transition: all 0.3s;
}
/* line 262, ../sass/views/_cards.scss */
.overflow-x:hover {
    overflow-x: scroll;
}
@media (max-width: 768px) {
    /* line 258, ../sass/views/_cards.scss */
    .overflow-x {
        overflow-x: scroll;
    }
}

/* line 271, ../sass/views/_cards.scss */
.sale {
    position: relative;
}
/* line 274, ../sass/views/_cards.scss */
.sale:before {
    content: url('../images/icons/sale.svg');
    position: absolute;
    top: -16px;
    bottom: auto;
    right: -10px;
    left: auto;
    z-index: 1;
    transform: rotate(90deg);
}

/* line 288, ../sass/views/_cards.scss */
.card-inner-row {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 992px) {
    /* line 288, ../sass/views/_cards.scss */
    .card-inner-row {
        display: block;
    }
}
/* line 296, ../sass/views/_cards.scss */
.card-inner-row p {
    font-size: 12px;
}

/* line 308, ../sass/views/_cards.scss */
.icons {
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 0;
}

/* line 317, ../sass/views/_cards.scss */
.location {
    background-image: url('../images/icons/location.svg');
}

/* line 321, ../sass/views/_cards.scss */
.people {
    background-image: url('../images/icons/people.svg');
    background-size: 20px;
}

/* line 326, ../sass/views/_cards.scss */
.card-calendar {
    background-image: url('../images/icons/calendar.svg');
}

/* line 330, ../sass/views/_cards.scss */
.card-time {
    background-image: url('../images/icons/available.svg');
}

/* line 334, ../sass/views/_cards.scss */
.sport-icon {
    background-image: url('../images/icons/sport.svg');
}

/* line 338, ../sass/views/_cards.scss */
.seat {
    background-image: url('../images/icons/seat.svg');
}

/* line 342, ../sass/views/_cards.scss */
.stethoscope {
    background-image: url('../images/icons/stethoscope.svg');
}

/* line 346, ../sass/views/_cards.scss */
.money {
    background-image: url('../images/icons/money.svg');
    color: #0067ce;
}

/* line 351, ../sass/views/_cards.scss */
.available-time {
    background-image: url('../images/icons/available.svg');
    background-size: auto;
}

/* line 356, ../sass/views/_cards.scss */
.waiting-time {
    background-image: url('../images/icons/waiting.svg');
    background-size: auto;
}

/* line 361, ../sass/views/_cards.scss */
.reserved-time {
    background-image: url('../images/icons/reserved.svg');
    background-size: auto;
}

/* line 366, ../sass/views/_cards.scss */
.un-available-time {
    background-image: url('../images/icons/un-available.svg');
    background-size: auto;
}

/* line 371, ../sass/views/_cards.scss */
.seat-icon {
    background-image: url('../images/icons/seat-icon.svg');
}

/* line 1, ../sass/views/_form.scss */
.form-control:not(.search-input) {
    font-size: 14px;
    padding: 15px;
}
/* line 5, ../sass/views/_form.scss */
.form-control:not(.search-input)::placeholder {
    color: #bdbdbd;
    font-size: 14px;
}

/* line 11, ../sass/views/_form.scss */
textarea {
    resize: none;
}

/* line 15, ../sass/views/_form.scss */
.plus {
    background-image: url('../images/icons/plus-blue.svg');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

/* line 23, ../sass/views/_form.scss */
.reserve {
    padding: 12px 9% 12px 7%;
    margin-top: 30px;
}

/* line 29, ../sass/views/_form.scss */
.btn:hover .leave-icon {
    background-image: url('../images/icons/leave-blue.svg');
}

/* line 34, ../sass/views/_form.scss */
.leave-icon {
    background-image: url('../images/icons/leave-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    display: inline-block;
    margin: 0 10px;
}

/* Radios */
/* line 49, ../sass/views/_form.scss */
.form-check {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-bottom: 16px;
    padding-left: 39px;
    display: flex;
    align-items: center;
}

/* line 59, ../sass/views/_form.scss */
.form-check-input {
    border: 1px solid #0067ce !important;
    cursor: pointer;
}

/* line 65, ../sass/views/_form.scss */
.form-check-label {
    font-size: 14px;
    cursor: pointer;
    padding: 15px 10px;
    width: 100%;
}

/* line 79, ../sass/views/_form.scss */
.form-check-input:checked {
    background-color: #0067ce;
}

/* line 83, ../sass/views/_form.scss */
.form-check-input:checked ~ label {
    color: #0067ce;
}

/* end Radios */
/* line 1, ../sass/views/_sign.scss */
.sign-wrapper {
    padding-bottom: 0;
}
/* line 7, ../sass/views/_sign.scss */
.sign-wrapper a {
    font-size: 16px;
    color: #0067ce;
}
/* line 13, ../sass/views/_sign.scss */
.sign-wrapper .title h2 {
    font-size: 32px;
}
/* line 16, ../sass/views/_sign.scss */
.sign-wrapper .title h2 span {
    font-size: 16px;
}

/* line 23, ../sass/views/_sign.scss */
.sign-inner {
    border: 1px solid #c2dbf3;
    border-radius: 16px;
    padding: 24px;
}

/* line 29, ../sass/views/_sign.scss */
.input-group {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    padding: 0 16px;
}
/* line 34, ../sass/views/_sign.scss */
.input-group input.form-control {
    border-left: 1px solid #c2dbf3 !important;
    padding: 3px 15px;
    margin: 10px 0;
}
/* line 41, ../sass/views/_sign.scss */
.input-group .input-group-text {
    color: #0067ce;
    background-color: transparent;
    border: 0;
}
/* line 48, ../sass/views/_sign.scss */
.input-group .form-control {
    border: 0 !important;
}
/* line 52, ../sass/views/_sign.scss */
.input-group .icons {
    width: 25px;
    background-size: 20px;
    background-position: center;
    padding: 0;
}
/* line 59, ../sass/views/_sign.scss */
.input-group .form-select {
    width: calc(100% - 40px);
    border-left: 1px solid #c2dbf3 !important;
    margin: 8px 0;
}
/* line 65, ../sass/views/_sign.scss */
.input-group .date-input,
.input-group .time-input {
    padding: 5px 16px;
    width: calc(100% - 40px);
    border-left: 1px solid #c2dbf3 !important;
    margin: 8px 0;
}
/* line 73, ../sass/views/_sign.scss */
.input-group .form-select {
    color: #a7a7a7;
    padding: 5px 16px;
}
/* line 77, ../sass/views/_sign.scss */
.input-group .form-select::after {
    right: 0;
}
/* line 82, ../sass/views/_sign.scss */
.input-group .select-items div,
.input-group .form-select {
    color: #a7a7a7;
}

/* upload profile image */
/* line 93, ../sass/views/_sign.scss */
.avatar-upload {
    position: relative;
}
/* line 97, ../sass/views/_sign.scss */
.avatar-upload .avatar-edit {
    position: absolute;
    right: 46%;
    bottom: 0;
    z-index: 1;
}
/* line 103, ../sass/views/_sign.scss */
.avatar-upload .avatar-edit input {
    display: none;
}
/* line 107, ../sass/views/_sign.scss */
.avatar-upload .avatar-edit label {
    background-image: url('../images/icons/plus.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    padding: 7px;
    background-color: #fff;
    border-radius: 50%;
}
@media (max-width: 768px) {
    /* line 97, ../sass/views/_sign.scss */
    .avatar-upload .avatar-edit {
        right: 44%;
    }
}
/* line 126, ../sass/views/_sign.scss */
.avatar-upload .avatar-preview {
    width: 64px;
    height: 64px;
    position: relative;
    margin: auto;
    padding: 11px;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}
/* line 136, ../sass/views/_sign.scss */
.avatar-upload .avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* end upload profile image */
/* upload payment image */
/* line 151, ../sass/views/_sign.scss */
.payment-upload {
    position: relative;
}
/* line 161, ../sass/views/_sign.scss */
.payment-upload .avatar-edit input {
    display: none;
}
/* line 165, ../sass/views/_sign.scss */
.payment-upload .avatar-edit label {
    display: block;
    text-align: center;
    background-color: #ebf3fb;
    border-radius: 8px;
    padding: 16px;
    color: #0067ce;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
/* line 178, ../sass/views/_sign.scss */
.payment-upload .avatar-preview {
    height: 150px;
    margin-top: 12px;
}
/* line 189, ../sass/views/_sign.scss */
.payment-upload .avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* upload payment image */
/* booking-details upload images */
/* line 205, ../sass/views/_sign.scss */
.upload-inputfile {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

/* line 214, ../sass/views/_sign.scss */
.upload-btn {
    color: #0067ce;
    transition: all 0.3s ease;
    cursor: pointer;
}
/* line 220, ../sass/views/_sign.scss */
.upload-btn:hover {
    transition: all 0.3s ease;
}
/* line 224, ../sass/views/_sign.scss */
.upload-btn-box {
    margin-bottom: 10px;
}

/* line 230, ../sass/views/_sign.scss */
.upload-img-wrap {
    display: flex;
    flex-wrap: wrap;
    height: 220px;
    overflow: scroll;
    background: #ebf3fb;
    padding: 12px;
}
/* line 240, ../sass/views/_sign.scss */
.upload-img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}
@media (max-width: 500px) {
    /* line 240, ../sass/views/_sign.scss */
    .upload-img-box {
        width: 180px;
        margin-bottom: 11px;
        margin-top: 11px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* line 254, ../sass/views/_sign.scss */
.upload-img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}
/* line 267, ../sass/views/_sign.scss */
.upload-img-close:after {
    content: '';
    background-image: url('../images/icons/cancel.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* line 286, ../sass/views/_sign.scss */
.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

/* line 294, ../sass/views/_sign.scss */
.upload-img-remove {
    cursor: pointer;
}

/* end booking-details upload images */
/* Verification Code */
/* line 304, ../sass/views/_sign.scss */
.otp-input-fields {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
/* line 312, ../sass/views/_sign.scss */
.otp-input-fields input {
    height: 48px;
    width: 48px;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    font-size: 16px;
    color: #0067ce;
    text-align: center;
    outline: none;
    /* Firefox */
}
/* line 322, ../sass/views/_sign.scss */
.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* line 333, ../sass/views/_sign.scss */
.otp-input-fields input:focus {
    border: 1px solid #0067ce !important;
    font-size: 20px;
}

/* end Verification Code */
/* my profile */
/* line 369, ../sass/views/_sign.scss */
.profile-nav {
    padding: 24px;
    border: 1px solid #c2dbf3;
    border-radius: 16px;
}
/* line 374, ../sass/views/_sign.scss */
.profile-nav .nav.nav-pills {
    justify-content: space-between;
    border: 1px solid #0067ce;
    border-radius: 12px;
}
/* line 379, ../sass/views/_sign.scss */
.profile-nav .nav.nav-pills .nav-item {
    width: 50%;
}
/* line 383, ../sass/views/_sign.scss */
.profile-nav .nav.nav-pills .nav-link {
    border-radius: 12px;
    width: 100%;
    color: #0067ce;
}
/* line 390, ../sass/views/_sign.scss */
.profile-nav .nav.nav-pills .nav-link.active {
    background: #0067ce;
    color: #ffffff;
}
@media (max-width: 992px) {
    /* line 369, ../sass/views/_sign.scss */
    .profile-nav {
        padding: 12px;
    }
}
@media (max-width: 450px) {
    /* line 403, ../sass/views/_sign.scss */
    .profile-nav .nav-link {
        font-size: 12px;
    }
}

/* line 410, ../sass/views/_sign.scss */
.my-profile-avatar .avatar-edit {
    bottom: -10px;
}
/* line 413, ../sass/views/_sign.scss */
.my-profile-avatar .avatar-edit label {
    background-image: url('../images/icons/plus-white.svg');
    background-color: #0067ce;
}
@media (max-width: 768px) {
    /* line 410, ../sass/views/_sign.scss */
    .my-profile-avatar .avatar-edit {
        right: 38%;
    }
}
/* line 423, ../sass/views/_sign.scss */
.my-profile-avatar .avatar-preview {
    width: 90px;
    height: 90px;
    padding: 0;
    border: 0;
}
/* line 430, ../sass/views/_sign.scss */
.my-profile-avatar .avatar-img {
    border-radius: 12px;
}

/* line 436, ../sass/views/_sign.scss */
.red,
.green,
.yellow {
    position: relative;
    padding: 15px 15px 15px 25px;
}
/* line 442, ../sass/views/_sign.scss */
.red:after,
.green:after,
.yellow:after {
    content: '';
    height: 100%;
    width: 12px;
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    border-radius: 16px 0px 0px 16px;
}

/* line 454, ../sass/views/_sign.scss */
.red {
    border: 1px solid #ffd0d2;
}
/* line 457, ../sass/views/_sign.scss */
.red:after {
    background-color: #ff3a44;
}

/* line 462, ../sass/views/_sign.scss */
.green {
    border: 1px solid #d1f1c2;
}
/* line 465, ../sass/views/_sign.scss */
.green:after {
    background-color: #3ec300;
}

/* line 470, ../sass/views/_sign.scss */
.yellow {
    border: 1px solid #ffecc2;
}
/* line 473, ../sass/views/_sign.scss */
.yellow:after {
    background-color: #ffb100;
}

/* line 478, ../sass/views/_sign.scss */
.relatives-card {
    border: 1px solid #c2dbf3;
    padding: 15px;
    border-radius: 16px;
}
/* line 483, ../sass/views/_sign.scss */
.relatives-card p {
    font-size: 14px;
}

/* end my profile */
/* line 495, ../sass/views/_sign.scss */
.countdown {
    color: #0067ce;
    margin-top: 16px;
}

/* line 500, ../sass/views/_sign.scss */
.profile-link {
    color: #000000 !important;
    display: block;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    padding: 11px 14px;
}

/* line 508, ../sass/views/_sign.scss */
.wallet-img-wrapper {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* successfully saved */
/* line 523, ../sass/views/_sign.scss */
.successfully-saved {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: none;
}
/* line 533, ../sass/views/_sign.scss */
.successfully-saved.show {
    display: block;
}
/* line 537, ../sass/views/_sign.scss */
.successfully-saved .successfully-saved-inner {
    border: 1px solid #c2dbf3;
    border-radius: 12px;
    box-shadow: 8px 8px 16px rgba(167, 167, 167, 0.24);
    padding: 2em;
    background: #ffffff;
    width: 500px;
    margin: 20px auto;
    text-align: center;
}
@media (max-width: 550px) {
    /* line 549, ../sass/views/_sign.scss */
    .successfully-saved .successfully-saved-inner {
        width: 350px;
    }
    /* line 553, ../sass/views/_sign.scss */
    .successfully-saved h4 {
        font-size: 16px;
    }
}

/* end successfully saved */
/* line 565, ../sass/views/_sign.scss */
.hide-password {
    background-image: url('../images/icons/hide-password.svg');
    cursor: pointer;
}

/* line 570, ../sass/views/_sign.scss */
.show-password {
    background-image: url('../images/icons/show-password.svg');
    cursor: pointer;
}

/* line 575, ../sass/views/_sign.scss */
.user-icon {
    background-image: url('../images/icons/user.svg');
}

/* line 579, ../sass/views/_sign.scss */
.phone-icon {
    background-image: url('../images/icons/phone.svg');
}

/* line 583, ../sass/views/_sign.scss */
.email-icon {
    background-image: url('../images/icons/email-icon.svg');
}

/* line 587, ../sass/views/_sign.scss */
.gender-icon {
    background-image: url('../images/icons/gender.svg');
}

/* line 591, ../sass/views/_sign.scss */
.national-id-icon {
    background-image: url('../images/icons/national-id.svg');
}

/* line 595, ../sass/views/_sign.scss */
.pin-icon {
    background-image: url('../images/icons/pin.svg');
}

/* line 600, ../sass/views/_sign.scss */
.password-icon {
    background-image: url('../images/icons/password-icon.svg');
}

/* line 604, ../sass/views/_sign.scss */
.credit-icon {
    background-image: url('../images/icons/credit-icon.svg');
}

/* line 608, ../sass/views/_sign.scss */
.time-icon {
    background-image: url('../images/icons/time-icon.svg');
}

/* line 612, ../sass/views/_sign.scss */
.upload-icon {
    background-image: url('../images/icons/upload.svg');
    background-size: auto;
}

/* line 617, ../sass/views/_sign.scss */
.wallet-icon {
    background-image: url('../images/icons/wallet-icon.svg');
    padding-left: 22px;
}

.cancel-icon {
    background-image: url('../images/icons/cancel.svg');
    padding-left: 22px;
}

/* line 622, ../sass/views/_sign.scss */
.right-icon {
    background-image: url('../images/icons/right.svg');
    padding-left: 13px;
    height: 24px;
    float: right;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background: #0067ce;
}
.white-to-blue {
    filter: invert(80%) sepia(80%) saturate(3216%) hue-rotate(197deg)
        brightness(95%) contrast(106%);
}

.blue-to-white {
    filter: invert(100%) sepia(96%) saturate(2%) hue-rotate(265deg)
        brightness(130%) contrast(101%);
}
.custom-tooltip {
    --bs-tooltip-bg: var(--bs-danger);
}

.error-border {
    border: 2px solid var(--bs-danger) !important;
    border-radius: 5px;
}
.text-normal {
    text-transform: none;
}
.scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

main::-webkit-scrollbar,
span::-webkit-scrollbar,
ol::-webkit-scrollbar,
ul::-webkit-scrollbar,
pre::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
}

main::-webkit-scrollbar-thumb,
span::-webkit-scrollbar-thumb,
ol::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb,
pre::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background-color: #eff2f5;
}

.partners-item {
    position: relative;
    width: 200px;
    height: 200px;
}

/* .partners-item::before {
    position: absolute;
    content: '';
    background-color: #c31a1e;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    transform: skewX(44deg);
} */
/* .partners-item a,
.partners-item img {
    width: inherit;
    height: inherit;
    border-radius: 60%;
} */
/* .partners-item img::before {
    position: absolute;
    content: '';
    background-color: #711ac3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    transform: skewX(44deg);
} */

.logout {
    cursor: pointer;
}
.chat-container {
    height: 500px;
}
.chat-body {
    overflow-y: scroll;
    height: 350px;
}
.chat-title {
    font-size: 18px;
}
.you,
.me {
    margin-bottom: 15px;
}
.you .message-row {
    margin-inline-start: 45px;
    background: #eef7ff;
    color: black;
}
.me .message-row {
    margin-inline-end: 45px;
    background: #20ce7d1c;
    color: black;
}
.symbol-circle {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
}
.symbol-circle .image {
    width: 35px;
    height: 35px;
}
.time {
    font-size: 12px;
    text-transform: lowercase !important;
}
#noteForm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}
.first-half {
    background: linear-gradient(
        to right,
        #c2dbf3 0%,
        #c2dbf3 50%,
        #ffffff 50%,
        #ffffff 100%
    );
}
.second-half {
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 50%,
        #c2dbf3 50%,
        #c2dbf3 100%
    );
}
.select-hour-type {
    border: 1px dashed #c2dbf3;
    border-radius: 5px;
    padding: 5px;
    background: aliceblue;
}
