/* Start animasi popup */

@-webkit-keyframes autopopup {
    from {
        opacity: 0;
        margin-top: -200px;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes autopopup {
    from {
        opacity: 0;
        margin-top: -200px;
    }
    to {
        opacity: 1;
    }
}

@keyframes autopopup {
    from {
        opacity: 0;
        margin-top: -200px;
    }
    to {
        opacity: 1;
    }
}


/* end animasi popup */


/*style untuk popup */

#popup {
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    -webkit-animation: autopopup 2s;
    -moz-animation: autopopup 2s;
    animation: autopopup 2s;
}

#popup:target {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 768px) {
    .popup-container {
        width: 600px;
    }
}

@media (max-width: 767px) {
    .popup-container {
        width: 100%;
    }
}

.popup-container {
    position: relative;
    margin: 15% auto;
    padding: 30px 50px;
    
    color: #333;
    border-radius: 3px;
}

a.popup-close {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 7px 10px;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
    color: #3a3a3a;
    background: #000;
    border-radius: 100%;

  border: 2px solid #ccc;
  padding: 5px;
  cursor: pointer;
  line-height: 20px;
  font-weight: normal!important;
  float: none;
  text-align: center;
  color:#ccc;
  transition: 500ms;
  
  
}
