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

.center-line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 8px;
    background: #1b55d2;
    margin: auto;
}

.no-line,
h1.h2-intro.no-line {
    padding-bottom: 0;
}
.no-line:before,
h1.h2-intro.no-line:before {
    display: none;
}

.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;
}

.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);
}
.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;
}
.btn:hover {
    color: #0067ce !important;
}
.btn:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    .btn {
        width: 100%;
    }
}

.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;
}
.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;
}
.btn-white:hover {
    color: #0067ce;
}
.btn-white:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    .btn-white {
        width: 100%;
    }
}

.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;
}
.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;
}
.btn-red:hover {
    color: #ff3a44;
}
.btn-red:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
@media (max-width: 768px) {
    .btn-red {
        width: 100%;
    }
}

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

.hidden,
.hide {
    display: none;
}

.btn,
a,
button,
input,
select,
textarea,
.form-control {
    outline: none !important;
}

input,
.form-control {
    border: 1px solid #c2dbf3 !important;
    border-radius: 8px;
}
input:active,
input:focus,
.form-control:active,
.form-control:focus {
    outline: none;
    box-shadow: none !important;
    border-color: #c2dbf3;
}

.border {
    border: 1px solid #c2dbf3 !important;
    border-radius: 8px;
}

a {
    cursor: pointer;
    font-family: 'Open Sans';
    font-size: 24px;
    text-decoration: none;
}

*,
:after,
:before {
    box-sizing: border-box;
}

.clear:after,
.company-social:after,
.social:after,
.clear:before,
.company-social:before,
.social:before {
    display: table;
    content: ' ';
}
.clear:after,
.company-social:after,
.social:after {
    clear: both;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
}

li.list-group-item {
    border: none;
    font-size: 16px;
}
@media (max-width: 768px) {
    li.list-group-item {
        font-size: 14px;
    }
}

.popover {
    position: relative;
    padding: 15px;
}

section {
    padding-bottom: 60px;
}
@media (max-width: 992px) {
    section {
        padding-bottom: 30px;
    }
}

h1 {
    font-size: 44px;
    color: #ffffff;
    text-transform: none;
}
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }
}

h1,
h2,
h3,
h4 {
    font-family: 'Open Sans';
    font-family: 'regular';
    display: inline-block;
}

h3 {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
    line-height: 25px;
}
@media (max-width: 768px) {
    h6 {
        font-size: 13px;
        line-height: 19px;
    }
}

p {
    margin: 0;
    font-family: 'regular';
    font-size: 16px;
    line-height: 22px;
}
@media (max-width: 768px) {
    p {
        font-size: 12px;
        line-height: 16px;
    }
}

small {
    font-size: 12px;
}

.card,
a,
dl,
input,
label,
li,
p {
    font-family: 'regular';
}

.text-blue {
    color: #0067ce;
}

.text-light-blue {
    color: #c2dbf3;
}

.text-black {
    color: #000000 !important;
}

.text-red {
    color: #ff3a44 !important;
}

.nav-link:focus,
.nav-link:hover {
    color: #0067ce;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #ffffff;
    z-index: 9999999;
}
.preloader > div {
    margin: auto;
    text-align: center;
}
.preloader > div img {
    display: block;
    margin: 50px auto;
    max-height: 100px;
}
.preloader .spinner-border {
    color: #0067ce;
    text-align: center;
}
.preloader p {
    color: #0067ce;
}

html {
    scroll-behavior: smooth;
    text-transform: capitalize;
}

body {
    overflow-x: hidden !important;
    font-size: 17px;
    position: relative;
    text-transform: capitalize;
}

*,
select,
.dropdown,
.btn,
a,
.dropdown-toggle {
    text-transform: capitalize;
}

::-moz-selection {
    color: #ffffff;
    background: #0067ce;
}

::selection {
    color: #ffffff;
    background: #0067ce;
}

.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;
}

.main-container {
    background: #ffffff;
    border-radius: 24px;
}
.main-container .main-card {
    z-index: 1 !important;
}

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

.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) {
    .back {
        margin-right: 12px;
    }
}

@media (max-width: 992px) {
    .reservation-times-title {
        display: block;
    }
}

.escape-games-title h2 span {
    left: 75%;
}

.company-title .company-title-h2 span {
    left: 85%;
}

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

/* end pagination */
/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 10px;
}
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
}

::-webkit-scrollbar-track {
    border-radius: 0px;
    box-shadow: none;
    border: 0;
    background: white;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: none;
    border: 0;
    background-color: #c2dbf3;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #c2dbf3;
}

/* end Custom Scrollbars */
/* responsive */
@media (max-width: 768px) {
    .title h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .title h2 span {
        font-size: 16px;
    }
    .title img {
        max-width: 100px !important;
        height: auto;
    }
}
/* end responsive */
/* modal */
.modal {
    border-radius: 18px;
}

