﻿@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
}
.lightning_effect {
  position: fixed;
  left: 0;
  top: 0;
  width: 1000px;
  height: 562px;
  background: url(images/lightning_bg.png) no-repeat;
  opacity: 0;
}
.lightning_effect.right {
  left: inherit;
  right: 10%;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
/*-----Rain----*/
.rain {
  width: 100%;
  overflow-x: hidden;
  background-image: url(images/rain_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-color: #000;
}
.rain .drop {
  display: block;
  z-index: 0;
  position: fixed;
  background-repeat: no-repeat;
  min-width: 2px;
  min-height: 4px;
  background: #5b74fd;
  background: -moz-linear-gradient(top, #5b74fd, #e7f4fa);
  background: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(#5b74fd),
    to(#e7f4fa)
  );
  background: -webkit-linear-gradient(top, #5b74fd, #e7f4fa);
  background: -ms-linear-gradient(top, #5b74fd, #e7f4fa);
  background: -o-linear-gradient(top, #5b74fd, #e7f4fa);
  border-radius: 50% 50% 50% 50%/80% 80% 20% 20%;
  -moz-border-radius: 50% 50% 50% 50%/90% 90% 10% 10%;
  -webkit-border-radius: 63px 63px 63px 63px/138px 138px 42px 42px;
}
/*-----Snow----*/
.snow {
  width: 100%;
  overflow-x: hidden;
  background-image: url(images/snow_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-color: #000;
}
.snow .drop {
  display: block;
  z-index: 0;
  position: fixed;
  background-repeat: no-repeat;
  min-width: 2px;
  min-height: 2px;
  border-radius: 180px;
  -moz-border-radius: 180px;
  -webkit-border-radius: 180px;
  background: #fff;
  background: -moz-linear-gradient(top, #fff, #eee);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eee));
  background: -webkit-linear-gradient(top, #fff, #eee);
  background: -ms-linear-gradient(top, #fff, #eee);
  background: -o-linear-gradient(top, #fff, #eee);
  box-shadow: 0 0 5px #fff;
  -moz-box-shadow: 0 0 5px #fff;
  -webkit-box-shadow: 0 0 5px #fff;
}
/*-----water----*/
.water {
  width: 100%;
  overflow-x: hidden;
  background-image: url(images/water_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-color: #000;
}
.water .drop {
  display: block;
  z-index: 0;
  position: fixed;
  background-repeat: no-repeat;
  min-width: 2px;
  min-height: 2px;
  border-radius: 180px;
  -moz-border-radius: 180px;
  -webkit-border-radius: 180px;
  border: solid 1px #fff;
}