section p {
	font-weight: 300;
}

.dashboard-main {
	position: relative;
	z-index: 9;
	overflow: visible;
	padding-bottom: 50px;
}

.sticky-box {
	position: sticky;
	top: 125px;
	z-index: 9;
}

.dashboard-left-side {
	background: #FC6057;
	padding: 20px;
	min-height: calc(100vh - 150px);
	display: flex;
	flex-flow: column;
}

.dashboard-right-side {
	padding: 30px;
	min-height: calc(100vh - 150px);
	background-color: #FAFAFA;
}

.dashboard-right-side-top {
	margin-top: 15px;
	margin-bottom: 30px;
}

.dashboard-right-side-top h5 {
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
}

.dashboard-left-side-top {
	display: flex;
	align-items: center;
	color: #FFF;
	padding-bottom: 20px;
	border-bottom: 2px solid #FFF;
	margin-bottom: 15px;
}

.user-image {
	width: 60px;
	min-width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.5);
	font-size: 32px;
	line-height: 43px;
	font-weight: 500;
	margin-right: 15px;
}

.user-name span {
	font-weight: 300;
	font-size: 20px;
	line-height: 27px;
}

.user-name h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 0;
}

.dashboard-left-side-bottom {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	flex: 1;
}

.dashboard-left-side-bottom ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

.dashboard-left-side-bottom li {
	padding: 15px 0;
}

.dashboard-left-side-bottom li a {
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 27px;
	opacity: 0.7;
	display: flex;
	align-items: center;
}

.dashboard-left-side-bottom li a.logout {
	opacity: 1;
}

.dashboard-left-side-bottom li a svg {
	margin-right: 17px;
}

.dashboard-left-side-bottom li a:hover {
	opacity: 1;
}

.dashboard-left-side-bottom li a.active,
.dashboard-left-side-bottom li a.active:hover {
	font-weight: 700;
	opacity: 1;
}

.dashboard-right-side h3 {

	font-size: 32px;
	line-height: 45px;
	font-weight: 600;

}

.profile-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.form-control {
	height: 45px;
	border: 1px solid rgb(0, 0, 0, 0.3);
	border-radius: 0;
	background-color: transparent;
}

.form-control::placeholder {
	color: rgb(0, 0, 0, 0.4);
	font-size: 14px;
}

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

label {
	padding-bottom: 10px;
	font-size: 14px;
	line-height: 1.4;
}

.phone-group {
	display: flex;
	align-items: center;
	border: 1px solid rgb(0, 0, 0, 0.3);
	background-color: transparent;
}

.phone-group input {
	flex: 1;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.phone-group span {
	background-color: #b9bfc500;
	padding: 0px 0px 0px 12px;
}

.phone-group input#phone {
	border: 0;
}

.birth-select {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 10px;
}

select.form-control {
	background-image: url('../images/down-arrow.svg');
	background-position: 90% center;
	background-repeat: no-repeat;
}

.address-type {
	margin-top: 10px;
}

.address-type .label {
	font-size: 16px;
	font-weight: 600;
	margin-right: 20px;
}

.address-type label {
	padding-bottom: 0;
}

.radio-group {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.radio-group label {
	margin-right: 20px;
}

.radio-group label input {
	position: absolute;
	text-indent: -9999;
	opacity: 0;
	visibility: hidden;
}

.radio-group label input+span {
	font-size: 16px;
	position: relative;
	display: block;
	padding-left: 25px;
	cursor: pointer;
}

.radio-group label input+span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	border: 1px solid #D9D9D9;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.radio-group label input+span:after {
	content: '';
	position: absolute;
	left: 3px;
	top: 7px;
	background-color: #FC7057;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: none;
}

.radio-group label input:checked+span:before {
	border-color: #FC7057;
}

.radio-group label input:checked+span::after {
	display: block;
}


.edit-form .yellow-btn {
	padding: 15px 20px;
	width: 100%;
	max-width: 215px;
}

.btn:hover {
	background-color: var(--redtext);
	color: #fff;
}

.single-address {
	border: 1px solid rgb(0, 0, 0, 0.3);
	padding: 20px;
	margin-bottom: 20px;
}

.single-address-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.single-address-top p {
	font-weight: 300;
	line-height: 22px;
}

.single-address-top p span {
	font-weight: 600;
}

.single-address-top .default-label {
	background-color: #FC7057;
	text-transform: uppercase;
	color: #FFF;
	font-size: 10px;
	padding: 2px 14px;
	font-weight: 600;
	margin-left: 10px;
}

.address-content {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	line-height: 19px;
}

.custom-checkbox input {
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

.custom-checkbox input+span {
	position: relative;
	color: rgb(0, 0, 0, 0.5);
	font-size: 16px;
	font-weight: 300;
	padding-left: 25px;
	cursor: pointer;
}

.custom-checkbox input+span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.5px;
	width: 15px;
	height: 15px;
	border: 1px solid rgb(0, 0, 0, 0.54);
}

