
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444444;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-alert-info`
 ========================================================================== */
.uk-notify-message-primary {
  background: #60AFCF;
  color: #FFFFFF;
  border-color: rgba(216, 80, 48, 0.3);
}
/* Modifier: `uk-alert-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #FFFACD;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #CD0000;
  color: #FFFFFF;
  border-color: rgba(216, 80, 48, 0.3);
}
/* ========================================================================
   Component: Notify
 ========================================================================== */


/* ========================================================================
   Component: MOdal
 ========================================================================== */
.uk-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear
}
.uk-modal.uk-open {
    opacity: 1
}
.uk-modal-page {
    overflow: hidden
}
.uk-modal-dialog {
    position: relative;
    top: 10%;
    left: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    width: 600px;
    margin-left: -300px;
    background: #f0f1f3;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}
@media (max-width: 767px) {
    .uk-modal-dialog {
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        margin: 10px
    }
}
.uk-modal-dialog>:last-child {
    margin-bottom: 0
}
.uk-modal-dialog-slide {
    opacity: 0;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s linear, transform 0.3s ease-out
}
.uk-open .uk-modal-dialog-slide {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
.uk-modal-dialog>.uk-close:first-child {
    margin: -10px -10px 0 0;
    float: right
}
.uk-modal-dialog>.uk-close:first-child+* {
    margin-top: 0
}
.uk-modal-dialog-frameless {
    padding: 0
}
.uk-modal-dialog-frameless>.uk-close:first-child {
    position: absolute;
    top: -12px;
    right: -12px;
    margin: 0;
    float: none
}
@media (max-width: 767px) {
    .uk-modal-dialog-frameless>.uk-close:first-child {
        top: -7px;
        right: -7px
    }