/* how to make jewellery CSS */

.cgj {
	font-size: 16px;
	line-height: 1.4;
	font-weight: normal;
	color: #707070;
	padding: 30px 0;
}

.cgj * {
	box-sizing: border-box;
}

.cgj img {
	max-width: 100%;
}

.cgj-container-md {
	width: 100%;
	max-width: 1164px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cgj-container-md > * {
	position: relative;
	z-index: 1;
}

.cgj-container-lg {
	width: 100%;
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cgj-container-lg > * {
	position: relative;
	z-index: 1;
}

/* typography */

.cgj h1,
.cgj h2,
.cgj h3,
.cgj h4,
.cgj h5,
.cgj h6,
.cgj .h1,
.cgj .h2,
.cgj .h3,
.cgj .h4,
.cgj .h5,
.cgj .h6 {
	color: #0C0908;
	font-weight: normal;
	line-height: 1.2;
	margin: 20px 0 10px;
}

.cgj h1,
.cgj .h1 {
	font-size: 45px;
}

.cgj h2,
.cgj .h2 {
	font-size: 40px;
}

.cgj h3,
.cgj .h3 {
	font-size: 25px;
}

.cgj h4,
.cgj h5,
.cgj h6,
.cgj .h4,
.cgj .h5,
.cgj .h6 {
	font-size: 20px;
}

.cgj p {
	margin: 0 0 20px;
}

.cgj p + .cg-btn {
	margin-top: 10px;
}

.cgj ul,
.cgj ol {
	padding: 0 0 0 20px;
	margin: 0 0 15px;
}

.cgj li {
	margin: 0 0 10px;
}

.cgj .cg-btn {
	display: inline-block;
	height: 38px;
	line-height: 36px;
	min-width: 180px;
	font-size: 16px;
	text-align: center;
	color: #fff;
	border: 1px solid #0C0908;
	background-color: #0C0908;
	padding: 0 20px;
	text-decoration: none;
	border-radius: 0;
/*	min-width: 160px;*/
	transition: .2s all;
	cursor: pointer;
}

.cgj .cg-btn i {
	margin-left: 20px;
	position: relative;
	top: 1px;
}

.cgj .cg-btn i:not(.pre) {
	top: 50%;
    transform: translateY(-50%);
    float: right;
}

.cgj .cg-btn i.pre {
	margin-right: 10px;
	margin-left: 0;
}

.cgj .cg-btn:hover,
.cgj .cg-btn:focus {
	background-color: transparent;
	color: #0C0908;
}

.cgj .cg-btn.btn--blue {
	background-color: #314C89;
	color: #fff;
	border-color: #314C89;
}

.cgj .cg-btn.btn--blue:hover,
.cgj .cg-btn.btn--blue:focus {
	background-color: #fff;
	color: #314C89;
}

.cgj .cg-btn.btn--green {
	background-color: #13C057;
	color: #fff;
	border-color: #13C057;
}

.cgj .cg-btn.btn--green:hover,
.cgj .cg-btn.btn--green:focus {
	background-color: #fff;
	color: #13C057;
}

.cgj .cg-btn.btn--red {
	background-color: #fff;
	color: #FF0000;
	border-color: #FF0000;
}

.cgj .cg-btn.btn--red:hover,
.cgj .cg-btn.btn--red:focus {
	background-color: #FF0000;
	color: #fff;
}

.cgj .cg-btn.btn--black {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

.cgj .cg-btn.btn--black:hover,
.cgj .cg-btn.btn--black:focus {
	background-color: #fff;
	color: #000;
}

.cgj .cg-btn.sm {
	height: 32px;
    line-height: 30px;
    min-width: 118px;
    padding: 0 8px;
    font-size: 14px;
}

.cgj .cg-btn.sm i.pre {
	margin-right: 2px;
}

.cgj .btn-as-link {
	border: none;
	background: none;
	padding: 0;
	font-size: inherit;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.cgj .btn-as-link:hover,
.cgj .btn-as-link:focus {
	text-decoration: none;
}

.cgj ul.ticks {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.cgj ul.ticks li:before {
	content: '✓';
	margin-right: 10px;
}

/* decorative bg's */

.cgj #cgj-wave-1 {
	position: absolute;
	/* top: 36%; */
	top: 55%;
	left: 50%;
	width: 100vw;
    max-width: 100vw;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.cgj #cgj-wave-2 {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1920px;
	max-width: 1920px;
	height: 100%;
	transform: translateX(-50%);
	z-index: 0;
	pointer-events: none;
}

.cgj #cgj-wave-3 {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    max-width: 200vw;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* components */

.cgj__banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	width: 100%;
	min-height: 390px;
	padding: 60px 20px;
	overflow: hidden;
	border-radius: 22px;
	background-image: url('/images/new-to-jewellery-making/cgj-video-banner-poster.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.cgj__banner * {
	position: relative;
	z-index: 3;
}

.cgj__banner iframe {
	position: absolute;
	top: 50%;
	left: -1px;
	transform: translateY(-50%);
	width: calc(100% + 2px);
	height: auto;
	aspect-ratio: 16/9;
	z-index: 1;
}

.cgj__banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: #000;
	opacity: .15;
}

.cgj__banner__heading {
	/*font-weight: 500;*/
	color: #fff!important;
	font-size: 45px!important;
	font-weight: bold;
	margin: 0!important;
}

.cgj__intro {
	width: 100%;
	text-align: center;
	/*padding: 60px 0;*//* JS 01/10 */
	padding: 60px 0 0;
}

.cgj__intro > *:nth-child(1) {
	margin-top: 0;
}

.cgj__intro__btns {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 30px 0 -10px!important;
	padding: 0!important;
	list-style: none;
}

.cgj__intro__btns .cg-btn {
	margin: 10px;
	max-width: calc(25% - 20px);
}

.cgj__5050-cta {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 30px;
}

.cgj__5050-cta__left {
	width: 50%;
	padding: 30px 40px;
	background-color: #ede2d0;
	color: #0C0908;
	position: relative;
}

.cgj__5050-cta__img {
	position: absolute;
	top: 30px;
	right: 40px;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.cgj__5050-cta__heading {
	color: inherit;
	margin: 0 0 20px!important;
	width: 50%;
}

.cgj__5050-cta__heading > span {
	position: relative;
	display: inline-block;
	margin: 2px 0;
}

.cgj__5050-cta__heading > span:before {
	content: '';
	position: absolute;
	width: calc(100% + 10px);
	height: 100%;
	top: 0;
	left: -5px;
	background-image: url('/images/new-to-jewellery-making/highlight-bg.png');
	background-repeat: repeat;
	background-size: auto 100%;
	background-position: left center;
	opacity: 1;
	z-index: 1;
}

.cgj__5050-cta__heading > span span {
	position: relative;
	z-index: 3;
}

.cgj__5050-cta p {
	font-size: 25px;
	line-height: 1.3;
	width: 50%;
}

.cgj__5050-cta__btns {
	width: 100%;
}

.cgj__5050-cta__btns .cg-btn {
	height: 55px;
	line-height: 53px;
	border-radius: 28px;
	font-size: 22px;
	margin: 0 16px 16px 0;
}

.cgj__5050-cta__right {
	width: 50%;
	padding: 30px 40px 14px;
	background-color: #FADCE8;
	color: #0C0908;
	position: relative;
}

.cgj__popular {
	position: relative;
	min-height: 565px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	/*margin: 60px 0;*/
	/*padding: 120px 0;*/
	/*padding: 120px 0 0;*/
	/* JS 01/10 Try again lol */
	padding: 60px 0 0;
}

.cgj__popular__heading {
	width: 100%;
	margin: 0 0 30px!important;
	text-align: center;
	position: relative;
	z-index: 1;
}

.cgj__popular__list {
	/*width: 100%;*/
	list-style: none;
	position: relative;
	z-index: 1;
	/*margin: 0!important;*/
	padding: 0!important;
	display: flex;
	/*justify-content: space-around;*/
	align-items: center;
	flex-wrap: wrap;
    justify-content: center;
	width: 90%;
	margin: 0 auto!important;
}

.cgj__popular__item {
	position: relative;
	display: inline-block;
	/*margin: 0!important;*/
	transition: .2s all;
	margin: 0 20px 50px !important;
}

.cgj__popular__item:hover,
.cgj__popular__item:focus-within {
	transform: translateY(-30px);
}

.cgj__popular__item a {
	text-decoration: none;
}

.cgj__popular__item__img {
	display: block;
}

.cgj__popular__item__heading {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	display: inline-block;
	margin: 0!important;
	padding: 13px 16px;
	background-color: #D8BD7F;
	white-space: nowrap;
	text-align: center;
}

.cgj__popular__item:nth-child(2) .cgj__popular__item__heading {
	background-color: #D3AD95;
	color: #fff;
}

.cgj__popular__item:nth-child(3) .cgj__popular__item__heading {
	background-color: #D2E9E8;
}

.cgj__popular__item:nth-child(4) .cgj__popular__item__heading {
	background-color: #D7BF99;
	color: #fff;
}

.cgj__popular__item:nth-child(5) .cgj__popular__item__heading {
	background-color: #DBA899;
}	

.cgj__popular__item:nth-child(6) .cgj__popular__item__heading {
	background-color: #FADCE8;
}

.cgj__popular__item:nth-child(2) {
	top: -10px;
}

.cgj__popular__item:nth-child(3) {
	top: -5px;
}

.cgj__popular__item:nth-child(4) {
	
}

.cgj__popular__item:nth-child(5) {
	top: 5px;
}	

.cgj__popular__item:nth-child(6) {
	top: -30px;
}

.cgj__intro--sm {
	width: 100%;
	max-width: 530px;
	margin: 0 auto;
	display: block;
	text-align: center;
	padding: 15px 0 45px;
}

.cgj__intro--sm > *:nth-child(1) {
	margin-top: 0;
}

.cgj__intro--sm > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgj__cta-banner {
	min-height: 450px;
	width: 100%;
	position: relative;
	margin: 15px 0 45px;
}

.cgj__cta-banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.cgj__cta-banner__heading {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 2;
	margin: 0!important;
	font-size: 60px!important;
	color: #fff!important;
	width: 100%;
	max-width: 340px;
	line-height: 1.1!important;
}

.cgj__cta-banner__caption {
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 2;
	margin: 0!important;
	color: #fff;
	width: auto;
	background-image: url('/images/new-to-jewellery-making/highlight-bg--2.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 20px 60px 20px 20px;
	font-size: 35px;
	line-height: 1.15!important;
}

.cgj__products {
	display: block;
	margin: 0 -8px;
	display: flex;
	flex-wrap: wrap;
}

.cgj__products-wrapper {
	width: 100%;
	position: relative;
	padding: 15px 0;
}

.cgj__products-wrapper .cgj__products__arrow {
	position: absolute;
	top: 50%;
	font-size: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #fff;
	transition: .3s all;
	z-index: 10;
}

.cgj__products-wrapper .cgj__products__arrow:hover,
.cgj__products-wrapper .cgj__products__arrow:focus {
	border-color: #000;
}

.cgj__products:not(.slick-initialized) {
	max-height: 400px;
	overflow: hidden;
}

.cgj__products-wrapper .slider-prev {
	left: -50px;
}

.cgj__products-wrapper .slider-next {
	right: -50px;
}

.cgj__product-card {
	display: flex!important;
	flex-wrap: wrap;
	justify-content: space-between;
	width: calc(25% - 16px);
	margin: 0 8px 30px;
	color: #000;
}

.cgj__product-card__image-wrapper {
	position: relative;
	width: 100%;
}

.cgj__product-card__image-wrapper:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.cgj__product-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.cgj__product-card__image--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	opacity: 0;
	transition: .1s all;
}

.cgj__product-card__image--hover:hover,
.cgj__product-card:focus .cgj__product-card__image--hover {
	opacity: 1;
}

.cgj__product-card__video {
	position: absolute;
	bottom: 10px;
	left: 10px;
	border-radius: 50%;
	z-index: 3;
	width: 28px;
	height: 28px;
	border: none;
	background-color: #000;
	cursor: pointer;
}

.cgj__product-card__video:before {
	content: '\f167';
	font-family: 'Font Awesome 5 Brands';
	position: absolute;
	line-height: 32px;
	text-align: center;
	font-size: 15px;
	color: #fff;
	height: 28px;
	width: 28px;
	top: 0;
	left: 0;
	transition: .3s all;
}

.cgj__product-card__favourite {
	position: absolute;
	bottom: 10px;
	left: 44px;
	border-radius: 50%;
	z-index: 3;
	width: 28px;
	height: 28px;
	border: none;
	background-color: #000;
	cursor: pointer;
	font-weight: 300;
}

.cgj__product-card__favourite:before {
	content: '\f004';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	line-height: 32px;
	text-align: center;
	font-size: 15px;
	color: #fff;
	height: 28px;
	width: 28px;
	top: 0;
	left: 0;
	font-weight: 300;
	transition: .3s all;
}

.cgj__product-card.favourited .cgj__product-card__favourite:before {
	font-weight: bold;
}

.cgj__product-card__heading {
	width: 100%;
	font-size: 18px!important;
	font-weight: 500!important;
	margin: 20px 0 10px!important;
	line-height: 1.3!important;
}

.cgj__product-card__sku {
	width: 50%;
	font-size: 13px;
	font-weight: 300;
	margin: 0 0 10px;
}

.cgj__product-card__price {
	width: 50%;
	font-size: 20px;
	font-weight: 500;
	margin: 4px 0 0!important;
}

.cgj__product-card__price s {
	margin-right: 5px;
}

.cgj__product-card__btn {
	width: 40%;
	min-width: 0!important;
	margin-top: 0!important;
	height: 44px;
	line-height: 44px;
}

.cgj__products__heading {
	text-align: center;
	margin: 0 0 45px!important;
}

.cgj__5050cta {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	min-height: 420px;
	margin: 45px 0;
}

.cgj__5050cta__left {
	position: relative;
	width: 50%;
	background-color: #B8D7D5;
	padding: 35px;
}

.cgj__5050cta__left__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}

.cgj__5050cta__right {
	position: relative;
	width: 50%;
	background-color: #F5B9D1;
	color: #000;
	padding: 35px;
	display: flex;
	flex-wrap: wrap;
}

.cgj__5050cta__right__heading {
	width: 90%;
	margin: 0!important;
	color: #fff!important;
	font-weight: normal!important;
	background-image: url('/images/new-to-jewellery-making/highlight-bg--3.png');
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 20px 60px 20px 20px;
	line-height: 1.2!important;
}

.cgj__5050cta__right ul {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 30px 0;
	font-size: 16px;
	color: #000;

}

.cgj__5050cta__right ul li {
	margin: 0 0 8px;
	position: relative;
	/*padding-left: 30px;*/
}

.cgj__5050cta__right ul li:before {
	font-family: "Font Awesome 6 Pro";
	content: '\f058';
	margin-right: 8px;
	font-weight: 300;
	font-size: 19px;
	position: relative;
	top: 1px;
}

.cgj__5050cta__right .cg-btn {

}

.cgj__product-slider {
	padding: 15px 60px;
	position: relative;
	justify-content: center;
	display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px;
    width: 100%;
}

.cgj__product-slider__heading {
	width: 100%;
	text-align: center;
	margin: 0 0 45px!important;
}

.cgj__product-slider .product-slider {
	width: calc(100% - 16px);
	margin: 0 -8px;
}

.cgj__product-slider .product-slider:not(.slick-initialized) {
	max-height: 300px;
	overflow: hidden;
}

.cgj__product-slider .slider-prev {
	left: 15px;
}

.cgj__product-slider .slider-next {
	right: 15px;
}

.cgj__product-slider .product-slider .prodslide {
	padding: 0 8px;
	margin: 0 0 30px;
}

.cgj__product-slider .product-slider .prodslide img {
	width: 100%;
	max-width: 398px;
	margin: 0 auto;
	height: auto;
	border: 1px solid #E0E0E0;
}

.cgj__product-slider .product-slider .prodslide h3 {
	margin: 15px 0 5px;
	padding: 0;
	color: #000;
	width: 100%;
	text-decoration: none;
	font-size: 18px;
}

.cgj__product-slider .product-slider .prodslide p {
	font-size: 13px;
	color: #707070;
	margin: 0 0 10px;
}

.cgj__product-slider .product-slider .prodslide .price {
	font-size: 22px;
	color: #000;
	margin: 0;
}

.cgj__product-slider .product-slider .prodslide a {
	text-decoration: none;
}

.cgj__product-slider .product-slider__arrow {
	position: absolute;
	top: calc(50% - 30px);
	font-size: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #fff;
	transition: .3s all;
	z-index: 10;
}

.cgj__product-slider .product-slider__arrow:hover,
.cgj__product-slider .product-slider__arrow:focus {
	border-color: #000;
}

.cgj__toptips {
	position: relative;
	width: 100%;
/*	padding: 190px 0 30px;*/
	padding: 60px 0 30px;
}

.cgj__toptips__bg-text {
	position: absolute;
	z-index: 1;
	top: 30px;
	left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    color: #D2E9E8;
    opacity: .45;
    text-transform: uppercase;
    font-size: 140px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
}

.cgj__toptips__heading {
	width: 100%;
	text-align: center;
	margin: 0 0 45px!important;
}

.cgj__toptips__group {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 30px 0 0;
}

.cgj__toptips__group .break {
	width: 100%;
}

.cgj__toptips__item {
/*	width: 40%;*/
	position: relative;
	padding: 0 0 90px;
	text-decoration: none;
	display: inline-block;
	top: 0;
	transition: .2s all;
}

.cgj__toptips__item:hover,
.cgj__toptips__item:focus {
	top: -30px;
}

.cgj__toptips__item__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-22deg);
	z-index: 1;
	width: 1000px;
	height: auto;
	aspect-ratio: 4/1;
	max-width: 125vw;
	display: inline-block;
	background-color: #f8f8f9b3;
}

.cgj__toptips__item__img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	display: block;
}

