.awesomesauce_force_fullwidth {
    background: transparent;
    position: relative;
    z-index: 0;
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.awesomesauce_force_fullwidth_origin {
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.awesomesauce_wrapper {
    position: relative;
    z-index: 0;
}

.awesomesauce_wrapper * {
    position: relative;
    z-index: 1;
}

.awesomesauce_wrapper .awesomesauce_background_picture {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.awesomesauce_wrapper .awesomesauce_background_image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.awesomesauce_wrapper .awesomesauce_background_image_color_overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.awesomesauce_link {
    text-decoration: none !important;
}

.awesomesauce_block {
    width: 100%;
    overflow: hidden;
    transform: rotate(0.001deg); /* fixes Chrome's rendering bug */
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
    margin: 0 auto !important;
    padding: 0 !important;
}

.awesomesauce_fade_in {
    animation: fadeInAnimation ease 0.5s forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}