@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Adobe Clean';
    src: url('../../fonts/AdobeClean-Regular.woff') format('woff2'),
        url('../fonts/AdobeClean-Regular.woff') format('woff'),
        url('../fonts/AdobeClean-Regular.ttf') format('truetype'),
        url('../fonts/AdobeClean-Regular.eot');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Adobe Clean';
    src: url('../fonts/AdobeClean-Bold.woff2') format('woff2'),
        url('../fonts/AdobeClean-Bold.woff') format('woff'),
        url('../fonts/AdobeClean-Bold.ttf') format('truetype'),
        url('../fonts/AdobeClean-Bold.eot');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Adobe Clean';
    src: url('../fonts/AdobeClean-Light.woff2') format('woff2'),
        url('../fonts/AdobeClean-Light.woff') format('woff'),
        url('../fonts/AdobeClean-Light.ttf') format('truetype'),
        url('../fonts/AdobeClean-Light.eot');
    font-weight: 300;
    font-style: normal;
}






html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    background: #000;
    font-family: 'Adobe Clean', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.form-control:focus {
    box-shadow: none;
}

.btn:focus {
    box-shadow: none;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}


/* ===== Scrollbar CSS ===== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #eadc8e transparent;
    /* thumb color, track color */
    -webkit-overflow-scrolling: touch;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    transition: width 0.3s ease, height 0.3s ease;
}

*::-webkit-scrollbar-track {
    background: transparent;
    /* or use black if you prefer */
}

*::-webkit-scrollbar-thumb {
    background-color: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    ;
    border-radius: 10px;
    border: 2px solid transparent;
    /* optional */
}

/* Show larger scrollbar on hover */
*::-webkit-scrollbar:hover {
    width: 15px;
    height: 15px;
}



.body_bg {
    /* display: flex; */
    background: url(../images/body_bg.png) no-repeat right #000;
    background-size: contain;
    flex-grow: 1;
}

.body_bg.customclass {
    display: flex;
    align-items: center;
}

.mycustom-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.lang-box {
    width: 100px;
}

.lang-box select {
    width: 100px;
    padding: 11px 8px;
    border-radius: 15px;
}

.lang-box select:focus-visible {
    outline: 0px;
}

.registrationhead {
    background: linear-gradient(to right, #0d0d0d 0%, #0e0e0e 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    padding:6px 0;
}

.gradient-text {
    /* background: linear-gradient(to right, #94632a 0%, #eadc8e 46%, #97682e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    transition: background 0.5s ease-in-out;
    font-weight: 400;
    color: #000;
}

.login-btn:hover .gradient-text,
.register-btn:hover .gradient-text {
    /* background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    transition: background 0.5s ease-in-out;
    color: #fff;
}

/* Login Button (Filled Gold) */
.login-btn {
    font-weight: bold;
    /* color: #b78c33; */
    width: 100px;
    padding: 11px 18px;
    border-radius: 15px;
    transition: 0.3s;
    /* border: 2px solid #b78c33; */
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, transform 0.2s ease;
}

.login-btn:hover {
    background: linear-gradient(to right, rgba(234, 220, 142, 1) 0%, rgba(151, 104, 46, 1) 50%, rgba(234, 220, 142, 1) 100%);
}

/* Register Button (Outlined Gold) */
.register-btn {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    /* border: 2px solid #b78c33; */
    /* color: #b78c33; */
    font-weight: bold;
    width: 117px;
    padding: 11px 22px;
    border-radius: 15px;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out, transform 0.2s ease;
}

.register-btn:hover {
    background: linear-gradient(to right, rgba(234, 220, 142, 1) 0%, rgba(151, 104, 46, 1) 50%, rgba(234, 220, 142, 1) 100%);
    color: #fff;
    border-color: transparent;
}

.reg_box {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(234, 220, 142, 0.6) 50%, rgba(0, 0, 0, 1) 100%);
    border-radius: 25px;
    border: 1px solid #eaeaea;
    border-top: 0;
    padding: 20px 30px;
    max-width: 699px;
    margin: 40px auto;
    height: max-content;
}

.reg_box h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 33px;
}

.reg_box input[type="text"],
.reg_box input[type="email"],
.reg_box input[type="password"] {
    height: 42px;
    border-radius: 6px;
}

.reg_box .custom-select {
    position: relative;
}

.reg_box select {
    appearance: none;
    -webkit-appearance: none;
    height: 42px;
    border-radius: 6px;
}


.reg_box .custom-select::after {
    --size: 0.4rem;
    position: absolute;
    content: "";
    right: 1rem;
    pointer-events: none;
}

.reg_box .custom-select::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    top: 46%;
}

.reg_box input[type="checkbox"] {
    background-color: transparent;
    border: 1px solid #fff;
    width: 16px;
    height: 16px;
    border-radius: 1.5px;
}

.reg_box .form-check label {
    color: #fff;
}

.reg_box hr {
    border-top: 1px solid #fff;
    opacity: 1;
}