.modal-header {
    border: 0;
}

.modal-header .btn-close {
    margin: 0;
}
.modal-header .btn-close:focus {
    box-shadow: none;
}

.modal-footer {
    border: 0;
    justify-content: center;
}

.relative-modal .title h2 {
    font-size: 32px;
    margin-bottom: 24px;
}
.relative-modal .title h2 span {
    font-size: 16px;
}
.relative-modal .btn-close {
    background-image: url('../images/icons/cancel.svg');
    background-color: transparent;
}
.relative-modal .btn-close:focus {
    box-shadow: none;
}

.modal .input-group * {
    color: #000000 !important;
}
.modal .time-input {
    background-position: right 5px bottom 8px;
}

/* end modal */
.stars {
    display: none;
}

.services-card {
    float: left;
    display: inline-block;
    position: relative;
    width: 50%;
}
.services-card:nth-child(-n + 7) {
    margin-bottom: 48px;
}
.services-card:nth-child(1),
.services-card:nth-child(4),
.services-card:nth-child(6) {
    padding-right: 24px;
    padding-left: 0;
}
.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;
}
.services-card:nth-child(1) .card {
    height: 520px;
}
.services-card:nth-child(1) .card .mob-img {
    margin: 39px auto auto;
    width: 262px;
}
.services-card:last-child {
    width: 100%;
}
.services-card:last-child .card .card-img-overlay {
    background: transparent;
}
.services-card:last-child .card .card-img-overlay p {
    font-size: 24px;
}
@media (max-width: 768px) {
    .services-card:nth-child(1) {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .services-card:nth-child(1) .card {
        height: 358px;
    }
    .services-card:nth-child(-n + 7) {
        margin-bottom: 16px;
    }
    .services-card:nth-child(2),
    .services-card:nth-child(4),
    .services-card:nth-child(6) {
        padding-right: 8px;
        padding-left: 0;
    }
    .services-card:nth-child(3),
    .services-card:nth-child(5),
    .services-card:nth-child(7) {
        padding-left: 8px;
        padding-right: 0;
    }
    .services-card:last-child .card .card-img-overlay {
        position: absolute;
        justify-content: space-between;
    }
    .services-card:last-child .card .card-img-overlay p {
        display: block;
        font-size: 16px;
    }
}

.services-card-link {
    height: 100%;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    height: 236px;
    box-shadow: 0px 8px 16px rgba(112, 112, 112, 0.24);
}
.card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 16px;
}
.card .web-img {
    display: block;
}
.card .mob-img {
    display: none;
    margin: auto;
    width: auto;
    height: auto;
}
.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;
}
.card .card-img-overlay a,
.card .card-img-overlay h4 {
    font-size: 24px;
    color: white;
    transition: all 0.2s;
}
.card .card-img-overlay a:hover,
.card .card-img-overlay h4:hover {
    color: white;
    text-shadow: 0.5px 0px #fff;
}
.card .card-img-overlay p {
    font-size: 16px;
    color: white;
}
@media (min-width: 768px) and (max-width: 992px) {
    .card .card-img-overlay a,
    .card .card-img-overlay h4 {
        font-size: 16px;
    }
    .card .card-img-overlay p {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .card {
        box-shadow: 0px 8px 16px rgba(112, 112, 112, 0.24);
        height: 171px;
    }
    .card .web-img {
        display: none;
    }
    .card .mob-img {
        display: block;
    }
    .card .card-img-overlay {
        padding: 12px;
        justify-content: center;
        background: #0067ce;
        position: relative;
    }
    .card .card-img-overlay a,
    .card .card-img-overlay h4 {
        font-size: 16px;
        font-weight: 600;
    }
    .card .card-img-overlay p {
        display: none;
    }
}

.drawn-card {
    position: relative;
    text-align: center;
    height: 345.57px;
}
@media (max-width: 768px) {
    .drawn-card {
        height: 190px;
    }
}
.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;
}
.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;
}
.drawn-card img {
    margin-bottom: 24px;
    width: 114px;
    height: 114px;
}
@media (max-width: 768px) {
    .drawn-card img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
}
.drawn-card h6,
.drawn-card p,
.drawn-card .drawn-card-link {
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .drawn-card h6,
    .drawn-card p,
    .drawn-card .drawn-card-link {
        margin-bottom: 11px;
    }
}
.drawn-card .drawn-card-link {
    color: #0067ce;
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .drawn-card .drawn-card-link {
        font-size: 12px;
    }
}
.drawn-card img.vector {
    width: 22px;
    height: 15px;
}
@media (max-width: 768px) {
    .drawn-card img.vector {
        display: none;
    }
}
.drawn-card small {
    line-height: 16px;
    display: block;
    width: 65%;
    margin: auto;
}
@media (max-width: 768px) {
    .drawn-card small {
        height: 50px;
        overflow: hidden;
    }
}

