/*** google fonts(poppins)  ***/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*** common css start ***/
:root{
    --thm-blu:#1b1464;
    --blk:#000;
    --wht:#fff;
    --trans-tm:0.3s;
}

*{
    font-family: 'Poppins', sans-serif;
    box-sizing:border-box;
    padding:0;
    margin:0;
}
body {
    overflow-x: hidden;
    width:100%;
}
.post, .page{
    margin:0;
}
.page-template-default header.entry-header {
    display: none;
}
ul{
    list-style:none;
    margin:0;
}
a{
    text-decoration:none;
    color:var(--thm-blu);
}

a:active,
a:hover{
    color:var(--blk) !important;  
    transition:var(--trans-tm);
}

button{
    background:transparent;
    border:none;
    cursor:pointer;
}

.section-wrpr{
    padding-block:40px;
}
.section-container{
    max-width:1170px;
    margin:0 auto;
    padding-inline:15px;
}
.section-row{
    display:flex;
    gap:20px;
    justify-content:space-between;
    align-items:center;
}
.col-30{
    width:30%;
}
.col-50{
    width:50%;
}
.col-70{
    width:70%;
}

.site-btn{
    background: var(--thm-blu);
    color: var(--wht);
    font-size: 18px;
    padding: 18px 50px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: var(--trans-tm);
}
.site-btn:hover,
.site-btn:focus{
    background:var(--blk);
    color:var(--thm-blu) !important;
}
table {
    border-collapse: collapse;
}
table td {
    border: 1px solid #e1e1e1;
    padding:10px;
}
.table-responsive tr td {
    text-align: center;
}
/*** common css end ***/

/*** header  ***/
#masthead {
    padding-block: 8px;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 99;
    background: #fff;
    border-bottom:1px solid #e1e1e1;
}
#primary-menu {
    justify-content: end;
}
.main-navigation li {
    margin-right: 10px;
}
.main-navigation li:last-child{
    margin-right:0;
}
.main-navigation a {
    padding: 8px 10px;
}
.menu-btn {
    border: 1px solid var(--thm-blu);
    padding: 6px 13px !important;
    background: #1b14640f !important;
    color: var(--blk) !important;
    font-size: 16px;
    border-radius:4px;
}
.menu-btn:hover{
    background:var(--thm-blu) !important;
    color:var(--wht) !important;
}

/*** banner ***/
.slider-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}
.slick-dots {
    bottom: 20px;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--wht);
}
.slick-dots li button{
    border-radius:10px;
    border:2px solid var(--wht);
}
.slick-dots li button:before {
    font-size:40px;
    color:var(--wht);
}
.slick-dotted.slick-slider{
    margin:0;
}

/*** banner bottom ***/
#banner-bottom{
    padding-block:60px;
}
.focus-col {
    width: 33.3%;
}
.focus-col img {
    width: 90px;
}
.focus-col h5 {
    font-size: 18px;
    color: #484747;
    line-height: 1.1;
}

/**** special digital towels section ****/
#special-digital {
    padding-bottom: 0;
}
.section-special-heading{
    font-size:24px;
    line-height:1.1;
    border-bottom:1px solid #969696;
    padding:0 0 10px 0;
    margin-bottom:35px;
}
.section-special-heading strong{
    background:url('https://webnxa.com/custom-towels/wp-content/themes/custom-digital-towels/assets/img/bac-1.png');
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}

.special-towels-pro-wrpr .woocommerce-loop-product__title {
    font-weight: 400;
    font-size: 14px !important;
    padding: 10px !important;
    letter-spacing: 0.5px;
    position:relative;
    z-index:2;
    background:#fff;
}

.special-towels-pro-wrpr .button.product_type_simple {
    display: none !important;
}

