body {
    padding: 1rem 1rem 1rem 1rem;
}

a {
    text-decoration: none;
    color: #00a;
}

.bold {
    font-weight: bolder;
}

.divider {
    margin-bottom: 2rem;
}

.warn {
    color: #a00;
}

.title {
    font-weight: bolder;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #199475;
    color: #fff;
    box-shadow: 0.2rem 0.2rem 0.1rem #888;
    border-radius: 0.5rem;
    border-color: #0b6e48;
    border-style: solid;
    border-top-width: 0px;
    border-right-width: 0rem;
    border-bottom-width: 0rem;
    border-left-width: 0.4rem;
}
.code {
    word-break:normal;
    white-space:pre-wrap;
    word-wrap : break-word;
    padding: 0.1rem 0.2rem 0.1rem 0.2rem;
    background-color: #f2f2f2;
    color: #38b1e9;
}
.shadow_text {
    font-weight: bolder;
    padding: 0.1rem 0.2rem 0.1rem 0.2rem;
    background-color: #eee;
    color: seagreen;
    box-shadow: 0.2rem 0.2rem 0.1rem #ccc;
    border-radius: 0.2rem;
}
.title_light {
    font-weight: bolder;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #fbf3d8;
    color: #333;
    box-shadow: 0.2rem 0.2rem 0.1rem #bbb;
    border-radius: 0.5rem;
    border-color: #f4d87a;
    border-style: solid;
    border-top-width: 0px;
    border-right-width: 0rem;
    border-bottom-width: 0rem;
    border-left-width: 0.4rem;
}

.title_light2 {
    font-weight: bolder;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #fffffb;
    color: #555;
    box-shadow: 0.2rem 0.2rem 0.1rem #ddd;
    border-radius: 0.5rem;
    border-color: #f0f0bd;
    border-style: solid;
    border-top-width: 0px;
    border-right-width: 0rem;
    border-bottom-width: 0rem;
    border-left-width: 0.4rem;
}
.center {
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

img.image {
    min-width: 80%;
    max-width: 100%;
}


mdp {
    background-color: #666;
}

.btn {
    display: block;
    width: auto;
    outline: 0;
    overflow: hidden;
    position: relative;
    transition: .3s;
    cursor: pointer;
    user-select: none;
    height: auto;
    text-align: center;
    line-height: 2.5rem;
    font-size: 1.6rem;
    background: tomato;
    color: #fff;
    border-radius: 0.3rem;
}

.btn > span:after {
    content: '';
    position: absolute;
    background: transparent;
    border-radius: 50%;
    width: 100%;
    padding-top: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.btn:active {
    background: orangered;
}

.btn > input[type=checkbox] {
    display: none
}

.btn > input[type=checkbox] + span:after {
    animation: ripple-in 1s;
}

.btn > input[type=checkbox]:checked + span:after {
    animation: ripple-out 1s;
}

@keyframes ripple-in {
    from {
        transform: translate(-50%, -50%) scale(0);
        background: rgba(0, 0, 0, .25);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        background: transparent;
    }
}

@keyframes ripple-out {
    from {
        transform: translate(-50%, -50%) scale(0);
        background: rgba(0, 0, 0, .25);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        background: transparent;
    }
}