﻿.ck-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #f6f6f6;
    padding: 10px 25px 15px 25px;
    border: 1px solid #808080;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;
}

.ck-wrapper.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #FCBA7F;
}

.ck-content {
    margin-top: 10px;
}

    .ck-content header {
        font-size: 20px;
        font-weight: 600;
    }

    .ck-content p {
        color: #000;
        margin: 5px 0 20px 0;
    }

    .ck-content .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.ck-buttons button {
    padding: 5px 10px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background: #0392ac;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .ck-buttons button:hover {
        transform: scale(0.97);
    }

.ck-buttons .ck-item {
    margin: 0 10px;
}

.ck-buttons a {
    color: #0392ac;
}