/* fonts-here */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Kufam:wght@500&family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
/*===== VARIABLES CSS =====*/
:root{
    /*===== Colors =====*/
    --theme-color: #A20E74;
    --primary-color: #2E0640;
    --secondary-color: #524748;
    --text-color: #351145;
    --heading-color: #351145;

    /* extra color */
    --ex-color-1: #fff;
    --ex-color-2: #351145;
  
    /*===== Font and typography =====*/
    --body-font: 'Montserrat', sans-serif;


    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.313rem;
    --h2-font-size: 2.12rem;
    --h3-font-size: 1.75rem;
    --normal-font-size: 1rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  
    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: normal;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0 0 15px;
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
    color: var(--heading-color);
}
p{
    margin: 0 0 15px;
}
a{
    text-decoration: none;
}
  
img{
    max-width: 100%;
    height: auto;
    display: block;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
label {
	color: #9783A0;
	cursor: pointer;
	font-size: 14px;
}

*::-moz-placeholder {
	color: #9783A0;
}

*::placeholder {
	color: #9783A0;
}
.btn {
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	padding: 13px 35px;
	line-height: 1;
	color: #fff;
	background: transparent linear-gradient(270deg, #B01862 0%, #A31074 100%) 0% 0% no-repeat padding-box;
}
.btn:hover{
    color: #fff;
}
.btn:focus{
    box-shadow: none;
}

.bg-defult{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* default css end */

/* bottom-panel */
.bottom-panel {
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 500;
	background: transparent;
	transform: translateY(125%);
	transition: 0.3s;
}
.bottom-panel.sticky {
	transform: translateY(0);
}
.bottom-panel .container {
	padding: 50px 0 25px;
	background: url('img/Subtraction-bg.png');
	background-position: right top;
	position: relative;
}
.bottom-panel .container::before,
.bottom-panel .container::after {
	content: '';
	position: absolute;
	display: block;
	height: 100%;
	width: calc(100vw / 2 - 50%);
	left: calc( 0px - (100vw / 2 - 50%));
	background: url('img/Subtraction-side-bg.png');
	top: 0px;
	z-index: -2;
}
.bottom-panel .container::after {
	left: initial;
	right: calc( 0px - (100vw / 2 - 50%));
}
.bottom-panel .ruby {
	background: linear-gradient(to left, #A5106F, #DB352B);
	display: flex;
	color: #fff;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 30px;
	margin-left: 30px;
}
.bottom-panel .ruby img {
	margin-right: 7px !important;
	margin-bottom: 0 !important;
}
.bottom-panel .item {
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.bottom-panel .item:not(.user) {
	background: #E8E8E8;
	border-radius: 30px;
	padding: 5px 10px;
}
.bottom-panel .item.user .ruby p {
	color: #fff;
}
.bottom-panel .item p {
	margin-bottom: 0;
	font-size: 20px;
	color: #A5106F;
}
.bottom-panel .item img {
	margin-right: 10px;
}
.bottom-panel .add-money-button {
	position: absolute;
	z-index: 30;
	right: 250px;
	top: -27px;
}


/* css class-- */

/* header-area */
.header-area {
	height: 84px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	box-shadow: 0px 3px 6px #00000029;
}
.main-menu ul li {
	padding: 10px 15px;
	position: relative;
}
.main-menu ul li.has-dropdown::after {
	position: absolute;
	right: 15px;
	top: 18px;
	content: '';
	background-image: url('img/drop-icon.svg');
	width: 12px;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
}
.main-menu ul li.has-dropdown {
	padding: 10px 0px;
	padding-left: 15px;
	padding-right: 30px;
}

.main-menu ul li:hover a {
	color: #9F0C79;
	font-weight: var(--font-semi-bold);
}
.main-menu ul li.has-dropdown:hover::after {
	background-image: url('img/drop-icon-2.svg');
}

.main-menu ul li a {
	color: #351145;
}
.main-menu ul li > ul.submenu {
	max-width: 228px;
	background: #fff;
	position: absolute;
	top: 110%;
	opacity: 0;
	visibility: hidden;
	z-index: 11;
	box-shadow: 0 -3px 10px rgba(0,0,0, .1);
	border-radius: 10px;
	padding: 25px 29px;
	box-sizing: border-box;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transform: translateX(-50%);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.main-menu ul li.has-dropdown:hover ul.submenu{
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.main-menu ul li > ul.submenu > li {
	padding: 10px 0px;
	border-bottom: 1.5px solid #C0C0C0;
}
.main-menu ul li > ul.submenu > li:first-child {
	padding-top: 0px;
}
.main-menu ul li > ul.submenu > li:last-child {
	padding-bottom: 0px;
	border-bottom: 0px solid #C0C0C0;
}
.main-menu ul li > ul.submenu > li > a {
	width: max-content;
	display: block;
	color: #4C4C4C;
	font-weight: normal;
}
.main-menu ul li > ul.submenu > li:hover a {
	color: #9F0C79;
	font-weight: var(--font-semi-bold);
}
.main-menu ul li.arabic-text a {
	color: var(--theme-color);
	font-weight: var(--font-medium);
	font-family: 'Kufam', sans-serif;
}
.flug-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-left: 20px;
	box-shadow: inset 0px 0px 6px #000000ED;
}
.menu-right ul li.flug-img a{
	margin-left: 0px;
}
.flug-img img {
	width: 100%;
	position: relative;
	z-index: -1;
}
.balance-personal {
	border: 1px solid #707070;
	padding: 9px 18px;
	border-radius: 10px;
	margin-left: 28px;
	color: #351145;
}
.menu-right ul li a {
	margin-left: 29px;
	color: #351145;
	display: inline-block;
}
.menu-right::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6px;
    height: 80%;
    content: "";
    background: #707070;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.menu-right ul li > ul.submenu {
	left: 110px !important;
	background: #fff;
	position: absolute;
	top: 110%;
	opacity: 0;
	visibility: hidden;
	z-index: 11;
	box-shadow: 0 -3px 10px rgba(0,0,0, .1);
	border-radius: 10px;
	padding: 18px 29px;
	box-sizing: border-box;
	margin-top: 8px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transform: translateX(-50%);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.menu-right ul li > ul.submenu li a {
	margin-left: 0 !important;
	border-bottom: 1px solid #FAFAFA;
	font-size: 16px;
	color: #4C4C4C;
	padding: 9px 0;
	white-space: nowrap;
}
.menu-right ul li a:hover {
	font-weight: 600;
	color: #AA136C;
}
.menu-right ul li.has-dropdown {
	position: relative;
	padding-right: 16px;
}
.menu-right ul li.has-dropdown::after {
    position: absolute;
    right: 0px;
    top: 7px;
    content: '';
    background-image: url('img/drop-icon.svg');
    width: 12px;
    height: 6px;
    background-size: cover;
    background-repeat: no-repeat;
}
.menu-right ul li > ul.submenu li a:hover {
	color: #AA136C;
	font-weight: 600;
}
.menu-right ul li > ul.submenu li:last-child a {
	border-bottom: none;
	color: #A90D76;
}
.menu-right ul li:hover > ul.submenu{
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.off-menu-top ul li.has-dropdown > a {
	position: relative;
	padding-right: 20px;
}
.off-menu-top ul li.has-dropdown > a::after {
	background-image: url('img/drop-icon-2.svg');
	position: absolute;
	right: 0;
	top: 10px !important;
	content: '';
	position: absolute;
	right: 0;
	content: '';
	width: 12px;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.off-menu-top ul li.has-dropdown > a.collapsed::after {
	background-image: url('img/drop-icon.svg');
	transform: rotate(0deg);
}
.off-menu-top ul li .submenu li a {
	font-weight: 400;
}
.off-menu-top ul li .submenu li a:hover {
	color: #AB217A;
	font-weight: 600;
}

/* header-area_End */

/* banner-area */
.banner-sldie-active {
    margin-bottom: 99px;
}
.single-banner-sldier img {
	height: 750px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.banner-sldie-active .owl-nav div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 60px;
	font-weight: 400;
	opacity: .5;
	z-index: 1;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	background: transparent linear-gradient(270deg, #FFF0 0%, #36182D5C 100%) 0% 0% no-repeat padding-box;
}
.banner-sldie-active .owl-nav div:hover {
	opacity: 1;
}
.banner-sldie-active .owl-nav div:hover img {
	opacity: 1;	
	z-index: 11;
}



.banner-sldie-active .owl-nav .owl-next{
	left: auto;
	right: 0;
	background: transparent linear-gradient(90deg, #FFF0 0%, #36182D5C 100%) 0% 0% no-repeat padding-box;
}
.banner-sldie-active .owl-dots div {
	height: 18px;
	width: 18px;
	border: 1px solid #9783A0;
	display: inline-block;
	border-radius: 50%;
	margin: 0px 5px;
}

.banner-sldie-active .owl-dots {
	width: max-content;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -64px;
}
.banner-sldie-active .owl-dots .owl-dot.active {
	background-color: #9783A0;
}
/* banner-area */

/* how works-area */
.how-works-area{
    padding: 70px 0px;
}
.video-area {
	flex: 0 0 auto;
	width: 44%;
	max-width: 331px;
	margin-right: 8%;
}
.how-works-text {
	margin-right: 72px;
}

.btn.learn-more {
	max-width: 200px;
	width: 100%;
}

.video-area img {
	border-radius: 10px;
}
.video-area a {
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	font-size: 50px;
	transform: translate(-50%, -50%);
}
/* how works-area_End */

/* product-card-area */
.card-main-wrapper {
    padding-top: 84px;
    padding-bottom: 0px;
}

/* card-title-css */
.card-title-area{
    margin-bottom: 30px;
}
.card-title-area h2{
    font-size: var(--biggest-font-size);
    margin-bottom: 0px;
    line-height: 1;
}
.card-title-area span.colored-box {
	height: 36px;
	width: 36px;
	background: rgb(178,26,93);
	background: linear-gradient(180deg, rgba(178,26,93,1) 0%, rgba(224,57,33,1) 100%);
	display: flex;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	margin-right: 19px;
	align-items: center;
	justify-content: center;
}
.card-title-area a {
	font-size: 24px;
	color: var(--theme-color);
	display: block;
	line-height: 1;
	margin-left: 26px;
	margin-top: 4px;
	position: relative;
	top: 4px;
}

/* card-title-css */


/* single-card */
.card-wrapper {
	padding: 15px 22px;
	box-shadow: 0px 0px 10px rgba(0,0,0, .16);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	margin-bottom: 53px;
}
.product-card-header {
	margin-bottom: 11px;
}
.product-card-header h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0px;
	line-height: 1.1;
}
.product-id {
	position: absolute;
	left: -22px;
	background: #FFB452;
	height: 28px;
	display: flex;
	align-items: center;
	padding: 0px 20px;
	color: #2E0640;
	font-weight: 600;
	line-height: 1;
	top: 0;
	z-index: 1;
}
.hover-right-items a, .hover-right-items span {
	height: 36px;
	width: 36px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: relative;
	margin-bottom: 7px;
	cursor: pointer;
	background: transparent linear-gradient(90deg, #A20F75 0%, #B01862 100%) 0% 0% no-repeat padding-box;
}

.inner-hover.inner-hover-left {
	transform: translate(-60%, 50%);
	bottom: 50%;
}
.inner-hover.innder-hover-left-top{
	transform: translateX(-60%);
	-webkit-transform: translateX(-60%);
	-moz-transform: translateX(-60%);
	-ms-transform: translateX(-60%);
	-o-transform: translateX(-60%);
}

.hover-right-items {
	position: absolute;
	right: 0;
	width: max-content;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 12;
}
.product-card-image {
	min-height: 215px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 13px;
}
.product-card-footer ul li {
	display: flex;
	justify-content: space-between;
	line-height: 1;
	margin-bottom: 9px;
	font-weight: var(--font-semi-bold);
}
.product-card-footer ul li {
	color: #351145;
}
.product-card-footer ul li span.list-info{
    color: var(--theme-color);
}
.btn.product-btn-1 {
	margin-top: 8px;
	width: 100%;
    height: 44px;
}
.product-card-image > img{
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.card-wrapper:hover .product-card-image > img {
	transform: scale(1.07);
}
.hover-right-items span:hover .inner-hover{
    opacity: 1;
    visibility: visible;
}

.inner-hover {
	width: 250px;
	background: #fff;
	position: absolute;
	bottom: 0;
	box-shadow: 0 0 10px rgba(0,0,0, .16);
	z-index: 11;
	transform: translateX(60%);
	padding: 20px 24px;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	background: #fff;
}
.inner-hover.inner-hover-center {
	bottom: inherit;
	top: 50%;
	transform: translate(60%, -50%);
}
.inner-hover p {
	margin-bottom: 7px;
}
.inner-hover h6 {
	font-weight: 600;
	margin-bottom: 6px;
	line-height: 1.2;
}
.inner-hover a {
    background: #FFB452;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2E0640;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.inner-hover a:hover {
	background: #fd9f25;
}
.live-action h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
    color: var(--theme-color);
}
.live-action h3 span{
	margin-left: 10px;
	animation: pulse 1s infinite;
	-webkit-animation: pulse 1s infinite;
}
  
@keyframes pulse {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.btn.light-redbtn {
	width: 100%;
	background-image: none;
	background-color: #FDEFED;
	color: #E03824;
	font-size: 28px;
	line-height: 1;
	padding: 7px 10px;
	margin-top: 5px;
}
.live-action {
	margin-top: 13px;
}
.product-card-price h5 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #2E0640;
}
.product-card-price img {
	display: inline-block;
	margin-bottom: 5px;
}
.product-card-price span {
	display: block;
	margin-bottom: 3px;
	font-weight: var(--font-semi-bold);
	color: #C4107D;
}
.product-card-price p {
	color: #351145;
	margin-bottom: 5px;
    font-weight: var(--font-semi-bold);
}
.product-card-price h2 {
	margin-bottom: 5px;
	color: var(--theme-color);
}
.card-wrapper.sold-card {
	padding-top: 24px;
}
.sold-product-badge {
	height: 61px;
	font-size: 37px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 495px;
	width: 100%;
	position: absolute;
	top: 50%;
	margin-top: -29px;
	background: rgb(164,15,112);
	background: linear-gradient(180deg, rgba(164,15,112,1) 0%, rgba(184,29,88,1) 100%);
	color: #fff;
	line-height: 1;
	transform: rotate(-23deg);
	z-index: 1;
}

/* single-card */


/* footer-area */
.footer-area{
    padding: 60px 0px;
	background: transparent linear-gradient(180deg, #B01762 0%, #A31074 100%) 0% 0% no-repeat padding-box;
}

.footer-area .logo-area a img {
	display: inline-block;
	margin-bottom: 28px;
}
.footer-logo-area {
	margin: 0px 40px;
}
.footer-logo-area p {
	color: var(--ex-color-1);
}
.footer-social a {
	height: 34px;
	width: 34px;
	display: inline-block;
	border: 1px solid var(--ex-color-1);
	line-height: 34px;
	color: #fff;
	border-radius: 50%;
	margin: 0px 3px;
	transition: .3s;
}
.footer-social a:hover {
	background: #fff;
	color: #AC1467;
}
.footer-menu h6 {
	font-size: 18px;
	color: var(--ex-color-1);
	font-weight: 600;
	margin-bottom: 10px;
}
.footer-menu ul li a {
	color: var(--ex-color-1);
	display: block;
	padding: 8px 0px;

}
.footer-menu ul li a:hover{
	text-decoration: underline;
}

/* footer-area_End */


/* popup-css */
.popup-1 .modal-dialog {
	max-width: 930px;
}
.popup-1 .modal-dialog .modal-content {
	border: none;
	border-radius: 28px;
	overflow: hidden;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
}
.welcome-text-wrapper {
	flex: 0 0 auto;
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 28px;
	background: transparent linear-gradient(153deg, #A8126D 0%, #B91E57 100%) 0% 0% no-repeat padding-box;
}
.popup-form-wrapper {
	padding: 50px 65px;
	flex: 0 0 auto;
	width: 55%;
	padding-left: 85px;
}

.popup-sign-in .popup-form-wrapper {
	padding-left: 110px;
}
.popup-sign-in .input-icon {
	right: 104.5%;
}
.welcome-text-wrap h1 {
	color: var(--ex-color-1);
	font-weight: 700;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--ex-color-1);
	margin-bottom: 23px;
	font-family: 'Dancing Script', cursive;
	font-size: 57px;
}
.welcome-text-wrap p{
	color: var(--ex-color-1);
	line-height: 1.4;
}
.welcome-text-wrap {
	padding: 0px 45px;
}
.popup-logo img {
	display: inline-block;
	margin-top: 20px;
}
.form-title{
	margin-bottom: 30px;
}
.form-title h2{
	color: var(--theme-color);
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 0px;
}
.form-title h2::after{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 148px;
	height: 4px;
	border-radius: 15px;
	content: "";
	background-color: #B2195F;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}
.single-form {
	margin-bottom: 12px;
}
.single-form input {
	width: 100%;
	height: 50px;
	border: none;
	border: 1px solid #9783A0;
	border-radius: 50px;
	padding-left: 30px;
	font-size: 16px;
}

.single-form input:focus::placeholder{
	opacity: 0;
}


.single-form input:focus{
	outline: none;
}
.input-icon {
	position: absolute;
	right: 102%;
	top: 50%;
	display: block;
	transform: translateY(-50%);
	width: max-content;
}

.custom-check-box input{
	display: none;
}
.custom-check-box input:checked ~ label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "\f00c";
	color: #fff;
	font-size: 12px;
	font-family: "Font Awesome 5 Pro";
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
.custom-check-box input:checked ~ label span{
	background-color: #A9126C;
	border-color: #A9126C;
}

.custom-check-box label{
	display: flex;
	align-items: center;
	color: #9783A0;
	line-height: 1;
}
.custom-check-box label span{
	height: 18px;
	width: 18px;
	display: block;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
	border: 1px solid #9783A0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.submit-btn-area{
	margin-top: 35px;
}
.btn.submit-btn {
	width: 177px;
	height: 54px;
	font-size: 18px;
	border-radius: 24px;
	background: transparent linear-gradient(90deg, #B01762 0%, #BE2150 100%) 0% 0% no-repeat padding-box;
}
.custom-check-box {
	margin-top: 14px;
}
.popup-bottom-text {
	text-align: center;
	margin-top: 25px;
}
.popup-bottom-text p {
	margin-bottom: 4px;
	font-size: 18px;
	color: var(--theme-color);
}
.popup-bottom-text p > a {
	color: var(--theme-color);
	text-decoration: underline;
}

/* create-account-popup-css */
.popup-1.popup-sign-in .modal-dialog{
	max-width: 1070px;
}
.first-name {
	flex: 0 0 auto;
	width: 45% !important;
}
.last-name {
	flex: 0 0 auto;
	width: 52% !important;
}


/* otp-popup */
.otp-wrapper form {
	display: flex;
	justify-content: space-around;
	padding: 0px 20px;
}
.otp-wrapper form input{
	flex: 0 0 auto;
	width: 70px;
	height: 78px;
	border: none;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	color: var(--theme-color);
	border: 1px solid #C6BCCB;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.otp-wrapper form input:focus{
	outline: none;
	box-shadow: 0px 0px 2px var(--theme-color);
}


/* popup-css_End */


/* offcanvas-menu */
.bar {
	font-size: 24px;
	color: #A9136C;
	height: 35px;
	width: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	cursor: pointer;
	font-weight: 900;
}
.cross {
	position: absolute;
	left: 37px;
	top: 28px;
	font-size: 27px;
	cursor: pointer;
	color: #A9136C;
	line-height: 1;
}
.cross:hover{
	color: rgb(164,15,112)	;
}
.off-menu-top .balance-personal {
	margin-left: 13px;
	font-size: 20px;
	padding: 9px 16px;
	border-radius: 10px;
	display: inline-block;
}

.offcanvas-wrapper {
	height: 100%;
	width: 350px;
	position: fixed;
	right: -360px;
	top: 0;
	z-index: 11111;
	background-image: url(img/mobile-menu-bg.jpeg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
	padding: 20px;
	overflow-y: scroll;
	padding-right: 40px;
	padding-top: 60px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	text-align: center;
	box-shadow: -2px 0px 10px #351145;
}
.offcanvas-wrapper.active{
	left: auto;
	right: 0px;
}
.overlay.active {
	background-color: #524C558F;
	z-index: 9;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.off-menu ul li a {
	color: var(--ex-color-2);
	font-weight: normal;
	font-size: 20px;
	display: inline-block;
	padding: 17px;
	position: relative;
}
.off-menu ul li a:hover {
	color: var(--theme-color);
	font-weight: var(--font-semi-bold);
}

.off-menu ul li {
	position: relative;
}
.off-menu ul li.has-dropdown > a::after {
	position: absolute;
	right: 0;
	top: 27px;
	content: '';
	background-image: url('img/drop-icon.svg');
	width: 12px;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.off-menu ul li.has-dropdown > a.collapsed::after {
	position: absolute;
	right: 0;
	top: 27px;
	content: '';
	background-image: url('img/drop-icon.svg');
	width: 12px;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}


.off-menu ul li.has-dropdown:hover a:after {
	background-image: url('img/drop-icon-2.svg');
}

.off-menu ul li.has-dropdown ul.submenu > li > a {
	color: var(--ex-color-2);
}
.off-menu ul li.arabic-text a {
	font-family: 'Kufam', sans-serif;
	color: var(--theme-color);
}
.off-menu ul li.has-dropdown ul.submenu > li:hover > a {
	color: var(--theme-color)
}
.off-menu ul li.has-dropdown ul.submenu {
	padding-left: 15px;
}
.off-menu-top ul {
	justify-content: center;
	flex-direction: column;
}
.modal {
	z-index: 111111;
}


.off-menu-top {
	padding-bottom: 37px;
	border-bottom: 1px solid #707070;
	max-width: 85%;
	margin: 0 auto;
	margin-top: 64px;
	margin-bottom: 24px;
}
.off-menu-top ul li a {
	color: var(--ex-color-2);
	font-weight: var(--font-medium);
	margin-bottom: 26px;
	display: inline-block;
	font-size: 20px;
}
.offcanvas-wrapper .flug-img {
	width: 30px;
	height: 30px;
	margin-left: 15px;
	margin: 0 auto;
}
.off-menu-top ul li.balance-personal a {
	margin-bottom: 0px;
}


/* offcanvas-menu_End */


/* home v-2 */

.header-area.home-v2 .menu-right::after {
	display: none;
}
.header-area.home-v2 .menu-right ul li a {
	margin-left: 0px;
}
.header-area.home-v2 .menu-right {
	margin-left: 15px;
}
.header-area.home-v2 .balance-personal{
	margin-left: 0px;
}

.header-area.home-v2 .menu-right {
	margin-left: 14px;
}
.menu-right {
	margin-left: 14px;
}
.header-area.home-v2 .flug-img {
	margin-left: 30px;
}






.off-menu ul li.has-dropdown a{
	color: var(--theme-color);
}
.off-menu ul li.has-dropdown a:after{
	background-image: url('img/drop-icon-2.svg');
}


.off-menu ul li.has-dropdown:hover a.collapsed{
	color: var(--theme-color);
}

.off-menu ul li.has-dropdown a.collapsed{
	color: var(--ex-color-2);
}
.off-menu ul li.has-dropdown a[aria-expanded="true"]{
	font-weight: var(--font-semi-bold);
}


.sticky-wrapper {
	margin-bottom: 30px;
}
.sticky-wrapper.is-sticky{
	z-index: 1111;
}
.sticky-wrapper.is-sticky .header-area{
	background-color: #fff;
}

/* home v-2 */

/* auction-page */
.auction-page {
	background: #FCFCFC;
}
.product-img-wrap {
	padding: 60px 10px 15px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(168, 167, 167, 0.466);
}
.auction-product-section .product-images img {
	width: 100%;
}
.auction-product-section .img-nav {
	display: flex;
	justify-content: center;
	padding-top: 50px;
}
.auction-product-section .img-nav .thumb {
	border: 1px solid #E2E2E2;
	margin: 5px;
}
.auction-product-section .img-nav img {
	width: 70px;
}
.certificate-mobile {
	padding: 0 10px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	background: linear-gradient(to right, #A40F74, #DC3820);
	margin-bottom: 20px;
}
.certificate-mobile p {
	margin-bottom: 0;
	margin-left: 15px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}
.auction-product-section .certificate {
	background: url('img/certificate-bg.png'), #E8E8E8;
	background-position: right top , 0 0 ;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 10px;
	margin-top: 15px;
	border-radius: 10px;
} 
.auction-product-section .certificate h5 {
	margin-top: 10px;
	font-size: 16px;
	color: #351145;
	margin-bottom: 5px;
	text-align: center;
	font-weight: 700;
}
.auction-product-section .certificate p {
	font-size: 12px;
	color: #351145;
	max-width: 200px;
	margin-bottom: 5px;
	text-align: center;
}
.auction-product-section .certificate p a {
	color: #A51072;
	text-decoration: underline;
}

.auction-product-section .product-details {

}
.auction-product-section .product-details .product-id {
    position: static;
    display: inline-flex;
    padding-top: 1px;
}
.auction-product-section .product-details h3 {
	font-size: 28px;
	color: #351145;
	font-weight: 700;
	margin-top: 5px;
}
.auction-product-section .product-details p {
	font-size: 20px;
	color: #351145;
}
.auction-product-section .product-details p span {
	display: inline-block;
	background: #B01764;
	width: 130px;
	height: 5px;
	margin-left: 20px;
	border-radius: 10px;
	vertical-align: middle;
}
.auction-product-section .bid-summery {
	display: flex;
	flex-wrap: wrap;
}
.auction-product-section .bid-summery h4 {
	font-size: 20px;
	font-weight: 400;
	color: #351145;
	margin-bottom: 0;
}
.auction-product-section .bid-summery p {
	font-size: 40px;
	font-weight: 700;
	color: #FFB452;
	line-height: 1.2;
}
.auction-product-section .bid-summery .current-bid p {
	color: #351145;
	margin-top: 2px;
}
.auction-product-section .bid-summery .current-bid p span {
	font-size: 17px;
	font-weight: 400;
}
.auction-product-section .bid-summery p.bidder {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 18px;
	color: #351145;
	font-weight: 400;
}
.auction-product-section .bid-summery p.bidder span {
	color: #A30F75;
	font-weight: 500;
	display: inline-block;
	margin-left: 5px;
}
.auction-product-section .bid-summery > * {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.auction-product-section .bid-now {
	display: flex;
	flex-wrap: wrap;
}
.auction-product-section .bid-now .bid-button {
	background: #AA136C;
	font-weight: 700;
	font-size: 30px;
	border: 3px solid #AA136C;
	flex-grow: 1;
	color: #fff;
	margin-left: 15px;
	padding: 10px 15px;
	border-radius: 8px;
	text-align: center;
}
.auction-product-section .bid-now .bid-button:first-child {
	margin-left: 0;
}
.auction-product-section .bid-now .bid-button.bid-count {
	background: transparent;
	color: #AA136C;
	flex-grow: 0;
	position: relative;
	font-weight: 600;
}
.auction-product-section .bid-now .bid-button.bid-count a {
	position: absolute;
	width: 28px;
	background: #fff;
	top: -10px;
	right: -10px;
	border: 3px solid white;
	border-radius: 50%;
	transition: 0.2s;
}
.auction-product-section .bid-now.desktop-hide .bid-button.bid-count a{
	width: 25px;
}
.auction-product-section .bid-now.desktop-hide .bid-button.bid-count a:hover {
	transform: translateY(-3px
	);
}
.auction-product-section .bid-now .bid-button.bid-count a img {
	opacity: 0.64;
	width: 100%;
	transition: 0.2s;
}
.auction-product-section .bid-now .bid-button.bid-count a:hover img {
	opacity: 1;
}
.auction-product-section .bid-now .bid-button.bid-count .content {
	position: absolute;
	width: 270px;
	max-width: 270px;
	background-color: #FFECD3;
	border-radius: 10px;
	z-index: 500;
	padding: 18px 24px;
	box-shadow: 0 3px 6px #00000029;
	top: -140px;
	right: -245px;
	opacity: 0;
	visibility: hidden;
	transition: 0.15s;
}
.auction-product-section .bid-now.desktop-hide .bid-button.bid-count .content {
	right: -195px !important;
	width: 245px;
	max-width: 245px;
	padding: 17px 22px;
}
.auction-product-section .bid-now .bid-button.bid-count .content p {
	margin: 0;
	text-align: left;
	color: #351145;
	font-size: 14px;
	font-weight: 400;
}
.auction-product-section .bid-now .bid-button.bid-count a:hover ~ .content {
	opacity: 1;
	visibility: visible;
}

.auction-product-section .bid-now p {
	margin-top: 10px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #AF1764;
	font-weight: 600;
}
.auction-product-section .bid-now p a {
	color: #AF1764;
	display: inline-block;
	position: relative;
}
.auction-product-section .bid-now p a::after {
	position: absolute;
	content: '';
	height: 1px;
	width: 100%;
	background: #AF1764;
	left: 0;
	bottom: 3px;
}
.auction-product-section .mazadent-assistant {
	margin-top: 10px;
}
.auction-product-section .mazadent-assistant h3 {
	font-size: 22px;
	margin-bottom: 10px;
}
.auction-product-section .mazadent-assistant li {
	font-size: 18px;
	line-height: 1.1;
	padding-right: 20px;
	padding-left: 0;
}
.auction-product-section .timing-note {
	background: url('img/timing-note.svg'), #FEE1BC;
	background-position: right center;
	background-repeat: no-repeat;
	padding: 10px 15px;
	border-radius: 10px;
}
.auction-product-section .timing-note p {
	font-size: 18px;
	color: #351145;
	margin-bottom: 5px;
}
.auction-product-section .timing-note p span {
	font-weight: 600;
	position: relative;
}
.auction-product-section .timing-note p span::after {
	position: absolute;
	content: '';
	height: 1px;
	width: 100%;
	background: #351145;
	left: 0;
	bottom: 3px;
}
.auction-product-section .bid-history {
	background: #E8E8E8;
	padding: 20px 25px 20px 20px;
	border-radius: 10px;
	margin-top: 10px;
}
.auction-product-section .bid-history h3 {
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	position: relative;
}
.auction-product-section .bid-history h3::after {
	position: absolute;
	content: '';
	height: 1px;
	width: 220px;
	background: #707070;
	left: 50%;
	transform: translateX(-50%);
	bottom: -8px;
}
.auction-product-section .bid-history table {
	width: 100%;
}
.auction-product-section .bid-history .table-container {
    overflow-x: hidden;
    max-height: 345px;
    padding-right: 10px;
}
/*
 *  STYLE 2
 */

#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #BB427E;
}



.auction-product-section .bid-history table thead td {
	font-weight: 600;
	font-size: 18px;
}
.auction-product-section .bid-history table td {
	color: #351145;
	font-size: 14px;
	padding: 10px 10px;
	width: 33.33%;
}
.auction-product-section .bid-history table thead td:last-child {
	text-align: right;
}
.auction-product-section .bid-history table td:nth-child(2) {
	text-align: center;
}
.auction-product-section .bid-history table td:last-child {
	text-align: right;
}
.auction-product-section .bid-history table tbody tr:first-child td {
	color: #A30F75;
	font-weight: 600;
}


/* direct-buy-section */
.auction-product-section2 {
	padding-top: 50px;
	padding-bottom: 60px;
}
.direct-buy-option {
	background: #F4F4F4;
	padding: 20px 15px;
	border-radius: 10px;
	
}
.direct-buy-option h3 {
	padding: 0 10px;
	font-size: 24px;
	font-weight: 700;
}
.direct-buy-option .details {
	padding: 0 25px;
}
.direct-buy-option .details p {
	font-size: 16px;
}
.direct-buy-option .details li {
	font-size: 16px;
	margin-bottom: 15px;
}
.direct-buy-option .details li::before {
	--marker-size: 14px;
	content: '';
	position: relative;
	top: -3px;
	display: inline-block;
	vertical-align: middle;
	background: red;
	height: var(--marker-size);
	width: var(--marker-size);
	background: url('img/marker.svg');
	background-size: contain;
	margin-right: 13px;
}
.direct-buy-option .buy-now {
	margin-top: 20px;
	display: flex;
	text-align: center;
	flex-direction: column;
	background: #fff;
	padding: 15px 20px;
	box-shadow: 0 3px 10px rgba(122, 122, 122, 0.301);
}
.direct-buy-option .buy-now p {
	font-size: 18px;
	margin-bottom: 10px;
}
.direct-buy-option .buy-now .btn {
	background: #ffb452;
	color: #351145;
	font-size: 24px;
}
.direct-buy-option .shipping {
	margin-top: 10px;
	padding: 15px 25px;
	background: #fff;
	box-shadow: 0 3px 10px rgba(122, 122, 122, 0.301);
	display: flex;
	justify-content: space-between;
}
.direct-buy-option .shipping p {
	margin-bottom: 0;
	font-size: 17px;
	font-weight: 700;
}
.direct-buy-option .shipping span {
	display: block;
	font-style: 17px;
}
.direct-buy-option p.note {
	font-size: 11px;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 0;
}
.related-auction {
	margin-top: 10px;
	padding: 0 15px;
}
.related-auction h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #AF1764;
	padding-top: 20px;
}
.related-auction li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #CFCFCF;
	padding: 15px 0;
}
.related-auction p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
}
.related-auction span {
	font-size: 14px;
}

.item-description {
	padding: 35px 40px;
	background: #fff;
	box-shadow: 0 3px 10px rgba(122, 122, 122, 0.301);
	border-radius: 2px;
}
.item-description .content {
    max-height: 435px;
    overflow-x: hidden;
    padding-right: 25px;
    position: relative;
}
.item-description h2 {
	font-size: 28px;
	color: #AF1764;
	font-weight: 700;
	position: relative;
	margin-bottom: 42px;
}
.item-description h2::after {
	content: '';
	position: absolute;
	bottom: -18px;
	display: block;
	width: 100px;
	height: 5px;
	border-radius: 5px;
	background: #AF1764;
}
.item-description p ,
.item-description li {
	font-size: 14px;
}
.item-description p ,
.item-description ul {
	margin-bottom: 15px;
}
.auction-page .footer-area {
	padding-bottom: 145px;
}
.item-description .modal-call {
	border: none;
	background-color: transparent;
}

/* item-description-modal */
.item-description-modal .modal-header {
	border-bottom: none;
	padding: 28px 35px 0;
}
.item-description-modal .modal-header button {
	border: none;
	background-color: transparent;
	font-size: 30px;
	color: #351145 !important;
}
.item-description-modal .modal-title {
	font-size: 18px;
	color: #AF1764;
	font-weight: 700;
	position: relative;
}
.item-description-modal .modal-body {
	padding: 35px;
	padding-top: 24px;
}
.item-description-modal .modal-body p ,
.item-description-modal .modal-body li {
	font-size: 14px;
}
.item-description-modal .modal-body p ,
.item-description-modal .modal-body ul {
	margin-bottom: 15px;
}


/* auction-page-closed */

.auction-closed {
	padding: 5px 0 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.auction-closed h2 {
	font-size: 40px;
	color: #A00D76;
	margin-bottom: 5px;
}
.auction-closed h3 {
	font-size: 21px;
}
.auction-closed .winner {
	font-size: 21px;
	font-weight: 600;
	color: #A00D76;
	margin-top: 2px;
	margin-bottom: 10px;
}
.auction-closed .winning-time {
	font-size: 21px;
	font-weight: 300;
	line-height: 1.15;
}
.auction-closed h5 {
	font-size: 22px;
	color: #A00D76;
	font-weight: 500;
	max-width: 380px;
}
.auction-page.closed .certificate  {
	background: url('img/certificate-closed-page.svg'), #F4F4F4;
	background-repeat: no-repeat;
	background-position: left top;
	flex-direction: row;
	display: flex;
	justify-content: center;
	position: relative;
	padding-left: 20%;
} 
.auction-page.closed .certificate img {
	position: absolute;
	left: 31px;
	top: 23px;
	width: 40px;
}



/* --- buy-seat-ticket-page --- */
@media (min-width: 1200px) {
	.buy-seat-ticket .container {
		max-width: 1180px;
	}
}
.seat-ticket-section {
	padding-top: 33px;
	padding-bottom: 112px;
}
.seat-ticket-section .product-details-blk h2.title {
	color: #351145;
	font-weight: 700;
	font-size: 42px;
	margin-bottom: 12px;
}
.seat-ticket-section .product-details-blk .product-name {
	margin: 0;
	font-size: 22px;
	color: #351145;
}
.seat-ticket-section .product-details-blk .product-id2 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 5px;
	display: inline-block;
}
.seat-ticket-section .product-details-blk .product-model {
	margin: 0;
	font-size: 22px;
	color: #351145;
}
.seat-ticket-section .auction-time-blk {
	margin-top: 27px;
	display: inline-flex;
	align-items: center;
	background: #F4F4F4;
	padding: 27px 35px 28px;
}
.seat-ticket-section .auction-time-blk .content {
	font-size: 22px;
	padding-left: 32px;
}
.seat-ticket-section .auction-time-blk .content p {
	margin: 0;
	margin-bottom: 7px;
}
.seat-ticket-section .auction-time-blk .content .time {
	color: #351145;
	font-weight: 600;
}
.seat-ticket-section .ticket-price-blk {
	margin-top: 30px;
	display: inline-flex;
	padding: 23px 35px 23px 37px;
	align-items: center !important;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.seat-ticket-section .ticket-price-blk .ticket-price {
	margin-right: 45px;
}
.seat-ticket-section .ticket-price-blk .ticket-price p {
	font-size: 22px;
	margin: 0;
}
.seat-ticket-section .ticket-price-blk .ticket-price h3 {
	margin: 0;
	font-size: 61px;
	font-weight: 600;
}
.seat-ticket-section .ticket-price-blk .ticket-price h3 span {
	font-size: 22px;
	font-weight: 400;
	display: inline-block;
	margin-left: 9px;
}
.seat-ticket-section .ticket-price-blk .payment-option .button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	background: #FFB452;
	color: #351145;
	height: 58px;
	padding: 0 43px;
	border: 3px solid transparent !important;
}
.seat-ticket-section .ticket-price-blk .payment-option .button.border {
	background: transparent;
	border-color: #351145 !important;
	font-size: 19px;
	margin-bottom: 9px;
}
.seat-ticket-section .note p {
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	margin: 0;
	margin-right: 55px;
	margin-top: 9px;
}
.seat-ticket-section .about-ticket {
	background: #F4F4F4;
	padding: 6px 31px 1px;
	margin-left: -11px;
	margin-top: 20px;
}
.seat-ticket-section .about-ticket .info-row {
	display: flex;
	margin: 28px 0;
}
.seat-ticket-section .about-ticket .info-row .img {
	min-width: 104px;
	margin-right: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.seat-ticket-section .about-ticket .info-row .content {
	display: flex;
	align-items: center;
}
.seat-ticket-section .about-ticket .info-row .content p {
	margin: 0;
	font-size: 18px;
}



/* --- buy-point-page --- */
@media (min-width: 1200px) {
	.buy-point-page .container {
		max-width: 1180px;
	}
}
.buy-point-page .header-area {
	margin-bottom: 0;
}
.buy-point-section {
	--item-overflow: 407px; 
	background: #A61270;
	margin-bottom: var(--item-overflow);
	position: relative;
}
.buy-point-section::before {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    display: block;
    width: 100%;
    padding-top: 13%;
    background: url('img/buy-point-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.buy-point-section .section-title h2 {
	font-size: 70px;
	color: #fff;
	font-weight: 700;
	max-width: 400px;
	padding-top: 88px;
}
.buy-point-section .section-title h4 {
	font-size: 30px;
	font-weight: 400;
	color: #fff;
	max-width: 500px;
	margin-bottom: 74px;
}
.point-pack-wrap {
	padding: 0 70px;
	display: flex;
	flex-direction: column;
}
.point-pack-wrap-inner {
	margin-bottom: calc(var(--item-overflow) * -1);
}
.point-pack {
	--border: 9px solid transparent;
	--wider: 5%;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 10px;
	position: relative;
	padding: 90px 10px 26px;
	border: var(--border);
	border-top: 0;
	width: calc(100% - (var(--wider)) + 8px);
}
.point-pack.desktop-focused {
	border-top: var(--border);
	border-color: #FFB452;
	width: calc(100% + ((var(--wider)) * 2));
	flex-shrink: 0;
}
.point-pack .name-badge {
	position: absolute;
	top: -1px;
	padding: 15px 19px;
	min-width: 192px;
	background: #FFB452;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	border-radius: 0 0 5px 5px;
	transform: translateX(-50%);
	left: 50%;
	white-space: nowrap;
}
.point-pack .top-part {
	position: relative;
}
.point-pack .top-part .currency {
	position: absolute;
	right: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	top: -5px;
	right: -35px
}
.point-pack .top-part .price {
	margin: 0;
	font-size: 95px;
	font-weight: 600;
	position: relative;
	z-index: 3;
}
.point-pack .top-part .price::before {
	--area: 122px;
	content: '';
	position: absolute;
	display: block;
	height: var(--area);
	width: var(--area);
	background: #E6E6E6;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -3;
}
.point-pack .top-part .price.three-digit::before {
	--area: 132px;
}
.point-pack .bottom-part {
	display: flex;
	flex-direction: column;
	align-items: center;

	justify-content: center;
}
.point-pack .bottom-part .point {
	font-size: 25px;
	font-weight: 600;

	margin-top: 12px;
}
.point-pack .bottom-part .point-img {
	height: 115px;
	width: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}
.point-pack .bottom-part .button {
	font-size: 20px;
	font-weight: 700;
	padding: 11px 46px 11px;
	background: #FFB452;
	color: #351145;
	border-radius: 50px;
	margin-top: 30px;
}
/* after-point-section */
.after-point-section {
	margin-bottom: 68px;
}
.after-point-section .section-title h2 {
	font-size: 40px;
	font-weight: 700;
	padding-top: 72px;
	margin-bottom: 0;
}
.after-point-section .content {
	padding: 0 62px;
}
.after-point-section .content .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 270px;
	margin-top: 46px;
}
.after-point-section .content .item img {
	margin-bottom: 28px;
}
.after-point-section .content .item h5 {
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 5px  0;
}
.after-point-section .content .item p {
	margin: 0;
	font-size: 18px;
	line-height: 1.15;
}
.footer-area.style2-bg {
	position: relative;
	background: #AD1667;
	margin-top: calc(15% + 50px);
	padding-top: 18px;
}
.footer-area.style2-bg::before {
	content: '';
	display: block;
	position: absolute;
	bottom: calc(100% - 2px);
	width: 100%;
	background: url('img/footer-bg-style2.svg');
	background-size: cover;
	padding-top: 15%;
	
}
.footer-menu.brand ul li {
	padding: 10px 0px;
	display: flex;
	align-items: center;
}
.footer-menu.brand ul li a {
	display: inline-block;
	padding: 0;
}
.footer-menu.brand ul li a:nth-child(2) {
	margin-left: 15px;	
}
.has-brand .footer-menu1,
.has-brand .footer-menu2 {
	text-align: left;
}



/* --buy-now-page-- */
@media  (min-width: 1400px) {
	.buy-now .container {
		max-width: 1200px;
	}
}
.buy-now-section {
	padding-top: 30px;
}
.buy-now-section .container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.buy-now-section .product-img {
	width: 34.6%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.buy-now-section .product-details {
	width: 61.5%;
}
.buy-now-section .product-details > h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.15;
}
.buy-now-section .product-details .shipping-address-wrap {
	background: #F4F4F4;
	padding: 20px 40px;
	display: flex;
	flex-wrap: wrap;
}
.buy-now-section .product-details .shipping-address-wrap h4 {
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	margin-bottom: 10px;
}
.buy-now-section .product-details .shipping-address-wrap h4 a {
	font-size: 18px;
	color: #990F78;
	font-weight: 600;
	display: inline-block;
	text-decoration: underline;
	margin-left: 5px;
}
.buy-now-section .product-details .shipping-address-wrap .image {
	margin-left: 35px;
	margin-right: 13px;
}
.buy-now-section .product-details .shipping-address-wrap .ship-address li {
	font-size: 16px;
	margin-bottom: 3px;
}
.buy-now-section .product-details .shipping-address-wrap .ship-address li h5 {
	font-size: 16px;
	font-weight: 600;
	color: #351145;
	margin-bottom: 3px;
}
.buy-now-section .product-details .shipping-time {
	display: flex;
	align-items: center;
	padding: 17px 0 20px;
}
.buy-now-section .shipping-time .image {
	margin-left: 68px;
	margin-right: 13px;
}
.buy-now-section .shipping-time h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
}
.buy-now-section .payment-summery {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 24px 35px;
}
.buy-now-section .payment-summery .price-query {
	width: 42%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.buy-now-section .payment-summery .payment-option {
	width: 53.5%
}
.buy-now-section .payment-summery .payment-option .button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	background: #FFB452;
	color: #351145;
	height: 58px;
	padding: 0 43px;
	border: 3px solid transparent !important;
}
.buy-now-section .payment-summery .payment-option .button.border {
	background: transparent;
	border-color: #351145 !important;
	margin-bottom: 9px;
}
.buy-now-section .payment-summery .price-query table td {
	padding: 2px 13px;
	vertical-align: top;
}
.buy-now-section .payment-summery .price-query table td:nth-child(1) {
	font-size: 16px;
	font-weight: 600;
	text-align: right;
}
.buy-now-section .payment-summery .price-query table td:nth-child(2) {
	font-size: 16px;
}
.buy-now-section .payment-summery .price-query table .list-price td:nth-child(2) {
 color: #990F78;
 position: relative;
}
.buy-now-section .payment-summery .price-query table .total td:nth-child(2) {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}





/* --register-page-- */
.register-section {
	padding: 20px 15px;
}




/* login-page */
.login-section {
	padding: 20px 15px;
}






/* notification-top  */
.notification-top {
	background: #FFB452;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 50;
}
.notification-top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.notification-top p {
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	margin: 0;
}
.notification-top p .image.before-text {
	margin-right: 24px;
}
.notification-top .button-container {
	display: flex;
	align-items: center;
	gap: 12px;
}
.notification-top .button-container .button {
	padding: 8px 20px;
	font-size: 20px;
	border-radius: 10px;
	font-weight: 700;
	color: var(--text-color);
	border: 3px solid transparent !important;
}
.notification-top .button-container .button.border {
	border-color: var(--text-color) !important;
}





/* user-panel-section */
.user-panel-page {
	background: #F6F6F6;
	transition: 0.3s;
}
.user-panel-page .sticky-wrapper {
	margin-bottom: 0 !important;
}
.user-panel-section {
	background: #F6F6F6;
	padding: 55px 0 22px;
}
.user-panel-section .user-info {
	display: flex;
	align-items: center;
	flex-direction: column;
	position:relative
}
.user-panel-section .user-info::after {
	content: '';
	height: 100%;
	width: 1px;
	background: #D1CBD4;
	display: block;
	position: absolute;
	top: 30px;
	right: 20px;
}
.user-panel-section .user-info .image {
	height: 136px;
	width: 136px;
	background: #827787;
	border-radius: 50%;
	overflow: hidden;
	object-fit: cover;
	object-position: center;
}
.user-panel-section .user-info .image img {
	height: 100%;
	width: 100%;
}
.user-panel-section .user-info .user-name {
	font-size: 24px;
	font-weight: 600;
	margin: 17px 0 14px;
}
.user-panel-section .user-info .right-part {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.user-panel-section .user-info .ruby {
	font-size: 20px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 30px;
	border: 2.5px solid var(--text-color);
	display: inline-flex;
}
.user-panel-section .user-info .ruby img {
	margin-right: 10px;
}
.user-panel-section .user-info .data-table {
	position: relative;
	padding: 14px 0 9px;
	margin-right: 30px;
}
.user-panel-section .user-info .data-table::after {
	content: '';
	height: 1px;
	width: 173px;
	background: #D1CBD4;
	display: block;
	position: absolute;
	bottom: 0;
	left: calc(50% + 10px);
	transform: translateX(-50%);
}
.user-panel-section .user-info .data-table td {
	font-size: 20px;
	font-weight: 400;
	padding: 8px 10px;
}
.user-panel-section .user-info .data-table td:first-child {
	text-align: right;
}
.user-panel-section .user-info .email {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-right: 10px;
	margin-top: 20px;
}
.user-panel-section .user-info .email h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}
.user-panel-section .user-info .email a {
	font-size: 18px;
	color: var(--theme-color);
	display: block;
}

.user-panel-section .user-link-tab {
	display: flex;
	gap: 30px;
}
.user-panel-section .user-link-tab .single-tab {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 20px;
	height: 160px;
	width: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.user-panel-section .user-link-tab .single-tab img {
	width: 71px;
}
.user-panel-section .user-link-tab .single-tab p {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 600;
}

.user-panel-section .your-tickets-wrap {
	margin-top: 65px;
}
.user-panel-section .your-tickets-wrap .title-area h3 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 5px;
}
.user-panel-section .your-tickets-wrap .title-area h3 a {
	font-size: 20px;
	margin-left: 14px;
	font-weight: 400;
	color: var(--theme-color);
	display: inline-block;
	text-decoration: underline;
}
.user-panel-section .your-tickets-wrap .tickets-inner {
	width: 775px;
}
.user-panel-section .your-tickets-wrap .single-ticket {
	background: url('img/ticket-bg.svg') no-repeat center center/contain;
	height: 205px;
	width: 375px;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.164));
	padding: 17px 33px 17px 63px;
	margin-top: 20px ;
	margin-bottom: 20px;
}
.user-panel-section .your-tickets-wrap .single-ticket h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	width: 100%;
}
.user-panel-section .your-tickets-wrap .single-ticket .inner {
	display: flex;
}
.user-panel-section .your-tickets-wrap .single-ticket .inner .left {
	width: 65%;
}
.user-panel-section .your-tickets-wrap .single-ticket .inner .right {
	width: 35%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user-panel-section .your-tickets-wrap .single-ticket .inner .right img {
	width: 70px;
}
.user-panel-section .your-tickets-wrap .single-ticket .id {
	font-size: 14px;
	font-weight: 600;
	background: #FFB452;
	padding: 3px 12px;
} 
.user-panel-section .your-tickets-wrap .single-ticket .time {
	
	padding: 7px 14px 7px;
}
.user-panel-section .your-tickets-wrap .single-ticket .time p {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.user-panel-section .your-tickets-wrap .single-ticket .time-info {
	background: #F4F4F4;
	padding: 9px 14px 11px;
	display: inline-block;
}
.user-panel-section .your-tickets-wrap .single-ticket .time-info p {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}


/* won-auction-section */
.won-auction-section {
	padding: 30px 0 25px;
	background: #E7E4E8;
}
.won-auction-section .section-title h3 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 15px;
}
.won-auction-section .section-title h3 a {
	font-size: 20px;
	margin-left: 14px;
	font-weight: 400;
	color: var(--theme-color);
	display: inline-block;
	text-decoration: underline;
}
.won-auction-section .section-title p {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 13px;
}
.won-product-slider {
	width: 70%;
}
.won-product-card {
	background: #FFB452;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
}
.won-product-card .link2 {
	position: absolute;
	bottom: 15px;
	left: 28px;
	display: none;
}
.won-product-card .info-badge {
	font-size: 16px;
	font-weight: 600;
	padding: 13px 0;
	text-align: center;
}
.won-product-card-inner {
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 22px 18px;
}
.won-product-card-inner h3 {
	font-size: 16px;
	font-weight: 600;
	padding: 17px 0 0;
	text-align: center;
}
.won-product-card-inner .image {

}
.won-product-card-inner .image img {
	max-height: 160px;
}
.won-product-card-inner .price {
	font-size: 18px;
	font-weight: 600;
	margin-top: 8px;
}
.won-product-card-inner .price .old {
	font-size: 14px ;
	font-weight: 400;
}
.won-product-card-inner .price .last {

}
.won-product-card-inner .price .currency {
	font-size: 10px;
	font-weight: 400;
	display: inline-block;
	position: relative;
	top: -5px;
}
.won-product-card-inner .button {
	margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 35px;
	color: var(--text-color);
	background: var(--theme-color);
	color: #fff;
	width: 100%;
	text-align: center;
}
/* owl */
.won-product-slider .owl-nav {
	width: 100%;
	height: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.won-product-slider .owl-nav .owl-next {
	transform: translateX(150px);
}






/* buy-option2-section */
.buy-option2-section {
	padding: 42px 0 50px;
}
.buy-option2-section .section-title h3 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 15px;
}
.buy-option2-section .section-title h3 a {
	font-size: 20px;
	margin-left: 14px;
	font-weight: 400;
	color: var(--theme-color);
	display: inline-block;
	text-decoration: underline;
}
.buy-option2-section .section-title p {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 13px;
}
.buy-option2-slider {
	width: 70%;
}

.buy-op2-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	margin-top: 20px;
	margin-bottom: 20px;
}
.buy-op2-card {
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 22px 18px;
}
.buy-op2-card h3 {
	font-size: 16px;
	font-weight: 600;
	padding: 30px 0 0;
	text-align: center;
}
.won-product-card-inner .image {

}
.buy-op2-card .image img {
	max-height: 160px;
}
.buy-op2-card.price {
	font-size: 18px;
	font-weight: 600;
	margin-top: 8px;
}
.buy-op2-card .price .old {
	font-size: 14px ;
	font-weight: 400;
}
.buy-op2-card .price {
	font-size: 18px;
	font-weight: 600;
	margin-top: 8px;
}
.buy-op2-card .price .last {

}
.buy-op2-card .currency {
	font-size: 10px;
	font-weight: 400;
	display: inline-block;
	position: relative;
	top: -5px;
}
.buy-op2-card .button {
	margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 35px;
	color: var(--text-color);
	background: #FFB452;
	color: var(--text-color);
	width: 100%;
	text-align: center;
}
/* owl */
.buy-option2-slider .owl-nav {
	width: 100%;
	height: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.buy-option2-slider .owl-nav .owl-next {
	transform: translateX(150px);
}




/* forgot-password-modal */
.modal-model2 {

}
.modal-model2 .modal-dialog {
	max-width: 770px !important;
}
.modal-model2 .modal-content {
	display: flex;
	flex-direction: row;
	padding: 75px 30px 50px;
}
.modal-model2 .modal-close {
	font-size: 30px;
	top: 36px;
	right: 50px;
	position: absolute;
	background: transparent;
	padding: 0;
	border: none;
}
.modal-model2 .modal-content .image {
	width: 38%;
	padding: 31px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.modal-model2 .modal-content .image::after {
	content: '';
	display: block;
	position: absolute;
	height: 78%;
	width: 2px;
	background: #D6CFDA;
	right: 0;
	top: 33px;
}
.modal-model2 .modal-content .lock-img {
	width: 145px;
}
.modal-model2 .modal-content .right-part {
	width: 68%;
	padding: 0 50px 0 61px;
	min-height: 324px;
	display: flex;
	flex-direction: column;
}
.modal-model2 .modal-content .right-part h3 {
	margin-bottom: 30px;
	display: flex;
	gap: 10px;
}
.box-form-model {
	display: flex;
	flex-direction: column;
}
.box-form-model .input-group {
	width: 100%;
	border: 1px solid #AEA0B5;
	margin-bottom: 25px;
	padding: 0 14px;
}
.box-form-model .input-group input[type='text'],
.box-form-model .input-group textarea {
	padding: 10px 14px;
	width: 100%;
	border: none;
	resize: none;
}
.box-form-model .input-group textarea {
	height: 125px;
}
.box-form-model .input-group input[type='text']:focus,
.box-form-model .input-group textarea:focus {
	outline: none;
	
}
.box-form-model .input-group label {
	background: #fff;
	margin-top: -10px;
	padding: 0 10px;
}
.box-form-model .button {
	margin-top: 5px;
	height: 60px;
	padding: 0 50px;
	font-size: 18px;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	display: block;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(to right, #B01762, #A01072);
}
.modal-model2 .submit-button {
	margin-top: auto;
	height: 60px;
	font-size: 18px;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	color: #fff;
	background: linear-gradient(to right, #B01762, #A01072);
}
.modal-model2 ul {
	padding-left: 14px;
	margin-bottom: 15px;
}
.modal-model2 ul li {
	font-size: 18px;
	margin-bottom: 5px;
}
.modal-model2 ul li.title {
	font-weight: 600;
}
.modal-model2.single-line .modal-dialog {
	max-width: 576px !important;
}

.modal-model2.single-line .modal-content {
	padding: 75px 70px 50px;
}
.modal-model2.single-line .modal-content .part {
	width: 100%;
}
.modal-model2.single-line .modal-content .part h3 {
	text-align: center;
	margin-bottom: 30px;
}





/* blocked-user-page */
.header-mb-0 .sticky-wrapper {
	margin-bottom: 0;
}
.blocked-user-section {

}
.blocked-user-section .image-part {
	padding-top: 43px;
	display: flex;
	justify-content: center;
	background: #C8BFCD;
}
.blocked-user-section .image-part img {
	width: 265px;
}
.blocked-user-section .text-content {
	
}
.blocked-user-section .text-content .container {
	display: flex;
	justify-content: center;
}
.blocked-user-section .text-content .inner-text-content {
	padding: 45px 0 60px;
	max-width: 450px;
	display: flex;
	flex-direction: column;
}
.blocked-user-section .text-content h3 {
	font-size: 44px;
	margin-bottom: 24px;
	font-weight: 700;
	text-align: center;
}
.blocked-user-section .text-content p {
	font-size: 18px;
	margin-bottom: 12px;
}
.blocked-user-section .text-content .mail-send {
	margin-top: 10px;
	display: flex;
	width: 100%;
}
.blocked-user-section .text-content .mail-send input[type="text"] {
	height: 50px;
	padding: 0 20px;
	width: 0;
	flex-grow: 1;
	border: 1px solid #dedadf;
	border-right: none;
}
.blocked-user-section .text-content .mail-send input[type="text"]:focus {
	outline: none;
}
.blocked-user-section .text-content .mail-send .button  {
	font-size: 18px;
	width: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFB452;
	border: none;
	font-weight: 600;
}
.blocked-user-section .text-content .terms-link {
	margin-top: 20px;
	font-size: 18px;
	color: #A31074;
	text-align: center;
	display: block;
	text-decoration: underline;
}






