.hide-button {
    display: none;
}

.dc-logout-btn,
.logged-in .dc-login-btn {
    display: none;
}

.logged-in .dc-logout-btn {
    display: block;
}

.dc-set-blur-content .site-header,
.dc-set-blur-content .site-main,
.dc-set-blur-content .site-footer {
    animation: dcSetBlurContent 0.3s;
    animation-fill-mode: forwards;
}

.dc-unset-blur-content .site-header,
.dc-unset-blur-content .site-main,
.dc-unset-blur-content .site-footer {
    animation: dcUnSetBlurContent 0.5s;
    animation-fill-mode: forwards;
}

@keyframes dcSetBlurContent {
    0% {
        filter: blur(0px);
    }
    100% {
        filter: blur(6px);
    }
}

@keyframes dcUnSetBlurContent {
    0% {
        filter: blur(6px);
    }
    100% {
        filter: blur(0px);
    }
}

.dc-logout {
    width: 311px;
    padding-bottom: 25px;
    background-color: #eeeeee;
}

.dc-logout .header-wrapper {
    width: 100%;
    background-color: #cc0033;
    z-index: 100;
    position: relative;
}

.dc-logout .header {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding-right: 2rem;
}

.dc-logout .logo {
    width: 100%;
    max-width: 220px !important;
    vertical-align: bottom;
}

.dc-logout .content-wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    background-color: white;
    padding-bottom: 16px;
    padding-top: 32px;
}

.dc-logout .dc-logged {
    border-top: solid 1px #eeeeee;
    border-bottom: solid 1px #eeeeee;
    font-size: 25px;
    line-height: 2;
    padding: 0 16px;
}

.dc-logout .btn {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.25;
    cursor: pointer;
    min-width: 120px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .33rem .66rem;
    border-radius: 5px;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dc-logout button {
    color: #fff;
    background-color: #9c3;
    border-color: #9c3;
}

.dc-popup-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;

    animation: dcOpenPopup 0.2s;
    animation-fill-mode: forwards;
}

@keyframes dcOpenPopup {
    0% {
        top: 0;
        opacity: 0;
        display: none;
    }
    1% {
        top: 0;
        opacity: 0;
        display: block;
    }
    100% {
        top: 0;
        display: block;
        opacity: 1;
    }
}

@keyframes dcClosePopup {
    0% {
        top: 0;
        opacity: 1;
        display: block;
    }
    99% {
        top: 0;
        opacity: 0;
        display: block;
    }
    100% {
        top: -200%;
        opacity: 0;
        display: none;
    }
}

.dc-popup-section .dc-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    font-size: 28px;
    color: #0078bf;
    background-color: #fff;
    border-radius: 4px;
    transform: translate(-50%, -50%)
}

.dc-popup-section.close-popup {
    animation: dcClosePopup 0.2s;
    animation-fill-mode: forwards;
}

.dc-popup-section .dc-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.dc-popup-section .dc-close-btn:after,
.dc-popup-section .dc-close-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: white;
    transform: translateX(-50%) rotate(45deg);
}

.dc-popup-section .dc-close-btn:after {
    transform: translateX(-50%) rotate(-45deg);
}

