/*******************************
    Header - profile modals
*******************************/

.template-5212 {
    z-index: 12;
    pointer-events: none;
}

.template-5212.is-active {
    pointer-events: all;
}

.template-5212 button {
    transition: color .4s, background .4s, opacity .4s;
}

.template-5212.profile-1 {
    min-height: 100vh;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(10px);
    width: 100vw;
    opacity: 0;
    transition: opacity .4s, box-shadow .4s;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    justify-content: flex-end;
}

.template-5212.profile-1.is-active {
    opacity: 1;
}

.template-5212.profile-1 > .profile__close {
    width: 50vw;
    height: 100vh;
}

.template-5212.profile-1 .profile-tabs {
    width: 100vw;
    transform: translate(0, 120%);
    background: #fff;
    height: 100%;
    z-index: 11;
    position: relative;
    transition: transform .5s;
    overflow-x: hidden;
    min-height: 100vh;
}

.template-5212.profile-1.is-active .profile-tabs {
    transform: translateX(0);
}

.template-5212.profile-1 .profile-tabs > button {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 5;
}

.template-5212.profile-1 .profile-tabs {
    overflow-x: hidden;
    overflow-y: auto;
}

.template-5212.profile-1 .profile-tabs::-webkit-scrollbar {
    width: 6px;
}

.template-5212.profile-1 .profile-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.template-5212.profile-1 .profile-tabs::-webkit-scrollbar-thumb {
    background: #888;
}

@media (min-width: 992px) {

    .template-5212.profile-1 .profile-tabs > button {
        top: 30px;
        right: 40px;
    }

    .template-5212.profile-1 .profile-tabs {
        width: 50vw;
        overflow-y: auto;
        transform: translate(120%, 0);
    }
}

/*******************************
    profile-tab
*******************************/

.template-5212.profile-1 .profile-tab {
    display: none;
    max-width: 748px;
    width: 100%;
    font-size: 15px;
}

.template-5212.profile-1 .profile-tab.is-active {
    display: block;
}

/*  no-transform   */

.template-5212.profile-1.no-transform .profile-tabs {
    transform: none !important;
}