.big-reg-btn {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: #000;
    font-weight: 700;
    padding: 11px 22px;
    font-size: 18px;
    border-radius: 10px;
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.big-reg-btn:hover {
    background: linear-gradient(to right, rgba(234, 220, 142, 1) 0%, rgba(151, 104, 46, 1) 50%, rgba(234, 220, 142, 1) 100%);
    color: #fff;
}

.registrationfooter {
    padding: 15px 0;
    background: #333;
    /* position: absolute;
    width: 100%;
    bottom: 0; */
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.registrationfooter ul li {
    display: inline-block;
}

.registrationfooter p {
    color: #fff;
}

.registrationfooter ul li a {
    display: block;
    padding: 0 10px;
    text-transform: capitalize;
    color: #fff;
}

.registrationfooter ul li:first-child a {
    padding-left: 0;
}

.registrationfooter ul li:last-child a {
    padding-right: 0;
}

.reg_box h1+p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    line-height: 24px;
}


.login_box {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(234, 220, 142, 0.6) 50%, rgba(0, 0, 0, 1) 100%);
    border-radius: 25px;
    border: 1px solid #eaeaea;
    border-top: 0;
    padding: 45px;
    width: 565px;
    margin: auto;
    height: max-content;
}

.login_box h1+p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    line-height: 24px;
}

.login_box a {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

.login_box h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 33px;
}

.login_box input[type="text"],
.login_box input[type="email"],
.login_box input[type="password"] {
    height: 38px;
    border-radius: 6px;
}


/*dashboard*/

.right-head a {
    color: #fff;
    font-size: 20px;
}


.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* .profile-dropdown {
    display: none;
    position: absolute;
    top: 56px;
    right: 20px;
    background: white;
    border: 1px solid rgba(117, 125, 128, 0.3);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    width:207px;
    padding:16px;
    border-radius:10px;
    font-size:14px;
}
.profile-dropdown a {
    display: block;
    padding: 10px;
    color:#767676;
    text-decoration: none;
}
.profile-dropdown a:hover {
    color:#171717;
}

.profile-dropdown a:hover .fa-light{
  color:#00B5FF;
} */

.navbar-toggler-icon {
    display: none;
    background: url(../images/hamburger.png) no-repeat;
    width: 20px;
    height: 20px;
}

.advanced_search {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: #0e0e0e;
    padding: 6px;
    border-radius: 10px;
    border: 0;
}

.gradient_border {
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 10px;
}

.main_body {
    background: #000;
    padding: 10px 0;
    flex-grow: 1;
}

.sidebar {
    width: 269px;
    height: 100%;
    background: #1f1f1f;
    color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid #c7c7c7;
    border-radius: 15px;
}

.sidebar .logo {
    width: 230px;
    height: 190px;
    border-radius: 10px;
}

