/*! Place your custom styles here */

/* Links styled as buttons */
a.btn {
    text-decoration: none;
    display: inline-block;
    color: inherit !important;
}
a.btn--primary {
    color: #fff !important;
    font-weight: bold;
}

a.btn:hover {
    text-decoration: none;
    border-color: #d3d3d3 !important;
}

/* Messages / Alerts */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error,
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-dismissible {
    padding-right: 40px;
}

.alert-dismissible .close {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding: 15px 20px;
    color: inherit;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    cursor: pointer;
}

.alert-dismissible .close:hover {
    opacity: 0.75;
}

.cart-item {
    position: relative;
    display: flex;
    flex-direction: row;
}