
#wi-cr {
  visibility: hidden;
  z-index: -9000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: none;
  background-color: rgba(0, 0, 0, 0)
  transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -webkit-transition: background-color 0.25s ease;
}

#wi-cr.visible {
  visibility: visible;
  z-index: 9000;
  background-color: rgba(0, 0, 0, 0.25);
}

#wi-cr-modal {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  opacity: 0;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-radius: 2px;
  background: white;
  padding: 30px;
  transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -webkit-transition: opacity 0.25s ease;
}

#wi-cr.visible #wi-cr-modal {
  opacity: 1;
}

#wi-cr-flag {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 15px auto;
  display: block;
  box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

#wi-cr-title,#wi-cr-button  {
  font-weight: 600;
  font-size: 18px;
}

#wi-cr-title,#wi-cr-text {
  text-align: center;
  margin: 0 0 15px;
}

#wi-cr-text {
  font-weight: normal;
  font-size: 16px;
}

#wi-cr-button {
  background: #009ddf;
  border: 0 none;
  border-radius: 4px;
  color: white;
  box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
  display: block;
  padding: 25px 70px;
  line-height: 1.33333;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  touch-action: manipulation;
  white-space: nowrap;
  margin: 0 50px;
}

#wi-cr-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
  text-align: center;
  background: white;
  padding: 13px;
  border-radius: 100%;
  margin: -25px -25px 0 0;
  box-sizing: content-box;
  box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

#wi-cr.ie8 {
  background:transparent;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#40000000,endColorstr=#40000000);
  zoom: 1;
}

.ie8 #wi-cr-close {
  margin: 0 0 -25px -25px;
  box-shadow: none;
  border-radius: 0;
}

@media(max-width:767px) {
  #wi-cr-close {
    margin: 0 0 -25px -25px;
    box-shadow: none;
    border-radius: 0;
  }

  #wi-cr-button {
    margin: 0;
  }
}

/*********************************************************************/

.wi-popupOpen {
  overflow: hidden;
  max-height: 100%;
}

#wi-overlay {
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.55);

  -webkit-transition: opacity 0.4s ease, visibility 0.8s linear;
     -moz-transition: opacity 0.4s ease, visibility 0.8s linear;
       -o-transition: opacity 0.4s ease, visibility 0.8s linear;
          transition: opacity 0.4s ease, visibility 0.8s linear;
}

#wi-overlay.visible {
  opacity: 1;
  visibility: visible;
}

#wi-overlay.hidden, #wi-fixedBar.hidden {
  display: none;
}

#wi-frame {
  display: block;
  width: 100%;
  height: 100%;
}

#wi-fixedBar {
  z-index: 9999;
  position: fixed;
  top: auto;
  left: 0;
  bottom: -40px;
  right: 0;
  background-color: rgba(0,0,0,0.7);
  padding: 7px 10px 47px 10px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 32px;
  color: white;
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: wi-bounceOutDown;
          animation-name: wi-bounceOutDown;
}

#wi-fixedBar.visible {
  -webkit-animation-name: wi-bounceInUp;
          animation-name: wi-bounceInUp;
}

#wi-fixedBar .wi-link, #wi-fixedBar a {
  color: #009ddf;

  -webkit-transition: color 0.3s ease;
     -moz-transition: color 0.3s ease;
       -o-transition: color 0.3s ease;
          transition: color 0.3s ease;
}

#wi-fixedBar button {
  color: white;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  vertical-align: -webkit-baseline-middle;
  vertical-align: middle;
}

#wi-fixedBar .wi-link:hover,
#wi-fixedBar .wi-link:focus,
#wi-fixedBar .wi-link:active,
#wi-fixedBar button:hover .wi-link,
#wi-fixedBar button:focus .wi-link,
#wi-fixedBar button:active .wi-link {
  color: inherit;
}

#wi-fixedBar #wi-hideGlopal {
  float: right;
  height: 32px;
}

#wi-fixedBar #wi-flag {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border: 2px solid white;
  margin-right: 10px;
  overflow: hidden;

  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
       -o-border-radius: 50%;
          border-radius: 50%;

    -webkit-box-shadow: 1px 1px 1px #000;
       -moz-box-shadow: 1px 1px 1px #000;
         -o-box-shadow: 1px 1px 1px #000;
            box-shadow: 1px 1px 1px #000;
}

#wi-fixedBar #wi-flag img {
  display: block;
  max-width: 100%;
}

@media (max-width: 765px) {
  .wi-visible-xs {
    display: inline;
  }

  .wi-hidden-xs {
    display: none;
  }

  .wi-popupOpen {
    padding-right: 0;
  }
}

@media (min-width: 766px) {
  .wi-hidden-xs {
    display: inline;
  }

  .wi-visible-xs {
    display: none;
  }
}

@-webkit-keyframes wi-bounceInUp {
/*
    0% {-webkit-transform: translateY(2000px); opacity: 0;}
   60% {-webkit-transform: translateY(-30px); opacity: 1;}
   80% {-webkit-transform: translateY(10px);}
*/
  100% {-webkit-transform: translateY(0); opacity: 1;}
}

@keyframes wi-bounceInUp {
/*
    0% {transform: translateY(2000px); opacity: 0;}
   60% {transform: translateY(-30px); opacity: 1;}
   80% {transform: translateY(10px);}
*/
  100% {transform: translateY(0); opacity: 1;}
}

@-webkit-keyframes wi-bounceOutDown {
/*
    0% {-webkit-transform: translateY(0);}
   20% {-webkit-transform: translateY(-20px); opacity: 1;}
*/
  100% {-webkit-transform: translateY(2000px); opacity: 0;}
}

@keyframes wi-bounceOutDown {
/*
    0% {transform: translateY(0);}
   20% {transform: translateY(-20px); opacity: 1;}
*/
  100% {transform: translateY(2000px); opacity: 0;}
}

