
.notice.notice-success {
  color: #07f773;
}
.notice.notice-error {
  color: #f70707;
}

.send-file-link-form {
  margin-top: 15px;
}

.send-file-link-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.send-file-link-form input {
  width: -webkit-fill-available;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.send-file-link-form .lm-magnet-genius-send {
  background-color: #030783;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.lm-popup-button{
    text-align: right;
}

.send-file-link-form .lm-magnet-genius-send:hover {
  background-color: #0309ad;
}

.lm-spinner {
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lm-spinner.show {
    display: inline-block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translate(-50%, -60%);
  }
  to {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
}

/* For popup */

.lm-popup {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.lm-popup-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 6px;
  width: 90%;
  max-width: 400px;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.lm-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.lm-success{
    color: #19ae5c;
    font-size: 14px;
    margin-top: 10px;
}
.lm-error{
    color: #f00;
    font-size: 14px;
    margin-top: 10px;
}
