I had a problem adding a window shadow to the right border of the polygon shape, as shown in the image below:

and I want to add a shadow, where is the red line, as you can see in the image below:

and I made this form simple:
HTML:
<div class="shape">
....
</div>
CSS
.shape {
background: url(img/1.jpg);
border-top: 400px solid transparent;
border-right: 40px solid #ffffff;
}
I did not use the clip path, since it is incompatible with IE, and you need to make some additional settings to make it work with Firefox and some other browsers, and I wanted to keep it simple, so I went with the easy way, But the problem is, which I came across is to add a shadow to the right corner using only CSS. Is there a solution for this? or will I have to use a clip path to add a shadow to the right corner?