/* stylelint-disable selector-nested-pattern */
/* stylelint-enable */
.chatik-integration {
    position: fixed;
    z-index: 1020;
    display: none;
    min-width: 320px;
    min-height: 600px;
}

@media (min-width: 700px) {
    .chatik-integration {
        border: 1px solid #dce3eb;
        border-radius: 16px;
        box-shadow: 0 12px 24px 0 rgba(112, 144, 176, 0.32);
    }
}

.chatik-integration_visible {
    display: flex;
    flex-direction: column;
}

.chatik-integration_view-compact {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    min-height: unset;
}

@media (min-width: 700px) {
    .chatik-integration_view-compact {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 640px;
        max-height: 100%;
        width: 400px;
        transition: opacity 0.3s ease-in-out;
    }
}

.chatik-integration_view-medium {
    right: 18px;
    top: 110px;
    width: 1028px;
    height: 640px;
    max-height: 100%;
    max-width: 100%;
}

.chatik-integration_view-compact,
.chatik-integration_view-medium,
.chatik-integration_view-full {
    overflow: hidden;
}

.chatik-integration_view-compact .chatik-integration-widget-iframe-container,
.chatik-integration_view-medium .chatik-integration-widget-iframe-container,
.chatik-integration_view-full .chatik-integration-widget-iframe-container {
    width: 100%;
}

.chatik-integration-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.chatik-integration_entered {
    opacity: 1;
}