@keyframes mobslFadeInOut {
 0%   {opacity:1;}
 17%  {opacity:1;}
 25%  {opacity:0;}
 92%  {opacity:0;}
 100% {opacity:1;}
}

#mobsl img {
  position:absolute;
  left:47px;
  -webkit-animation-name: mobslFadeInOut;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;
  -moz-animation-name: mobslFadeInOut;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;
  -o-animation-name: mobslFadeInOut;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count: infinite;
  -o-animation-duration: 8s;
  animation-name: mobslFadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

                                        
#mobsl img:nth-of-type(1) {  animation-delay: 6s;  }
#mobsl img:nth-of-type(2) {  animation-delay: 4s;  }
#mobsl img:nth-of-type(3) {  animation-delay: 2s;  }
#mobsl img:nth-of-type(4) {  animation-delay: 0;   }

#winslcon li{cursor:pointer;}

.slider-screen ul li{
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
              
.slider-screen ul li.active{
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
}
