/* Hide Logobar on HomeSlider */
.page-id-36 .x-logobar {
		display: none;
}

/* Hide tkl cred */
#turnkey-credit {
	display: none;
}

/* ************************* */
/* ***** POPUP MODULE ***** */
/* ************************* */

.popup-module {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
    top: 0; left: 0; bottom: 0; right: 0;
    padding: 60px 20px 0 20px;
}
.popup-module.show { display: block; }
.popup-module.hide { display: none; }
.popup-module .popup-body {
    position: relative;
    background: #fff;
    max-width: 600px;
    margin: auto;
    border-radius: 5px 5px 5px 5px;
    z-index: 0;
}

.popup-module p { margin: 0 0 10px 0; }
.popup-module p:last-child { margin: 0; }

.popup-module .title {
    padding: 36px 10px 10px 10px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    font-size: 1.3em;
    color: #4caf50;
    z-index: 0;
    text-align: center;
}
.popup-module .text {
    padding: 0px 40px 10px 40px;
    text-align: left;
    background: #fff;
    z-index: 0;
    line-height: 1.6em;
    color: #666;
}
.popup-module .btn-wrap {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 10px 10px 10px;
    background: #fff;
    z-index: 0;
    border-radius: 0 0 5px 5px;
}

.popup-module .close {
    top: 10px;
    position: absolute;
    right: 10px;
    background: transparent;
    border: 0;
    font-size: 1em;
    color: #ccc;
}

.popup-module .btn {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 5px;
    background: #f1f1f1;
    color: #4caf50;
    font-size: 1.2em;
    padding: 10px 20px;
    width: 100%;
    border: 0;
}
.popup-module .btn-ok {background: #4caf50; color: #fff;}
.popup-module .btn:last-child { margin-bottom: 0; }

.popup-module .popup-icon {
    width: 60px;
    height: 60px;
    background: #ccc;
    left: 0;
    right: 0;
    display: block;
    position: absolute;
    margin: 0 auto;
    border-radius: 50%;
    top: -30px;
    border: 4px solid #fff;
}
/* Popup warning settings */
.popup-module.warning .popup-icon { background: #f55; }
.popup-module.warning .popup-icon:before {
    content: '!';
    text-align: center;
    position: absolute;
    left: 20px;
    top: -30px;
    transform: rotate(20deg);
    color: #fff;
    font-size: 5em;
    top: -27px;
}
.popup-module.warning .title { color: #f55; }
.popup-module.warning .btn-ok { background: #f55; }

/* Popup info settings */
.popup-module.info .popup-icon { background: #ffc107; }


/* ANIMATION */
@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -3000px, 0);
      transform: translate3d(0, -3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, 25px, 0);
      transform: translate3d(0, 25px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, 5px, 0);
      transform: translate3d(0, 5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -3000px, 0);
      transform: translate3d(0, -3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, 25px, 0);
      transform: translate3d(0, 25px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, 5px, 0);
      transform: translate3d(0, 5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}