.cgj__toptips__item__label {
	height: 55px!important;
    line-height: 53px!important;
    border-radius: 28px!important;
    font-size: 22px!important;
    margin: 0;
    position: absolute;
    z-index: 3;
    top: 0;
    right: -40px;
    transform: translateY(-50%);
}

.cgj__toptips__item__heading {
	z-index: 3;
	position: relative;
}

.cgj__toptips__item:nth-of-type(1) {
	margin-left: auto;
	margin-right: auto;
}

.cgj__toptips__item:nth-of-type(1) .cgj__toptips__item__heading {
	position: absolute;
	top: 20%;
	left: -50px;
}

.cgj__toptips__item:nth-of-type(2) {
	margin-top: 90px;
}

.cgj__toptips__item:nth-of-type(2) .cgj__toptips__item__bg {
	transform: translate(-50%, -50%) rotate(22deg);
}

.cgj__toptips__footer {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin: -150px 0 30px;
	position: relative;
	z-index: 3;
}

.cgj__toptips__quote {
	width: 100%;
	max-width: 500px;
	padding: 15px 0 0 25px;
	position: relative;
	font-size: 35px;
	color: #0D0909;
	line-height: 1.35;
}

.cgj__toptips__quote:before {
	content: '“';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 60px;
	line-height: .8;
}

