#cks-notification{
    color: rgb(255, 255, 255);
    background-color: rgb(35, 122, 252);
    padding: 1em 1.4em;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}
#cks-notification.cks-monochrome {
    background-color: #333 !important;
}
#cks-notification.cks-purple {
    background-color: #663399 !important;
}
#cks-notification.cks-red {
    background-color: #ee0000 !important;
}
#cks-notification.cks-green {
    background-color: #b3ee3a !important;
}
#cks-notification.cks-pink {
    background-color: #cc1166 !important;
}

#cks-notification.cks-bottom {
    left: 0;
    right: 0;
    bottom: 0;
}
#cks-notification.cks-top {
    left: 0;
    right: 0;
    top: 0;
}

#cks-notification a {
    color: rgb(255, 255, 255);
}
#cks-notification a:hover {
    text-decoration: none;
    color: rgb(240, 240, 240);
}
#cks-notification-message {
    -ms-flex: 1;
    flex: 1;
}
#cks-notification-permissions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
#cks-notification-permissions .cks-btn:last-child {
    min-width: 140px;
}
#cks-notification-permissions > .cks-btn {
    -ms-flex: 1;
    flex: 1;
}
.cks-btn:first-child {
    color: rgb(255, 255, 255);
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}
.cks-btn:last-child  {
    color: rgb(255, 255, 255);
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
}
.cks-btn, .cks-link {
    cursor: pointer;
}
.cks-btn+.cks-btn {
    margin-left: .5em;
}

.cks_banner_link {
    text-decoration: underline;
    /*font-size: 0.8em;*/
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
    #cks-notification {
        -ms-flex-align: unset;
        -ms-grid-row-align: unset;
        align-items: unset;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #cks-notification-message {
        margin-bottom: 1em;
    }
    #cks-notification-permissions {
        -ms-flex: 1;
        flex: 1;
        margin: auto;
    }
}
@media screen and (max-width: 900px) {
    .cks-btn {
        white-space: normal;
    }
}