#prem-membership .featured_photo img {
	position: relative;
	left: 0;
}
#prem-membership .col-4:last-child img {
	margin-bottom: 30px;
	margin-top: 30px;
}
#prem-membership .featured_photo .go-prem .btn {
	background-image: linear-gradient(to right,#FFDE00,#FFA900);
}
#t-container {
	position: relative;
	background-image: url('/assets/images/merch_module/member/Group 806.png');
	background-size: 103%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top left;
}
#t-page #t-container {
	padding: 120px 0;
}
.header-t {
	text-align: center;
	margin-bottom: 70px;
}
.header-t h1 {
	font-size: 46px;
	line-height: 42px;
	text-align: center;
	color: #799F0C;
	font-weight: 700;
	text-transform: uppercase;
	width: 70%;
	margin: 0 auto 20px;
}
.header-t p {
	text-align: center;
	color: #707070;
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 10px;
}
.header-t p strong {
	color: #799F0C;
}
.header-t .btn {
	margin: 10px auto !important;
	border: 0;
	padding: 0;
}
.header-t .btn a {
	color: #fff;
	background-image: linear-gradient(to right,#FFDE00,#799F0C);
	text-decoration: navajowhite;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 22px;
	line-height: 27px;
	letter-spacing: 1px;
	display: inline-block;
}
.ty-prem-box-img {
	text-align: right;
	padding-top: 20px;
	padding-right: 20px;
}
.ty-prem-box-ad {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 95px 85px;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0px 3px 3px 3px #00040014;
	width: 73%;
}
.ty-prem-box-ad .btn {
	border: 0;
	padding: 0;
}
.ty-prem-box-ad .btn a {
	font-size: 24px;
	text-decoration: none;
	line-height: 29px;
	background-image: linear-gradient(to right,#FFA900,#FFDE00);
	color: #fff;
	border-radius: 50px;
	padding: 6px 20px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}
.ty-prem-box-ad span {
	font-size: 24px;
	line-height: 29px;
	color: #FFA900;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 15px;
	text-align: center;
}
#t-page.member-premium .header-t h1 {
	font-size: 118px;
	line-height: 132px;
	color: #FFA900;
	margin-bottom: 20px;
}
#t-page.member-premium #t-container {
	padding-top: 280px;
}
.member-premium .header-t p strong {
	color: #FFA900;
}
#user_module.payment-setup h3 {
	color: #FFA900;
	text-align: center;
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 35px;
}
#user_module.payment-setup .bx-child span {
	color: #707070;
	font-size: 14px;
	line-height: 17px;
	width: 120px;
	display: inline-block;
	text-align: right;
}
.bx-child input, .bx-child select {
	background-color: #F9F9F9;
	border: 0;
	margin-left: 15px;
	font-size: 14px;
	line-height: 17px;
	border-radius: 5px;
	padding: 3px 3px 3px 5px;
}
.bx-child input{
	width: 60%;
}
.bx-child {
	margin-bottom: 10px;
}
.payment-submit-btn {
	border: 0;
	width: 35%;
	margin: 31px 35px 0 auto;
	display: block;
	font-size: 22px;
	line-height: 25px;
	background-image: linear-gradient(to right,#FFDE00,#799F0C);
	color: #fff;
	padding: 10px;
	border-radius: 20px;
}
.bx-child img {
	margin: 30px auto 0;
	display: block;
}
.error-msg {
	text-align: center;
	color: #DC0000;
	font-size: 14px;
	font-style: italic;
	padding-top: 25px;
}
.cart_item {
	position: relative;
}
.cart_item_box {
	padding: 20px 30px 20px 40px;
}
/* The container */
.container-cb {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container-cb input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #fff;
	border: 1px solid #171717;
}
  
  /* On mouse-over, add a grey background color */
  .container-cb:hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container-cb input:checked ~ .checkmark {
	background-color: transparent;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .container-cb input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .container-cb .checkmark::after {
	left: 9px;
	top: 3px;
	width: 8px;
	height: 16px;
	border: solid black;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.container-cb {
	position: absolute;
	left: 8px;
	top: 48%;
}
#cart-sec #mem_container {
	width: 95%;
	margin: 0 auto;
}
#card-info {
	width: 95%;
	margin: 0 auto;
	padding: 50px 0 10px;
}
#card-info .bx-child input {
	width: 60%;
	background-color: #fff;
}