.cgj__madewithcg {
	width: 100%;
	padding: 60px 0;
}

.cgj__madewithcg__intro {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 60px;
	padding: 40px 30px;
	display: block;
	background-color: #f8f8f9b3;
	text-align: center;
	font-size: 25px;
}

.cgj__madewithcg__heading {
	margin: 0 0 20px!important;
}

.cgj__madewithcg__intro > * {
	max-width: 450px;
	margin-left: auto!important;
	margin-right: auto!important;
	display: block;
}

.cgj__madewithcg__intro > *:nth-child(1) {
	margin-top: 0;
}

.cgj__madewithcg__intro > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgj__madewithcg__intro p a {
	color: #0D0909;
	text-decoration: none;
}

.cgj__madewithcg__group {
	width: 100%;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

.cgj__madewithcg__item {
	text-decoration: none;
	position: relative;
	top: 0;
	transition: .2s all;
	max-width: 33.333%;
	padding: 0 10px;
	margin: 0 0 30px;
}

.cgj__madewithcg__item > * {
	position: relative;
	z-index: 2;
}

.cgj__madewithcg__item:hover,
.cgj__madewithcg__item:focus {
	top: -30px;
}

.cgj__madewithcg__item:nth-child(2) {
	margin-top: 150px;
}

.cgj__madewithcg__item:nth-child(3) {
	margin-top: -15px;
}

.cgj__madewithcg__item__img {
	display: block;
}

.cgj__madewithcg__item__bg {
	position: absolute;
	top: 33%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 900px;
	height: auto;
	aspect-ratio: 4/1;
	max-width: 100vw;
	display: inline-block;
	background-color: #f8f8f9b3;
	pointer-events: none;
}

.cgj__faqs {
	position: relative;
	width: 100%;
	/*	padding: 315px 0 30px;*/
	/*padding: 250px 0 30px;*//* JS 01/10 */
	padding: 150px 0 30px;
}

/*.cgj__faqs__bg-text {
	position: absolute;
	z-index: 1;
	top: 120px;
	left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    color: #fff;
    font-size: 140px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
}*/

.cgj__faqs__heading {
	width: 100%;
	text-align: center;
	margin: 0 0 90px!important;
	position: relative;
	z-index: 2;
}

.cgj__faqs__main {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.cgj__faqs__img {
	max-width: 50%;
	align-self: center;
}

.cgj__faqs__accordion {
	width: 100%;
	max-width: 550px;
	margin: 40px 0 60px;
}

.cgj__faqs__accordion__header {
	position: relative;
	width: 100%;
	margin: 20px 0 0!important;
	background: #EDEDE9;
}

.cgj__faqs__accordion__header__btn {
	width: 100%;
	border: none;
	box-shadow: none;
	font-size: 25px;
	background: none;
	text-align: left;
	padding: 25px 60px 25px 40px;
	cursor: pointer;
	z-index: 2;
}

.cgj__faqs__accordion__header__btn + span {
	font-size: 25px;
	position: absolute;
	top: 18px;
	right: 20px;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 40px;
	font-weight: normal;
	z-index: 1;
	transition: .2s all;
	transform-origin: center;
	pointer-events: none;
}

.cgj__faqs__accordion__header__btn + span:before {
	content: '\f078';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
}

.cgj__faqs__accordion__header__btn[aria-expanded="true"] + span {
	transform: rotate(180deg);
}

.cgj__faqs__accordion__panel {
	padding: 0 40px 25px 40px;
	font-size: 16px;
	color: #0C0908;
	background: #EDEDE9;
}

.cgj__faqs__accordion__panel > *:nth-child(1) {
	margin-top: 0;
}

.cgj__faqs__accordion__panel > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgj__glossary {
	width: 100%;
	max-width: 830px;
	background-color: #fafafb;
	border-radius: 57px;
	display: block;
	margin: 60px auto;
	padding: 0 0 50px;
	position: relative;
}

.cgj__glossary.collapsed:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(250,250,251,0) 0%, rgba(255,255,255,1) 100%);
	z-index: 1;
}

