.ik-p-app-nav-chat-header__container {
    position: relative;
    height: 100svh !important;
    width: 100%;
    margin-top: -60px;
    margin-bottom: 20px;
}

.ik-p-app-nav-chat-header__container--mobile {
    position: relative;
    height: 100svh !important;
    width: 100%;
    margin-top: -60px;
    flex-direction: column;
    margin-bottom: 20px;
}

.ik-p-app-nav-chat-header__video {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ik-p-app-nav-chat-header__cta {
    top: 0;
    position: absolute;
    height: 80%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 6%;
    margin-left: 2vw;
    color: white;
    font-size: 20px;
}

.ik-p-app-nav-chat-header__cta--mobile {
    top: 0;
    position: absolute;
    height: 38svh;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10svh;
    margin-left: 5vw;
    color: white;
    font-size: 20px;
}

.ik-p-app-nav-chat-header__cta-no-chat {
    top: 0;
    position: absolute;
    height: 80%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 6%;
    margin-left: 10%;
    color: white;
    font-size: 20px;
}

.ik-p-app-nav-chat-header__cta-no-chat--mobile {
    top: 0;
    position: absolute;
    height: 40svh;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30svh;
    margin-left: 5vw;
    color: white;
    font-size: 20px;
}

.ik-p-app-nav-chat-header__cta--slogan-box {
    font-weight: var(--text-semibold);
    max-height: 100%;
    max-width: 100%;
}

.ik-p-app-nav-chat-header__chat-box {
    width: 30vw;
    margin-left: 60vw;
    margin-top: 100px;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.166);
    border-radius: 20px;
}

.ik-app--mobile .ik-p-app-nav-chat-header__chat-box {
    margin-top: 50svh;
    width: 80vw;
    margin-left: 10vw;
}

.ik-p-app-nav-chat-header__chat-top-shape {
    width: 100%;
    height: 50px;
    background-color: var(--primary-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-size: 24px;
    padding-left: 20px;
    z-index: 1;
    white-space: nowrap;
}

.ik-p-app-nav-chat-header__chat-top-shape--text {
    text-overflow: ellipsis;
    overflow: hidden;
}

.ik-p-app-nav-chat-header__chat-content {
    height: calc(100svh - 190px);
}

.ik-p-app-nav-chat-header__chat-content--mobile {
    height: 37svh;
}

.ik-p-app-nav-chat-header__chat-content--hidden {
    height: 0;
}

.ik-p-app-nav-chat-header__chat-expand {
    animation: ik-p-app-nav-chat-header__chat-expand-anim 1s ease-in-out;
}

.ik-p-app-nav-chat-header__chat-decrease {
    animation: ik-p-app-nav-chat-header__chat-decrease-anim 1s ease-in-out;
}

.ik-p-app-nav-chat-header__chat-frame {
    height: 100%;
    z-index: 0;
    border-radius: 20px !important;
    overflow: hidden;
}

.ik-p-app-nav-chat-header__chat-frame.ik-chat-widget {
    bottom: auto !important;
}

@keyframes ik-p-app-nav-chat-header__chat-expand-anim {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: -100%;
        opacity: 1;
    }
}

@keyframes ik-p-app-nav-chat-header__chat-decrease-anim {
    0% {
        height: -100%;
        opacity: 1;
    }

    100% {
        height: 0;
        opacity: 10;
    }
}

.ik-p-app-nav-chat-header__chat-stub {
    justify-content: end;
    overflow: hidden;
}
