/* wp-content/themes/kandence-child/assets/css/block-call-to-action.css*/
#fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 8px #0000000d;
    border: 1px solid #edebeb;
    border-radius: 18px 18px 0px 0px;
    max-height: 80px;
    z-index: 1000;
}

#fixed-bottom-bar .call-to-action-container {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}

#fixed-bottom-bar .call-to-action-container .fbb-primary,
#fixed-bottom-bar .call-to-action-container .fbb-secondary {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#fixed-bottom-bar .call-to-action-container a {
    text-decoration: none;
    color: inherit;
    outline: 0;
    cursor: pointer;
}

#fixed-bottom-bar .call-to-action-container a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

#fixed-bottom-bar .call-to-action-container .fbb-primary {
    border: 1px solid #27c9d6  !important;
    border-radius: 9px !important;
    padding: 10px;
    font-size: 16px;
    font-weight: 500 !important;
    background-color: #27c9d6 ;
    color: #fff;
    position: relative;
    z-index: 0;
}

#fixed-bottom-bar .call-to-action-container .fbb-primary:hover {
    background-color: transparent;
    color: #27c9d6 ;
}

#fixed-bottom-bar .call-to-action-container .fbb-secondary {
    border-radius: 7px;
    margin-left: 8px;
    font-size: 16px;
    font-weight: 500;
}

#fixed-bottom-bar .call-to-action-container .fbb-secondary:hover {
    color: #27c9d6 ;
    background-color: rgba(39, 201, 214, .08);
}


@media (min-width: 768px) {
    #fixed-bottom-bar .call-to-action-container .fbb-primary,
    #fixed-bottom-bar .call-to-action-container .fbb-secondary {
        font-size: 14px;
    }

    #fixed-bottom-bar {
        padding: 10px;
    }
}

