@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Generic css */
*,body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
    color: #3F4447;
}

strong {
    font-weight: 700 !important;
}

.generic-btn {
    border: 1px solid #3f4447;
    font-size: 15px;
    padding: 15px 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
    justify-content: center;
    position: relative;
    min-width: 250px;
    color: #333;
}

a {
    color: #3F4447;
}

.generic-btn:hover {
    background-color: #3f4447;
    transition: all .4s ease;
}

.generic-btn:hover .button-right {
    color: white;
}

.generic-btn:hover .button-left img {
    filter: brightness(0) invert(1);
}

.button-left {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 18px;
}

.button-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.button-right {
    text-transform: uppercase;
    text-align: center;
}

/* Generic message banner */
.alert {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

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

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

.alert-success, .alert-error {
    animation: fadeOut 0s ease-in 5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        height: 0;
        margin: 0;
        padding: 0;
    }
}

/* End message banner */

.pimcore_editable_image_empty {
    min-width: 100px;
}