.header__logo a {
    text-align: center;
    min-width: 50%;
}

.logo {
    justify-content: center;
}

.header__inner {
    align-items: start;
}

table {
    display: block;
    border: none;
    max-width: 100%;
    overflow: auto;
}

p>code {
    white-space: nowrap;
}

.code-toolbar,
table,
img {
    clear: both;
}

/* Subscribe box css */
.c-container {
    background: #21202c;
    color: #5e5e5e;
    overflow: hidden;
    width: 300px;
    margin: 0 10px 20px 10px;
    float: right;
    z-index: 9999;
    position: relative;
}

.c-container .rainbow {
    width: 100%;
    height: 100%;
    -webkit-animation: o-rotate-360 linear 8s infinite;
    animation: o-rotate-360 linear 8s infinite;
}

.c-container .rainbow span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    transform: translate(-50%, -50%);
}

.c-container .rainbow span:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
}

.c-container .rainbow span:first-child {
    background: #65587f;
}

.c-container .rainbow span:first-child:after {
    background: #f18867;
}

.c-container .rainbow span:last-child {
    background: #e85f99;
}

.c-container .rainbow span:last-child:after {
    background: #50bda1;
}

.c-container .c-subscribe-box {
    width: 300px;
    height: 270px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.2);
    border-radius: 8px;
    margin: auto;
    transition-timing-function: cubic-bezier(.36, .47, .98, .25);
}

.c-container .c-subscribe-box__wrapper {
    width: calc(100% - (.625rem));
    height: calc(100% - (.625rem));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1.2rem 1rem 1.8rem;
    display: flex;
    flex-direction: column;
    border-radius: calc((8px) / 2);
}

.c-container .c-subscribe-box__title {
    font-size: 1.6rem;
    font-weight: bold;
}

.c-container .c-subscribe-box__desc {
    font-size: 0.935rem;
    margin: 0.5rem;
    max-width: 240px;
}

.c-container .c-subscribe-box__form {
    margin-top: auto;
}

.c-container .c-form--accent input:hover,
.c-container .c-form--accent input:active,
.c-container .c-form--accent input:focus {
    border-color: #e85f99;
    box-shadow: 0 0 0 3px rgba(232, 94, 152, 0.25);
}

.c-container .c-form--accent [type=submit] {
    background: #e85f99;
    border-color: #e85f99;
    color: #fff;
}

@-webkit-keyframes o-rotate-360 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes o-rotate-360 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.c-container [type=submit] {
    margin-bottom: 0;
    /* font-family: "Fredoka One", sans-serif; */
    font-weight: normal;
    letter-spacing: 0.015em;
    font-size: 1.1rem;
}

.c-container [type=submit]:active {
    transform: scale(0.97);
}

.c-container input {
    /* font-family: inherit; */
    color: inherit;
    outline: none;
    font-size: 93%;
    transition: all 300ms ease;
    border: 1px solid #c5c5c5;
    display: block;
    border-radius: 4px;
    padding: 0.75rem;
    outline: none;
    background: transparent;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    line-height: 1;
}

.c-container h3 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.015em;
    /* font-family: "Fredoka One", sans-serif; */
    font-weight: normal;
    line-height: 1.4;
}

.c-container .u-align-center {
    text-align: center;
}

.full-button {
    text-transform: none;
    padding: 0.75rem 1.25rem;
    margin: 0 0 0.5rem 0;
    border: 1px solid #0366ee;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

@media (max-width:650px) {
    .c-container {
        width: 100%;
    }

    .c-container+p {
        width: 100%;
    }
}

.line-highlight {
    max-width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 0, 0.2), rgba(255, 255, 0, 0))
}

@media print {
    .line-highlight {
        background: none;
    }
    .c-container {
        display: none;
    }
}

figure, img {
    margin: auto;
}