/* DESIGN PACK VERSION: 2.56 */
.owl-button {
    -webkit-appearance: none;
    border: 1px solid transparent;
    background-color: #eee;
    padding: 10px 20px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    min-width: 38px;
    cursor: pointer;
    transition: all 80ms linear;
    font-family: inherit;
    margin: 0;
}

.owl-button img {
    width: 20px;
}

.owl-button:disabled {
    opacity: .65;
    cursor: not-allowed;
}

a.owl-button:disabled {
    pointer-events: none;
}

.owl-button--circular {
    border-radius: 30px;
}

.owl-button--pink {
    background-color: var(--owl-pink);
    color: white;
    border: 2px solid white;
    box-shadow: 0px 0px 11px rgba(0,0,0,.2);
}

.owl-button--pink:active {
    background-color: var(--owl-pink);
}

.owl-button--link {
    height: 38px;
    background-color: transparent;
    text-decoration: underline;
}

.owl-button--link:hover,
.owl-button--link:focus,
.owl-button--link:active {
    color: var(--owl-pink);
    background-color: transparent;
}

.owl-button--link-invert {
    color: var(--owl-pink);
    text-decoration: none;
    border-bottom: 1px solid;
}

.owl-button--link:hover {
    color: #000;
    background-color: transparent;
}

.owl-button--xs {
    width: 22px;
    height: 22px;
    padding: 0;
    min-width: 0;
    border-width: 1px;
    box-shadow: 0px 1px 6px rgba(0,0,0,.2);
}


.owl-button:hover {
    filter: brightness(85%);
}

.owl-button:active {
    filter: brightness(75%);
}

.owl-button:focus {
    outline: 2px solid var(--owl-focus-color);
}

.owl-button.owl-button--link:focus {
    outline: 2px solid var(--owl-focus-color);
}

.owl-button--compact {
    padding: 0;
    height: auto;
}
