.osxshake {
    animation: osxshake .5s linear;
}

@keyframes osxshake {

    8%,
    41% {
        -webkit-transform: translateX(-10px);
    }

    25%,
    58% {
        -webkit-transform: translateX(10px);
    }

    75% {
        -webkit-transform: translateX(-5px);
    }

    92% {
        -webkit-transform: translateX(5px);
    }

    0%,
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.billink_gateway_admin_input {
    width: 100%;
    padding: 0.5em;
    border-radius: 0.2em;
}

.billink_gateway_admin_label {
    display: block;
    margin-bottom: 0.5em;
}

.billink_gateway_admin_label.has_error:after {
    content: attr(data-error);
    display: block;
    position: relative;
    width: auto;
    height: auto;
    background: #f44336;
    padding: 0.2em;
    color: white;
    padding-left: 0.5em;
    border-radius: 0 0 0.5em 0.5em;
    top: -1px;
    left: 1px;
    line-height: 1.5;
}

.billink_gateway__custom_loader.active {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    cursor: wait;
}

.billink_gateway__custom_loader.active:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -40px;
    margin-left: -30px;
    border-radius: 50%;
    border: 4px solid #f0812d;
    border-top-color: #d0d0d0;
    animation: spinner .6s linear infinite;
}

.costs__table {
    border: 1px solid #e5e5e5;
    margin-bottom: 2em;
}

.costs__table thead {
    background: #ccc;
}

.costs__table thead th {
    text-align: center;
}

.costs__table tbody tr:nth-child(odd) {
    background: #e5e5e5;
}

.costs__table select,
.costs__table input {
    width: 100% !important;
}

.paymentcosts__instructions {
    margin: 20px 0;
}

.workflow__config {
    display: inline-block;
    box-sizing: border-box;
    padding: 1em;
    border: 1px dashed #c4c4c4;
    margin: 0.5em;
}

.wc_payment_method.payment_method_billink img {
    display: inline-block;
    height: 100%;
    max-height: 25px !important;
    float: right;
}

.wc_payment_method.payment_method_billink p {
    padding-bottom: 10px;
}