.sidebar .nav-link {
    /* color: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #000;
    height: 42px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase; */
    color: #fff;
    padding-left: 10px;
    padding-bottom: 1px;
    padding-top: 1px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #000;
    height: 38px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.sidebar .nav-link span {
    font-weight: 400;
}

.forBorder {
    position: relative;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 2px;
    border-radius: 10px;
}

.forIcon {
    margin-right: 10px;
}

.forIcon .a1 {
    display: block;
}

.forIcon .a2 {
    display: none;
}

.sidebar .nav-link:hover .forIcon .a2,
.sidebar .nav-item.active .forIcon .a2 {
    display: block;
}

.sidebar .nav-link:hover .forIcon .a1,
.sidebar .nav-item.active .forIcon .a1 {
    display: none;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: black;
}

.content {
    overflow-y: auto;
    overflow-x: hidden;
}

.content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.memgrid {
    width: 25%;
}

.profile-card {
    background: #1f1f1f;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #c7c7c7;
    padding: 15px;
}

.profile-card .profile-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-card h5 {
    color: white;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-card .location {
    color: #c5c5c5;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-card img {
    /* margin-bottom: 10px;
    width: 100%;
    height: 234px; */
    margin-bottom: 10px;
    width: 100%;
    height: 170px;
}

.my-profile-dropdown {
    position: absolute;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    width: 222px;
    left: -196px;
    z-index: 9;
    top: 63px;
    padding: 15px 25px;
    border-radius: 15px;
}

.my-profile-dropdown ul li {
    text-align: left;
}

.my-profile-dropdown img {
    width: 20px;
    height: 20px;
    border-radius: 0;
}

.my-profile-dropdown ul li {
    margin-bottom: 15px;
}

.my-profile-dropdown ul li:last-child {
    margin-bottom: 0;
}

.my-profile-dropdown ul li a {
    display: flex;
    align-items: center;
}

.my-profile-dropdown ul li a>span {
    font-size: 18px;
    padding-left: 10px;
    color: #000;
}

.four_icons ul {
    padding: 0;
    padding-bottom: 10px;
    text-align: center;
}

.four_icons ul li {
    display: inline-block;
    padding: 3px;
}

.four_icons ul li a {
    display: block;
    color: #fff;
    padding: 1px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    border-radius: 50%;
}

.four_icons ul li a>i {
    background: #000;
    display: block;
    padding: 9px 8px;
    border-radius: 50%;
}

.four_icons ul li a:hover i,
.four_icons ul li a.active i {
    color: red;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

.gold_border {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 2px;
    border-radius: 8px;
}

.btn-gold {
    /* background: #1f1f1f;
    padding: 8px 16px;
    width: 100%;
    border-radius: 0;
    color: #EADC8E;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease-in-out; */

    background: #1f1f1f;
    padding: 2px 16px;
    width: 100%;
    border-radius: 8px;
    color: #EADC8E;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.btn-gold:hover {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: #000;
}

.pagination .page-link {
    color: #EADC8E;
    border: 1px solid #EADC8E;
    background: black;
    font-weight: 700;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    line-height: 17px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-item.disabled .page-link {
    background: #919EAB;
    border: 1px solid #919EAB;
    color: #C4CDD5;
}

.pagination .page-link.active,
.pagination .page-link:hover {
    background: #EADC8E;
    color: black;
}

.advance-search-box {
    background: #1f1f1f;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    padding: 20px 23px;
    position: relative;
}

.advance-search-box .form-label {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.advance-search-box .reset {
    position: absolute;
    right: 0;
    top: 13px;
    width: max-content;
    color: #fff;
}

.custom-input {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    color: white;
    border-radius: 10px;
}

.custom-input input::placeholder,
.custom-input select::placeholder {
    color: #ccc;
}

.advance-search-box .custom-input .input-group {
    width: 87%;
    height: 49px;
}

.advance-search-box .custom-input .input-group select {
    height: 100%;
    background: #000;
    border: 0;
    border-radius: 10px 0 0 10px;
    color: #fff;
}

.custom-input input {
    background: #000;
    border: 0;
    height: 49px;
    border-radius: 10px;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-toggle-border {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 10px;
}

.custom-toggle {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    height: 49px;
}

.custom-toggle .btn-toggle {
    background: black;
    color: gold;
    height: 49px;
    border: none;
    padding: 9px 15px;
    transition: 0.3s;
}

.custom-toggle .btn-toggle:hover,
.custom-toggle input:checked+.btn-toggle {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: black;
}


.custom-toggle .btn-toggle .a1 {
    display: none;
    margin: auto;
}

.custom-toggle .btn-toggle .a2 {
    display: block;
    margin: auto;
}

.custom-toggle .btn-toggle:hover .a2,
.custom-toggle input:checked+.btn-toggle .a2 {
    display: none;
    margin: auto;
}

.custom-toggle .btn-toggle:hover .a1,
.custom-toggle input:checked+.btn-toggle .a1 {
    display: block;
}

/* .custom-range {
    width: 100%;
} */

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: url(../images/rectangle.png) repeat-x;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.range-slider {
    position: relative;
    height: 4px;
    background: transparent;
    border-radius: 5px;
    margin-top: 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    background: none;
    pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #007bff;
    cursor: pointer;
    pointer-events: auto;
}

input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #007bff;
    cursor: pointer;
}

.forleftbar {
    width: 49% !important;
    left: 0;
}

.forrightbar {
    width: 49% !important;
    right: 0;
}


.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    cursor: pointer;
}

.custom-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    cursor: pointer;
}


.age-labels {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    margin-top: 15px;
}

.custom-input .input-group input[type="text"] {
    padding: .375rem .75rem;
}

.advance-search-box .custom-icon {
    background: black;
    color: gold;
    border: 0px;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    right: -26px;
    height: 49px;
    width: 36px;
    position: absolute;
}

.advance-search-box input[type="number"] {
    background: #000;
    border-radius: 10px;
    color: #fff;
}

.gold_border_search {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 15px;
    height: 49px;
}

.btn-search {
    background: #1f1f1f;
    padding: 8px 7px;
    width: 100%;
    height: 47px;
    border-radius: 15px;
    color: #EADC8E;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.unread_counter{
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 5px 5px;
    border-radius: 50%;
    color: #000;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 21px;
    letter-spacing: 0;
}

.btn-search:hover {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: #000;
}

.profile-header {
    position: relative;
    /* background: black;
    border-radius: 20px;
    overflow: hidden; */
}

.cover-img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 20px;
}

.uploadcoverimage {
    width: 37px;
    height: 37px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(180deg, rgba(106, 106, 106, 0.8) 0%, rgba(129, 129, 129, 0.2) 100%);
    border: 0.6px solid #dbdbdb;
    bottom: 29px;
    right: 22px;
    position: absolute;
    cursor: pointer;

}

.profile-pic {
    position: absolute;
    bottom: -140px;
    left: 20px;
    width: 198px;
    height: 198px;
    border-radius: 50%;
    background: #fff;
}

.profile-pic img {
    width: 100%;
    height: 198px;
    border: 7px solid black;
}

.edit-icon {
    position: absolute;
    bottom: 22px;
    right: 20px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: black;
    padding: 5px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-info {
    margin-left: 242px;
    padding: 30px 0 0;
    float: left;
}

.profile-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 15px;
}

.profile-info p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.profile-form {
    border-radius: 15px;
    padding: 20px;
    margin-top: 50px;
}

.profile-form label {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

.gradient_border2 {
    position: relative;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 10px;
}

.profile-form .gradient_border2 .input-group {
    width: 100%;
}

.gradient_border2 select {
    background: black;
    color: white;
    padding: 10px;
    border: 0;
    border-radius: 10px;
}

.gradient_border2 select[disabled],
.gradient_border2 input[readonly],
.gradient_border2 textarea[readonly] {
    background: #394349 !important;
}

.custom-input-class {
    background: black;
    color: white;
    padding: 10px;
    border: 0;
    border-radius: 10px;
}

.custom-input-class::placeholder {
    color: #ccc;
    /* Change placeholder color */
    opacity: 1;
    /* Ensure full opacity */
}

.custom-input-class:-ms-input-placeholder {
    color: #ccc;
    ;
}

.custom-input-class::-ms-input-placeholder {
    color: #ccc;
    ;
}

.custom-input::placeholder {
    color: gold;
}

.textarea {
    height: 100px;
    resize: none;
}

.gradient_border2 .input-group {
    border-radius: 10px;
    width: 99.5%;
}

.custom-datepicker {
    background: black;
    border: 0;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.custom-datepicker::placeholder {
    color: gold;
}

/* Custom Calendar Icon */
.profile-form .gradient_border2 .input-group .custom-icon {
    background: #000;
    border: 0;
    padding: 12px 10px;
    color: #EADC8E;
    font-size: 20px;
    position: absolute;
    right: 2px;
    top: 1px;
    z-index: 999;
    border-radius: 0 10px 10px 0;
}

.gradient_border3 {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 15px;
    margin-top: 30px;
    float: right;
}

.btn-more {
    border-radius: 15px;
    border: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 30px;
    background: #000;
    color: #EADC8E;
}

.btn-more:hover {
    color: #000;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 56px;
    right: 20px;
    background: #EADC8E;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    width: 207px;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    z-index: 9;
}

.profile-dropdown a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
}

/* .profile-dropdown a:hover {
    color:#171717;
} */

/* .profile-dropdown a:hover .fa-light{
  color:#00B5FF;
} */

.profile-dropdown-show {
    display: block !important;
}

.modal-dialog {
    max-width: 699px;
}

.modal-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 12%, rgba(234, 220, 142, 0.5) 51%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid #EADC8E;
    backdrop-filter: blur(24px);
    border-top: 0;
}

.modal-header {
    border-bottom: 1px solid #EADC8E;
}

.modal-title {
    color: #EADC8E;
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}

.modal-body {
    padding: 30px 50px;
}

.modal-body p {
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 24px;
}

.upload-box {
    background: #131313;
    border-radius: 11px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 19px;
    cursor: pointer;
}

.upload-preview {
    width: 144px;
    height: 144px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.drag-text {
    margin: 10px 0 0 !important;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-browse {
    border: 1px solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 15px;
    padding: 10px 37px;
    display: flex;
    margin: 0 auto 19px;
    transition: 0.3s all ease-in-out;
}

.btn-browse:hover {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
}

.gradient_border4 {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 15px;
    width: max-content;
    margin: auto;
}

.btn-saveimage {
    border-radius: 15px;
    border: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 47px;
    background: #000;
    color: #EADC8E;
    width: auto;
}

.btn-close {
    --bs-btn-close-bg: transparent;
    --bs-btn-close-opacity: 1;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    width: 25px;
    height: 25px;
}

.btn-close:foxus {
    box-shadow: none;
}

.notification {
    background: #000;
    border-radius: 10px;
    padding: 15px;
    margin: 18px 0;
    transition: 0.3s;
    min-height: 114px;
}

.notification:hover {
    background: #0e0d0d;
}

.notification-icon {
    font-size: 24px;
    color: #EADC8E;
    margin-right: 10px;
}

.textpart strong {
    font-weight: 700;
    font-size: 17px;
    color: #EADC8E;
    margin-right: 15px;
}

.notification-time {
    color: #EADC8E;
    font-size: 16px;
    font-weight: 400;
}

.textpart p {
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
}

.notification-close {
    color: #EADC8E;
    cursor: pointer;
    background: #333;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.notification-close:hover {
    color: #f00;
}

#notificationModal .modal-content,
#orderHistoryModal .modal-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(24px)
}

#notificationModal .modal-header,
#orderHistoryModal .modal-header {
    background: #000;
}


.stepper {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    cursor: pointer;
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #9c9c9c;
    width: 100%;
    top: 26px;
    left: -96%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #9c9c9c;
    width: 100%;
    top: 26px;
    left: 10%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ccc;
    /* margin-bottom: 6px; */
    font-size: 20px;
    font-weight: 700;
}

.stepper-item .step-container {
    background: transparent;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0px solid #94632A;
    position: relative;
    z-index: 9;
}

.stepper-item.active .step-container {
    background: #000;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #94632A;
    position: relative;
    z-index: 9;
}

.stepper-item.active .step-counter {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: #000;
}

.stepper-item.completed .step-counter {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 0;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}

.stepper-item:last-child::after {
    content: none;
}

.step-name {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
    text-transform: capitalize;
}

.btn-next,
.btn-prev {
    background: #f0c808;
    color: #111;
    font-weight: bold;
}

.step-content {
    display: none;
    margin-top: 80px;
}

.step-content.active {
    display: block;
}

.package-card {
    background: #eadc8e;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.package-card h5 {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 10px;
    margin: 0;
}

.package-card p {
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 20px;
    color: #000;
}

.package-card h3 {
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 10px;
    color: #000;
}

.price {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000;
    padding: 10px 0 0 !important;
}

.best-pick {
    position: relative;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 242px;
}

.package-card.best-pick h4 {
    font-weight: 700;
    font-size: 17.5px;
}

.package-card.best-pick+p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

.package-card.best-pick p {
    font-size: 11px;
}

.package-card.best-pick h3 {
    font-size: 26.5px;
}

.package-card.best-pick .price {
    font-size: 35.2px;
}

.package-card.best-pick img {
    position: absolute;
    top: -9px;
    left: -12px;
}

.buy-coins-modal-hd+hr {
    border-bottom: 1px solid rgb(234, 220, 142);
}

.buy-coins-modal-hd p {
    margin-bottom: 15px;
}

.buy-coins-head {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.buy-coins-head+p {
    font-weight: 700;
    font-size: 24px;
    color: #EADC8E;
}

.payment h2 {
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.payment input {
    display: none;
}

.payment label {
    position: relative;
    color: #000;
    background-color: #EADC8E;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 15px 50px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 15px;
}

.payment label img {
    margin-right: 25px;
    width: 51px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 10 / 8;
}

.payment input:checked+label {
    background-color: #2fcc71;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

.confirmation label {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: capitalize;
    padding-left: 12px;
}

.confirmation input::placeholder {
    color: #fff;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.confirmation input,
.confirmation input:focus {
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #fff;
    padding: 8px 30px 8px 12px;
    border-radius: 0;
    color: #fff;
    width: 100%;
}

.cvv-container {
    display: flex;
    align-items: center;
}

.cvv-container .cvv-input {
    flex: 1;
}

.cvv-icon {
    margin-left: 10px;
    cursor: pointer;
}

.message-sidebar {
    max-width: 344px;
}

.chat-list-wrap {
    overflow-y: auto;
    width: 25%;
    flex: 0 0 auto;
    max-height: 79vh;
}

.messagebox-border {
    position: relative;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 107px;
}

.chat-panel {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #1f1f1f;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    height: 100%;
    margin-bottom: 10px;
    height: 107px;
    gap: 10px;
}

.chat-panel .image-box {
    width: 68px;
    height: 68px;
    border-radius: 15px;
    background: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 15px; */
    position: relative;
}

.sms-count {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    bottom: -8px;
    right: -4px;
}

.message-item:hover,
.message-item.active {
    background: #EADC8E;
    color: black;
}

.chat-panel .image-box img {
    width: 68px;
    height: 68px;
    border-radius: 15px;
}

.chat-panel .text-box h6 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 7px;
}

.chat-panel .text-box p {
    max-width: 124px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    margin-bottom: 7px;
    line-height: 19px;
}

.chat-panel .delete-chat-inbox {
    border-radius: 50%;
    border: 0;
    height: 22px;
    width: 22px;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

.message-content h6 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 7px;
}

.message-item:hover .message-content h6,
.message-item.active .message-content h6,
.message-item:hover .message-content p,
.message-item.active .message-content p {
    color: #000;
}

.message-content p {
    font-size: 16px;
    font-weight: 400;
    color: #eaeaea;
    margin-bottom: 7px;
}

.chat-panel .text-box.short-message {
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    margin-bottom: 0px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.unread-count {
    background: #ededed;
    width: 28px;
    height: 28px;
    color: #000;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-window {
    background: #1f1f1f;
    border: 1px solid #c7c7c7;
    border-radius: 15px;
    position: relative;
    width: calc(100% - 25%);
    flex: 0 0 auto;
    height: 100%;
}

.onlychatcontent {
    height: calc(100vh - 109px);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 15px;
    border-radius: 10px;
}

.chat-header .chat-person-image {
    background: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 8px; */
    overflow: hidden;
}

.chat-header h5 {
    display: flex;
    flex-direction: column;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    position: relative;
}

.chat-header h5 .active-status {
    padding-top: 6px;
    font-weight: 400;
    font-size: 16px;
    padding-left: 15px;
}

.chat-header h5 .active-status span {
    content: 'â—';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #59CC5F;
    top: 26px;
    left: 0;
    border: 1px solid #fff;
}

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

.message {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.chat-msg {
    display: flex;
    padding: 0 20px 45px;
    position: relative;
}

.chat-msg-profile {
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: -20px;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00B5FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caht-start-date {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.caht-start-date p {
    padding: 0 15px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.chat-msg-date2 {
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    color: #dadada;
}

.seen {
    position: absolute;
    right: 0;
    bottom: -2px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    color: #dadada;
}

.send-message .text-chat-wrap {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: end;
}

.rply-message,
.send-message {
    margin-bottom: 25px;
}

.icon-image {
    width: 250px;
    height: auto;
}

/* .icon-image img{
    width:100%;
    height:auto;
} */

.icon-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.icon-image img.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 50%;
    max-height: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.rply-message .text-chat-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: start;
}

.rply-message .text-chat-wrap .icon {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.rply-message .text-chat-wrap .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.text-chat-wrap .text {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 12px 12px 12px 0;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.text-chat-wrap .text+.text {
    margin-top: 10px;
}

.chat-msg {
    display: flex;
    padding: 15px 0px 20px;
}

.owner {
    flex-direction: row-reverse;
}

.chat-msg-img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.owner .chat-msg-date {
    left: auto;
    right: calc(100% + 12px);
}

.owner .chat-msg-content {
    margin-left: 0;
    margin-right: 0;
    align-items: flex-end;
}

.owner .chat-msg-text {
    background-color: #F8F8F8;
    color: #000;
    border-radius: 12px 12px 0 12px;
    font-weight: 700;
    font-size: 16px;
}

.chat-msg-text+.chat-msg-text {
    margin-top: 10px;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    position: absolute;
    bottom: 20px;
    width: 97%;
    gap: 15px;
}

.chat-input-container {
    position: relative;
    width: 100%;
    background: #d9d9d9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

.chat-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    outline: none;
    font-size: 16px;
    color: black;
}

/* .chat-footer input {
            flex-grow: 1;
            margin-right: 10px;
            background: #D9D9D9;
            height:46px;
            border-radius:15px;
        } */

.emoji-icon {
    font-size: 18px;
    color: gray;
    margin-right: 10px;
}

.send-btn {
    background: transparent;
    border: none;
    font-size: 23px;
    color: black;
    cursor: pointer;
    transition: color 0.3s;
}

.send-btn:hover {
    color: #333;
}

.chat-footer .btn-kiss {
    background: #fafafa;
    width: 46px;
    height: 46px;
    color: #FF0000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 15px;
    font-size: 20px;
}

.chat-footer .btn-kiss .fa-lips {
    transform: rotate(-27deg);
}

.date-separator {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: gray;
    opacity: 0.7;
}

.date-text {
    padding: 0 15px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.profile-sidebar {
    color: white;
    width: 23%;
    flex: 0 0 auto;
}


.profile-card2 .goldenBorder {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    padding: 1px;
    border-radius: 15px;
}

.profile-img {
    width: 100%;
    height: 263px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card2 .name-address {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.profile-card2 .name-address h5 {
    font-weight: 700;
    font-size: 21px;
}

.profile-card2 .name-address p {
    font-weight: 400;
    font-size: 16px;
}

.brief h2 {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.brief div {
    text-transform: capitalize;
}

.personal-info div span {
    display: inline-block;
}

.personal-info div span:first-child {
    width: 70%;
}

.personal-info div span:nth-child(2) {
    width: 10%;
}

.personal-info div span:last-child {
    width: 20%;
    text-align: right;
}


.escort-profile-bg {
    background: #1f1f1f;
    border: 1px solid #c7c7c7;
    border-radius: 15px;
}

.escort-profile-bg .back {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
}

.escort_img img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
}

.escort_detail .details .escort_name {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.escort_detail .details .escort_age,
.escort_detail .details .escort_location {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.escort_detail .details .ageandlocation {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.escort_detail .details p {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.escort_detail .btn-more {
    padding: 7px 30px;
}

/* .brief {
    flex: 0 0 auto;
    width: 25%;
} */

.faq h1 {
    font-weight: 700;
    font-size: 26px;
    margin-top: 35px;
    color: #fff;
}

.faq h1 span {
    text-transform: uppercase;
}

.accordion-button::after {
    background-image: url(../images/minus-icon.svg);
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/plus-icon.png);
}

.accordion-button::after {
    transition: all 0.5s;
}

.faq .accordion-item {
    margin-bottom: 12px;
    background: #000;
    border: 0;
    border-radius: 15px;
}

.faq .accordion-item .accordion-header {
    background: #000;
    border-radius: 15px;
}

.faq .accordion-item .accordion-header .accordion-button {
    background: #000;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    color: #EADC8E;
}

.faq .accordion-item .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.faq .accordion-item .accordion-body {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.faq .accordion-item .accordion-header .accordion-button {
    border-radius: 15px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.contact h1,
.terms h1 {
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.custom-select-class {
    background: black;
    color: white;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.custom-select-class select {
    background: #000;
    border: 0;
}

.custom-select-class::after,
.dropdown-select::after {
    --size: 0.4rem;
    position: absolute;
    content: "";
    right: 1rem;
    pointer-events: none;
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid #EADC8E;
    top: 46%;
}

.dropdown-select {
    position: relative;
    width: 100%;
    margin: 0;
    font-size: 1rem;
    height: 46px;
    padding: 10px;
    color: #62717a;
    background: #f2f2f2;
    /* Fallback for IE 8 */
    background: rgba(0, 0, 0, 0) !important;
    /* "transparent" doesn't work with Opera */
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
}

.dropdown-select:focus {
    z-index: 3;
    width: 100%;
    color: #394349;
    outline: 2px solid #49aff2;
    outline: 2px solid -webkit-focus-ring-color;
    outline-offset: -2px;
}

.dropdown-select>option {
    margin: 3px;
    padding: 6px 8px;
    text-shadow: none;
    background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
}

.dropdown-dark {
    background: black;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.dropdown-dark .dropdown-select {
    color: #aaa;
    background: #444;
    /* Fallback for IE 8 */
}

.dropdown-dark .dropdown-select:focus {
    color: #ccc;
    border-radius: 10px;
}

.dropdown-dark .dropdown-select>option {
    background: #444;
}

textarea {
    resize: none;
}

.terms h2 {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Adobe Clean', sans-serif;
}

.terms p,
.terms ul li,
.terms ol li {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Adobe Clean', sans-serif;
}

.terms ul ,
.terms ol {
    padding-left: 40px!important;
    list-style: disc !important;
}


/* css added at the time of development */

.iti {
    width: 100%;
}

.iti__selected-dial-code {
    color: #fff;
}

.mycustommobilenumber {
    width: 35%;
}

.profile-form input[type="date"] {
    background: #000;
    color: #fff;
    border: 0;
    height: 46px;
    border-radius: 10px !important;
}

.gradient_border2 .input-group-text {
    border-radius: 0 10px 10px 0;
    line-height: 1.99 !important;
    border: 0 !important;
    position: absolute;
    right: 0;
    background-color: #000;
    color: #EADC8E;
    z-index: 9;
}

.gradient_border2 .input-group,
.gradient_border2 .input-group input[type="number"] {
    border-radius: 10px !important;
}

.customclass_forprofilemodal .modal-dialog {
    max-width: 860px;
}

.brief-personal-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brief-personal-info div {
    flex-basis: 40%;
    display: flex;
    flex-grow: 1;
}

.brief-personal-info div span:first-child {
    width: 33%;
    display: flex;
}

.brief-personal-info div span:nth-child(2) {
    width: 10%;
    display: flex;
    justify-content: center;
}

.brief-personal-info div span:last-child {
    width: 40%;
}

.purchase_coin_btn {
    font-weight: bold;
    width: 100%;
    padding: 11px 22px;
    border-radius: 15px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    transition: all 0.3s ease-in-out;
    border: 0;
}

.purchase_coin_btn:hover {
    background: linear-gradient(to right, rgba(234, 220, 142, 1) 0%, rgba(151, 104, 46, 1) 50%, rgba(234, 220, 142, 1) 100%);
    color: #fff;
}

.coin_left {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    transition: all 0.3s ease-in-out;
    padding: 6px 14px;
    border-radius: 15px;
    margin-right: 15px;
}

.coin_left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.head_buy {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    transition: all 0.3s ease-in-out;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 16px !important;
    font-family: 'Adobe Clean', sans-serif;
    color: #000 !important;
}

.head_homebtn {
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    transition: all 0.3s ease-in-out;
    padding: 6px 19px;
    border-radius: 15px;
    font-size: 16px !important;
    font-family: 'Adobe Clean', sans-serif;
    color: #000 !important;
}

.head_homebtn img {
    width: 18px;
}

.innerpage-lang-box select {
    width: 100px;
    padding: 4px 8px;
    border-radius: 15px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

.innerpage-lang-box select select:focus-visible {
    outline: 0;
}

.customdob {
    width: 35%;
}

.escort-avatar {
    text-align: center;
}

.escort-avatar img {
    border-radius: 50%;
    border: 5px solid #EADC8E;
    width: 247px;
    height: 247px;
    object-fit: cover;
}

.escort-data {
    color: #fff;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}

.escort-data h5 {
    font-size: 30px;
    font-weight: 700;
    padding: 10px 15px;
    text-align: center;
}

.escort-data p {
    margin: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;

}

.escort-data ul li {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
}

.escort-data ul li:last-child {
    border: 0;
}

.mycustom-escort-datamodal .modal-dialog {
    max-width: 500px;
}

#messageform {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 64px;
    max-height: 68px;
}

#messageform textarea {
    border: 0;
    max-height: 53px;
}

#messageform .chat-btn-block {
    display: flex;
    align-items: center;
}

#messageform .chat-btn-block .btn {
    border: 0;
    font-size: 23px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    margin: 0 5px;
    padding: 0px 10px;
    border-radius: 50%;
    width: 47px;
    height: 47px;
}

.site-card-main .table tr {
    border: 1px solid #ccc;
}

.site-card-main .table .red-button {
    width: 94%;
}

.inner-faq-bg {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(234, 220, 142, 0.6) 50%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px 30px;
}

.inner-faq-bg .accordion-item {
    border: 1px solid #eaeaea;
}

.onlyforh3 {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 15px;
    font-family: 'Adobe Clean', sans-serif;
    text-transform: capitalize;
}

.btn-close.budy-coins-md-close {
    position: absolute;
    right: 9px;
    top: 13px;
    background: #000;
    border-radius: 50%;
}



#chatbot {
    position: fixed;
    z-index: 999999;
    right: 33px;
    bottom: 25px;
    transition: 0.3s all
}

#chatbot .chatBot_icon {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #EADC8E;
    cursor: pointer;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);

}

#chatbot .chatBot_icon i {
    font-size: 26px;
    color: #1f1f1f;
}

#chatbot .chat_area {
    position: absolute;
    width: 436px;
    height: 586px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #c7c7c7;
    backdrop-filter: blur(12px);
    border-radius: 25px 25px 10px 25px;
    right: 70px;
    bottom: 25px;
    overflow: hidden;
    transition: 0.3s all;
    transform-origin: bottom right;
    transform: scale(0)
}

#chatbot .chat_area.show {
    transform: scale(1);
}

.chat_area_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
}

#chatbot .chat_area.show~.chat_area_overlay {
    display: block;
}

#chatbot .chat_area .chat_head {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 18px 0;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
}

#chatbot .chat_area .chat_head h4 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-family: 'Adobe Clean', sans-serif;
    margin: 0
}

#chatbot .chat_area .chat_head h4 span {
    text-transform: capitalize;
    color: #ff0000
}

#chatbot .chat_area .chat_head span.close_chat {
    position: absolute;
    right: 26.55px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

#chatbot .chat_area .chat_body {
    padding: 24px 6px;
    height: calc(100% - 59px);
    background: #1f1f1f;
}

#chatbot .chat_area .chat_body .all_chats {
    height: calc(100% - calc(46px + 24px));
    overflow-y: auto;
    padding: 24px 24px 0 24px;
    margin-bottom: 24px
}

#chatbot .chat_area .chat_body .all_chats .user_end {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 8px
}

#chatbot .chat_area .chat_body .all_chats .user_end small{
    color:#fff;
}

#chatbot .chat_area .chat_body .all_chats .user_end span {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #3a3a3a;
    background: #F8F8F8;
    border-radius: 15px 15px 0px 15px;
    padding: 11px 16px;
    margin: 1px 0
}

#chatbot .chat_area .chat_body .all_chats .user_end span img{
    height:100% !important;
}

#chatbot .chat_area .chat_body .all_chats .bot_end {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start
}

#chatbot .chat_area .chat_body .all_chats .bot_end span {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #3a3a3a;
    background: #F8F8F8;
    border-radius: 15px 15px 15px 0;
    padding: 16px 20px;
    margin: 1px 0
}

#chatbot .chat_area .chat_body .send_chat_area {
    padding: 0 24px
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat {
    height: 46px;
    background: #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat a {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat input {
    background-color: #D9D9D9 !important;
    height: 98%;
    border: 0;
    width: calc(100% - 42px);
    border-radius: 10px 0 0 10px;
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat input:focus-visible {
    outline: none
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat button {
    height: 43px;
    border: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 40px;
    border-radius: 0 10px 10px 0;
    background:#000;
    margin-right:1px;
}

#chatbot .chat_area .chat_body .send_chat_area .send_chat button img{
    width:24px;
}

.escortModal .modal-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    padding: 0;
    margin: 0;
}

.escortModal .modal-title span {
    color: #e20612;
}

.escortModal .tham-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff7b82;
    margin: 0 auto;
}

