
.notification {
    background-color: whitesmoke;
    border-radius: 4px;
    position: relative;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}

.notification a:not(.button):not(.dropdown-item) {
    color: currentColor;
    text-decoration: underline;
}

.notification strong {
    color: currentColor;
}

.notification code,
.notification pre {
    background: white;
}

.notification pre code {
    background: transparent;
}

/* .notification > .delete {
    right: 0.5rem;
    position: absolute;
    top: 0.5rem;
} */
.notification > .delete {
    display: flex;
}

.notification .title,
.notification .subtitle,
.notification .content {
    color: currentColor;
}

.notification.is-white {
    background-color: white;
    color: #0a0a0a;
}

.notification.is-black {
    background-color: #0a0a0a;
    color: white;
}

.notification.is-light {
    background-color: whitesmoke;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-dark {
    background-color: #363636;
    color: #fff;
}

.notification.is-primary {
    background-color: #00d1b2;
    color: #fff;
}

.notification.is-primary.is-light {
    background-color: #ebfffc;
    color: #00947e;
}

.notification.is-link {
    background-color: #485fc7;
    color: #fff;
}

.notification.is-link.is-light {
    background-color: #eff1fa;
    color: #3850b7;
}

.notification.is-info {
    background-color: #3e8ed0;
    color: #fff;
}

.notification.is-info.is-light {
    background-color: #eff5fb;
    color: #296fa8;
}

.notification.is-success {
    background-color: #48c78e;
    color: #fff;
}

.notification.is-success.is-light {
    background-color: #effaf5;
    color: #257953;
}

.notification.is-warning {
    background-color: #ffe08a;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-warning.is-light {
    background-color: #fffaeb;
    color: #946c00;
}

.notification.is-danger {
    background-color: #f14668;
    color: #fff;
}

.notification.is-danger.is-light {
    background-color: #feecf0;
    color: #cc0f35;
}

.delete{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, 0.2);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: none;
    position: relative;
    vertical-align: top;
    width: 20px;
}

.delete::before, .delete::after{
    background-color: white;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}

.delete::before{
    height: 2px;
    width: 50%;
}

.delete::after{
    height: 50%;
    width: 2px;
}

.delete:hover, .delete:focus{
    background-color: rgba(10, 10, 10, 0.3);
}

.delete:active{
    background-color: rgba(10, 10, 10, 0.4);
}

.is-small.delete{
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    min-height: 16px;
    min-width: 16px;
    width: 16px;
}

.is-medium.delete{
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px;
}

.is-large.delete{
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px;
}

.has-text-left
{
    text-align: left !important;
}
.has-text-right
{
    text-align: right !important;
}
.has-text-centered
{
    text-align: center !important;
}


.form-label
{
    display: block;
    margin-bottom: 5px;
    color: #242424;
    font-weight: 400;
}

.input-text
{
    padding: 0 20px !important;
    border: 1px solid var(--border-color) !important;
    font-size: var(--font-md);
    background: #fff;
}
.input-text-sm
{
    height: 42px !important;
    font-size: 13px !important;
}
.input-text-sm::placeholder,
.input-text-sm option
{
    font-size: 13px !important;
}
.input-textarea
{
    padding: 1em !important;
}
.input-textarea-sm
{
    font-size: 13px !important;
}
.input-textarea-sm::placeholder
{
    font-size: 13px !important;
}


.checkout-order-review
{
    position: relative;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f7f7f7;
}
