/* find dealer */
.findDlrSec {
    .findDlrTp {
        width: 80%;
        margin: 0 auto;

        .dlrField {
            .nice-select {
                border: 1px solid rgba(0, 0, 0, 0.65);
                border-radius: 50px;
                padding: 0 16px;
                height: 58px;
                line-height: 58px;

                &::after {
                    filter: brightness(0) saturate(100%) invert(0%) sepia(13%) saturate(0%) hue-rotate(60deg) brightness(97%) contrast(98%);
                    width: 16px;
                    height: 16px;
                    top: 23px;
                }

                &.open {
                    &::after {
                        top: 16px;
                    }
                }
            }
        }
    }

    .findDlrBtm {
        margin-top: 40px;

        .dealerSlider {
            .eachDealer {
                padding: 0 15px;

                .findDlrCard {
                    padding: 25px 20px;
                    border-radius: 15px;
                    background-color: #FFEFCB;

                    .dealerContactTp {
                        text-align: center;

                        .dlrTitle {
                            font-size: 25px;
                            margin-bottom: 18px;
                        }

                        .dlrLoct {
                            display: inline-block;
                            padding: 6px 40px;
                            border-radius: 50px;
                            border: 1px solid #000000;
                            background-color: transparent;
                            color: #000000;
                            font-size: 20px;
                        }
                    }

                    .dealerContactBtm {
                        margin-top: 30px;
                    }
                }

                &:nth-child(3n + 1) {
                    .findDlrCard {
                        background-color: #FFEFCB;
                    }
                }

                &:nth-child(3n + 2) {
                    .findDlrCard {
                        background-color: #E5F0DA;
                    }
                }

                &:nth-child(3n + 3) {
                    .findDlrCard {
                        background-color: #F0E0DA;
                    }
                }
            }

            .slick-arrow {
                position: absolute;
                z-index: 9;
                top: 50%;
                transform: translateY(-50%);

                &.slick-prev {
                    left: -44px;
                }

                &.slick-next {
                    right: -44px;
                }
            }
        }
    }
}