.page-template-default .product {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    /*min-height: 350px;*/
    transition:var(--trans-tm);
    overflow:hidden;
    /*margin-bottom:0 !important;*/
}
.page-template-default .product:after{
    content:'';
    position:absolute;
    width:100%;
    height:20%;
    background:#fff;
    bottom:0;
    z-index:0;
}
.page-template-default .product img{
    margin:0 !important;
    transition:var(--trans-tm);
}
.page-template-default .product:hover img{
    transform:scale(1.5) rotate(20deg);
    opacity:0.5;
    transition:var(--trans-tm);
}

/*** product accordion ***/
/*.pro-accordion {*/
/*  background-color: #eee;*/
/*  color: #444;*/
/*  cursor: pointer;*/
/*  padding: 18px;*/
/*  width: 100%;*/
/*  border: none;*/
/*  text-align: left;*/
/*  outline: none;*/
/*  font-size: 15px;*/
/*  transition: 0.4s;*/
/*}*/

/*.pro-active, .pro-accordion:hover {*/
/*  background-color: #ccc;*/
/*}*/

/*.pro-accordion:after {*/
/*  content: '\002B';*/
/*  color: #777;*/
/*  font-weight: bold;*/
/*  float: right;*/
/*  margin-left: 5px;*/
/*}*/

/*.pro-active:after {*/
/*  content: "\2212";*/
/*}*/

/*.pro-panel {*/
/*  padding: 0 18px;*/
/*  background-color: white;*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.2s ease-out;*/
/*}*/

.product_meta {
    display: none;
}

.special-digital-bags-text {
    border-top: 5px solid #f7a715;
    padding: 20px;
    background: #f7a71512;
    margin-bottom:40px;
}
.special-digital-bags-text p {
    font-size: 15px;
}
/** shipping info **/
#delivery-info{
    background:#f1f1f1;
}
.delivery-info h4 {
    color: #f7a715;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.delivery-img-wrpr img {
    box-shadow: 20px 20px 0px #f4ddb4;
}

/** quality echo price section **/
#qualityEchoPrice .section-row>.col {
    width: 100%;
}
.bst-col h3 {
    padding-block: 15px;
}
.bst-col {
    background: #a0dede;
    padding: 20px;
    width: 100%;
    text-align:center;
    transition:all 0.5s;
}
.bst-col:hover{
    transform:scale(1.2);
    box-shadow:0 0 10px #00000059;
}
/*** contact section ***/
#homeContact {
    background: url('/wp-content/themes/custom-digital-towels/assets/img/contact-back.webp');
    background-size: cover !important;
}
.contact-heading h2 {
    color: #f7a715;
    font-size: 28px;
}
.contact-heading p {
    color: #fff;
}
.cstm-towel-wrpr .cstm-towel-col input,
.cstm-towel-wrpr .cstm-towel-col textarea{
    padding-inline: 20px;
    border: 0;
    border-radius: 0;
    min-height: 48px;
}
.cstm-towel-wrpr .cstm-towel-col textarea{
    padding-block:16px;
}
.cstm-towel-row {
    display: flex;
    justify-content: space-between;
}
.cstm-towel-row>.cstm-towel-col {
    width: 48%;
}
.cstm-towel-col input,
.cstm-towel-col textarea{
    width:100%;
}
.cstm-towel-col textarea{
    height: 192px;
    margin-bottom: 16px;
}
.cstm-towel-col input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #85d4d4;
    color: #ffff;
    font-size: 18px;
    cursor: pointer;
    transition:0.3s;
    font-weight:600;
}
.cstm-towel-col input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
    background:#f7a715;
}
/*** footer ***/
footer#colophon {
    background: #3f3f3f;
    padding-block:40px;
}
.footer-row h3 {
    color: #fff;
    margin-bottom: 12px;
}
.footer-row {
    display: flex;
    justify-content: space-between;
}
.footer-menu-list {
    margin: 0;
    list-style: none;
}
.footer-menu-list li{
    margin-bottom:8px;
}
.footer-menu-list li,
.footer-menu-list li a{
    color:#fff;
}
.footer-menu-list li img {
    margin-right: 6px;
}
.social-media-icons {
    margin: 0;
    margin-top: 40px;
    display: flex;
    list-style: none;
    gap: 24px;
}
.social-media-icons li svg{
    width:16px;
    height:16px;
}
.footer-bottom {
    background: #24282e;
    border-top:1px solid #484e56;
    padding-block:20px;
}
.footer-bottom p,
.footer-privacy-links li a{
    color: #fff;
    margin:0;
}
.footer-privacy-links {
    margin: 0;
    display: flex;
    gap: 12px;
}

