:root{
    --linkscount: 0;
}

/*Product details Begin*/
#contentDiv .e_HtmlEditor *{
    font-size: 16px;
    letter-spacing: 1.5px;
}

#contentDiv .e_HtmlEditor h3{
    display: inline-block;
    font-size: 18px;
    color: #444;
    font-weight: bolder;
    padding: 0 0 5px 0;
    margin: 50px 0 20px 0;
}

#contentDiv .e_HtmlEditor h3::after{
    content: '';
    display: block;
    border-bottom: 5px solid #e60021;
    margin-top: 7px;
    width: 150px;
}

#contentDiv .e_HtmlEditor h3:nth-child(1){
    margin-top: 0 !important;
}

#contentDiv .e_HtmlEditor table,
#contentDiv .e_HtmlEditor tr,
#contentDiv .e_HtmlEditor td{
    border: 2px solid #888;
    padding: 0 10px;
}

#contentDiv .e_HtmlEditor table tr:nth-child(2n){
    background-color: #ddd;
}

#contentDiv .e_HtmlEditor table tr:hover{
    background-color: #aaa;
}
/*Product details End*/


/*channel position Begin*/
div.font{
    display: inline-block;
}
/*channel position End*/


/*Phone botton Begin*/
@media only screen and (max-width: 768px) {
    .ph-wds{
        display: block;
        position: fixed;
        top: 70%;
        right: 15px;
        max-width: 45px;
        max-height: 49px;
        height: 44px;
        overflow: hidden;
        background-color: rgb(25, 24, 24, 1);
        padding: 0 8px;
        border-radius: 7px;
        z-index: 2;
        transition: all 0.7s ease-out;
    }
    .ph-wds-act{
        max-width: 400px;
        max-height: 49px;
    }
    .phicbtn{
        font-size: 27px;
    }
    .ph-cnt{
        opacity: 0;
        color: rgb(237, 237, 237);
        vertical-align: middle;
        visibility: hidden;
        transition: all 0.7s ease-out;
    }
    .ph-cnt-act{
        opacity: 1;
        visibility: visible;
    }
    .ph-bt-i{
        display: inline-block;
        transform: rotate(135deg);
        color: rgb(237, 237, 237);
        vertical-align: middle;
        margin: 10px 1px;
        transition: all 0.3s ease-out;
    }
    .ph-bt-i-act{
        transform: rotate(0deg);
    }
    .ph-cnt b:hover,
    .ph-cnt:hover{
        color: #888;
    }
}
@media only screen and (min-width: 768px) {
    .ph-wds{
        display: none;
    }
}
/*Phone botton End*/


/*Home Pagefoot Links Begin*/
@media only screen and (min-width: 768px){
    .home-foot-links{
        width: 100%;
        max-width: none;
        min-width: 0px;
        height: 300px;
        max-height: none;
        min-height: 192px;
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        overflow: hidden;
    }

    .home-foot-links>div{
        width: 100%;
        max-width: 1560px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .home-foot-links h3{
        font-size: 24px;
        color: #141515;
        line-height: 44px;
        letter-spacing: 2px;
        vertical-align: middle;
    }

    .home-foot-links div:first-child{
        margin: 1.5em auto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .home-foot-links div:last-child{
        position: relative;
        top: 15%; 
        overflow: hidden;
    }

    .home-foot-links ul,
    .home-foot-links li{
        max-height: none;
    }

    .home-foot-links ul{
        display: flex;
        padding: 15px;
        position: relative;
        right: 0;
        justify-content: space-between;
        flex-direction: row;
        animation-name: linksmove;
        animation-duration: calc(var(--linkscount) * 1.25s);
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    @keyframes linksmove {
        0% {
            transform: translateX(0px);
        }
        100% {
            transform: translateX(calc(var(--linkscount) * -118.43px));
        }
    }

    .home-foot-links
    >div
    >ul
    >li{
        width: calc(1560px / 8);        
        max-height: fit-content;
        max-width: fit-content;
        box-shadow: 3px 7px 10px 5px rgb(234 236 246 / 55%);
        border-radius: 10px;
        margin-right: 3em;
    }

    .home-foot-links
    >div
    >ul
    >li
    >a{
        display: inline-block;
        width: inherit;
        height: inherit;
        padding: 1em 2em;
        color: #e60021;
        font-size: 18px;
        text-align: center;
    }
    .home-foot-links
    >div
    >ul
    >li
    >a:hover{
        color: #141515;
    }
}
@media only screen and (max-width: 768px){
    .home-foot-links{
        display: none;
    }
}
/*Home Pagefoot Links End*/