.cgj__glossary__heading {
	text-align: center;
	margin: 0 0 30px!important;
	padding: 50px 50px 0;
}

.cgj__glossary__inner {
	height: auto;
	overflow: hidden;
	position: relative;
	padding: 0 50px;
}

.cgj__glossary.collapsed .cgj__glossary__inner {
	height: 600px;
}

.cgj__glossary__expand {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.cgj__glossary__expand.hide {
	display: none;
	visibility: hidden;
}

.cgj__seo-footer {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin: 60px 0;
}

@media only screen and (max-width: 1300px) {

	.cgj {
		font-size: 18px;
	}

	.cgj__5050-cta__img {
		width: 150px;
	}

	.cgj__5050-cta__heading {
		width: 57%;
	}

	.cgj__popular {
/*		overflow: hidden;*/
		padding: 90px 0 0;
	}

	.cgj__popular__list {
		/*flex-wrap: wrap;
		justify-content: center;
		align-items: center;*/
		width: 100%;
	}

	.cgj__popular__item {
		margin: 0 20px 50px!important;
	}

	.cgj__faqs {
/*		overflow: hidden;*/
	}

	.cgj__toptips {
/*		overflow: hidden;*/
	}

}

@media only screen and (max-width: 1100px) {

	.cgj__product-card__btn {
		width: 100%;
	}

	.cgj__product-card__price {
		width: 100%;
		margin: 0 0 10px!important;
		font-size: 18px;
	}

	.cgj__product-card__rating {
		width: 100%;
		text-align: left;
		margin-top: 0;
	}

	.cgj__products-wrapper {
		padding: 15px 60px;
	}

	.cgj__products-wrapper .slider-next {
		right: 0;
	}

	.cgj__products-wrapper .slider-prev {
		left: 0;
	}

	.cgj__toptips__item__label {
		right: 15px;
	}

	.cgj__5050-cta__left,
	.cgj__5050-cta__right {
		padding: 30px 40px;
	}

	.cgj__5050-cta__img {
		width: 125px;
	}

	.cgj__5050-cta__heading {
		font-size: 30px!important;
	}

	.cgj__5050-cta p {
		font-size: 20px;
	}

	.cgj__5050-cta__btns .cg-btn {
	    height: 48px;
	    line-height: 46px;
	    font-size: 18px;
	    margin: 0 8px 8px 0;
	    min-width: 0;
	}

	.cgj__popular {
		padding: 30px 0 0;
	}

	.cgj__cta-banner__heading {
		font-size: 50px!important;
	}

	.cgj__5050cta__left {
		width: 35%;
	}

	.cgj__5050cta__right {
		width: 65%;
	}

	.cgj__toptips {
		padding: 150px 0 0;
	}

	.cgj__toptips__bg-text {
		font-size: 100px;
	}

	.cgj__toptips__item {
		max-width: 45%;
	}

	.cgj__toptips__footer {
		margin: -30px 0 30px;
		justify-content: center;
	}

	.cgj__faqs {
		/*padding: 280px 0 30px;*/ /* JS 01/10 */
	}

	.cgj__faqs__accordion {
		width: 55%;
	}

	.cgj__faqs__img {
		width: calc(45% - 30px);
		margin-left: 30px;
	}
	
}

@media only screen and (max-width: 850px) {

	.cgj__product-card {
		width: calc(50% - 16px);
	}

	.cgj__banner {
		aspect-ratio: 16/9;
		min-height: 0;
	}

	.cgj #cgj-wave-1 {
		top: 18%;
	}

	.cgj__5050-cta__left,
	.cgj__5050-cta__right {
		width: 100%;
	}

	.cgj__popular__item:nth-child(6) {
		top: 0;
	}

	.cgj__5050cta__right__heading {
		width: 100%;
	}

	.cgj__toptips__item__heading,
	.cgj__madewithcg__item__heading {
		font-size: 20px!important;
	}

	.cgj__faqs {
		/*padding: 200px 0 30px;*/ /* JS 01/10 */
		padding: 100px 0 30px;
	}

	.cgj__faqs__heading {
		margin: 0 0 90px !important;
	}

	.cgj__faqs__accordion {
		width: 100%;
		margin: 45px 0 0;
	}

	.cgj__faqs__img {
		display: none;
		visibility: hidden;
	}

	.cgj__seo-footer {
		margin: 15px 0 45px;
	}
}


