html, body {
    height: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

.main-logo {
    max-height: 200px;
    max-width: 100%;
}

.selectize-control {
    width: 100%;
}

.selectize-input {
    padding: 14px 8px;
}

.share-container {
    font-size: 3rem;
}

#editor {
    font-size: 14px;
    overflow: hidden;
}

#editor .CodeMirror {
    background: #000;
    height: 100%;
    width: 100%;
}

#notification-messages .notify-message {
    opacity: 0;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    position: fixed;
    margin-top: 10px;
    transition: top 250ms ease, opacity 250ms ease;
    z-index: 9999;
}

#notification-messages .notify-message.slide-down {
    opacity: 1;
    top: 50px;
}

#notification-messages .notify-message.slide-up {
    opacity: 0;
    top: 0;
}

#share,
#encrypt-share,
.removeable {
    margin-top: 20px;
}

#remove {
    margin-top: 20px;
    display: none;
}

body.can-remove #remove {
    display: inline-block;
}

.language-syntax {
    margin-top: 20px;
}

.fa-lock {
    display: none;
}

.encrypted .fa-lock {
    display: inline-block;
}

.encrypted .fa-unlock {
    display: none;
}

ol.instructions {
    padding-left: 1.5em;
}

.instructions-link {
    display: block;
    margin-top: 20px;
}

.instructions-container h1 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.instructions-container img {
    max-width: 700px;
}

.instructions-container .row {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.instructions-container p {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.instructions-container .row {
    border-top: solid 1px #aaa;
}

.instructions-container .row-alt {
    text-align: right;
}

.instructions-page footer {
    background: #30353c;
    padding: 20px;
}

#spinner {
    background: rgba(0,0,0,0.5);
    position: fixed;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

#spinner .animation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#spinner .lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}

#spinner .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
