#ccb-banner {
    position: fixed;
    padding: 18px;
    z-index: 999999;
    font-size: 14px;
    display: none;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

#ccb-banner.bottom-left {
    bottom: 20px;
    left: 20px;
    width: 320px;
    border-radius: 6px;
}

#ccb-banner.bottom-right {
    bottom: 20px;
    right: 20px;
    width: 320px;
    border-radius: 6px;
}

#ccb-banner.bottom-bar {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ccb-banner .ccb-content{
    max-width: 100%;
}

#ccb-banner .ccb-actions{
    margin-left: 20px;
}

#ccb-banner button {
    padding: 10px 18px;
    border: none;
    margin-right: 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
#ccb-accept {
  color: #fff !important;
}
#ccb-reject {
  border: 2px solid #1e73be !important;
}
.ccb-content h4 {
  font-weight: 700 !important;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px 0;
}
#ccb-banner {
  padding: 16.5px 24px;
  box-shadow: 0 -1px 10px 0 #acabab4d;
}
@media(max-width: 600px) {
    #ccb-banner {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 14px;
    }
    #ccb-banner.bottom-bar .ccb-content{
        max-width: 100%;
        margin-bottom: 8px;
    }
    #ccb-banner.bottom-bar{
        flex-direction: column;
        align-items: stretch;
    }
    #ccb-banner .ccb-actions {
        display:flex;
        justify-content:flex-end;
        margin-left: 0;
        margin-top:8px;
    }
}