@media only screen and (max-width: 600px) {

	.cgj {
		font-size: 16px;
	}

	.cgj h1,
	.cgj .h1,
	.cgj h2,
	.cgj .h2 {
		font-size: 30px;
	}

	.cgj .cg-btn {
		height: 46px;
		line-height: 44px;
		padding: 0 15px;
	}

	.cgj .cg-btn i {
		margin-left: 10px;
	}

	.cgj__products {
		margin: 0 0 30px;
	}

	.cgj__product-card {
		width: 100%;
	}

	.cgj__banner {
		padding: 20px;
	}

	.cgj__banner__heading {
		font-size: 35px!important;
	}

	.cgj #cgj-wave-1 {
		display: none;
	}

	.cgj__intro {
		padding: 45px 0;
	}

	.cgj__intro__btns .cg-btn {
		margin: 0 4px 8px;
		width: calc(50% - 8px);
		/*min-width: 0;*//* JS 01/10 */
		max-width: 100%;
	}

	.cgj__5050-cta__left, .cgj__5050-cta__right {
		padding: 30px 20px;
	}

	.cgj__5050-cta__img {
		right: 20px;
	}

	.cgj__popular {
		padding: 0;
		/*margin: 60px 0 30px;*/
		margin: 60px 0 0px;
	}

	.cgj__popular__item {
		max-width: calc(50% - 40px);
	}

	.cgj__popular__item__heading {
		font-size: 18px!important;
		padding: 10px;
	}

	.cgj__cta-banner {
		min-height: 350px;
	}

	.cgj__cta-banner__heading {
		font-size: 40px!important;
		left: 20px;
		width: calc(100% - 40px);
	}

	.cgj__cta-banner__caption {
		font-size: 24px;
		line-height: 1.25!important;
		padding: 15px 40px 15px 15px;
	}

	.cgj__products-wrapper {
		padding: 15px 0;
	}

	.cgj__products {
		padding: 0 45px;
	}

	.cgj__5050cta__left {
		width: 100%;
		height: auto;
		padding: 0;
	}

	.cgj__5050cta__left__bg {
		position: relative;
		width: 100%;
		height: auto;
		display: block;
	}

	.cgj__5050cta__right {
		width: 100%;
		padding: 30px 20px;
	}

	.cgj__product-slider {
		padding: 15px 45px 0;
	}

	.cgj__product-slider .slider-prev {
		left: 0;
	}

	.cgj__product-slider .slider-next {
		right: 0;
	}

	.cgj__toptips {
		padding: 100px 0 0;
	}

	.cgj__toptips__bg-text {
		font-size: 50px;
	}

	.cgj__toptips__item {
		max-width: 100%;
		padding: 0 20px 60px;
	}

	.cgj__toptips__item__label {
		height: 46px!important;
    	line-height: 44px!important;
    	padding: 0 15px!important;
    	font-size: 18px!important;
    	min-width: 0!important;
    	right: 30px;
	}

	.cgj__toptips__item:nth-of-type(1) .cgj__toptips__item__heading {
		position: relative;
		top: auto;
		left: auto;
	}

	.cgj__toptips__item:nth-of-type(2) {
		margin-top: 0;
	}

	.cgj__toptips__footer {
		margin: 0;
	}

	.cgj__toptips__quote {
		font-size: 22px;
	}

	.cgj__madewithcg__intro {
		font-size: 18px;
	}

	.cgj__madewithcg__group {
		flex-wrap: wrap;
	}

	.cgj__madewithcg__item {
		max-width: 100%;
		padding: 0 20px;
	}

	.cgj__madewithcg__item:nth-child(2) {
		margin-top: 0;
	}

	.cgj__madewithcg {
		padding: 60px 0 30px;
	}

	.cgj__faqs {
		/*padding: 125px 0 30px;*/ /* JS 01/10 */
		padding: 70px 0 30px;
	}

	.cgj__faqs__heading {
		font-size: 22px!important;
		/*margin: 0 0 60px!important;*/
		margin: 0!important;
	}

	.cgj__faqs__accordion__header__btn {
		padding: 20px 40px 20px 20px;
		font-size: 20px;
		line-height: 1.2;
	}

	.cgj__faqs__accordion__header__btn + span {
		right: 5px;
		font-size: 20px;
	}

	.cgj__faqs__accordion__panel {
		padding: 0 20px 20px 20px;
	}

	.cgj__glossary {
		margin: 30px 0;
	}

	.cgj__glossary__heading {
		padding: 30px 20px 0;
	}

	.cgj__glossary__inner {
		padding: 0 20px;
	}

	.cgj__glossary.collapsed:after {
		bottom: 50px;
	}

}


