
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color:inherit;
}
body {
    min-height: 100vh;
    font-family: monospace, '⁠⁠Fira Code', 'Courier New';
    background-color: #f6f6f6;
    font-size: 16px;
}
input {
    font-family: monospace, '⁠⁠Fira Code', 'Courier New';
}
img {
    max-width: 100%;
}
.container{
    width:100%;
    margin:0px auto;
    padding: 0 20px;
    max-width: 1200px;
    flex-grow: 1;
}
.container.small{
    max-width: 550px;
}
.header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
}
.header .logo a {
    display:block;
    font-size: 0;
    margin-right: 15px;
}
.header .logo a img{
    transition: 0.3s;
    height:50px;
    width:50px;
}
.header .logo a:hover img{
    transform: scaleY(0.85) scaleX(1.1);
}
.header .menu{
    line-height: 30px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    font-weight: bold;
}
.header .menu a {
    color: black;
    text-decoration: none;
    display: inline-block;
    padding:5px 15px 0 15px;
    border-top:2px solid transparent;
}
.header .menu a:after {
    content: '';
    height:5px;
    border-radius: 3px;
    background-color: transparent;
    transition: all 0.2s;
    opacity: 0;
    display: block;
    background-color: #fff;
}
.header .menu a.active:after {
    background-color: #eee;
}
.header .menu a:hover:after {
    background-color: #1c72ff;
    opacity: 1;
}
.server-error {
    text-align: center;
    text-transform: uppercase;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px;
}
.server-error .code {
    font-size: 150px;
    color:#ccc;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}
.server-error .message {
    font-size: 50px;
    font-weight: bold;
}
pre {
    display:block;
    background-color: #0f0b22;
    border-radius: 6px;
    padding:20px 30px;
    color:white;
    margin: 15px 0;
    line-height:20px;
    white-space: break-spaces;
}
.text-center {
    text-align: center;
}
.grad {
    background-color: #f2f2f2;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
}
.no-margin-top {
    margin-top: 0 !important;
}
h1 {
    display: block;
    font-size:30px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
h1:first-of-type {
    margin-top:0;
}
h2 {
    display: block;
    font-size:24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
h2:first-of-type {
    margin-top:0;
}
h3 {
    margin-bottom: 6px;
}
article {
    margin-bottom: 30px;
}
p {
    margin-top: 15px;
    line-height: 22px;
}
p code {
    display: inline-block;
    padding: 2px 4px;
    background-color: #1c72ff;
    color: #000000;
    border-radius: 3px;
}
blockquote {
    background-color: rgba(150,150,150,0.1);
    margin: 20px 0;
    padding: 5px 15px;
    border-left: 5px solid #ccc;
}
pre.center {
    text-align: center;
}
pre code {
    white-space: break-spaces;
}
.flex {
    display: flex;
}
.grow {
    flex-grow: 1;
}
.button {
    display:inline-block;
    padding:12px 20px;
    background: #fff;
    color:#000;
    border-radius: 5px;
    font-size:16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
}
.button.main {
    background: #1c72ff;
    color:#fff;
}
.button.dark {
    background: #002055;
    color:#fff;
}
.button:hover {
    cursor: pointer;
}
.button.red {
    background: #de5656;
    color:#fff;
}
.button.block {
    display: block;
    text-align: center;
}
.list {
    list-style: none;
}
.list li {
    margin-bottom: 8px;
}
.text-center {
    text-align: center;
}

hr {
    height: 0px;
    border: none;
    border-top: solid 3px #eee;
    margin-bottom: 25px;
}

.page_404 {
    text-align: center;
    font-weight: bold;
    margin:100px 0;
}
.page_404 h2 {
    margin:30px 0;
    font-size:25px;
}
.page_404 .status_code {
    font-size:140px;
}

.emoji {
    font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji','Android Emoji','EmojiSymbols','EmojiOne Mozilla','Twemoji Mozilla','Segoe UI Symbol','Noto Color Emoji Compat','emoji','noto-emojipedia-fallback';
}

.content{
    padding-top: 60px;
    padding-bottom: 80px;
}
.content.wide{
    max-width: 1100px;
}
.content .box {
    width: 100%;
    margin: 0px auto;
    padding: 40px 50px;
    background-color: #fff;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.content .box h1 {
    font-size: 28px;
}
.form label {
    display: block;
}
.form input {
    margin-top: 4px;
    margin-bottom: 12px;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
    width: 100%;
    font-size:16px;
}
.form input:focus {
    border-color: #000;
    outline: none;
}
.buttons {
    margin-top:25px;
    display: flex;
}
.buttons .button {
    margin-right: 10px;
    display: block;
    width: 100%;
    text-align: center;
}
.buttons .button:last-child {
    margin-right: 0px;
}
.top-buttons {
    margin-bottom: 20px;
}
.error {
    padding:8px 12px;
    background-color: #de5656;
    color:white;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    border-radius: 5px;
    display: block;
    word-break: break-word;
}
.form label .error {
    margin-top: -8px;
}
.lowercase {
    text-transform: lowercase;
}

.success-page {
    text-align: center;
}
.success-page .icon {
    font-size:200px;
    margin-bottom: 20px;
}
.success-page .message {
    font-size:20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.package-entry {
    padding:25px 35px;
    background-color: #fff;
    border-bottom: 3px solid #1c72ff;
    margin-bottom: 20px;
    display: flex;
}
.package-entry .name {
    font-size:20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.package-entry .name span {
    padding:0 2px;
    color:#1c72ff;
}
.package-entry .description {
    color:#999;
}
.package-entry .left {
    flex-grow: 1;
}
.package-entry .right {
    display: flex;
    align-items: center;
    opacity: 0;
    font-size:30px;
}
.package-entry:hover {
    cursor: pointer;
    border-bottom-color: #ce366e;
}
.package-entry:hover .right {
    opacity: 1;
}

p a {
    color: #1c72ff;
    text-decoration: underline;
}
p a:hover {
    color: #ce366e;
}
.content .page {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 60px;
}
.content .cmd {
    display: flex;
    margin-bottom: 25px;
}
.content .cmd span {
    background-color: #1c72ff;
    padding: 15px;
    justify-content: center;
    display: flex;
}
.content .cmd span:hover {
    background-color: #ce366e;
    cursor: pointer;
}
.content .cmd code {
    background-color: #f2f2f2;
    padding: 15px 25px;
    flex-grow: 1;
}
.content.center-page {
    min-height: 75vh;
    display: flex;
    align-items: center;
}
.search {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}
.search .box {
    display: flex;
    width: 100%;
    font-size:18px;
    align-items: center;
    background-color: #f6f6f6;
}
.search .box input {
    padding:15px 20px;
    border: none;
    font-size:18px;
    flex-grow: 1;
    height:50px;
    background-color:rgba(255, 255, 255, 0);
    border: 1px solid #eee;
    border-right: none;
}
.search .box input:focus {
    border-color: #000;
    outline: none;
}
.search .box .button {
    color: #fff;
    background-color: #1c72ff;
    height:50px;
    line-height:50px;
    padding: 0 25px;
    display: flex;
    border-radius: 0px;
}

.steps {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.steps li {
    list-style: none;
    display: block;
    border-bottom: 1px solid #eee;
    padding:15px 25px;
}
.steps a {
    color: #1c72ff;
    text-decoration: underline;
}
.steps a:hover {
    color: #ce366e;
}

.list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.list > * {
    list-style: none;
    display: block;
    border-bottom: 1px solid #eee;
    padding:15px 25px;
    border-left: 5px solid #1c72ff;
}
.list > a:hover {
    border-left-color: #ce366e;
}

.content .message {
    padding: 15px 25px;
    border-radius: 5px;
    display: block;
    margin: 15px 0;
}
.content .message.info {
    background-color: #d8e7ff;
    color: #002359;
}
.content .message.success {
    background-color: #c1e5b9;
    color: #1b4500;
}

.back {
    display: inline-block;
    padding: 0 15px;
    height:40px;
    line-height: 40px;
    background-color: #1c72ff;
    color:#fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 20px;
}

.back:hover {
    cursor: pointer;
    background-color: #ce366e;
}

.checkbox {
    display: flex;
    cursor: pointer;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.checkbox:hover input::before, .checkbox:hover input:checked::before {
    border-color:#000;
}
.checkbox input::before {
    display: inline-block;
    margin-right: 10px;
    background-color: #eee;
    border: 2px solid #ccc;
    color: #666;
    border-radius: 10px;
    line-height: 24px;
    height: 30px;
    padding: 0 10px;
    content: "no";
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    font-family: monospace, '⁠⁠Fira Code', 'Courier New';
}
.checkbox input:checked::before {
    background-color: #83e372;
    border-color: #1b6800;
    color: #1b6800;
    content: "yes";
    text-align: center;
}
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
}