:root {
    --main-color: #ff4081;
    --main-color-hover: #d9336c;
    --blue-color: #00829b;
    --range-slider-common-height: 16px;
    --range-slider-handle-width: 24px;
    --range-slider-handle-height: 24px;
}

body {
    font-family: "Almarai", sans-serif;
}

* {
    font-family: "Almarai", sans-serif;
}

input, select {
    outline: none;
    direction: rtl !important;
}

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

.text-blue {
    color: var(--blue-color) !important;
}

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

.text-main-color {
    color: var(--main-color);
}

/* Start Header */
.navbar {
    border-bottom: 1px dotted #000;
}

img.logo {
    width: 100px;
}

@media (max-width: 999px) {
    img.logo {
        width: 55px;
    }
}

.form-search {
    width: 55%;
}

@media (max-width: 999px) {
    .form-search {
        width: 100%;
    }
}

.form-search .div-search {
    position: relative;
    width: 100%;
}

.form-search .input-search {
    outline: none;
}

.form-search .btn-search {
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
}

a.profile-image,
div.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eee;
    color: black;
    text-decoration: none;
}

div.profile-image {
    width: 100px;
    height: 100px;
}

.main-btn {
    border: 0;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: 0.4s;
}

.main-btn:hover {
    background-color: var(--main-color-hover);
}

.register-btn {
    border: 0;
    color: #c7c7c7;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.448);
    transition: 0.4s;
}

.register-btn:hover {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
}


.nav-bottom {
}

.nav-bottom ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 15px;
}

.nav-bottom ul li {
    padding: 5px 20px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    cursor: pointer;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -ms-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
}

.nav-bottom ul li.active,
.nav-bottom ul li:hover {
    border-bottom: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
}

.nav-bottom ul li a {
    text-decoration: none;
    color: #c7c7c7;
    font-weight: bold;
}

/* End Header */

/* Start Profile */
.profile a.btn-card.active {
    border: 3px solid var(--main-color);

    p, i {
        color: var(--main-color) !important;
    }
}

.profile .footer-section .taps button {
    border-bottom: 3px solid #ffffff80 !important;
}

.profile .footer-section .taps button.active {
    border-color: var(--main-color-hover) !important;
}

.profile .footer-section .body .images .image {
    height: 125px;
    width: 100%;
    overflow: hidden;
}

.profile .footer-section .body .setting .group {
    position: relative;
}

.profile .footer-section .body .setting .group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* End Profile */
/* Start Home */
.home span.gender {
    cursor: pointer;
}

.home span.gender.active {
    background-color: var(--blue-color);
    color: white !important;
}

.home button {
    width: fit-content;
}

/*Range Slider*/
.range-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 99%;
    height: 100%;
}

.range-slider > div {
    position: absolute;
    display: flex;
    align-items: center;
    left: 13px;
    right: 15px;
    height: var(--range-slider-common-height);
}

.range-slider > div > .range-slider-val-left,
.range-slider > div > .range-slider-val-right,
.range-slider > div > .range-slider-val-range {
    height: 10px;
}

.range-slider > div > .range-slider-val-left {
    position: absolute;
    left: 0;
    border-radius: 10px;
    background-color: #ccc;
    margin: 0 7px;
}

.range-slider > div > .range-slider-val-right {
    position: absolute;
    right: 0;
    margin: 0 7px;
    border-radius: 10px;
    background-color: #ccc;
}

.range-slider > div > .range-slider-val-range {
    position: absolute;
    left: 0;
    top: -1px;
    height: 16px;
    border-radius: 14px;
    background-color: var(--blue-color);
}

.range-slider > div > .range-slider-handle {
    z-index: 1;
    position: absolute;
    top: -5px;
    margin-left: -11px;
    width: var(--range-slider-handle-width);
    height: var(--range-slider-handle-height);
    border-radius: 25%;
    background-color: #fff;
    text-align: left;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    outline: none;
    cursor: pointer;
}

div.range-slider > input[type="range"]::-ms-thumb {
    width: var(--range-slider-handle-width);
    height: var(--range-slider-handle-height);
    border: 0 none;
    border-radius: 0px;
    background: red;

    pointer-events: all;

}

div.range-slider > input[type="range"]::-moz-range-thumb {
    width: var(--range-slider-handle-width);
    height: var(--range-slider-handle-height);
    border: 0 none;
    border-radius: 0px;
    background: red;

    pointer-events: all;
}

div.range-slider > input[type="range"]::-webkit-slider-thumb {
    width: var(--range-slider-handle-width);
    height: var(--range-slider-handle-height);
    border: 0 none;
    border-radius: 0px;
    background: red;

    pointer-events: all;
    -webkit-appearance: none;
}

div.range-slider > input[type="range"]::-ms-fill-lower {
    background: transparent;
    border: 0 none;
}

div.range-slider > input[type="range"]::-ms-fill-upper {
    background: transparent;
    border: 0 none;
}

.range-slider > input[type="range"] {
    direction: ltr !important;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: var(--range-slider-common-height);

    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    pointer-events: none;
    -webkit-appearance: none;
}

div.range-slider > input[type="range"]::-ms-track {
    background: transparent;
    color: transparent;

    -webkit-appearance: none;
}

div.range-slider > input[type="range"]::-moz-range-track {
    background: transparent;
    color: transparent;

    -moz-appearance: none;
}

div.range-slider > input[type="range"]:focus::-webkit-slider-runnable-track {
    background: transparent;
    border: transparent;
}

div.range-slider > input[type="range"]:focus {
    outline: none;
}

div.range-slider > input[type="range"]::-ms-tooltip {
    display: none;
}

.range-slider > div > .range-slider-tooltip {
    z-index: 2;
    position: absolute;
    top: -42px;
    margin-left: -12px;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    background-color: var(--blue-color);
    color: #fff;
    text-align: center;

    opacity: 0;
}

.range-slider > div > .range-slider-tooltip:after {
    content: "";

    position: absolute;
    left: 0;
    top: 19px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top-width: 16px;
    border-top-style: solid;
    border-top-color: var(--blue-color);
    border-radius: 16px;
}

.range-slider > div > .range-slider-tooltip > span {
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
}

.range-slider:hover > div > .range-slider-tooltip {
    opacity: 1;
}

/*Range Slider*/

/* End Home */
/* Start Interest */
.interest .main_box .image {
    width: 60px;
    height: 60px;
    /*overflow: hidden;*/
    position: relative;

    .dot {
        position: absolute;
        top: 3px;
        right: 3px;
        padding: 5px;
        z-index: 1000;
    }
}

/* End Interest */

/* Start Auth */
.auth {
    background-color: var(--main-color);
    min-height: 100vh;
}

.auth img {
    width: 100%;
}

.auth .form .taps {
    background-color: transparent;
    display: flex;
    align-items: center;
}


.auth .form .taps a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    color: var(--main-color);
}

.auth .form .taps a.active {
    background-color: var(--main-color);
    color: white;
    border-radius: 100px;
}

/* End Auth */


/* Start Chat */
#chat {
    height: calc(100vh - 150px);
    position: relative;
    border-bottom: 2px solid;
}

#chat .chat-body {
    height: calc(100vh - 290px);
    overflow-y: auto;
}

#chat .chat-footer {
    position: absolute;
    bottom: 0;
    z-index: 1000;
}
/* End Chat */