#card-info .bx-child span {
	/*width: 120px;*/
	display: inline-block;
	font-size: 14px;
	color: #707070;
}
.payment-method .content-addbox {
	background-color: #fff;
	border: 0;
}
.cart_item_det .item_info {
	padding: 20px 20px;
	position: relative;
	flex: 0 0 auto;
	width: 45%;
} 	
.btn.expired-btn {
	background-color: #FF4E00;
	background-image: unset !important;
}
.btn.redeemed-btn {
	background-color: #FCDC00;
	background-image: unset !important;
}
.item-tag {
	display: inline-block;
}
/* THANK YOU PAGES RESPONSIVE CSS */
/* NEW UPDATES JUNE 2 */
.as-a-free a {
	text-align: center;
	font-size: 18px;
	line-height: 22px;
	text-decoration: none !important;
	display: block;
	color: #FFA900;
}
#success-boxes {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
}
#success-boxes .g_listbox {
	flex: 0 0 auto;
	width: 50%;
	padding: 10px;
	position: relative;
}
#success-boxes .g_listbox .numbox{
	position: relative;
	width: 100%;
	height: 261px;
}
#success-boxes .g_listbox:nth-child(1) .numbox, #success-boxes .g_listbox:nth-child(4) .numbox {
	background-image: linear-gradient(30deg,#FFA900,#FFDE00);
}
#success-boxes .g_listbox:nth-child(2) .numbox, #success-boxes .g_listbox:nth-child(3) .numbox {
	background-image: linear-gradient(30deg,#FFDE00,#799F0C);
	
}
.numbox strong {
	position: absolute;
	top: -5px;
	left: 15px;
	font-size: 59px;
	display: block;
	line-height: 80px;
}
.g_listbox .contb {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	align-items: center !important;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	padding: 75px 0;
	flex-direction: column;
	justify-content: center;
	transition: 0.3s ease-out;
	opacity: 0;
}

.g_listbox .contb span {
	color: #fff;
	font-size: 14px;
	line-height: 19px;
	width: 82%;
	margin-bottom: 0 !important;
	display: inline-block !important;
	white-space: normal;
	flex: 0 0 auto;
	width: 70%;
	padding: 0;
	margin: 0 auto;
}

.numbox span {
	display: flex;
	width: 80%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	align-items: center;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	font-weight: 700;
	margin: 0 auto;
}
#success-boxes .g_listbox:not(:first-child):hover .numbox span {
	opacity: 0;
}
#success-boxes .g_listbox:not(:first-child):hover .contb {
	opacity: 1;
}
#guide_towards_success h3 {
	font-size: 55px;
	font-weight: 700;
	color: #799F0C;
	line-height: 57px;
	margin-bottom: 0;
	text-transform: uppercase;
	text-align: center;
}
#package h3 {
	text-align: left;
	font-size: 47px;
	line-height: 57px;
	color: #799F0C;
	font-weight: 700;
	width: 100%;
	margin: 0 0 15px;
}
#package p {
	font-size: 14px;
	line-height: 19px;
	color: #707070;
}
.f-b-low-trans-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: baseline;
	position: relative;
}
.f-b-low-trans-box .trans-box-item {
	flex: 0 0 auto;
	width: 50%;
	position: relative;
	border-radius: 20px;
	padding: 30px;
	height: 233px;
	width: 313px;
	margin: 0 auto 0 0;
}
.trans-box-item:first-child {
	background-image: linear-gradient(30deg,#FFDE00,#799F0C);
	padding:20%;
}
.f-b-low-trans-box .trans-box-item a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: navajowhite;
}
.f-b-low-trans-box .trans-box-item a strong {
	color: #fff;
	/* font-size: 96px; **/
	font-size: 56px;
	line-height: 130px;
}
.f-b-low-trans-box .trans-box-item a p {
	font-size: 18px;
	color: #fff !important;
	line-height: 24px !important;
}
.f-b-low-trans-box .trans-box-item a p span {
	display: block;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
}
.trans-box-item:nth-child(2) {
	background-image: linear-gradient(30deg,#FFA900,#FFDE00);
	padding:20%;
}
#subs-details a {
	text-decoration: none;
}
	/* END OF NEW UPDATES */
