.ckc-window {
    color: rgb(255, 255, 255);
    background-color: rgb(9, 9, 9);
    padding: 30px;
    max-width: 24em;
    flex-direction: column;
    border-radius: 5px;
    overflow: visible;
    justify-content: space-between;
    bottom: 1em;
    left: 5em;
    
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    display: flex;
    flex-wrap: nowrap;
    z-index: 99999;
    
    border: 2px solid rgba(99, 110, 124, 0.2);
    box-shadow: rgba(99, 110, 124, 0.1) 1px 2px 4px;
    
    opacity: 1;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}
.ckc-message{
    overflow-wrap: break-word;
}
.ckc-link {
    opacity: 0.8;
    display: inline-block;
    padding: 0.2em;
    text-decoration: underline;
    color: rgb(255, 255, 255) !important;
}
.ckc-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    justify-content: center;
}
.ckc-btn {
    display: block;
    padding: 0.4em 0.8em;
    font-size: 0.9em;
    font-weight: bold;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    
    color: rgb(0, 0, 0) !important;
    border-color: transparent;
    background-color: rgb(255, 255, 255);
    
    position: relative;
    border-radius: 5px;
    outline: none;
    
    flex: 1;
}
.ckc-btn, .ckc-link {
    cursor: pointer;
}
/*
.ckc-highlight .ckc-btn:first-child {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-color: transparent;
}
*/
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
    .ckc-window {
        max-width: none;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