ul {
    &.contLst {
        li {
            display: flex;

            &:not(:last-child) {
                margin-bottom: 25px;
            }

            .locationIcon {
                width: 37px;
                height: 37px;
                border-radius: 50%;
                padding: 8px;
                background-color: #C79F64;

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

            .locationText {
                width: calc(100% - 37px);
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                padding-left: 10px;

                a {
                    color: #000000;
                    font-size: 18px;
                    transition: .4s;

                    &:hover {
                        color: #6a3f00;
                    }
                }
            }
        }
    }
}

/* Become a Dealer */
.dealerFormSec {
    border-bottom: 1px solid #ccc;
}

.dealerBgImg {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        background-image: url(../images/common/turmeric-powder-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 300px;
        height: 350px;
        bottom: -38px;
        left: 0;
        opacity: 0;
    }

    &::after {
        content: '';
        position: absolute;
        background-image: url(../images/common/masala_bowl_bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
        width: 400px;
        height: 400px;
        bottom: auto;
        top: 0;
        right: 0;
        transform: translateY(-100%);
        transition: transform 1.5s ease-out;
        opacity: 0;
    }

    &.active {
        &::before {
            /* animation: animOne 1s ease-in-out forwards; */
            transform: scale(0);
             animation: Spread 1s ease-in-out forwards;
        }

        &::after {
            transform: translateY(0);
            opacity: 1;
        }
    }
}


@keyframes Spread {

    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }

}


.dealerFormSec {
    overflow: hidden;

    .dealerFormWrap {
        /* background-color: #fff; */
        border-radius: 15px;
        padding: 46px 100px;
        position: relative;
        z-index: 2;

        .formSec {
            .form-group {
                .nice-select {
                    border-bottom: 1px solid rgba(0, 0, 0, 0.65);

                    &::after {
                        filter: brightness(0) saturate(100%) invert(71%) sepia(12%) saturate(1427%) hue-rotate(356deg) brightness(89%) contrast(81%);
                        width: 16px;
                        height: 16px;
                    }
                }

                .submitBox {
                    text-align: end;

                    .wpcf7-spinner {
                        bottom: -30px;
                        right: 30px;
                    }
                }

                input[type="submit"] {
                    border: 1px solid transparent;
                    transition: .4s;

                    &:hover {
                        background-color: transparent !important;
                        border: 1px solid #88401B !important;
                        color: #88401B !important;
                    }
                }
            }

        }
    }
}

/* responsive */
@media(max-width: 1768px) {
    .dealerBgImg {
        &::before {
            height: 280px;
        }

        &::after {
            width: 300px;
            height: 300px;
        }

    }
}

@media(max-width: 1600px) {
    ul {
        &.contLst {
            li {
                &:not(:last-child) {
                    margin-bottom: 18px;
                }

                .locationIcon {
                    width: 35px;
                    height: 35px;
                }

                .locationText {
                    a {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    .findDlrSec {
        .findDlrTp {
            .dlrField {
                .nice-select {
                    height: 50px;
                    line-height: 47px;

                    &::after {
                        top: 18px;
                    }

                    &.open {
                        &::after {
                            top: 12px;
                        }
                    }
                }
            }
        }

        .findDlrBtm {
            .dealerSlider {
                .eachDealer {
                    .findDlrCard {
                        .dealerContactTp {
                            .dlrLoct {
                                font-size: 17px;
                            }
                        }
                    }
                }
            }
        }
    }


}

@media(max-width: 1500px) {
    .dealerBgImg {
        &::before {
            height: 190px;
        }

        &::after {
            width: 164px;
            height: 197px;
        }
    }
}

@media(max-width: 1440px) {
    .findDlrSec {
        .findDlrTp {
            width: 100%;

            .dlrField {
                .nice-select {
                    height: 47px;
                    line-height: 44px;

                    &::after {
                        top: 16px;
                    }

                    &.open {
                        &::after {
                            top: 10px;
                        }
                    }
                }
            }
        }

        .findDlrBtm {
            margin-top: 20px;

            .dealerSlider {
                padding-bottom: 57px;

                .eachDealer {
                    padding: 0 10px;
                }

                .slick-arrow {
                    top: auto;
                    transform: translateY(0);
                    bottom: 0;

                    &.slick-prev {
                        left: calc(50% - 45px);
                    }

                    &.slick-next {
                        right: calc(50% - 55px);
                    }
                }
            }
        }
    }
}

@media(max-width: 1366px) {
    ul {
        &.contLst {
            li {
                .locationText {
                    a {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

@media(max-width: 1199px) {
    .dealerFormSec {
        .dealerFormWrap {
            padding: 45px 40px;
        }
    }

    .findDlrSec {
        .findDlrBtm {
            .dealerSlider {
                .eachDealer {
                    .findDlrCard {
                        .dealerContactTp {
                            .dlrLoct {
                                font-size: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .dealerFormSec {
        .dealerFormWrap {
            padding: 35px 25px;

            .formSec {
                .form-group {
                    .submitBox {
                        text-align: center;

                        .wpcf7-spinner {
                            bottom: -24px;
                            right: 45%;
                            transform: translateX(-50%);
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 767px) {
    ul {
        &.contLst {
            li {
                .locationIcon {
                    width: 30px;
                    height: 30px;
                    padding: 7px;
                }
            }
        }
    }

    .findDlrSec {
        .findDlrBtm {
            margin-top: 24px;

        }
    }

    /* become a dealer */
    .dealerBgImg {
        &::after {
            display: none;
        }

        &::before {
            display: none;
        }
    }



    /* end become dealer */
}

@media (max-width: 575px) {
    .dealerFormSec {
        .dealerFormWrap {
            .formSec {
                .form-group {
                    .submitBox {
                        .wpcf7-spinner {
                            right: 40%;
                        }
                    }
                }
            }
        }
    }
}