/** 
    Specification Common 
*/

.wdt-specifications-holder .wdt-content-item > div:not(:last-child), 
.wdt-specifications-holder .wdt-content-item .wdt-content-media-group > div:not(:last-child), 
.wdt-specifications-holder .wdt-content-item .wdt-content-detail-group > div:not(:last-child), 
.wdt-specifications-holder .wdt-content-item .wdt-content-elements-group > div:not(:last-child) { margin-bottom: 10px; }

.wdt-specifications-holder .wdt-content-item { height: 100%; }

.wdt-specifications-holder .wdt-specification-block > div.wdt-content-detail-group > div.wdt-content-spec-group.item-inline { 
    display: flex; gap: 6px 28px; flex-wrap: wrap; }

.wdt-content-spec-group.item-block > div:not(:last-child) { margin: 0 0 4px; }

.wdt-specifications-holder .wdt-specification-block .wdt-content-image-wrapper img { 
    width: 100%; height: 100%; object-fit: cover; object-position: center; }


/** 
    Specification Title 
*/

.wdt-specifications-holder .wdt-specification-block .wdt-content-title h4 { margin: 0; }



/** 
    type-1
*/



.wdt-specifications-holder .wdt-specification-block.wdt_type_1 {
    display:grid;
    width:100%;
    height:100%;
    align-items:end;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-image-wrapper{
    grid-area:1/-1;
    width:100%;
    height:100%;
}
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1 .wdt-content-image-wrapper img{
    transition:var(--wdt-Ad-Transition);
}
.wdt-specifications-holder .wdt-content-item:hover .wdt-specification-block.wdt_type_1 .wdt-content-image-wrapper img{
    transform:scale(1.1);
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-detail-group{
   grid-area:1/-1;
   width:100%;
   height:fit-content;
   display:flex;
   justify-content:space-between;
   align-items:flex-end;
   padding:clamp(1.875rem, 1.5963rem + 1.2739vw, 3.125rem); 
   position:relative;
    background-color: rgb(var(--wdtSecondaryColorRgb), 0.3);
   border-radius:0 0 var(--wdtRadius_3X) var(--wdtRadius_3X);
   gap:10px;
   backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-title-group{
   display:flex;
   flex-direction:column;
   align-items:flex-start;
   gap:10px;
}
 .wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1  .wdt-content-title-group{margin-bottom: 0;}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-image{
   position: relative;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-image:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(rgba(var(--wdtHeadAltColorRgb),0) 0%, rgba(var(--wdtHeadAltColorRgb),.1) 74%);
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-title h4,
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-title h4 a{
    color:var(--wdtAccentTxtColor);
    font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem); /* Min-24 & Max-34 */
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-title{
    text-align:inherit;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-subtitle{
    color:var(--wdtAccentTxtColor);
    font-size:var(--wdtFontSize_Base);
    letter-spacing:0;

}
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1 {
    border-radius:var(--wdtRadius_3X);
    overflow:hidden;
}
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1  .wdt-content-button > a{
    padding:0;
    display:flex;
    color:var(--wdtAccentTxtColor);
    background-color:transparent;
    font-size: clamp(2.125rem, 1.925rem + 1vw, 3.125rem); /* Min-34 & Max-50 */
    transition:var(--wdt-Ad-Transition);
}
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1  .wdt-content-button > a:hover{
    color: rgba(var(--wdtPrimaryColorRgb), .9);
}
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_1  .wdt-content-button > a span{
    font-size:0;
}




@media(max-width:1540px){
.wdt-specifications-holder .wdt-specification-block.wdt_type_1 .wdt-content-detail-group{
    padding:30px;
}
}

.mfp-video-wrapper.wdt-specification-popup{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
}

.mfp-video-wrapper.wdt-specification-popup video{ 
    border-radius: var(--wdtRadius_3X);
    width: calc(100% - 40px);
    max-width: 950px !important;
}

.mfp-video-wrapper.wdt-specification-popup .mfp-close{
    background-color: var(--wdtPrimaryColor);
    color: var(--wdtAccentTxtColor);
    margin: 14px;
    font-size: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: var(--wdtRadius_2X);
    -webkit-transform: none;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition:var(--wdt-Ad-Transition);
}
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:hover{
    background-color:var(--wdtAccentTxtColor);
}
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:after,
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:before{
    content: "" !important;
    width: 24px;
    height: 2px;
    background-color:var(--wdtAccentTxtColor);
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 19px;
    left: 8px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:after{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:hover:before{
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  background-color:var(--wdtLinkHoverColor);
}
.mfp-video-wrapper.wdt-specification-popup  .mfp-close:hover:after{
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);  background-color:var(--wdtLinkHoverColor);
}

.mfp-content:has(.wdt-specification-popup) {
  height: 100vh;
}




/** type-2 **/

.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-title h4{
    transition: var(--wdt-Ad-Transition);
    font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem); /* Min-24 & Max-34 */
    margin-bottom:20px;
}  

.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-title h4 a{
    transition: var(--wdt-Ad-Transition);}
    
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-subtitle{
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem); /* Min-18 & Max-24 */
    font-family:var(--wdtFontTypo_Alt);
    font-weight:var(--wdtFontWeight_Alt);
    letter-spacing:0;
    margin-bottom:5px;
    line-height: var(--wdtLineHeight_Ext);
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-detail-group{
    display:flex;
    width:100%;
    align-items:center;
    padding:60px 0;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper{
    width:100%;
    display:flex;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-title-group{
    display:flex;
    flex-direction:column;
    flex:1 0 35%;
    margin-bottom:0;
    z-index: 4;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-description{
    flex:1 0 37%;
    margin-bottom:0;
    padding:0 50px;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-spec-group{
    display:flex;
    flex:1 0 28%;
    justify-content:flex-end;
    gap:15px;
    margin-bottom:0;
    flex-wrap:wrap;
}
.wdt-specification-block.wdt_type_2{
    position: relative;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-spec-items a,
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-spec-items {
    padding:13px 40px;
    text-transform: capitalize;
    font-size:var(--wdtFontSize_Ext);
    font-weight:var(--wdtFontWeight_Ext);
    border-radius:var(--wdtRadius_Part);
    border:1px solid var(--wdtBodyTxtColor);
    color:var(--wdtBodyTxtColor);
    transition:var(--wdt-Ad-Transition);
}

.wdt-specifications-holder  .wdt-specification-block.wdt_type_2:hover .wdt-content-spec-items a,
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2:hover .wdt-content-spec-items {
    background-color:var(--wdtHeadAltColor);
    border-color:var(--wdtHeadAltColor);
    color:var(--wdtAccentTxtColor);
}

.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-spec-items:has(a){
    padding:0;
    border:0px;
}

.wdt-specifications-holder  .wdt-specification-block.wdt_type_2:hover .wdt-content-spec-items:has(a) {
    background-color:unset;
    border-color:unset;
    color:unset;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2:hover .wdt-content-spec-items a:hover{background-color: var(--wdtLinkHoverColor); border-color: var(--wdtLinkHoverColor);}
.wdt-specifications-holder .wdt-default-item:not(:last-child) .wdt-specification-block.wdt_type_2 {
    border-bottom: 1px dashed var(--wdtBorderColor);
}
.wdt-specifications-holder .wdt-content-item:has(.wdt-specification-block.wdt_type_2){
    border-radius:0;
    overflow:visible;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img {
    position: absolute;
    left: 50%;
    top: 0;
    border-radius: var(--wdtRadius_3X);
    transform: translateX(-50%) scale(0.9) rotate(0deg);
    width: 400px;
    z-index: 3;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_2:hover .wdt-content-image-wrapper img {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(-11deg);
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-spec-group.item-block div{
    margin:10px 0;
}
.wdt-specifications-holder .wdt-content-item.wdt-active .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img{
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(-11deg);
}

.wdt-specifications-holder .wdt-content-item:hover  .wdt-specification-block.wdt_type_2 .wdt-content-title h4,
.wdt-specifications-holder .wdt-content-item:hover  .wdt-specification-block.wdt_type_2 .wdt-content-title h4 a{
    color: var(--wdtLinkHoverColor);
}

/* ----------------------Type-3--------------------------- */

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 {
    border-radius:var(--wdtRadius_2X);
    overflow:hidden;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 {
    display: grid; align-items: center;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-image-wrapper,
.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-detail-group {
   grid-area: 1/1;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-detail-group .wdt-content-spec-group .wdt-content-spec-items a{
    font-size: clamp(1rem, 0.9169rem + 0.2776vw, 1.25rem);/*20-16*/
    font-family: var(--wdtFontTypo_Alt);
    color: var(--wdtAccentTxtColor); position: relative; width: fit-content;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-detail-group .wdt-content-spec-group .wdt-content-spec-items a:before {
    content: ""; position: absolute; bottom: 0; left: 0; right: auto; width: 0%; height: 1px;
    background-color: currentColor; transition: var(--wdt-Ad-Transition); -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-detail-group .wdt-content-spec-group .wdt-content-spec-items a:hover:before { left: auto; right: 0; width: 100%; }

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-title-group:empty{display: none;}

.wdt-specifications-holder .wdt-specification-block.wdt_type_3 .wdt-content-spec-group { opacity: 0; transform: translateY(20px); transition: var(--wdt-Ad-Transition); display: flex; flex-direction: column; gap: 16px; }
.wdt-specifications-holder .wdt-content-item:hover .wdt-specification-block.wdt_type_3 .wdt-content-spec-group{opacity: 1; transform: translateY(0px);}

.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_3 .wdt-content-detail-group {
    backdrop-filter: blur(0px); transition: var(--wdt-Ad-Transition);
    width: 100%; background-color: rgb(var(--wdtSecondaryColorRgb), 0);
    height: 100%;     border-radius:var(--wdtRadius_2X); display:flex; align-items:center; justify-content:center;
}

.wdt-specifications-holder .wdt-content-item:hover .wdt-specification-block.wdt_type_3 .wdt-content-detail-group:has(.wdt-content-spec-group) {
    backdrop-filter: blur(4px);   background-color: rgb(var(--wdtSecondaryColorRgb), 0.5);
}

.mobile-menu .wdt-specifications-holder .wdt-content-item.wdt-invisible{
 visibility: visible;
}











@media(max-width:1280px){
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img{
    width:270px;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-description{
    padding:0 20px;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-detail-group{
    padding:40px 0;
} 
}

@media(max-width:767px){
.wdt-specifications-holder .wdt-content-item.wdt-active .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img,
.wdt-specifications-holder .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img{
    position:relative;
    transform:none;
    opacity:1;
    width:100%;
    left:0;
}

.wdt-specifications-holder .wdt-specification-block.wdt_type_2:hover .wdt-content-image-wrapper img {
    opacity: 1;
    transform:none;
}
.wdt-specifications-holder  .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-description{
    padding:0;
    width:100%;
    margin-top:10px;
    margin-bottom:20px;
}
.wdt-specifications-holder   .wdt-specification-block.wdt_type_2 .wdt-content-spec-group{
    justify-content:flex-start;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-detail-group{
    flex-direction:column;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-spec-group{
    flex:100%;
    width:100%;
}
.wdt-specifications-holder .wdt-default-item:not(:last-child) .wdt-specification-block.wdt_type_2{
    margin-bottom: 50px;
    padding-bottom: 50px;
}
.wdt-specifications-holder .wdt-specification-block.wdt_type_2 .wdt-content-title h4{
    margin-bottom:10px;
}
.wdt-specifications-holder  .wdt-specification-block.wdt_type_2 .wdt-content-detail-group {
    padding: 30px 0 0 0;
}
}

@media(max-width:479px){
    .wdt-specifications-holder .wdt-default-item:not(:last-child) .wdt-specification-block.wdt_type_2{
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

/** type-2 ** For column**/

.wdt-specifications-holder .wdt-column .wdt-specification-block.wdt_type_2 .wdt-content-image-wrapper img{
    position:relative;
    transform:none;
    opacity:1;
    width:100%;
    left:0;
}
.wdt-specifications-holder .wdt-column .wdt-specification-block.wdt_type_2:hover .wdt-content-image-wrapper img {
    opacity: 1;
    transform:none;
}
.wdt-specifications-holder .wdt-column .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-description{
    padding:0;
    width:100%;
    margin-top:10px;
    margin-bottom:20px;
}
.wdt-specifications-holder .wdt-column  .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-spec-group{
    justify-content:flex-start;
}
.wdt-specifications-holder .wdt-column .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-detail-group{
    flex-direction:column;
}
.wdt-specifications-holder .wdt-column .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-spec-group{
    flex:100%;
    width:100%;
}
.wdt-specifications-holder .wdt-column:not(:last-child) .wdt-specification-block.wdt_type_2{
    border:none;
}
.wdt-specifications-holder .wdt-column .wdt-specification-block.wdt_type_2 .wdt-content-title h4{
    margin-bottom:10px;
}
.wdt-specifications-holder .wdt-column .wdt-content-item .wdt-specification-block.wdt_type_2 .wdt-content-detail-group {
    padding: 30px 0 50px 0;
}