.custom-checkbox input:checked+span::before {
	border-color: #FC7057;
	background-color: #FC7057;
}

.custom-checkbox input+span::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 3px;
	width: 10px;
	height: 5px;
	border: 1px solid white;
	border-top: none;
	border-right: none;
	transform: rotate(-45deg);
	opacity: 0;
}

.custom-checkbox input:checked+span::after {
	opacity: 1;
}

.single-order {
	background-color: #FFF;
	box-shadow: 0 0 9.3px 0 rgb(0, 0, 0, 0.15);
}

.single-order-header {}

.single-order-header-top {
	padding: 15px 20px;
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
}

.single-order-header-top label,
.single-order-header-bottom label {
	margin-bottom: 0;
	padding: 0;
	color: rgb(0, 0, 0, 0.5);
	font-weight: 600;
	margin-right: 5px;
}

.single-order-header-top span,
.single-order-header-bottom span {
	font-weight: 600;
}

.single-order-header-bottom {
	padding: 15px 20px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single-order-header-bottom .btn {
	min-width: 145px;
	max-width: 145px;
	padding: 7px 12px;
}

.accordion-btn {
	cursor: pointer;
}

.accordion-btn svg {
	transition: all 0.2s ease-in-out;
}

.accordion-btn:not(.collapsed) svg {
	transform: rotate(90deg);
}

.single-order-main {
	padding: 0 20px 20px;
}

.product-box {
	display: flex;
	align-items: stretch;
	border: 1px solid rgb(0, 0, 0, 0.2);
}

.product-box-img {
	background-color: #FAFAFA;
	padding: 11px 22px;
	display: flex;
	align-items: center;
}

.product-box-detail {
	display: flex;
	flex-flow: column;
	font-weight: 600;
	padding: 15px;
}

.product-box-detail .price {
	font-size: 20px;
}

.product-summary {
	border: 1px solid rgb(0, 0, 0, 0.2);
	padding-top: 10px;
}

.product-summary ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-summary ul li {

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-summary ul.item-total li {
	font-weight: 300;
	padding: 5px 20px;
}

.discount {
	color: #00AF93;
}

.product-summary ul.item-shipping {
	border-top: 1.5px dashed rgb(0, 0, 0, 0.2);
	border-bottom: 1.5px dashed rgb(0, 0, 0, 0.2);
	margin: 10px 20px;
	padding: 10px 0;
	font-weight: 300;
}

.product-summary ul.order-total li {
	font-weight: 600;
	padding: 5px 20px;
}

.offered {
	background-color: rgba(0, 175, 147, 0.1);
	padding: 10px 20px;
	display: flex;
	align-items: center;
	font-weight: 300;
	color: #00AF93;
	margin-top: 10px;
}

.offered svg {
	margin-right: 15px;
}

.offered p {
	line-height: 22px;
	margin-bottom: 0;
}

.offered span {
	font-weight: 600;

}

.dashboard-main.mobile {
	display: none;
}

.order-mobile {
	display: none;
}

/* media css */

@media screen and (max-width: 1365px) {}

@media screen and (min-width: 1366px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 991px) {
	.dashboard-main {
		padding-bottom: 0;
	}

	.dashboard-main.desktop,
	.dashboard-right-side {
		display: none;
	}

	.dashboard-main.mobile,
	.dashboard-right-side.open {
		display: block;
	}
}
@media screen and (max-width: 767px) {
.single-address-top .default-label {
    margin-right: 10px;
}
}
@media screen and (max-width: 639px) {
	.dashboard-right-side {
		padding: 30px 15px;
	}

	.dashboard-right-side-top {
		margin-top: 0;
	}

	.profile-form {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.edit-form .yellow-btn,
	.edit-form .black-btn {
		flex: 1;
		width: auto;
	}

	.edit-form .black-btn {
		padding: 15px;
	}

	.address-type {
		flex-flow: column;
	}

	.address-type label {
		margin-bottom: 0;
		margin-bottom: 20px;
	}

	.single-order-header-top {
		flex-wrap: wrap;
	}

	.single-order-header-top>* {
		flex: 1 50%;
		max-width: 50%;
	}

	.order-tablet {
		display: none;
	}

	.order-mobile {
		display: block;
	}

	.single-order-header-bottom {
		flex-flow: row wrap;
	}

	.single-order-header-bottom>*:not(:last-child) {
		flex: 1 50%;
		max-width: 50%;
	}

	.single-order-header-bottom>div:not(:last-child) {
		margin-bottom: 30px;
	}

	.single-order-header-bottom label {
		margin-bottom: 5px;
		margin-right: 0;
	}

	.product-box {
		margin-bottom: 10px;
	}
}

@media screen and (max-width:425px) {}

@media screen and (max-width:374px) {
	body {
		overflow-x: hidden;
	}
}

@media screen and (max-width:320px) {}