.client-card {
    height: 387px;
}
@media (max-width: 768px) {
    .client-card {
        height: 190px;
    }
}

.sports-card-wrapper .card img {
    width: auto;
    height: auto;
    margin: 16px 0;
}
.sports-card-wrapper .card .card-img-overlay {
    padding: 12px;
    justify-content: center;
    background: #0067ce;
    position: relative;
}
.sports-card-wrapper .card .card-img-overlay h4 {
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .sports-card-wrapper .card {
        height: auto;
    }
}

.partners-carousel .item {
    width: 225px;
    height: 225px;
    align-items: center;
    display: flex;
    justify-content: center;
    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 {
    border-radius: 30% 80%;
    -webkit-clip-path: polygon(5% 9%, 80% 21%, 93% 93%, 21% 80%);
    clip-path: polygon(5% 9%, 80% 21%, 93% 93%, 21% 80%);
} */
@media (min-width: 768px) and (max-width: 992px) {
    .partners-carousel .item {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 768px) {
    .partners-carousel .item {
        width: 80px;
        height: 80px;
    }
}
.partners-carousel .owl-stage-outer {
    margin-bottom: 24px;
}
.partners-carousel .owl-dots {
    text-align: center;
}
.partners-carousel .owl-dots span {
    width: 24px;
    height: 7px;
    margin: 5px;
    background: #c2dbf3;
    display: block;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
.partners-carousel .owl-dot.active span {
    background: #0067ce;
}

.sports-carousel .item {
    margin: auto;
    height: 400px;
}
.sports-carousel .item img {
    border-radius: 16px;
    height: 100%;
}
.sports-carousel .owl-stage-outer {
    margin-bottom: 24px;
}
.sports-carousel .owl-nav {
    display: block !important;
}
.sports-carousel .owl-nav span {
    font-size: 30px;
}
.sports-carousel .owl-nav .owl-prev {
    float: left;
}
.sports-carousel .owl-nav .owl-next {
    float: right;
}
.sports-carousel .owl-nav .owl-next:hover,
.sports-carousel .owl-nav .owl-prev:hover {
    color: #0067ce;
}
.sports-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -15%;
    width: 70px;
    margin: auto;
}

.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) {
    .download-app {
        padding: 24px;
        background: url('../images/demo/home/download-bg.png') #e0ecf9 right 10%
            top 1em no-repeat;
        background-size: contain;
    }
}
.download-app a {
    margin: 0 7px;
}
.download-app a img {
    width: 163px;
}
@media (max-width: 768px) {
    .download-app a img {
        width: 81px;
    }
}

.main-section {
    text-align: center;
}
.main-section .card.main-card {
    height: auto;
    box-shadow: none;
    z-index: -1;
}
.main-section .card.main-card img {
    max-height: 350px;
}
.main-section .card.main-card .card-img-overlay {
    background: none;
    padding: 0 30px;
    top: 0;
    bottom: 0;
    text-align: start;
}
@media (max-width: 768px) {
    .main-section .card.main-card {
        height: auto;
    }
    .main-section .card.main-card .card-img-overlay {
        padding: 0 12px;
        position: absolute;
        justify-content: flex-start;
    }
}
.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;
}
.main-section .main-filter .main-filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-section .main-filter small {
    display: block;
    text-align: start;
    padding: 0 16px;
}
@media (max-width: 768px) {
    .main-section .main-filter {
        padding: 16px;
    }
}
@media (max-width: 992px) {
    .main-section .main-filter {
        width: 90%;
    }
    .main-section .main-filter .main-filter-inner {
        display: block;
    }
}
@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;
    }
}

#company-filter {
    display: none;
}

.leave {
    position: relative;
}

.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) {
    .leave:after {
        width: 13px;
        height: 13px;
    }
}

.reservation-times li:not(:last-child) {
    margin-right: 48px;
    margin-left: 0;
}
@media (max-width: 992px) {
    .reservation-times {
        justify-content: space-between;
    }
    .reservation-times li:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
    }
}

.company-nav .nav.nav-pills {
    justify-content: space-between;
}
.company-nav .nav.nav-pills .nav-item {
    width: 20%;
}
.company-nav .nav.nav-pills .nav-link {
    border: 1px solid #0067ce;
    border-radius: 12px;
    width: 100%;
    color: #0067ce;
}
.company-nav .nav.nav-pills .nav-link.active {
    background: #0067ce;
    color: #ffffff;
}
@media (max-width: 992px) {
    .company-nav .nav.nav-pills .nav-item {
        width: auto;
    }
}
@media (max-width: 450px) {
    .company-nav .nav-link {
        font-size: 12px;
    }
}

/* dropdown */
.filter-dropdown {
    text-align: start;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}
