/* Password Protected */
.post-password-required .entry-header .comments-link {
    margin: 1.825em 0 0
}
.post-password-required input[type=password] {
    width: auto;
    float: none;
    width: 230px;
    display: inline-block;
    max-width: 400px;
}

.buttons-style-outline .post-password-form input[type=submit] {
    border: 1px solid var(--buttons-background-color);
    background: 0;
    color: var(--buttons-background-color);
}
.buttons-style-outline .post-password-form input[type=submit]:hover {
    background: var(--buttons-background-color-hover);
    border-color: var(--buttons-background-color-hover);
}

.buttons-shape-round .post-password-form .submit-button-wrapper {
    border-radius: 30px;
}
.buttons-shape-superround .post-password-form .submit-button-wrapper {
    border-radius: 50%;
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper {
    background: 0 0;
    color: inherit;
    border: none;
    overflow: visible;
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper .border-helper {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    transition: all ease 0.2s;
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper:hover .border-helper {
    transform: scale(0.97);
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper span {
    display: inline-block;
    position: relative;
    transition: 0.2s;
    transform: translateY(0);
    line-height: 1;
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper:hover .char:nth-child(odd) {
    transform: translateY(-14%);
}
.buttons-shape-superround #content .post-password-form .submit-button-wrapper:hover .char:nth-child(even) {
    transform: translateY(14%);
}
.buttons-shape-rounded .post-password-form .submit-button-wrapper {
    border-radius: 3px;
}

.post-password-form input[type=submit] {
    font-size: 10px;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    float: none;
    background: var(--buttons-background-color);
    color: var(--buttons-text-color);
    border-radius: 0;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
    padding: 17px 24px;
    min-width: 166px;
    cursor: pointer;
    line-height: 1;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1em;
    -webkit-font-smoothing: antialiased;
}
.post-password-form input[type=submit]:hover {
    background: var(--buttons-background-color-hover);
    color: var(--buttons-text-color-hover);
}
.post-password-form .input-focus-wrapper {
    width: auto;
    display: inline-flex;
    align-items: center;
}
.post-password-form label {
    display: none;
}
.post-password-form p {
    text-align: center;
}
.post-password-form p:nth-of-type(2) {
    display: flex;
    justify-content: center;
}

@media (max-width: 680px) {
    .post-password-form p:nth-of-type(2) {
        flex-direction: column;
    }
    .post-password-required input[type=password] {
        width: 100%;
        margin: 0 auto;
    }
    .post-password-form .submit-button-wrapper {
        margin: 1em auto 0;
    }
}