.escortModal .tham-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.desc {
    padding: 10px 0 0;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.desc h5 {
    font-size: 24px;
    line-height: 1.2;
    color: #e20612;
    font-weight: 600;
    padding: 0 15px;
    margin: 0 0 10px;
}

.desc p {
    font-size: 18px;
    line-height: 1.2;
    color: #363636;
    padding: 0 15px;
    margin: 0 0 20px;
}

.desc ul li {
    padding: 5px 15px;
    margin: 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.desc ul li:last-child {
    border-bottom: none;
}

#file-preview-image{
    max-width: 100px;
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    top: -106px;
    right: 30px;
    border-radius: 6px;
}

#remove-file-btn{
    display: flex !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    font-size: 11.5px;
    align-items: center !important;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: -112px;
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%) !important;
}

.plan{
    background: linear-gradient(to right, rgba(148, 99, 42, 1) 0%, rgba(234, 220, 142, 1) 50%, rgba(151, 104, 46, 1) 100%);
    border-radius:6px;
    padding:12px 15px;
    display: flex;
    text-transform: uppercase;
    color: #fff;
    margin-bottom:15px;
    justify-content: space-between;
    align-items: center;
}

.plan .plan-feature{
    display:flex;
    flex-direction: column;
    text-align: left;
    width:33.3%;
    font-size: 15px;
}