/* SHRINK */
.four-col .item_box .item_img {
	height: 200px !important;
}
.four-col .item_info {
	padding: 10px 15px;
}
.cart_icn img {
	width: 40px;
}
.item_box .item_img .item_status .status {
	padding: 3px 15px 0;
	font-size: 16px;
}
.box.box1 h4 {
	font-size: 45px;
	line-height: 55px;
}
.box h4 {
	font-size: 55px;
	line-height: 65px;
}
.see-more-btn {
	text-align: center;
	padding-top: 30px;
}
.see-more-btn a {
	color: #799f0c;
	font-size: 20px;
	text-decoration: none;
}
.tag-list ul li, .sort ul li {
	padding: 0 5px;
}
.tag-list ul li a {
	font-size: 14px;
}
#pops {
	position: fixed;
	z-index: 999;
	background-color: #0000004d;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.item_box {
	box-shadow: 0px 0px 3px 1px #9999;
}
#flush-collapseOne {
	background-image: none !important;
	background-color: #fff !important;
}
#flush-collapseOne li a {
	padding: 5px 20px !important;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 15px;
	line-height: 20px;
	text-decoration: none;
	display: block;
	color: #707070 !important;
}

.accordion-button {
	background-image: linear-gradient(to right, #FFDE00,#799F0C);
}
#flush-collapseOne li a.active{
	color: #707070 !important;
}
#flush-collapseOne .nav-item:first-child, #flush-collapseOne .nav-item:first-child a {
	background-image: unset !important;
}
#flush-collapseOne li a.active:focus {
	color: #799F0C !important;
}
.four-col .col-lg-3 {
	width: 25%;
	padding: 0 5px;
}
.four-col .slick-slide {
	margin: 0 0;
}
.accordion-button img {
	transform: rotate(0deg);
}
.accordion-button.collapsed img {
	transform: rotate(90deg);
}
.merch-css .accordion-button.collapsed {
	background-image: unset;
}
.merch-css .accordion-button {
	color: #fff;
}
.merch-css #flush-collapseOne li a {
	background-image: unset !important;
}
.merchant-page-class #ftr, .members-page-class #ftr {
	background-color: #f2f2f2 !important;
}
.back-to-free {
	position: absolute;
	top: 55px;
	left: 30px;
	display: none;
	z-index: 1;
}
.back-to-free a {
	color: #799f0c;
	text-transform: lowercase;
}
#mini-notif ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-items: flex-start;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
#mini-notif ul li a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none !important;
	color: #9E9F97;
	font-size: 14px;
	line-height: 17px;
	padding: 5px 0;
}
#mini-notif ul li img {
	filter: unset !important;
	width: 21px;
	margin-right: 10px;
}
#mini-notif {
	position: absolute;
	top: 40px;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 5px #0000003e;
	padding: 10px 20px;
	width: 340px;
	z-index: 1;
	display: none;
}
.mn-notif-head {
	display: flex;
	flex-direction: row;
}
.mn-notif-head .mn-item {
	flex: 0 0 auto;
	width: 50%;
}
.mn-notif-head .mn-item.item2 {
	text-align: right;
}
.mn-notif-head .mn-item {
	flex: 0 0 auto;
	width: 50%;
	font-size: 10px;
	color: #919090;
}
.mn-notif-head .mn-item a {
	color: #919090;
	text-decoration: none;
}
.btn-notif {
	text-align: center;
}
.btn-notif .btn {
	color: #1E1E1E;
	font-size: 10px;
	letter-spacing: 1px;
}
.item_info {
	padding: 20px 10px;
	position: relative;
}
#main-notif-box {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999;
	background-color: #fff;
	transform: translate(-50%,-50%);
	width: 870px;
	border-radius: 10px;
	padding: 10px 20px;
}
#main-notif-box .notif-main-head {
	/* font-size: ; */
	display: flex;
	align-items: center;
	flex-direction: row;
}
#main-notif-box .notif-main-head .conmain span, #main-notif-box .notif-main-head .conmain a {
	font-size: 16px;
	line-height: 21px;
	color: #707070;
	text-decoration: none;
}
#main-notif-box .notif-main-head .conmain a {
	display: block;
	text-align: right;
	padding-right: 15px;
}
#main-notif-box .notif-main-head .conmain span {
	font-size: 20px;
	line-height: 27px;
}
.close-btn-notif {
	position: absolute;
	top: 0;
	right: 10px;
}
.close-btn-notif a {
	color: #707070;
	text-decoration: none;
}
.notif-box ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-items: flex-start;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.notif-box ul li {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none !important;
	color: #9E9F97;
	font-size: 14px;
	line-height: 17px;
	padding: 5px 0;
}
.notif-box ul li .inner-notif-cont {
	flex: 0 0 auto;
	width: 70%;
}
.notif-box ul li .inner-cont-btn {
	flex: 0 0 auto;
	width: 30%;
	text-align: right;
}
.notif-box ul li .inner-cont-btn .btn {
	border: 0;
	text-align: center;
	width: 125px;
	background-image: linear-gradient(to right,#FFDE00,#799F0C);
	border-radius: 50px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}
.notif-box ul li .inner-notif-cont a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none !important;
	color: #9E9F97;
	font-size: 14px;
	line-height: 17px;
	padding: 5px 0;
}
.notif-box ul li .inner-notif-cont a p {
	margin-bottom: 0;
	font-size: 14px;
	color: #707070;
	line-height: 17px;
}
.notif-box ul li .inner-notif-cont a span {
	font-size: 16px;
	line-height: 19px;
	color: #94AC09;
	/* font-weight: ; */
}
.notif-box ul li .inner-notif-cont a img {
	margin-right: 10px;
}
.o-status a span {
	color: #FFA900 !important;
}
.r-status a span {
	color: #FF0000 !important;
}
.o-status a.btn {
	background-image: linear-gradient(to right,#FFDE00,#FFA900) !important;
}
.conmain {
	flex: 0 0 auto;
	width: 50%;
}
.img_preview_big {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.merch-css .accordion-button.collapsed {
	color: #707070;
}
/* END SHRINK */
@media screen and (max-width:1500px) {
	#cart-sec .item_info {
		width: 45%;
	}
	.item_info {
		padding: 20px 10px;
	/*	padding: 20px 20px; */
	}
	.cart_btns {
		margin-top: 10px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
	.item_price .pr.less {
		font-size: 11px;
	}
}
@media screen and (max-width:1366px) {
	#cart-sec .item_info {
		width: 55%;
	}
	#ftr {
		background-color: #fff !important;
	}
}

