html, body {
    height: 100%;
}

body{
    background-color: #f2f2f2;
}

/*---------------------- Product Configurator Css Start ----------------------------*/
.pConfigurator_container {
    padding: 20px 0;
}

/*---------------------- Page Ttitle Css Start ----------------------------*/
.pPageTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.pPageTitle h1 {
    color: rgba(98, 98, 98, 0.14);
    margin:0;
}

.pPageTitle h2 {
    margin: -26px 0 20px;
    text-transform: uppercase;
    color: var(--gray-color);
}

select.languageSelect {
    min-width: 150px;
    border: 2px solid #E8E8E8;
    padding: 10px;
}

.productInnerBox {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 0 0 0 30px;
}

/*---------------------- Product Configurator Row Css Start ----------------------------*/
.pConfiguratorRow {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
/*---------------------- Product Detail Column Css Start ----------------------------*/
.pConfiguratorDetail {
    width: 48.4%;
    padding: 30px 35px 0 0;
    max-height: 557px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 35px;
}

.pCDBox {
    border: 2px solid #E8E8E8;
    margin-bottom: 20px;
}

.pCDBox .pCDBoxToggle {
    display: inline-block;
    width: 100%;
    padding: 5px 16px;
    font-size: var(--font-size-18);
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 400;
    position: relative;
    min-height: 54px;
}

a.pCDBoxToggle span.pCDBoxvariationTitle {
    display: none;
    color: #9F9F9F;
    font-size: var(--font-size-16);
    text-transform: none;
    line-height: 16px;
    margin-top: 5px;
}

.pCDBox.selectedBox a.pCDBoxToggle span.pCDBoxvariationTitle {
    display: block;
}

.pCDBox .pCDBoxToggle::after {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(/configurator/assets/images/bi_chevron-right.svg);
    transition: 0.5;
    -webkit-transition: 0.5;
    -moz-transition: 0.5;
    -ms-transition: 0.5;
    -o-transition: 0.5;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.pCDBox.pCDBoxToggleActive .pCDBoxToggle::after {
    transform: unset;
    transition: 0.5;
    -webkit-transition: 0.5;
    -moz-transition: 0.5;
    -ms-transition: 0.5;
    -o-transition: 0.5;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
}

.pCDToggleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 40px;
}

.pCDToggleCol h5 {
    margin: 0;
}

.pCDSelectedImage {
    width: 44px;
    height: 44px;
}

.pCDBox.selectedBox a.pCDBoxToggle .pCDSelectedImage {
    background-color: #f2f2f2;
}

.pCDSelectedImage img {
    width: 100%;
    height: 100%;
    display: none;
}

.pCDBox.selectedBox a.pCDBoxToggle .pCDSelectedImage img {
    display: block;
    object-fit: cover;
}

.pCDBoxContent {
    display: none;
    padding: 0 16px 20px;
    margin-top: 10px;
}

.pCDContentInner {
    max-height: 280px;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 156px;
}

.pCDContentInner::-webkit-scrollbar-track,.pConfiguratorDetail::-webkit-scrollbar-track{
	background-color: #fff;
}

.pCDContentInner::-webkit-scrollbar,.pConfiguratorDetail::-webkit-scrollbar{
    width: 4px;
    background-color: #fff;
}

.pCDContentInner::-webkit-scrollbar-thumb,.pConfiguratorDetail::-webkit-scrollbar-thumb{
	background-color: #f2f2f2;
}

.pCDBoxRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -9px -20px;
}