.plan .plan-name{
    width:33.3%;
    text-align: left;  
    font-size: 20px;
    font-weight: 700;
}

.plan .plan-price{
    width:33.3%; 
    text-align: right;
    font-size: 18px; 
}

.topup_modal .modal-header {
	display: flex;
    flex-wrap: wrap;
}
 
.topup_modal .modal-header .logo_modal {
	width: 100px;
    margin: auto;
}
 
.topup_modal .modal-header .logo_modal img {
	width: 100%;
}
 
.topup_modal .modal-header .logo_modal_content {
	width: 100%;
    font-size: 13px;
    line-height: 140%;
    color: #fff;
    text-align: center;
}
 
.topup_modal .modal-header .btn-close {
	width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
}
 
 


/* .site-card-main .table tr th:first-child{
    border-right:0;
} */

/* .forbodyborder{
    background: linear-gradient(to bottom,  #94632a 0%,#eadc8e 50%,#97682e 100%);
    padding-left: 2px;
    padding-right: 2px;
}

.blackbody{
    background: #000;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top:1.4rem;
    padding-bottom:1.4rem;
    margin: auto;
} */

@media screen and (max-width:599px){
    #chatbot .chat_area{width:375px;height:560px;}
}

@media screen and (max-width:480px){
    #chatbot .chat_area{width:339px;height:510px;}
}

@media screen and (max-width:430px){
    #chatbot{right:1px;}
}

@media screen and (max-width:393px){
    #chatbot .chat_area{width:287px;height:473px;}
}

@media screen and (max-width:360px){
    #chatbot .chat_area{width:260px;height:473px;}
}
