.main-content-wrapper {
	display: flex;
	flex-direction: column;
}
.page-header {
    gap:20px;
    padding:10px 15px;
}
.page-header h5 {
	margin: 0;
	font-weight: bold;
	font-size: 18px;
}
.back-action {
    display:flex;
    cursor:pointer;
}
.page-header .header-title {
	flex-direction: column;
	align-items: start;
	gap: 0px;
}
.header-title span {
	font-size: 14px;
	color: var(--detailColor);
	direction: ltr;
}
.search-box input::placeholder {
    color: var(--textColor);
}
.search-box {
	background: var(--hoverColor);
	display: flex;
	align-items: center;
	border-radius: 10px;
	padding: 2px 20px;
}
.search-box .search-icon , .item-arrow, .item-icon {
    display:flex;
}
.search-box input {
	border: none;
	outline: none;
	background: unset;
	padding: 8px 10px;
	color: var(--textColor);
}
.search-icon svg {
	width: 22px;
	height: 22px;
}
.settings-wrapper {
	padding: 0 15px 15px;
	flex: auto;
}
.setting-item {
	/*display: grid;*/
	grid-template-columns: 25px auto 25px;
	align-items: center;
	gap: 20px;
	cursor:pointer;
}
.item-icon svg {
	width: 25px;
	height: 25px;
}
.item-arrow svg {
	width: 22px;
	height: 22px;
}
.settings-list {
	margin-top: 20px;
	display: grid;
	gap: 20px;
}
.item-detail {
	display: grid;
	gap: 10px;
}
.item-detail > * {
	margin: 0;
}
.item-detail p {
	color: var(--detailColor);
	font-size: 14px;
	text-align:right;
}
/*.main-content-wrapper .footer {*/
/*	position: absolute;*/
/*}*/
.setting {
    display:none;
}
.setting.active {
    display:revert;
}

/** pwa setting **/
.thumbnail-wrapper {
	display: flex;
	justify-content: center;
	position: relative;
}
.thumbnail-wrapper .banner-image {
	max-width: 360px;
	width: 100%;
}
.thumbnail-wrapper .logo-image {
	position: absolute;
	width: 45px;
	bottom: 45px;
	left: 0;
	right: 80px;
	margin: 0 auto;
}
.install-detail {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}
.install-detail > * {
	margin: 0;
	font-size: 14px;
}
.pwa-warning {
	display: flex;
	align-items: center;
}
.pwa-warning img {
	width: 20px;
	margin: 0 5px;
}
.install-detail h3 {
	font-size: 25px;
	font-weight: bold;
}
.button.install {
    border-radius: 10px;
    outline: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    font-weight: bold;
    color: var(--textColorWhite);
    font-size: 14px;
    display: flex;
    justify-content: center;
    height: 42.6px;
}
.setting-item[data-display="true"] {
    display:grid;
}
.setting-item[data-display="false"] {
    display:none;
}
.search-result {
	position: absolute;
	left: 0;
	right: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	top: 0;
	bottom: 0;
	z-index: -1;
	justify-content: center;
}
.username-settings form, .password-settings form {
	display: grid;
	gap: 30px;
}
.username-settings form input {
    direction:ltr;
}
#save-username, #change-password {
	justify-self: end;
}
.settings-wrapper .button.disable {
	background: #d5dce1;
	color: #292e32;
	opacity: 0.5;
	pointer-events: none;
}
.settings-wrapper .button {
	background: var(--primary);
	color: var(--textColorWhite);
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 10px 25px;
	font-weight: bold;
}
.limit-count {
    margin-top: 5px;
    display: block;
    font-size: 14px;
}
.result-icon {
	position: absolute;
	top: 17px;
	align-items: center;
	right: 15px;
	display: none;
	background: var(--bg-color);
}
.check-message {
    display:none;
}
.result-icon svg {
	width: 20px;
	height: 20px;
}
.no-padding {
    padding:0;
}
.no-margin {
    margin:0 !important;
}
/** edit profile style **/
.profile-media {
	position: relative;
}
.profile-media .cover-image {
	width: 100%;
	object-fit: cover;
}
.profile-media .profile-image {
	border-radius: 50%;
}
div.profile-image {
	font-weight: bold;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}
.cover-wrapper {
    display:flex;
    position:relative;
}
.cover-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	background-image: url('https://ghodsnama.com/wp-content/uploads/2025/04/camera.svg');
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.avatar-wrapper {
	position: relative;
	height: 70px;
	width: 70px;
	right: 15px;
	bottom: 30px;
}
.avatar-wrapper::before {
	content: '';
	position: absolute;
	width: 70px;
	height: 70px;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	border-radius: 50%;
	cursor: pointer;
	background-image: url('https://ghodsnama.com/wp-content/uploads/2025/04/camera.svg');
	background-repeat: no-repeat;
	background-position: center;
}
.account-detail {
	padding: 0px 15px 15px 15px;
	display: grid;
	gap: 25px;
}
.account-detail input[type="submit"] {
	background: var(--primary);
	color: var(--textColorWhite);
	border-radius: 10px;
	padding: 10px 20px;
	border: none;
	outline: none;
	width: fit-content;
	font-weight: bold;
}
/** edit profile style **/
/** accessibility display and language settings **/
.languages-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.language-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	padding:15px 0 !important;
}
.language-item input {
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
}
.languages-wrapper .button {
	align-self: end;
	background: var(--primary);
	padding: 10px 20px;
}
.theme-wrapper, .layout-wrapper {
	margin-top: 30px;
}
.theme-options, .layout-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	background: var(--hoverColor);
	padding: 20px;
	border-radius: 15px;
}
.theme-options .option-button {
    background-color: var(--textColorWhite);
	outline: none;
	border: 5px solid #fff;
	border-radius: 15px;
	color: rgb(82, 100, 112);
	padding: 15px 15px;
	text-align: right;
	display: flex;
	justify-content: start;
	flex-direction: row-reverse;
	align-items: center;
	gap: 20px;
}
.theme-options .option-button#dark {
	background: #15202b;
	color: #fff;
	border-color: #15202b;
}
.radio-option {
	width: 20px;
	height: 21px;
	border: 2px solid;
	border-radius: 50%;
	position: relative;
}
.theme-options .option-button.active .radio-option::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-image: url('/wp-content/themes/hello-theme-child-master/theme-builder/assets/image/icons/radio-check.svg');
	top: -1px;
	left: -1px;
}
.theme-options .option-button.active {
    border-color: var(--primary) !important;
}
.option-layout .box {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    border: 5px solid var(--hoverColor);
    border-radius: 15px;
    padding: 10px;
    cursor: pointer;
    background: #fafafa;
}
.option-layout .caption {
    margin-top: 10px;
    display: block;
}
.option-layout .box div:not(.main) {
	background: #E0E0E0;
	border-radius: 10px;
}
.option-layout .main {
    display: grid;
    gap: 10px;
}
.option-layout .main .card {
    height: 70px;
}
.option-layout .main .list {
    height: 30px;
}
.option-layout.active .box {
	border-color: var(--primary);
}

@media screen and (max-width: 1000px) {
    .settings-wrapper {
        min-height: 500px;
    }
}