.filter-dropdown .dropdown-toggle {
    border: 0;
    background-color: transparent;
    width: 100%;
    text-align: start;
    padding: 0;
    font-size: 1rem;
    cursor: pointer;
}
.filter-dropdown .dropdown-toggle:after {
    border-top: 0.5em solid #2867cf;
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
    position: absolute;
    right: 0;
    bottom: 10px;
}
.filter-dropdown .dropdown-menu {
    background: #ffffff;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.filter-dropdown .dropdown-menu .dropdown-item:hover {
    background: transparent;
}
.filter-dropdown .dropdown-menu .btn:focus,
.filter-dropdown .dropdown-menu .btn:active {
    background: #0067ce;
}

.filter-dropdown.show .dropdown-menu {
    transform: translate3d(12px, 32.8px, 0px) !important;
}

/* end dropdown */
/* age filter dropdown */
.age-input {
    border: none !important;
    font-size: 1rem;
    cursor: pointer;
}

.ui-slider-range {
    background-color: #0067ce;
}

/* end age filter dropdown */
/* custom-select */
select.form-select {
    border: 0;
    background-image: url('../images/icons/down.svg');
    background-size: 16px 22px;
    background-position: right top 5px;
    cursor: pointer;
}
select.form-select option {
    padding: 10px;
}
select.form-select option:hover {
    background: #0067ce;
}
select.form-select:focus {
    box-shadow: none;
}

.governorate {
    width: auto;
}
@media (max-width: 992px) {
    .governorate {
        width: 100%;
    }
}

/* final custom-select */
/* end final custom-select */
/* end custom-select */
/* time picker */
.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;
}

input[type='time']::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

/* end time picker */
/* date picker */
.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) {
    .date-input {
        margin-bottom: 24px;
    }
}

input[type='date'] {
    position: relative;
    padding: 10px;
}

input[type='date']::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
    display: none;
}

/* end date picker */
html.rtl {
    direction: rtl;
    /* form */
    /* end form */
    /* sign page */
    /* end sign page */
    /* my profile page */
    /* my profile page */
}
html.rtl body,
html.rtl * {
    direction: rtl;
}
html.rtl .overflow-body {
    margin-left: 0;
    margin-right: 35%;
}
html.rtl .search input {
    background-position: 10px;
}
html.rtl .title h2 span {
    left: 0%;
    right: 50%;
}
html.rtl .escape-games-title h2 span {
    left: 0%;
    right: 75%;
}
html.rtl .company-title .company-title-h2 span {
    left: 0%;
    right: 85%;
}
html.rtl .back {
    margin-right: 0;
    margin-left: 24px;
    transform: scaleX(-1);
}
@media (max-width: 768px) {
    html.rtl .back {
        margin-left: 12px;
    }
}
html.rtl .services-card {
    float: right;
}
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;
}
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) {
    html.rtl .services-card:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }
    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;
    }
    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;
    }
}
html.rtl .drawn-card:after {
    right: 3%;
    left: 0;
}
html.rtl .owl-carousel .owl-stage-outer {
    direction: ltr;
}
html.rtl .sports-carousel .owl-nav .owl-prev {
    float: right;
}
html.rtl .sports-carousel .owl-nav .owl-next {
    float: left;
}
html.rtl .download-app {
    background: url('../images/demo/home/download-bg.png') #e0ecf9 left 15% top
        1em no-repeat;
    background-size: contain;
}
html.rtl footer .mobile-number {
    margin-left: 24px;
    margin-right: 0;
}
html.rtl footer .mobile-number,
html.rtl footer .mail {
    padding-right: 30px;
    padding-left: 0;
    background-position: right;
}
html.rtl .social li:not(:last-child) a {
    margin-left: 24px;
    margin-right: 0;
}
html.rtl .company-social li:not(:last-child) a {
    margin-left: 16px;
    margin-right: 0;
}
html.rtl .main-section .leave:after {
    right: 37%;
    left: 0;
}
html.rtl .custom-select:after {
    left: -5%;
    right: auto;
}
@media (max-width: 992px) {
    html.rtl .custom-select:after {
        left: 10px;
    }
}
html.rtl .navbar-toggler {
    margin-left: 12px;
    margin-right: 0;
}
html.rtl .filter-dropdown {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
}
html.rtl .filter-dropdown .dropdown-toggle:after {
    right: auto;
    left: 0;
}
html.rtl .logo {
    margin-left: 30px;
    margin-right: 0;
}
@media (max-width: 768px) {
    html.rtl .logo {
        margin-left: auto;
    }
}
html.rtl .language,
html.rtl .cart,
html.rtl .login,
html.rtl .mobile-search,
html.rtl .code {
    margin-right: 20px;
    margin-left: 0;
}
html.rtl .menu-user {
    margin-left: 20px;
    margin-right: 0px;
}
html.rtl .menu-user img {
    margin-right: 4px;
    margin-left: 0;
}
html.rtl .icon {
    margin-right: 0;
    margin-left: 12px;
}
html.rtl .icons {
    padding-right: 30px;
    padding-left: 0;
    background-position: right;
}
html.rtl .offcanvas.show {
    background-position: right;
}
html.rtl .date-input {
    background-position: left 5px bottom 3px;
}
html.rtl .calendar-table .prev span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
html.rtl .calendar-table .next span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
html.rtl .time-input {
    background-position: left 5px bottom 3px;
}
html.rtl .modal .time-input {
    background-position: left 5px bottom 8px;
}
html.rtl .reservation-times li:not(:last-child) {
    margin-left: 48px;
    margin-right: 0;
}
@media (max-width: 992px) {
    html.rtl .reservation-times li:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
    }
}
html.rtl .times-row .times-wraper {
    margin-left: 12px;
    margin-right: 0;
}
html.rtl .sale:before {
    right: auto;
    left: -13px;
    top: -13px;
    transform: rotate(0deg);
}
html.rtl .reserve {
    padding: 12px 7% 12px 9%;
}
html.rtl .plus {
    background-position: left;
}
html.rtl .fav-input[type='checkbox'] {
    margin-left: 12px;
    margin-right: 0;
}
html.rtl .fav-label {
    margin-left: 0;
    margin-right: auto;
}
html.rtl .company-sport-card {
    margin: 4% 0 0 4%;
}
@media (max-width: 768px) {
    html.rtl .company-sport-card {
        margin: 4% 0 0 0;
    }
}
html.rtl .input-group input.form-control {
    border-right: 1px solid #c2dbf3 !important;
    border-left: 0 !important;
}
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;
}
html.rtl .input-group .icons {
    padding: 0;
}
html.rtl .input-group .custom-select:after {
    left: 0;
    right: auto;
}
html.rtl .wallet-icon {
    float: right;
    height: 21px;
    padding-right: 22px;
}
html.rtl .right-icon {
    background-image: url('../images/icons/left.svg');
    padding-right: 13px;
    float: left;
}
html.rtl .profile-link .people,
html.rtl .profile-link .location {
    float: right;
    height: 24px;
}
html.rtl .red,
html.rtl .green,
html.rtl .yellow {
    padding: 15px 25px 15px 15px;
}
html.rtl .red:after,
html.rtl .green:after,
html.rtl .yellow:after {
    right: 0px;
    left: auto;
    border-radius: 0px 16px 16px 0px;
}
html.rtl .form-check {
    padding-left: 0;
    padding-right: 39px;
}
html.rtl .date-input,
html.rtl .time-input,
html.rtl select.form-select {
    background-position: left top 5px;
}