/*** about page ***/
.inn-pg-banner{
    padding-block:40px;   
    background-size:cover;
}
.section-container h1 {
    text-align: center;
    width: fit-content;
    margin: 60px auto;
    background: #000;
    color: #fff;
    padding: 10px 40px;
}
.about-content-wrpr{
    padding-top:64px;
    padding-bottom:40px;
}
.about-img-content{
    background:#f1f1f1;
    padding-block:40px;
}
.inn-pg-link{
    transition:0.3s;
}
.inn-pg-link:hover{
    text-decoration:underline;
}

/*** contact page ***/
section#ContactPage {
    background: #f1f1f1;
}
section#ContactPage input {
    border: 1px solid #dbdbdb !important;
}
section#ContactPage textarea {
    border: 1px solid #dbdbdb !important;
}

section#ContactPage input.wpcf7-form-control.wpcf7-submit.has-spinner{
    border:none !important;
}

/*** product page styling  ***/
.single-product header.entry-header {
    /*display: none;*/
    max-width:1140px;
    margin-inline:auto;
    width:100%;
    padding-inline:15px;
}
.single-product header.entry-header .entry-title{
    font-weight:500;
}
.single-product .woocommerce {
    max-width: 1170px;
    margin: 0 auto;
    padding-inline: 15px;
}
#comments {
    display: none;
}
.related.products h2 {
    display: none !important;
}
.related.products .products li {
    display: none;
}
nav.navigation.post-navigation {
    display:none !important;
}
.product_form_wrpr {
    margin-bottom: 48px;
    border: 1px solid #dbdbdb;
    padding: 24px;
}
.product_form_wrpr>div {
    margin-top: -24px;
}
.product_form_wrpr input,
.product_form_wrpr textarea{
    border:1px solid #dbdbdb !important;
}
.wpcf7-form-control.wpcf7-submit.has-spinner{
    border:none !important; 
}
.product_form_wrpr textarea{
    resize:none;
}
.product-type-simple {
    display: flex;
    flex-direction: column;
}
.woocommerce-page div.product div.summary{
    width:100%;
}


/*** media query ***/
@media only screen and (max-width: 992px){
    .main-navigation a {
        font-size: 14px;
    }
    .slider-image img {
        height: 400px;
    }
}
@media only screen and (max-width: 600px) {
    html {
        overflow-x: hidden;
    }
    .slider-image img {
        height: 212px;
    }
    .main-navigation {
        display: flex;
        justify-content:end;
    }
   .menu-menu-1-container {
        position: absolute;
        background: #fff;
        width: 100%;
        left: 0;
        top:66px;
    }   
    .site-btn.menu-btn {
        display: inline-block;
        margin-left: 10px;
    }
    #primary-menu {
        padding-bottom: 20px;
    }
    .section-wrpr .section-row,
    .about-img-content .section-row{
        flex-direction: column;
        align-items: baseline;
    }
    .focus-col, .col-50, 
    .cstm-towel-row>.cstm-towel-col{
        width: 100%;
    }
    .home .product {
        min-height: fit-content;
    }
    .delivery-img-wrpr img {
        width: 90%;
    }
    .cstm-towel-row,
    .footer-row{
        flex-direction:column;
    }
    .footer-row{
        gap:16px;
    }
    .table-responsive {
        overflow-x: scroll;
    }
}


