.ks-information-beauty {
    position: fixed;

    bottom: -220px;
    left: 20px;
    z-index: 9999;

    transition: bottom 0.6s ease;
}

.ks-information-beauty.show {
    bottom: 20px;
}

.ks-information-beauty .ks-content {
    position: relative;
    width: 300px;
}

.ks-information-beauty .ks-toggle {
    position: absolute;

    top: -40px;
    left: 0;

    width: fit-content;
    height: 40px;
    padding: 0px 16px;

    border: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

    background-color: var(--color-secondary);
    color: #fff;

    font-size: 14px;
    cursor: pointer;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: block;
}

.ks-information-beauty .ks-inner-content {
    position: relative;

    background: #fff;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    overflow: hidden;
}

.ks-information-beauty .ks-close {
    position: absolute;

    top: -2px;
    right: 8px;

    background: transparent;
    border: 0;
    color: #fff;

    font-size: 32px;
    font-weight: bold;
    cursor: pointer;

    text-shadow: 1px 2px 4px #000000;
}

.ks-information-beauty .ks-close:hover {
    opacity: 0.85;
}