/* header */
.offcanvas-body.mobile {
    display: none !important;
}
@media (max-width: 767px) {
    .offcanvas-body.mobile {
        display: block !important;
    }
}

.offcanvas-body.web {
    display: flex !important;
}
@media (max-width: 768px) {
    .offcanvas-body.web {
        display: none !important;
    }
}

header {
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    margin-right: 30px;
    margin-left: 0;
}
.logo img {
    width: 86px;
    height: 24px;
}
@media (max-width: 768px) {
    .logo {
        margin-right: auto;
    }
}

.search {
    width: 100%;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}
.search .search-input {
    border: none !important;
}
.search .search-btn {
    border: none;
    background: none;
    padding: 3px 15px 6px;
}

.mobile-search {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}

.language,
.cart,
.login,
.user,
.mobile-search,
.code {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-left: 20px;
    margin-right: 0;
}
.language .nav-link,
.cart .nav-link,
.login .nav-link,
.user .nav-link,
.mobile-search .nav-link,
.code .nav-link {
    padding: 7px 10px !important;
}
.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;
}

.form-control::-moz-placeholder {
    color: #c4c4c4;
}

.form-control:-ms-input-placeholder {
    color: #c4c4c4;
}

.form-control::placeholder {
    color: #c4c4c4;
}

.navbar-toggler {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-right: 12px;
    margin-left: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 20px;
}

.offcanvas-backdrop {
    width: 0;
    height: 0;
}

.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;
}

.offcanvas-header {
    padding: 0;
}

.offcanvas-body.mobile {
    color: #ffffff !important;
    padding: 0;
    opacity: 1;
}
.offcanvas-body.mobile h6 {
    font-size: 18px !important;
}
.offcanvas-body.mobile p {
    font-size: 14px !important;
}
.offcanvas-body.mobile a {
    color: #ffffff !important;
    font-size: 16px;
}
.offcanvas-body.mobile ul li {
    margin-bottom: 30px;
}

.mobile-nav {
    display: none;
}
@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
        flex-direction: row;
    }
}

.menu-user {
    margin-left: 0;
    margin-right: 20px;
    position: relative;
    text-align: center;
}
.menu-user img {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 0;
}
.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;
}

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

