@font-face {
    font-family: 'ufTitle';
    src: url('../fonts/UKIJEs.ttf') format('truetype');
}

@font-face {
    font-family: 'ufBody';
    src: url('../fonts/UKIJTuT.ttf') format('truetype');
}
:root {
	--app-color: #615dfa;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}
.ltr {
	direction: ltr;
	text-align: left;
}
.rtl {
	direction: rtl;
	text-align: right;
}
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: #000;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	font-family: ufTitle;
}
.wrapper .container {
	max-width: 1710px;
}
body {
	font-family: ufBody;
	font-size: 15px;
	background: #eff4fb;
	color: #000;
	direction: rtl;
}
.container-fh {
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login {
	width: 450px;
}

.top {
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
	height: 70px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	display: flex;
	z-index: 99;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0 20px;
}
.top .search-input {
	width: 320px;
	background: #f0f0f0 url('../images/search_dark.png') left 10px center no-repeat;
	background-size: 20px;
	border: 0;
	padding: 10px 20px;
	border-radius: 8px;
	flex-grow: 1
}

.top .profile-menu {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: relative;
}
.top .profile-menu img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50%;
}
.top .profile-menu .profile-arrow {
	width: 15px;
	height: 15px;
	font-size: 10px;
	text-align: center;
	line-height: 19px;
	position: absolute;
	left: -2px;
	bottom: 0px;
	z-index: 2;
	background: #f0f0f0;
	border-radius: 50%;
	color: #555;
	padding: 0;
	margin: 0;
}
.top .logo {
	width: 60px;
}
.top .start {
	display: flex;
	align-items: center;
	gap: 10px;
}
.top .top-icons {
	display: flex;
	gap: 10px;
}
.top .top-icons i{
	background: #f0f0f0;
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	color: #333;
	border-radius: 50%;
}
.top .top-menu {
	display: flex;
	gap: 10px;
	align-items: center;
}
.header {
	background-size: cover !important;
	background-position: bottom center !important;
	background-repeat: no-repeat !important;
	border-radius: 8px;
    padding: 180px 35px 35px 50px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    color: #fff;
}
.header .media {
	display: flex;
}
.header .media .item-img {
	width: 125px;
	height: 125px;
	position: relative;
    margin-left: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
    display: inline-block;
}
.header .media .item-img img {
    border-radius: 50%;
    max-width: 115px;
    height: 115px;
    object-fit: cover;
}
.header .media .item-img::after {
	content: url('../images/avatar_shape.png');
	position: absolute;
	top: -9px;
	left: -8px;
}
.header .media .media-body {
    position: relative;
    flex: 1;
}

.header .media .item-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    position: relative;
    display: inline-block;
}
.header .media .item-subtitle {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.header .media .item-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.header .media .item-social {
	display: flex;
	gap: 6px;
}
.header .media .item-social a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-size: cover !important;
}
.header .media .user-meta {
	display: flex;
	gap: 20px;
	font-weight: normal;
}