.pCDBoxCol {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.pCDBoxCard {
    text-align: center;
    height: 100%;
    max-width: 102px;
    margin: 0 auto;
}

.pCDBoxCard input[type="radio"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.pCDBoxCard label {
    padding: 13px 0 12px;
    display: inline-block;
    height: 100%;
    border: 1px solid var(--light-gray-color);
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 100%;
}

.pCDBoxCard label:hover {
    border-color: var(--black-color);
}

.pCDBoxCard input[type="radio"]:checked + label {
    border-color: transparent;
}

.pCDBoxCard input[type="radio"]:checked + label::after {
    position: absolute;
    content: '';
    border: solid 2px #B49957;
    width: 99%;
    height: 99%;
    left: -1px;
    top: -1px;
    z-index: -1;
}

.pCDImage {
    width: auto;
    background-color: #f2f2f2;
    margin: 0 13px;
}

.pCDImage img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    margin-bottom: -4px;
}

.pCDCardContent {
    padding: 0 6px;
}

.pCDBoxCard h4 {
    margin: 16px 0 0;
}

.pCDContentBox {
    background-color: #f2f2f2;
    padding: 10px;
    margin-top: 20px;
}

.pCDContentBox p {
    margin: 0;
    line-height: var(--line-height-18);
}

.yellowGoldBg {
    background-image: linear-gradient(270deg, #F9B916 0%, #FFEFB7 100%);
}

.whiteGoldBg {
    background: linear-gradient(90deg, rgba(247, 247, 247, 0.69) -0.15%, #DADADA 99.85%);
}

.blackGoldBg {
    background: linear-gradient(90deg, rgba(90, 90, 90, 0.89) -0.15%, #1B1B1B 99.85%);
}

.roseGoldBg {
    background: linear-gradient(90deg, rgba(202, 129, 106, 0.53) -0.15%, #C96B56 99.85%);
}

.pCdFromRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.pCDInputCol {
    width: 76.5%;
    position: relative;
}

p#remainingC {
    position: absolute;
    bottom: -22px;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.formGroup input {
    width: 100%;
    border: 1px solid var(--light-gray-color);
    padding: 13px 8px;
    height: 44px;
    font-size: var(--font-size-16);
    line-height: var(--line-height-18);
    font-weight: 400;
    color: var(--light-gray-color);
}

.formGroup input:focus, .formGroup input:focus-visible {
    outline: none;
    border-color: var(--black-color);
    color: var(--black-color);
}

#jewelEngraving{
    position: relative;
}

.pCdBtnCol {
    width: 23.5%;
}

.pCdBtnCol ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.pCdBtnCol ul li {
    margin-left: 20px;
}

.patternIcons {
    margin-top: 20px;
}

.patternIcons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.patternIcons ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

.patternIcons ul li a {
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: solid 1px transparent;
}

.patternIcons ul li a span {
    font-size: 28px;
    color: var(--black-color);
    line-height: 20px;
}

.patternIcons ul li:nth-child(2) a span {
    font-size: 20px;
}

.textAreaSection {
    margin-top: 20px;
}

.formGroup textarea {
    width: 100%;
    border: 1px solid #A8A8A8;
    padding: 13px 8px;
    font-size: var(--font-size-16);
    line-height: var(--line-height-18);
    font-weight: 400;
    color: var(--light-gray-color);
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-family);
}

.formGroup textarea:focus,.formGroup textarea:focus-visible{
    outline: none;
    border-color: var(--black-color);
    color: var(--black-color);
}

.pCActions {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 35px;
}
.sendQueryBtn {
    cursor: pointer;
}

/*---------------------- Engraving Popup Css Start ----------------------------*/
.engravingPopup {
    position: absolute;
    max-width: 280px;
    width: 100%;
    height: auto;
    right: 0;
    top: 0;
    z-index: 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 70px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 70px rgb(0 0 0 / 10%);
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
}

.engravingPopupActive .engravingPopup{
    opacity: 1;
    pointer-events: visible;
    transition: 0.4s;
    z-index: 999;
    visibility: visible;

}

.engravingPopup::before {
    position: absolute;
    content: '';
    left: -11px;
    top: 0;
    -webkit-clip-path: polygon(50% 0%, 50% 79%, 0% 36%);
    clip-path: polygon(50% 0%, 50% 79%, 0% 36%);
    background-color: #fff;
    width: 23px;
    height: 19px;
    bottom: 60px;
    margin: auto;
}

.popupHeader {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: solid 1px #f2f2f2;
}

.popupHeader h4 {
    margin: 0;
}

.popupContent {
    width: 100%;
}

.popupContent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modelWithEngrave {
    position: relative;
}

.engraveTextDisplay {
    position: absolute;
    right: 0;
    margin: auto;
    font-size: 18px;
    color: #b9b9b369;
    text-shadow: 0px 1px 0px rgb(255 255 255 / 30%), 0px -1px 0px rgb(0 0 0 / 58%);
    transform: rotate(-31deg);
    -webkit-transform: rotate(-31deg);
    -moz-transform: rotate(-31deg);
    -ms-transform: rotate(-31deg);
    -o-transform: rotate(-31deg);
}

div#modelType55 .engraveTextDisplay{
    bottom: 36%;
    left: 30%;
}

div#modelType56 .engraveTextDisplay{
    bottom: 33%;
    left: 35%;
    font-size: 16px;
}

/*---------------------- Product Image Column Css Start ----------------------------*/
.pConfiguratorImage{
    width: 51.6%;
    text-align: right;
    padding-bottom: 35px;
    position: relative;
    padding-right: 30px;
}

.skinTypes,.modelTypes,.gemstoneTypes {
    position: absolute;
    top: 0;
    z-index: 1;
}

.cTypesGroup {
    width: 400px;
    height: 550px;
}

.cTypesGroup img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

.pConfiguratorInnerSection {
    position: relative;
    min-height: 502px;
    max-width: 500px;
}

.pConfiguratorImageLoader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255);
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(/configurator/assets/images/oval-loader.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/*---------------------- Product Summary Section Css Start ----------------------------*/
.productSummaryRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.productSummaryDetail {
    padding: 30px 0 53px 0;
    width: 45%;
}

.productSummaryDetail h3{
    margin: 0;
}

.productSummaryInner {
    margin: 15px 0 27px;
}

.pSummaryBox {
    margin-bottom: 20px;
}

.pSummaryBox h4 {
    margin: 0 0 7px;
    color: #9f9f9f;
    text-transform: uppercase;
}

.pSBoxRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.pSBImg {
    background-color: #f2f2f2;
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.pSBImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pSBoxRow h5 {
    margin: 0;
}

.pSumarryImage {
    width: 500px;
    margin: 0 auto;
    height: 920px;
    position: relative;
}

.pSumarryImage img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

/*---------------------- Product Summary Contact Form Css Start ----------------------------*/
.sFormRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px -20px 0;
}

.sFromCol {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    padding: 0 20px;
    position: relative;
}

.sFromCol .formGrop input {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: solid 1px var(--black-color);
    font-size: var(--font-size-14);
    line-height: var(--line-height-16);
    font-weight: 400;
    color: var(--gray-color);
}

.sFromCol .formGrop input:focus, .sFromCol .formGrop input:focus-visible {
    outline: none;
}

.checkbox_ck .sFromCol .formGrop input[type="checkbox"] {
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: unset;
}

.checkbox_ck .sFromCol .formGrop label {
    position: relative;
    font-size: var(--font-size-14);
    line-height: var(--line-height-16);
    font-weight: 400;
    color: var(--gray-color);
    cursor: pointer;
    max-width: 95%;
    margin-left: auto;
    width: 100%;
    display: block;
}

.checkbox_ck .sFromCol .formGrop label::before {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border: solid 1px var(--gray-color);
    background-color: #f2f2f2;
    left: -26px;
    top: 3px;
}

.checkbox_ck .sFromCol .formGrop input[type="checkbox"]:checked ~ label::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    left: -26px;
    top: 3px;
    background-image: url(/configurator/assets/images/charm_tick.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.productSummaryDetail .pCActions {
    margin-top: 30px;
}

label#authorizationResponse-error::before,
label#authorizationUpdate-error::before,
.checkbox_ck .sFromCol .formGrop input[type="checkbox"]:checked ~ label#authorizationResponse-error::after,
.checkbox_ck .sFromCol .formGrop input[type="checkbox"]:checked ~ label#authorizationUpdate-error::after {
    display: none;
}

.sFromCol .formGrop label.error {
    position: absolute;
    bottom: -20px;
    left: 20px;
}

/*---------------------- Product Summary Image Column Css Start ----------------------------*/
.productSummaryImage {
    width: 55%;
    text-align: center;
}

.productSummaryImage img {
    height: 100%;
    width: 100%;
    max-width: 352px;
    object-fit: cover;
}

/*---------------------- cType Images Css ----------------------------*/
.cType {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
}

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

.cType ul li {
    margin-bottom: 10px;
}

.cType ul li input {
    position: absolute;
    z-index: -1;
    display: none;
}

.cType ul label {
    cursor: pointer;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 20%);
    display: block;
    padding: 5px;
    border: solid 2px transparent;
}

.cType ul li input[type="radio"]:checked~label {
    border-color: #B49957;
}

.cTypeImage {
    width: 40px;
    height: 55px;
    position: relative;
}

.cTypeImage img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

div#engraveTextc5 {
    position: absolute;
    bottom: 35%;
    right: 28%;
    transform: rotate(-32deg);
    font-size: 20px;
    color: #b9b9b369;
    text-shadow: 0px 1px 0px rgb(255 255 255 / 30%), 0px -1px 0px rgb(0 0 0 / 58%);
}

.pConfiguratorImage .cType h3 {
    width: 54px;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 10px 0 !important;
    text-align: center;
    line-height: 15px;
}
