#ck-pup-wrapper {
    display:none;
}
.pup-ck {
    background-color: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    padding: 20px;
    display: none;
    z-index: 10000;
    text-align: left;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
    overflow-y: auto;
    max-height: 100vh;
}
@media (max-width: 768px) {
    .pup-ck {
        bottom: 0;
    }
}
.pup-ck._show {
    display: block;
}
.pup-ck__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #333333;
    margin-bottom: 10px;
}
.pup-ck__title span:last-child {
    display: inline-block;
}
.pup-ck__title span:last-child img {
    margin-bottom: 3px;
}
.pup-ck p {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: #999999;
    margin-top: 10px;
}
.pup-ck a {
    color: #0176AC;
    transition: color .3s ease;
}
.pup-ck a:hover {
    color: #039CE4;
}
.pup-ck__buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.pup-ck__button {
    border: 1px solid rgba(80,80,80,0.1);
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 0px;
    text-align: center;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pup-ck__button:hover {
    background-color: #F0F2F5;
}
.pup-ck__button--primary {
    border-color: #000000;
    background-color: #000000;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
}
.pup-ck__button--primary:hover {
    border-color: #242424;
    background-color: rgba(36, 36, 36, 0.9);
    color: #fff;
}
.pup-ck-wrapper {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1000px;
    width: 90%;
    background-color: transparent;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.26);
}
.pup-ck-wrapper._show {
    display: flex;
}