.dropdown-menu {
    background: transparent;
    border: none;
    margin-top: 15px;
}
.dropdown-menu li {
    margin-bottom: 15px !important;
}
.dropdown-menu li a.dropdown-item {
    font-size: 14px;
}
.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}
.dropdown-menu li:active,
.dropdown-menu li:focus-visible,
.dropdown-menu li:focus {
    outline: none;
    background: transparent;
}

.mobile-dropdown {
    position: relative;
    width: 50%;
}
.user.dropdown .dropdown-menu {
    background: #f8f9fa;
}
.user.dropdown .dropdown-item {
    color: #0067ce;
}
.user.dropdown .dropdown-item:active {
    color: #f8f9fa;
}

.icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
}

.home-menu-icon {
    background-image: url('../images/icons/home.svg');
}

.categories-menu-icon {
    background-image: url('../images/icons/categories.svg');
}

.store-menu-icon {
    background-image: url('../images/icons/cart-white.svg');
}

.arabic-menu-icon {
    background-image: url('../images/icons/arabic.svg');
}

.logout-menu-icon {
    background-image: url('../images/icons/logout.svg');
}

.login-menu-icon {
    background-image: url('../images/icons/login.svg');
}

.search-wrapper {
    background: #ffffff;
    box-shadow: 0px 12px 56px rgba(167, 167, 167, 0.12);
    border-radius: 8px;
    border: 1px solid #c2dbf3;
    padding: 15px;
    max-height: 280px;
    overflow: auto;
}

/* End header */
/* footer */
footer {
    padding: 50px;
    border: 1px solid #c2dbf3;
    border-radius: 16px;
    margin: 60px 0;
}
footer div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer div:first-child {
    margin-bottom: 35px;
}
footer .footer-line {
    height: 1px;
    color: #c2dbf3;
    opacity: 1;
    flex-grow: 1 !important;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 25px;
}
footer h6 {
    margin-bottom: 15px;
}
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;
}
footer .mobile-number {
    background-image: url('../images/icons/phone.svg');
    margin-right: 24px;
    margin-left: 0;
}
footer .mail {
    background-image: url('../images/icons/email-icon.svg');
}
@media (min-width: 768px) and (max-width: 992px) {
    footer .footer-line {
        width: 20%;
    }
}
@media (max-width: 768px) {
    footer {
        padding: 24px;
        margin: 30px 0;
    }
    footer div {
        display: block;
    }
    footer div h6 {
        font-size: 16px;
    }
    footer div:first-child {
        margin-bottom: 20px;
    }
    footer .footer-line {
        display: none;
    }
}

.social li {
    display: inline-block;
}
.social li a {
    display: block;
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    transition: all 0.3s;
}
.social li a span {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.social li:not(:last-child) a {
    margin-right: 24px;
    margin-left: 0;
}
.social li .facebook span {
    background-image: url('../images/icons/facebook.svg');
}
.social li a.facebook:hover {
    border: 1px solid #3b5998;
}
.social li .twitter span {
    background-image: url('../images/icons/twitter.svg');
}
.social li a.twitter:hover {
    border: 1px solid #55acee;
}
.social li .instagram span {
    background-image: url('../images/icons/instagram.svg');
}
.social li a.instagram:hover {
    border: 1px solid #c33cbe;
}
.social li .youtube span {
    background-image: url('../images/icons/youtube.svg');
}
.social li a.youtube:hover {
    border: 1px solid #c31a1e;
}

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

.search-card-wrapper {
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #c2dbf3;
}

.search-card:not(:last-child) {
    margin-bottom: 15px;
}

.normal-card-img,
.search-card-img,
.sports-card-img {
    width: 84px;
    height: 84px;
    border-radius: 12px;
}

.sports-card {
    border: 1px solid #c2dbf3;
    padding: 15px;
    border-radius: 16px;
}
.sports-card h5,
.sports-card p {
    margin-bottom: 12px;
}
.sports-card p {
    font-size: 14px;
}
.sports-card p:last-child {
    margin-bottom: 0;
}
.sports-card .sports-card-img-wrapper {
    cursor: pointer;
    position: relative;
}
.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;
}

.sports-card:not(.football-card) {
    cursor: pointer;
}

.company-card {
    display: flex;
}
.company-card .company-card-img-wrapper {
    width: 260px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
}
.champions-card .champions-card-img {
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .company-card {
        display: block;
    }
    .company-card .company-card-img-wrapper {
        width: 200px;
        height: 200px;
    }
}

.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;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: all 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
.fav-input[type='checkbox']:checked {
    background-image: url('../images/icons/fav-blue.svg');
}

.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) {
    .fav-label {
        width: 100%;
    }
}

