body {
    background-color: #222731;
    font-family: sans-serif;
    color: #CFD7E9;
    margin-bottom: 70px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 10px 0;
}

footer {
    background-color: #101011;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 15px;
    padding: 10px;
    box-shadow: 0 0 5px #101011;
    line-height: 20px;
    max-height: 50px;
}

footer p {
    margin: 5px 5px;
}

footer a {
    color: #6E87BF;
    text-decoration: none;
}

.float-right {
    float: right;
}

.center-vrt {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.float-left {
    float: left;
}

.prc {
    width: 60%;
    padding: 20px;
    color: #222731;
    background-color: #CFD7E9;
    margin-left: 20%;
    margin-top: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 8px #222731 inset;
}

.code {
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 15px;
    font-family: monospace;
    padding: 2px;
    border-radius: 3px;
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.c {
    color: #D0D4DC !important;
}

.center {
    text-align: center;
}

.grid {
    display: grid;
    grid-gap: 20px;
}

.auto {
    grid-auto-columns: minmax(10px, auto);
}

.auto200px {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


/*.overflow {
    overflow-y: auto;
    max-height: 1500px;
}*/

.subtitle {
    margin-bottom: 0;
    border-bottom: 1px dashed #222731;
    box-shadow: 0 6px 6px -6px #6E87BF;
}

.desc {
    font-size: 15px;
    color: #4B576E;
}

a {
    color: #233350;
    text-decoration: none;
}

code {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0 2px;
    border-radius: 3px;
    overflow-wrap: anywhere;
}

.tooltip {
    cursor: pointer;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    float: right;
    transition-duration: 0.2s;
}

.tooltip:hover {
    filter: contrast(0.8);
}

.tooltip-top {
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.info-div::before {
    content: "► ";
}

.info-div {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.error-div::before {
    content: "✖ ";
}

.error-div {
    background-color: rgba(255, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.success-div::before {
    content: "✔ ";
}

.success-div {
    background-color: rgba(0, 255, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 10px;
}

header.clipboard {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 2px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    line-height: 20px;
    position: relative;
}

@media only screen and (max-width: 800px) {
    .prc {
        width: 90%;
        margin-left: 5%;
    }
    #rights {
        display: none;
    }
}