.page-id-1227 {
    .prodIntroSec {
        .vidSecImg {
            width: 100%;
            background-color: #008FFF;
            border-radius: 15px;
            padding: 30px 20px;
            display: block !important;
        }

        /*.headingWrap {*/
        /*    padding-top: 50px;*/
        /*}*/

        .prodIntroCardWrap {
            display: none;
        }
    }
}


.prodIntroCardWrap {
    padding-top: 40px;

    .prodIntroCard {
        width: 100%;
        height: 300px;
        background-color: #008FFF;
        border-radius: 15px;
        padding: 30px 20px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.product_undercarriage {
    .prodIntroCardWrap {
        .prodIntroCard {
            height: 500px;
        }
    }
}

/* specifications */
.speciSec {
    .speciSecInn {
        .tableWrap {
            width: 100%;
            overflow-x: auto;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 12px;

            table {
                width: 100%;
                background-color: #E0EAF0;

                thead {
                    th {
                        background-color: #0C0056;
                        color: #fff;
                        padding: 25px 20px;
                        text-align: center;
                        font-weight: 300;
                        font-size: 16px;

                        &:not(:last-child) {
                            border-right: 1px solid #fff;
                        }
                    }
                }

                tbody {
                    tr {
                        transition: all 0.5s;

                        &:not(:last-child) {
                            border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                        }

                        td {
                            text-align: center;
                            white-space: nowrap;
                            padding: 25px 20px;
                            color: #2E2779;
                            transition: all 0.5s;

                            &:not(:last-child) {
                                border-right: 1px solid rgba(0, 0, 0, 0.25);
                            }
                        }

                        &:hover {
                            background-color: #008FFF;
                            border-color: transparent;

                            td {
                                color: #fff;
                                border-color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* types section */
.typeSec {
    .typeSecBtm {
        .typeSecBtmRow {
            row-gap: 30px;

            .typeSecCard {
                width: 100%;
                min-height: 300px;
                border-radius: 15px;
                overflow: hidden;
                display: block;
                position: relative;
                transition: 0.6s;

                .typeFront {
                    .typeImg {
                        width: 100%;
                        height: 230px;
                        background-color: #E3E9ED;
                        border-radius: 15px;
                        padding: 20px;
                        margin-bottom: 15px;
                        margin-left: auto;
                        margin-right: auto;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    .typeHead {
                        color: #666666;
                        text-align: center;
                        font-size: 22px;

                    }
                }

                .typeBack {
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 2;
                    overflow: hidden;
                    transition: 0.6s;
                    position: absolute;
                    transform: translateY(110%);
                    transform-origin: center bottom;

                    .typeBackTop {
                        background-color: #008FFF;
                        width: 100%;
                        height: 200px;
                        padding: 20px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    .typeBackBtm {
                        background-color: #fff;
                        padding: 12px 20px;

                        .typeBackHead {
                            color: #1D1358;
                            font-size: 22px;
                            font-weight: 500;
                            margin-bottom: 10px;
                            text-align: center;
                        }

                        .typeBackBtnWrap {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;

                            .typeBackBtn {
                                width: 52%;
                                position: relative;
                                padding: 0px 15px;
                                color: #969696;
                                font-size: 16px;
                                text-transform: uppercase;
                                letter-spacing: 0.6px;
                                text-align: center;
                                transition: all 0.5s;

                                &::before {
                                    content: '';
                                    position: absolute;
                                    background-image: url(../images/products/black-arrow.png);
                                    background-repeat: no-repeat;
                                    background-size: contain;
                                    width: 15px;
                                    height: 15px;
                                    right: 0;
                                    top: 5px;
                                    filter: brightness(0) saturate(100%) invert(58%) sepia(0%) saturate(1190%) hue-rotate(235deg) brightness(105%) contrast(77%);
                                    transition: all 0.5s;
                                }

                                &:not(:last-child) {
                                    padding-left: 0;
                                    width: 48%;

                                    &::before {
                                        right: 15px;
                                    }

                                    &::after {
                                        content: '';
                                        position: absolute;
                                        width: 1px;
                                        height: 100%;
                                        background-color: #000;
                                        top: 0;
                                        right: -6px;
                                    }
                                }

                                &:hover {
                                    color: #008FFF;

                                    &::before {
                                        filter: none;
                                    }
                                }
                            }
                        }
                    }
                }

                &:hover {
                    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);

                    .typeBack {
                        transform: translateY(0%);
                        border-radius: 15px;
                    }
                }
            }
        }
    }
}

.comnPopupForm {
    .selected-flag {
        width: 55px !important;

        .selected-dial-code {
            display: none;
            padding-left: 0;
        }
    }
}

/* Responsive */

@media (max-width: 1440px) {
    .typeSec {
        .typeSecBtm {
            .typeSecBtmRow {
                .typeSecCard {
                    .typeFront {
                        .typeHead {
                            font-size: 20px;
                        }
                    }

                    .typeBack {
                        .typeBackBtm {
                            .typeBackHead {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .typeSec {
        .typeSecBtm {
            .typeSecBtmRow {
                .typeSecCard {
                    .typeBack {
                        .typeBackBtm {
                            .typeBackBtnWrap {
                                .typeBackBtn {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .typeSec {
        .typeSecBtm {
            .typeSecBtmRow {
                .typeSecCard {
                    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);

                    .typeFront {
                        display: none;
                    }

                    .typeBack {
                        position: static;
                        transform: translateY(0);
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {

    .page-id-1227 {
        .prodIntroSec {
            .headingWrap {
                padding-top: 30px;
            }
        }
    }

    .typeSec {
        .typeSecBtm {
            .typeSecBtmRow {
                .typeSecCard {
                    .typeBack {
                        .typeBackBtm {
                            .typeBackHead {
                                margin-bottom: 15px;
                            }

                            .typeBackBtnWrap {
                                flex-direction: column;
                                justify-content: center;
                                row-gap: 8px;

                                .typeBackBtn {
                                    width: auto !important;
                                    padding: 0px 40px 0px 0px;
                                    letter-spacing: 0.4px;
                                    color: #008FFF;
                                    font-size: 15px;

                                    &::before {
                                        filter: none;
                                    }

                                    &:not(:last-child) {
                                        &::before {
                                            right: 0;
                                        }

                                        &::after {
                                            content: normal;
                                        }
                                    }

                                    &:last-child {
                                        border-top: 1px solid #000;
                                        padding-top: 10px !important;

                                        &::before {
                                            top: 14px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .product-page {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
}