.company-social li {
    display: inline-block;
}
.company-social li a {
    display: block;
    padding: 8px;
    background-color: #ebf3fb;
    border-radius: 8px;
    transition: all 0.3s;
}
.company-social li a span {
    display: block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.company-social li:not(:last-child) a {
    margin-right: 16px;
    margin-left: 0;
}
.company-social li .vector-3 span {
    background-image: url('../images/icons/vector-3.svg');
}
.company-social li .vector-4 span {
    background-image: url('../images/icons/vector-4.svg');
}
.company-social li .vector-5 span {
    background-image: url('../images/icons/vector-5.svg');
}
.company-social li .vector-6 span {
    background-image: url('../images/icons/vector-6.svg');
}
.company-social li .facebook span {
    background-image: url('../images/icons/facebook.svg');
}
.company-social li .instagram span {
    background-image: url('../images/icons/instagram.svg');
}
.company-social li .whatsapp span {
    background-image: url('../images/icons/whatsapp.svg');
}

.sports-card-wrapper .company-location-card {
    height: auto;
}
.sports-card-wrapper .company-location-card .card-img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

.company-sport-card {
    display: none;
    width: 46%;
    margin-bottom: 4%;
    margin-right: 4%;
    margin: 4% 4% 0 0;
}
@media (max-width: 768px) {
    .company-sport-card {
        width: 100%;
        margin: 4% 0 0 0;
    }
}

.times-row {
    display: flex;
    margin-top: 16px;
}
.times-row .times-wraper {
    padding: 12px;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-right: 12px;
    margin-left: 0;
    cursor: pointer;
}
.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;
}

.overflow-x {
    overflow-x: hidden;
    transition: all 0.3s;
}
.overflow-x:hover {
    overflow-x: scroll;
}
@media (max-width: 768px) {
    .overflow-x {
        overflow-x: scroll;
    }
}

.sale {
    position: relative;
}
.sale:before {
    content: url('../images/icons/sale.svg');
    position: absolute;
    top: -16px;
    bottom: auto;
    right: -10px;
    left: auto;
    z-index: 1;
    transform: rotate(90deg);
}

.card-inner-row {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .card-inner-row {
        display: block;
    }
}
.card-inner-row p {
    font-size: 12px;
}
.icons {
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 0;
}

.location {
    background-image: url('../images/icons/location.svg');
}

.people {
    background-image: url('../images/icons/people.svg');
    background-size: 20px;
}

.card-calendar {
    background-image: url('../images/icons/calendar.svg');
}

.card-time {
    background-image: url('../images/icons/available.svg');
}

.sport-icon {
    background-image: url('../images/icons/sport.svg');
}

.seat {
    background-image: url('../images/icons/seat.svg');
}

.stethoscope {
    background-image: url('../images/icons/stethoscope.svg');
}

.money {
    background-image: url('../images/icons/money.svg');
    color: #0067ce;
}

.available-time {
    background-image: url('../images/icons/available.svg');
    background-size: auto;
}

.waiting-time {
    background-image: url('../images/icons/waiting.svg');
    background-size: auto;
}

.reserved-time {
    background-image: url('../images/icons/reserved.svg');
    background-size: auto;
}

.un-available-time {
    background-image: url('../images/icons/un-available.svg');
    background-size: auto;
}

.seat-icon {
    background-image: url('../images/icons/seat-icon.svg');
}
.favorite {
    background-image: url('../images/icons/fav-white.svg');
}

.form-control:not(.search-input) {
    font-size: 14px;
    padding: 15px;
}
.form-control:not(.search-input)::-moz-placeholder {
    color: #bdbdbd;
    font-size: 14px;
}
.form-control:not(.search-input):-ms-input-placeholder {
    color: #bdbdbd;
    font-size: 14px;
}
.form-control:not(.search-input)::placeholder {
    color: #bdbdbd;
    font-size: 14px;
}

textarea {
    resize: none;
}