/* fresh rel test */

.frv_section:not([data-state="loaded"]),
#b_related_products .tmspslot:not([data-state="loaded"]),
.fr-loading {
	position: relative;
	background-image: url('/images/new-to-jewellery-making/wait.gif');
	background-color: #f2f2f2;
	background-position: center 35%;
	background-size: 50px auto;
	background-repeat: no-repeat;
}

.fr-loading {
	min-height: 457.8px;
	width: 100%;
}

.frv_section:not([data-state="loaded"]):before,
#b_related_products .tmspslot:not([data-state="loaded"]):before,
.fr-loading:before {
	content: 'Loading Recommendations';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}

.frv_section:not([data-state="loaded"]):after,
#b_related_products .tmspslot:not([data-state="loaded"]):after,
.fr-loading:after {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
	margin: 0;
	max-width: 300px;
	text-align: center;
	content: 'Can\'t see recommendations? try enabling javascript or disabling your ad-blocker';
}

@media only screen and (max-width: 600px) {

	.frv_section:not([data-state="loaded"]),
	#b_related_products .tmspslot:not([data-state="loaded"]),
	.fr-loading {
		background-position: center 30%;
		background-size: 40px auto;
	}

	.frv_section:not([data-state="loaded"]):before,
	#b_related_products .tmspslot:not([data-state="loaded"]):before,
	.fr-loading:before {
		top: 46%;
	}

	.frv_section:not([data-state="loaded"]):after,
	#b_related_products .tmspslot:not([data-state="loaded"]):after,
	.fr-loading:after {
		top: 63%;
	}
}



