.larafeed_button {
    box-shadow: 0 0 0 rgba(0, 105, 217, 0.4);
    position: fixed;
}

.larabtn {
    cursor: pointer;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 8px 15px;
    text-align: center;
    min-width: 60px;
    transition: color 0.1s ease;
}

.larafeed_button_blue {
    background: #428bca;
    border: #357ebd solid 1px;
}

.larabtn:hover, .larafeed_button_blue:hover {
    background: #357ebd;
}

.larafeed_button_close {
    background: #eeeeee;
    border: #d7d7d7 solid 1px;
    color: #333333;
}

.larafeed_button_close:hover {
    background: #d7d7d7;
}

.pulse:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 105, 217, 0.9);
        box-shadow: 0 0 0 0 rgba(0, 105, 217, 0.9);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(0, 105, 217, 0);
        box-shadow: 0 0 0 10px rgba(0, 105, 217, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 105, 217, 0);
        box-shadow: 0 0 0 0 rgba(0, 105, 217, 0);
    }
}

.larafeed_modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.larafeed_modal_content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem;
    width: auto;
    min-width: 350px;
    border-radius: 0.5rem;
}

.larafeed_show_modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.larafeed_modal_title {
    text-align: center;
}

.larafeed_field {
    margin: 10px 0;
}

.larafeed_control {
    display: block;
    width: 100%;
    height: calc(2.19rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.pull-right {
    float: right;
}

.clear {
    clear: both;
}