.plus {
    background-image: url('../images/icons/plus-blue.svg');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.reserve {
    padding: 12px 9% 12px 7%;
    margin-top: 30px;
}

.btn:hover .leave-icon {
    background-image: url('../images/icons/leave-blue.svg');
}

.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 */
.form-check {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    margin-bottom: 16px;
    padding-left: 39px;
    display: flex;
    align-items: center;
}

.form-check-input {
    border: 1px solid #0067ce !important;
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
    cursor: pointer;
    padding: 15px 10px;
    width: 100%;
}

.form-check-input:checked {
    background-color: #0067ce;
}

.form-check-input:checked ~ label {
    color: #0067ce;
}

/* end Radios */
.sign-wrapper {
    padding-bottom: 0;
}
.sign-wrapper a {
    font-size: 16px;
    color: #0067ce;
}
.sign-wrapper .title h2 {
    font-size: 32px;
}
.sign-wrapper .title h2 span {
    font-size: 16px;
}

.sign-inner {
    border: 1px solid #c2dbf3;
    border-radius: 16px;
    padding: 24px;
}

.input-group {
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    padding: 0 16px;
}
.input-group input.form-control {
    border-left: 1px solid #c2dbf3 !important;
    padding: 3px 15px;
    margin: 10px 0;
}
.input-group .input-group-text {
    color: #0067ce;
    background-color: transparent;
    border: 0;
}
.input-group .form-control {
    border: 0 !important;
}
.input-group .icons {
    width: 25px;
    background-size: 20px;
    background-position: center;
    padding: 0;
}
.input-group .form-select {
    width: calc(100% - 40px);
    border-left: 1px solid #c2dbf3 !important;
    margin: 8px 0;
}
.input-group .date-input,
.input-group .time-input {
    padding: 5px 16px;
    width: calc(100% - 40px);
    border-left: 1px solid #c2dbf3 !important;
    margin: 8px 0;
}
.input-group .form-select {
    color: #a7a7a7;
    padding: 5px 16px;
}
.input-group .form-select::after {
    right: 0;
}
.input-group .select-items div,
.input-group .form-select {
    color: #a7a7a7;
}

/* upload profile image */
.avatar-upload {
    position: relative;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 46%;
    bottom: 0;
    z-index: 1;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.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) {
    .avatar-upload .avatar-edit {
        right: 44%;
    }
}
.avatar-upload .avatar-preview {
    width: 64px;
    height: 64px;
    position: relative;
    margin: auto;
    padding: 11px;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
}
.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 */
.payment-upload {
    position: relative;
}
.payment-upload .avatar-edit input {
    display: none;
}
.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;
}
.payment-upload .avatar-preview {
    height: 150px;
    margin-top: 12px;
}
.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 */
.upload-inputfile {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-btn {
    color: #0067ce;
    transition: all 0.3s ease;
    cursor: pointer;
}
.upload-btn:hover {
    transition: all 0.3s ease;
}
.upload-btn-box {
    margin-bottom: 10px;
}

.upload-img-wrap {
    display: flex;
    flex-wrap: wrap;
    height: 220px;
    overflow: scroll;
    background: #ebf3fb;
    padding: 12px;
}
.upload-img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}
@media (max-width: 500px) {
    .upload-img-box {
        width: 180px;
        margin-bottom: 11px;
        margin-top: 11px;
        margin-left: auto;
        margin-right: auto;
    }
}
.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;
}
.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;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

.upload-img-remove {
    cursor: pointer;
}

/* end booking-details upload images */
/* Verification Code */
.otp-input-fields {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.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 */
}
.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-input-fields input:focus {
    border: 1px solid #0067ce !important;
    font-size: 20px;
}

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

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

.red,
.green,
.yellow {
    position: relative;
    padding: 15px 15px 15px 25px;
}
.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;
}

.red {
    border: 1px solid #ffd0d2;
}
.red:after {
    background-color: #ff3a44;
}

.green {
    border: 1px solid #d1f1c2;
}
.green:after {
    background-color: #3ec300;
}

.yellow {
    border: 1px solid #ffecc2;
}
.yellow:after {
    background-color: #ffb100;
}

.relatives-card {
    border: 1px solid #c2dbf3;
    padding: 15px;
    border-radius: 16px;
}
.relatives-card p {
    font-size: 14px;
}

/* end my profile */
.countdown {
    color: #0067ce;
    margin-top: 16px;
}

.profile-link {
    color: #000000 !important;
    display: block;
    border: 1px solid #c2dbf3;
    border-radius: 8px;
    padding: 11px 14px;
}

.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 */
.successfully-saved {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: none;
}
.successfully-saved.show {
    display: block;
}
.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) {
    .successfully-saved .successfully-saved-inner {
        width: 350px;
    }
    .successfully-saved h4 {
        font-size: 16px;
    }
}

/* end successfully saved */
.hide-password {
    background-image: url('../images/icons/hide-password.svg');
    cursor: pointer;
}

.show-password {
    background-image: url('../images/icons/show-password.svg');
    cursor: pointer;
}

.user-icon {
    background-image: url('../images/icons/user.svg');
}

.phone-icon {
    background-image: url('../images/icons/phone.svg');
}

.email-icon {
    background-image: url('../images/icons/email-icon.svg');
}

.gender-icon {
    background-image: url('../images/icons/gender.svg');
}

.national-id-icon {
    background-image: url('../images/icons/national-id.svg');
}

.pin-icon {
    background-image: url('../images/icons/pin.svg');
}

.password-icon {
    background-image: url('../images/icons/password-icon.svg');
}

.credit-icon {
    background-image: url('../images/icons/credit-icon.svg');
}

.time-icon {
    background-image: url('../images/icons/time-icon.svg');
}

.upload-icon {
    background-image: url('../images/icons/upload.svg');
    background-size: auto;
}

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

.right-icon {
    background-image: url('../images/icons/right.svg');
    padding-left: 13px;
    height: 24px;
    float: right;
} /*# sourceMappingURL=style.css.map */