@media (max-width: 992px) {
	.header .media .item-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.header .media .item-social {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.header {
	    padding: 15px;
	}
	.header .media {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.header .media .item-img {
	    margin-left: unset;
	    margin-bottom: 20px;
	}
	.header .media .item-subtitle {
	    margin-bottom: 20px;
	}
	.header .media .item-bottom {
		align-items: center;
	}
	.header .media .user-meta {
		justify-content: space-evenly;
		width: 100%;
	}
	.header .media .media-body {
		min-width: 100%;
	}
	.header .media .item-social {
		flex-wrap: wrap;
	}
	.header .media .item-social a {
	    height: 32px;
	    width: 32px;
	}
	.header .media .item-img::after {
		content: '';
	}

	.header .media .item-img {
		width: 100px;
		height: 100px;
		padding: 3px;
		border:  2px solid #fff;
		background: transparent;
	}
	.header .media .item-img img {
	    width: 100%;
	    height: 100%;
	    object-fit: fill;
	}
}

.sb-card-title {
	margin-bottom: 10px;
	color: #000;
}
.sb-card-title::after {
	content: '';
	display: block;
	height: 3px;
	width: 40px;
	margin-top: 4px;
	background: var(--app-color);
	border-radius: 12px;
}

.sb-about-list {
	margin-top: 20px;
	font-size: 13px;
}
.sb-about-list li {
	margin-bottom: 10px;
	display: flex;
}
.sb-about-list-title {
	margin-left: 20px;
	width: 100px;
	display: inline-block;
}
.sb-about-list-content {
	font-family: sans-serif;
}
.sb-about-list-social {

}

.sb-about-list-social {
	display: inline-flex;
	gap: 6px;
}
.sb-about-list-social a {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-size: cover !important;
}
.sb-gallery {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
}
.sb-badge {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
    flex-wrap: wrap;

}

.textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    max-height: 200px;
    min-height: 40px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.img-container {
    max-width: 100%;
    text-align: center;
}

#cropperImage {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.min-preview-img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	border:  1px solid #f0f0f0;
}

.notyf__wrapper {
	direction: ltr;
}
.datepicker table tr td {
	padding: 6px;
	font-family: sans-serif;
}

.cursor {
	cursor: pointer;
}
.post-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.post-content-img {
	width: 180px;
	height: 140px;
	object-fit: cover;
	border-radius: 8px;
}
.audio-content-img {
	width: 200px;
	height: 140px;
	object-fit: cover;
	border-radius: 8px;
}
.post-video-content {
	position: relative;
}
.post-video-content video,
.post-video-content iframe {
	width: 100%;
	height: 320px;
}
.post-content-top {
	text-align: center;
	padding: 20px 10px;
	border-bottom: 1px solid #f0f0f0;
}
.custom-card-header {
	padding: 25px;
	border-bottom: 1px solid #f0f0f0;
}

.divider {
	height: 1px;
	border-bottom: 1px dashed #f0f0f0;
}

.select-image-holder {
	background: #CECDFF;
	border: 1px solid #615dfa;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 160px;
}
.select-image-holder img {
	width: 64px;
}
.image-holder {
	position: relative;
	background: #f0f0f0;
	border: 1px solid #615dfa;
	height: 160px;
}
.image-holder img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.remove-img {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 10px;
	top: 10px;
	content: url(../images/remove.png);
	cursor: pointer;
}
.user-gallery img {
	width: 100%;
	height: 200px;
	max-width: 260px;
	object-fit: cover;
	border-radius: 8px;
}
.footer {
	font-family: sans-serif;
	font-size: 13px;
	text-align: center;
	color: #999;
	padding: 10px;
}
.post-header {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
.post-header-profile {
	display: flex;
	gap: 15px;
	align-content: center;
	align-items: center;
}
.post-header-profile-img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50%;
	border:  3px solid #fff;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	box-shadow: 0 0 1px 1px #ccc;
}
.post-header-profile-name {

}

.post-profile-date {
	font-family: sans-serif;
	font-size: 11px;
	color: #999;
}
.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/*BS*/
.form-control,
.form-select {
	height: 38px;
}
.form-control::placeholder {
	font-size: 13px;
	text-align: right;
	direction: rtl;
	color: #999;
}
.container {
	max-width: 1170px;
}
.card {
	border: 0;
	box-shadow: -1px 1px 4px rgba(0,0,0,0.04);
}
.card-body {
	padding: 25px;
}

.form-tab .nav {
    border-bottom: 1px solid #f0f0f0;
}
.form-tab .nav-pills .nav-link {
    border-radius: unset;
    border-left: 1px solid #f0f0f0;
}
.form-tab .nav-pills .nav-link:last-child  {
    border-left: 0;
}

.form-tab .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--app-color);
    background: transparent;
    border-bottom-color: var(--app-color);
}

.form-tab .nav-link {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: normal;
    color: #777;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
}
.dropdown-menu .dropdown-item:active {
	color: var(--app-color);
}
.dropdown-menu {
	border: 0;
	border-radius: 4px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	padding: 4px;
}
.dropdown-menu .dropdown-item {
	padding: 10px 16px;
	margin: 0;
	display: block;
	border-bottom: 1px solid #f0f0f0;
	background: transparent !important;
	border-radius: 4px;
}
.dropdown-menu .dropdown-item.last {
	border-bottom: 0 !important;
}
.dropdown-menu .dropdown-item:hover {
	background: #f0f0f0 !important;
}
.dropdown-menu .dropdown-item i {
	width: 22px !important;
	display: inline-block;
}
.form-label {
	display: block;
	margin-bottom: .2rem;
}
.ql-toolbar {
	direction: ltr;
}
.ql-direction-rtl,
.ql-blank {
	direction: rtl;
	text-align: right !important;
}