@media screen and (max-width:991px) {
	.header-t h1 {
		width: 80%;
	}
	.ty-prem-box-ad {
		padding: 60px 30px;
		width: 75%;
	}
	#t-page.member-premium .header-t h1 {
		font-size: 85px;
		line-height: 95px;
		margin-bottom: 15px;
	}
	#t-page.member-premium #t-container {
		padding-top: 130px;
	}
	.payment-submit-btn {
		width: 25%;
		margin: 31px auto 0 auto;
	}
	#user_module.payment-setup .frm-bx {
		margin: 0 auto 30px;
		width: 80%;
	}
	#user_module.payment-setup {
		padding: 80px 0;
	}
	#guide_towards_success h3 {
		font-size: 45px;
		line-height: 50px;
	}
	.numbox strong {
		font-size: 35px;
		line-height: 55px;
	}
	#success-boxes .g_listbox .numbox {
		position: relative;
		width: 100%;
		height: 220px;
	}
	.g_listbox .contb {
		padding: 0;
	}
	#package h3 {
		font-size: 40px;
		line-height: 45px;
	}
	.f-b-low-trans-box .trans-box-item a strong {
		/*font-size: 70px; */
		font-size: 40px;
		line-height: 90px;
	}
	.f-b-featimg img {
		width: 100% !important;
	}
	.f-b-low-trans-box .trans-box-item {
		height: 200px;
		width: 48%;
	}
	.f-b-low-trans-box .trans-box-item a p span {
		font-size: 20px;
		line-height: 25px;
	}
	.box.box1 h4 {
		font-size: 28px;
		line-height: 35px;
	}
	.box h4 {
		font-size: 30px;
		line-height: 50px;
	}
	.item_box .item_img .item_status .status {
		color: #799F0C;
		font-size: 12px;
		line-height: 12px;
		padding: 10px;
	}
	#main-notif-box {
		width: 90%;
	}
	#mini-notif ul li a {
		text-align: left;
	}
}
@media screen and (max-width:767px) {
	.ty-prem-box-ad {
		width: 100%;
	}
	.header-t h1 {
		font-size: 36px;
		line-height: 42px;
		width: 90%;	
	}
	#t-page #t-container {
		padding: 100px 0;
	}
	.f-b-featimg {
		display: none;
	}
	#package h3 {
		text-align: center;
	}
	#package p {
		text-align: center;
	}
	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%; 
		/*width: 100%;**/
	}
	.four-col .col-lg-3 {
		width: 33%;
		padding: 0 5px;
	}
}
@media screen and (max-width:640px) {
	#t-page.member-premium .header-t h1 {
		font-size: 75px;
		line-height: 85px;
		margin-bottom: 10px;
	}
	#t-page.member-premium #t-container {
		padding-top: 100px;
	}
	#user_module.payment-setup .frm-bx {
		margin: 0 auto 20px;
		width: 100%;
	}
	.payment-submit-btn {
		width: 30%;
		font-size: 20px;
		line-height: 20px;
	}
	.four-col .item_box .item_img {
		height: 180px !important;
	}
	.item_info h5 {
		font-size: 14px;
		/* font-size: 16px; */
		line-height: 14px;
		/* line-height: 19px; */
		height: 38px;
	}
}
@media screen and (max-width:480px) {
	.ty-prem-box-img {
		padding: 0;
		text-align: center;
	}
	.ty-prem-box-ad {
		margin-top: 40px;
	}
	#user_module.payment-setup h3 {
		font-size: 25px;
		line-height: 32px;
		margin-bottom: 15px;
	}
	#guide_towards_success h3 {
		font-size: 38px;
		line-height: 43px;
	}
	.g_listbox .contb span {
		font-size: 12px;
		line-height: 15px;
	}
	.f-b-low-trans-box .trans-box-item a strong {
		font-size: 50px;
		line-height: 90px;
	}
	.f-b-low-trans-box .trans-box-item a p span {
		font-size: 16px;
		line-height: 22px;
	}
	.step_content ul li a {
		width: 100%;
	}
	.four-col .col-lg-3 {
		width: 50%;
	}
	
}
@media screen and (max-width:440px) {
	.header-t h1 {
		font-size: 31px;
		line-height: 37px;
		width: 100%;;
	}
	.header-t p strong {
		display: inline-block;
		margin-top: 8px;
	}
	#t-page.member-premium .header-t h1 {
		font-size: 55px;
		line-height: 60px;
		margin-bottom: 0;
	}
	.header-t p {
		font-size: 14px;
		line-height: 14px;
		margin: 0 0 6px;
	}
	#user_module.payment-setup .bx-child span {
		font-size: 13px;
		line-height: 14px;
		width: 100px;
	}
	#success-boxes .g_listbox {
		width: 100%;
	}
	.g_listbox .contb span {
		font-size: 14px;
		line-height: 18px;
		width: 80%;
	}
	.f-b-low-trans-box .trans-box-item {
		width: 96%;
		margin: 10px auto;
	}
	.bx-child img {
		width: 100%;
	}
	.item_info h5 {
	/*	font-size: 12px; */
		font-size: 13px; 
	}
	.four-col .item_box .item_img {
		height: 130px !important;
	}
	.item_box {
		margin: 5px 0;
		border-radius: 20px;
	}
}
