.toastify.success::after {
    content: '';
    position: absolute;
    background: green;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    animation: progressBar 3s linear forwards;
}

.toastify.error::after {
    content: '';
    position: absolute;
    background: #EA0F1F;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    animation: progressBar 3s linear forwards;
}

@keyframes progressBar {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.whishlist-icon {
    cursor: pointer;
}

.protect-privacy-main ol {
    padding-left: 17px;

}

.protect-privacy-main ol li {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    padding-bottom: 5px;
    line-height: 1.4;

}

@media screen and (max-width: 767px) {

    protect-privacy-main ol li {
        font-size: 14px;
    }

}

.get-in-touch-main .contact-main .form-main label span {
    color: #EA0F1F;
}

@media screen and (max-width : 768px ) {
    .recaptcha {
        transform: scale(0.8);
        transform-origin: left;
    }
}

@media screen and (max-width : 300px ) {
    .recaptcha {
        transform: scale(0.7);
        transform-origin: left;
    }
}